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

/* Begin PBXAggregateTarget section */
		0C1885900810601510E0C632060FAF26 /* GooglePlaces */ = {
			isa = PBXAggregateTarget;
			buildConfigurationList = 2FC2AC47FDB0310285CE777F18CD1532 /* Build configuration list for PBXAggregateTarget "GooglePlaces" */;
			buildPhases = (
			);
			dependencies = (
				D42315111F400C0605ACCD6B5CAF2178 /* PBXTargetDependency */,
			);
			name = GooglePlaces;
		};
		E5B4BBC6DD552AC8943C7E22772FC1D3 /* GoogleMaps */ = {
			isa = PBXAggregateTarget;
			buildConfigurationList = 72FDCC61040C0C672F23959415CAEFC6 /* Build configuration list for PBXAggregateTarget "GoogleMaps" */;
			buildPhases = (
			);
			dependencies = (
			);
			name = GoogleMaps;
		};
/* End PBXAggregateTarget section */

/* Begin PBXBuildFile section */
		00FA97D56201027AEB1C7692A2C3CF8B /* Alamofire-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 824D9B018A25B4CD36B515A21A2C66BB /* Alamofire-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
		0265F00E8DBCD6B925C23CE1DEB9F036 /* GMULineString.h in Headers */ = {isa = PBXBuildFile; fileRef = 22C36638C405F9D2D7B0BD46E3F0967B /* GMULineString.h */; settings = {ATTRIBUTES = (Public, ); }; };
		0419772A87B16DB7DCF405A9E77D671F /* Protector.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F5BE0412AD8EF93DC5EA8B7C08818B0 /* Protector.swift */; };
		0607CCFD3183E86980426E8A34DCFC9A /* GMUStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = E3FAAD7D6792C3619859BD3EF0EB5065 /* GMUStyle.h */; settings = {ATTRIBUTES = (Public, ); }; };
		06507A26118BA5ACFBBC8C225776920E /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 826C4BB1BCAA99C2C306EF73D3214A14 /* Validation.swift */; };
		09A0B7185BD8E31909034EE2C1C1508F /* GMUGeometryRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 7910345EFA02EB980119663FC0118C4C /* GMUGeometryRenderer.m */; };
		0AE06C3AEA6CA45342BA703230ABD2CB /* CachedResponseHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6CDCEAB74DC761D56282BE32749FF46 /* CachedResponseHandler.swift */; };
		0CC43FF0E31AA320ACFEB0FE6239DF34 /* ServerTrustEvaluation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1836B043CF6004E39E9650A7B06956F5 /* ServerTrustEvaluation.swift */; };
		0E6ED333181FF923562E02EEB3162308 /* GMUStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = B8C52A0F8BF4BDF06044F78D2B3F1E49 /* GMUStyle.m */; };
		0FDC1FEDB01554D88784CA2A88E6234F /* GMUStaticCluster.m in Sources */ = {isa = PBXBuildFile; fileRef = AB61C3E8DF4DC93D53DCE30BA373C8C5 /* GMUStaticCluster.m */; };
		0FE9636CBBBDAF175DC388BB9BEC61A7 /* GMUCluster.h in Headers */ = {isa = PBXBuildFile; fileRef = C05A0AE31AD6283457EF7BE610CE933E /* GMUCluster.h */; settings = {ATTRIBUTES = (Public, ); }; };
		10B2DE879AEAE070ED8F6E4E88F58899 /* GMUGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = C7D0B5F7FD1FF55198E20C93ADEF0817 /* GMUGradient.h */; settings = {ATTRIBUTES = (Public, ); }; };
		1269CFA194EA8D7E42B863FA6D61C7B3 /* GMUPlacemark.m in Sources */ = {isa = PBXBuildFile; fileRef = 4177CDFC747A668317CB195FB640D892 /* GMUPlacemark.m */; };
		13457FE4E607509A3B9527B0711033D5 /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC533C5422195A9B17AB377F7C4042AE /* ResponseSerialization.swift */; };
		14AB7976E100075ADEA0AB1DB833E72D /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = D412EA5D825FA653997D1B5DBCE37B33 /* ParameterEncoding.swift */; };
		14FE485059B061EF889CD0D02CA93A6A /* GMUClusterManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 31CA5FBE4D19BCD460F60F8326C8C42E /* GMUClusterManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
		17953A9CF2E354B3E69B9ABC2F367AD9 /* AFError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0470913171E5F8BD817636C2D90FE14D /* AFError.swift */; };
		18CE1994C0ECC17289B2224647D0305A /* GMUPolygon.m in Sources */ = {isa = PBXBuildFile; fileRef = C138DBD8D9811B6538120A36C77D948A /* GMUPolygon.m */; };
		1A093C56EACCA8D49A9F834349941C41 /* GMUWeightedLatLng.h in Headers */ = {isa = PBXBuildFile; fileRef = 53362E976B7BBF98339337AAC5476081 /* GMUWeightedLatLng.h */; settings = {ATTRIBUTES = (Public, ); }; };
		1E054C4442B55910F53D959E27086AA5 /* GMUFeature.h in Headers */ = {isa = PBXBuildFile; fileRef = 56FD8C19D6F3A302E2625038C9FDF360 /* GMUFeature.h */; settings = {ATTRIBUTES = (Public, ); }; };
		21C693BBEAD272F3A1352D61B238B787 /* GMUGridBasedClusterAlgorithm.m in Sources */ = {isa = PBXBuildFile; fileRef = 931CF34C7A6EF9D2CA2359F7FAD0AE01 /* GMUGridBasedClusterAlgorithm.m */; };
		236C125617A798ABF6398E3E5E819B88 /* GMUPair.h in Headers */ = {isa = PBXBuildFile; fileRef = 1668E8F00B2D02925EE62383D650BB05 /* GMUPair.h */; settings = {ATTRIBUTES = (Public, ); }; };
		28BC03E371CECCF48D59293D5EED60C9 /* GMUPolygon.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D462C05421F4C51D12C1C12817DC01B /* GMUPolygon.h */; settings = {ATTRIBUTES = (Public, ); }; };
		2B83281CBC344D2DA68619D42B7F2DCD /* GMUDefaultClusterIconGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 48685635464E4E04DBAD431275750780 /* GMUDefaultClusterIconGenerator.h */; settings = {ATTRIBUTES = (Public, ); }; };
		2C193D8A5157A1FF32BF061AA5AC0796 /* GMUStaticCluster.h in Headers */ = {isa = PBXBuildFile; fileRef = F073C76708B6A37E2692E32F685A99A9 /* GMUStaticCluster.h */; settings = {ATTRIBUTES = (Public, ); }; };
		2CA3A1FE2BC7A0724A55D9E3063BA0D7 /* GMUNonHierarchicalDistanceBasedAlgorithm.m in Sources */ = {isa = PBXBuildFile; fileRef = AE2CD1EE8FE2518E089A5C940F47599D /* GMUNonHierarchicalDistanceBasedAlgorithm.m */; };
		339CA4289E532D19016FB4EF77A6C41C /* GMUGroundOverlay.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C168E9290609458FCB33D00C6EA814E /* GMUGroundOverlay.m */; };
		33AB7E44938A901376DA8FCE35EA7C20 /* GMUPlacemark.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DF1345302BF7CE049A0F22CB711B71D /* GMUPlacemark.h */; settings = {ATTRIBUTES = (Public, ); }; };
		3BD0A1ABCE3E5856D4073097218C1D93 /* Google-Maps-iOS-Utils-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0692F53A6EB4E64A8F0FE7E1129B2E61 /* Google-Maps-iOS-Utils-dummy.m */; };
		4082513A35C682F2193D002C80F72B79 /* Result+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5BB1690EA0051C601CB7D7D7198F9AC /* Result+Alamofire.swift */; };
		4094F4C3473CD6D05D3B7C091701028F /* GMUHeatmapTileLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 08F5141BBE5C8EF3D060F37257224FB7 /* GMUHeatmapTileLayer.m */; };
		4246DDBC277DC9C7EF6A4E137E00E2CA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 222DAEF0D819F359AFCFF3D4F927E8A7 /* Foundation.framework */; };
		42CDB5C986C78BBC8E5C0185F746CABF /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F80A40E52D364F95EF6A9476D3FB6682 /* SessionDelegate.swift */; };
		43D614C5D6D6C46426FF4528A67C03F5 /* GMUGeoJSONParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 765AD0E2CB2E5E9CBFB68F7D8D562B31 /* GMUGeoJSONParser.h */; settings = {ATTRIBUTES = (Public, ); }; };
		44127C4B989C9CC6A90D78B66A929A5E /* AlamofireExtended.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CB95C2770334A77D289104048523E68 /* AlamofireExtended.swift */; };
		48D97BE7D5CAED273BD2341C239CC934 /* RequestTaskMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = D64239F8542DB542A4627FC4BA91B238 /* RequestTaskMap.swift */; };
		4C01D6E23408765A7B309D0937B17324 /* GMUWrappingDictionaryKey.h in Headers */ = {isa = PBXBuildFile; fileRef = 6945C8BFFFB511EDDF4B3C058B9E58C8 /* GMUWrappingDictionaryKey.h */; settings = {ATTRIBUTES = (Public, ); }; };
		4C430238D42160E133406F54A8C80CA8 /* GMUGeometryRenderer+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 085690281F76F4AC35EB3B37212FD173 /* GMUGeometryRenderer+Testing.h */; settings = {ATTRIBUTES = (Public, ); }; };
		4D24D527232D2DB0DEEDD20FCA70E55B /* GMUGeometry.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BFD333D9C6D2525A8529861D6CDCC93 /* GMUGeometry.h */; settings = {ATTRIBUTES = (Public, ); }; };
		52CCCA1CA7E24AF8D674AB8C52B38488 /* GMUGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = F577EEA88330AB31532B57FE0698393E /* GMUGradient.m */; };
		56EC8ED1535DAB987F3D2B71D4C05773 /* HTTPHeaders.swift in Sources */ = {isa = PBXBuildFile; fileRef = C58DFC323A1D00905391AC7CC1C60598 /* HTTPHeaders.swift */; };
		58B40EDF31BCCA0D2F16E22363AD7C75 /* GMUDefaultClusterRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4808DD5BB696DAD4BA2A22F8ADAC7E39 /* GMUDefaultClusterRenderer.m */; };
		5AE43A0662DE2ABCAAEE60EBBDBA3ED6 /* GMUStyleMap.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C3A8D937D0D73F8D560DDE8A5D42202 /* GMUStyleMap.m */; };
		5C4A0685B5A201436AB52EF25829B333 /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F229A62EBE3DED272F8E4551ECF58469 /* MultipartFormData.swift */; };
		5D12235D061AEE7459279AAF8C348DFE /* URLEncodedFormEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67A7465CF8BBBFBF5C96E86025BDA1EA /* URLEncodedFormEncoder.swift */; };
		5D61C8ED0DDCC9F8B576B6514B19EE50 /* ParameterEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2C3F52CF83AD164811FA449AA5793AF /* ParameterEncoder.swift */; };
		67223AB5F7E489AC8D5C44575511BD6E /* GMUStyleMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 4570018A44C8420628B97C8DEB501A10 /* GMUStyleMap.h */; settings = {ATTRIBUTES = (Public, ); }; };
		6739BD83FE5790A56AC334EA10D63EF9 /* GMUDefaultClusterIconGenerator+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 41E8DFD15F1E56043CC42AC3CEAD039E /* GMUDefaultClusterIconGenerator+Testing.h */; settings = {ATTRIBUTES = (Public, ); }; };
		69A7BAAF6FBD279510569C8F8AF0A772 /* GMUPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = EEBF6A83C6193F2EBDCA896D5133EE42 /* GMUPoint.h */; settings = {ATTRIBUTES = (Public, ); }; };
		69ACE4EEE5A8C1C618B22CC1F7B8EF01 /* Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAFF5178299081BDC9BAAA067092782E /* Session.swift */; };
		6A16615AACC6395730C7590AEA5DDFC8 /* GMUKMLParser.m in Sources */ = {isa = PBXBuildFile; fileRef = C72BA217A2202A36B10845576046E34C /* GMUKMLParser.m */; };
		6A22C46CB1EDE471794D9AB2AC10327F /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E4FAF897FD47617D04333B1EE232051 /* Request.swift */; };
		70517C3BAC2D6614347DEAC15299EB84 /* URLConvertible+URLRequestConvertible.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB523041AD37AE051E0E81DA5296D8CD /* URLConvertible+URLRequestConvertible.swift */; };
		7740276C0ADB017D548E734AB862A001 /* GMUClusterItem.h in Headers */ = {isa = PBXBuildFile; fileRef = AD0212690AAC3E4ACE9A4AE674B30961 /* GMUClusterItem.h */; settings = {ATTRIBUTES = (Public, ); }; };
		7BB265CF4E1D5F26520C3E8B03FA7727 /* GMUPair.m in Sources */ = {isa = PBXBuildFile; fileRef = 40E0A7525CF243E5C54C64CB47065AF7 /* GMUPair.m */; };
		7CF8362BA31492053F5CB165637AE117 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39A6F352EE5C522B21C7190947EAA7EC /* NetworkReachabilityManager.swift */; };
		841564F61C36BB1FC7022F2AF01D2C98 /* GQTPointQuadTree.h in Headers */ = {isa = PBXBuildFile; fileRef = 890078C2FF31BA357388E66C927421F5 /* GQTPointQuadTree.h */; settings = {ATTRIBUTES = (Public, ); }; };
		87363FB2633AB0CF7D61D77C278F36B5 /* GMUDefaultClusterRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = ED41FB255023CEA9D301935A7B7BF02A /* GMUDefaultClusterRenderer.h */; settings = {ATTRIBUTES = (Public, ); }; };
		891446206B0D33D4C61DD328436ECCF7 /* GMUGeometryCollection.h in Headers */ = {isa = PBXBuildFile; fileRef = 9259849B5E110806A283B82FE6A64D26 /* GMUGeometryCollection.h */; settings = {ATTRIBUTES = (Public, ); }; };
		8D47CC0F688062AF0CFC96EADE699720 /* GMUGeoJSONParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FFB2CF74C9E444F185C502BF7F038AF /* GMUGeoJSONParser.m */; };
		907B13DB054C71D2258383B7BEABE0F5 /* GMUNonHierarchicalDistanceBasedAlgorithm.h in Headers */ = {isa = PBXBuildFile; fileRef = A3072F3163953FC4A9326F701684A1F7 /* GMUNonHierarchicalDistanceBasedAlgorithm.h */; settings = {ATTRIBUTES = (Public, ); }; };
		9110B41B4A6381390E48CDC6C305A01F /* GMUHeatmapTileLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = B8A988926B41DB9CCFA3A9E45D67647F /* GMUHeatmapTileLayer.h */; settings = {ATTRIBUTES = (Public, ); }; };
		92811AC5CD9A5004116AE43C4E8FD955 /* OperationQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3FFFE6E4D57E64B966E312B8A19FEC2 /* OperationQueue+Alamofire.swift */; };
		9282857403CCFC218BA78F92FD6FF4FF /* GMUGridBasedClusterAlgorithm.h in Headers */ = {isa = PBXBuildFile; fileRef = F9C37A351E75E0AED124AFBF47D09F6F /* GMUGridBasedClusterAlgorithm.h */; settings = {ATTRIBUTES = (Public, ); }; };
		94E033876210CFB80731D45265F4E935 /* GMUWeightedLatLng.m in Sources */ = {isa = PBXBuildFile; fileRef = AB9CF6C7F866F8824E089698965CAC44 /* GMUWeightedLatLng.m */; };
		96D1E899BC7DD51F454776775AC88A0B /* Google-Maps-iOS-Utils-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 81F771C81527652BBC3CBE3BD2D5BFB7 /* Google-Maps-iOS-Utils-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
		97A168DFB6DB61770CE2DBF4FD39AA8D /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8B079F294DA5D9A879E6D53A91F51A1E /* CFNetwork.framework */; };
		9AAA595D0C758D3AC560FC8E774F4810 /* GQTPointQuadTreeChild.h in Headers */ = {isa = PBXBuildFile; fileRef = D6DB9626D8D8D3FFA5701B1D9311D1DC /* GQTPointQuadTreeChild.h */; settings = {ATTRIBUTES = (Public, ); }; };
		9ED1CB83EFF21A9AB9CC71227A2511DD /* GMUSimpleClusterAlgorithm.h in Headers */ = {isa = PBXBuildFile; fileRef = D56E84B2F1E7B8E279A43A6B95358324 /* GMUSimpleClusterAlgorithm.h */; settings = {ATTRIBUTES = (Public, ); }; };
		A0C5BE52F1BFAF7647159E2E9CCFD616 /* Pods-ProductosPY-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FB7D44EF0E364F69490B1C7C236F195 /* Pods-ProductosPY-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
		A25B6D4A6B93D89917B398F6F8D24497 /* GQTPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DB0E560CF2BBC70B65382AFDB82BDC8 /* GQTPoint.h */; settings = {ATTRIBUTES = (Public, ); }; };
		A89051C6EA5100B172785C3188D4B2D0 /* GMUClusterManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B8BC73624F20C0D13D9F96859F6F21A7 /* GMUClusterManager.m */; };
		AD9899986955B2EC1EC20818C860C971 /* RequestInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = F36BF563D6B758A9AACF69600A6381E0 /* RequestInterceptor.swift */; };
		AF92602937CA016548022C600B8CDC16 /* URLSessionConfiguration+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = B415744A81F9A13705C031EB4AFB692F /* URLSessionConfiguration+Alamofire.swift */; };
		B1C58F6CED7B3E45170711D9ADF878AF /* Alamofire-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6314D81E5E77A19B27E8B26BBA30F9CA /* Alamofire-dummy.m */; };
		B23E9A5CDA31534491226F4C2EE8F8E6 /* HTTPMethod.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16387C33EE2857D75177733548D41EF3 /* HTTPMethod.swift */; };
		B25F2EEA0331ED9565890F3E83B374C4 /* GMUClusterAlgorithm.h in Headers */ = {isa = PBXBuildFile; fileRef = A065556B268C5AFE1B15918CC0A2F4EE /* GMUClusterAlgorithm.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B53B81C6718DF236268217E126292366 /* GMUDefaultClusterIconGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 57DFD5F9A718CADCDF977E6AC23C3217 /* GMUDefaultClusterIconGenerator.m */; };
		B788B3354CCEBE56DFDB963CAFD7F6C2 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC3559AD43498D0318355CBAC4610FAA /* Alamofire.swift */; };
		BA454EB9A13831760BBC99EE20C3FBF4 /* GMUClusterRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = D7EA8F643A5CD180525ED32998C51AC8 /* GMUClusterRenderer.h */; settings = {ATTRIBUTES = (Public, ); }; };
		BAA738D81673FB182E7C780EE7E285E9 /* GMUFeature.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BD5DDC2DD330ABBC1B27AA9F95D3631 /* GMUFeature.m */; };
		BE82AE980F8C7EE28A6448959194F93A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 222DAEF0D819F359AFCFF3D4F927E8A7 /* Foundation.framework */; };
		C10B079A50364FAC9845BB6D74F5D780 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 222DAEF0D819F359AFCFF3D4F927E8A7 /* Foundation.framework */; };
		C60E2279A53FED46BE69E60A7343B46B /* Pods-ProductosPY-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EB4DEE4258DD2C23A922E9A12D1CDDD3 /* Pods-ProductosPY-dummy.m */; };
		C64AF152F7928CDB59385528DB65FE19 /* RedirectHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86E35644E17C50C2B88F0E4CD3FE19DA /* RedirectHandler.swift */; };
		C7369563F6946D8984124E1A546B6425 /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFA94513E74C92CA47A935391EBD4AD1 /* Notifications.swift */; };
		CA244CA3C187A1CE131810767E9220EB /* GMUPoint.m in Sources */ = {isa = PBXBuildFile; fileRef = 4944A0A1EECB6326526BBD8594BBCA27 /* GMUPoint.m */; };
		CACBD166E573774FB5613C34AA6DA7A7 /* EventMonitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5EE4AF46FBF1E1BB2C8AF3476AFD1A6 /* EventMonitor.swift */; };
		CC26C46010C0C45610345D613EC800E2 /* GMUGroundOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = 441E627A9DB0A80780F363C1001F27F2 /* GMUGroundOverlay.h */; settings = {ATTRIBUTES = (Public, ); }; };
		CF8108DD69C3B7E70F59DABFB4D41CE4 /* GQTPointQuadTree.m in Sources */ = {isa = PBXBuildFile; fileRef = 28569415F9DDD24077AD7FD62E5193A2 /* GQTPointQuadTree.m */; };
		D1A8A521BD9F9894656E6C3ACFBF3338 /* GQTPointQuadTreeChild.m in Sources */ = {isa = PBXBuildFile; fileRef = 70518AB2437E2C2B95F5D68F20F3B0C4 /* GQTPointQuadTreeChild.m */; };
		D28AAC7E032FD710FF5886A3D66C31DA /* GMUGeometryCollection.m in Sources */ = {isa = PBXBuildFile; fileRef = A105505B5A7F93B104357983D2FD0103 /* GMUGeometryCollection.m */; };
		D4A0BD6E456FEB5863022168E5AFABFB /* GMUKMLParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F96C1FC1A9ACF8AF887EFA89E5175EF /* GMUKMLParser.h */; settings = {ATTRIBUTES = (Public, ); }; };
		D4CB4D76A7EECFEA1688B08BA8A34941 /* GMUWrappingDictionaryKey.m in Sources */ = {isa = PBXBuildFile; fileRef = 73B55A27FD1BCD9FCFB594735D62B37E /* GMUWrappingDictionaryKey.m */; };
		D5B66D6EF8E2061ECF6FA00CBFA88499 /* GMUGeometryRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 463D8C0593B8D62BAEA905DA689B427F /* GMUGeometryRenderer.h */; settings = {ATTRIBUTES = (Public, ); }; };
		D6B2983389480F48F27A0704EEB5DC81 /* RetryPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25E422C2CDB394D8AD89288A0770A80A /* RetryPolicy.swift */; };
		D92E08DFD5C09C0BB6899A90D8D6EF3D /* GQTBounds.h in Headers */ = {isa = PBXBuildFile; fileRef = 87841B5E4DDA85CCD038E4F2CFFA66BD /* GQTBounds.h */; settings = {ATTRIBUTES = (Public, ); }; };
		DD5A6A1EECC38AB2BC739FC0FFA29BC0 /* GMUSimpleClusterAlgorithm.m in Sources */ = {isa = PBXBuildFile; fileRef = 7776E5AFC98EF84727508180F36AB9D2 /* GMUSimpleClusterAlgorithm.m */; };
		E07BD425C4EA9ADF15DDFCDB10D0B2FB /* MultipartUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 943BF3AE1A85B0C2F45A531F3D987A99 /* MultipartUpload.swift */; };
		E4E12208D5246E64B7E6CCAE987ADB03 /* URLRequest+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 475C71BA85AD9FDE6E3C4E70D938EBE3 /* URLRequest+Alamofire.swift */; };
		E9A5AC2F471699CCA516952A5FEB990B /* DispatchQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67F4701909B0BE8E53954E509A078A9D /* DispatchQueue+Alamofire.swift */; };
		EAC9AD000371B916841F111E2DD1F50F /* GQTPointQuadTreeItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EDE850D33EB42514C9469CEE95C0D09 /* GQTPointQuadTreeItem.h */; settings = {ATTRIBUTES = (Public, ); }; };
		EB14D38F43945694C0EA794E208C280B /* GMUGeometryContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 59679C7B17CFD91B1582844DCE27C8EE /* GMUGeometryContainer.h */; settings = {ATTRIBUTES = (Public, ); }; };
		F03547B0792049EEE6829CC76B7B6F03 /* GMULineString.m in Sources */ = {isa = PBXBuildFile; fileRef = 86448828884537069E904956F0B7B09F /* GMULineString.m */; };
		F71789DC91A75033EFB79DB828676451 /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38CF52CE209C0B69D87352870100787C /* Response.swift */; };
		FA6AC1583F0A10AE9B3B7F3C27750751 /* GMUClusterManager+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 136FA40661E66FBD5934354572FDDB2A /* GMUClusterManager+Testing.h */; settings = {ATTRIBUTES = (Public, ); }; };
		FE9A380C20BEE72E22B07249A5EEE810 /* GMUClusterIconGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BD118ADD1554312D67F37AFDCA28E08 /* GMUClusterIconGenerator.h */; settings = {ATTRIBUTES = (Public, ); }; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		2A41B5D33DF9F61A340800FBC8862CFB /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = E5B4BBC6DD552AC8943C7E22772FC1D3;
			remoteInfo = GoogleMaps;
		};
		36DA671AC7B31F672E7329EABE516E38 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = EAAA1AD3A8A1B59AB91319EE40752C6D;
			remoteInfo = Alamofire;
		};
		6EB1C2DD30E6564FC3135C9E8002D8F7 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = E5B4BBC6DD552AC8943C7E22772FC1D3;
			remoteInfo = GoogleMaps;
		};
		84ED0303E64A8AE0019C8ED4E4100B16 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = A5EEC7C2AA5BC7C67CFA2C7578AB62C7;
			remoteInfo = "Google-Maps-iOS-Utils";
		};
		893E440CC930AD559414CDA37C9DD79C /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 0C1885900810601510E0C632060FAF26;
			remoteInfo = GooglePlaces;
		};
		BF0C356659B997EAD399AE2462796B0C /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = E5B4BBC6DD552AC8943C7E22772FC1D3;
			remoteInfo = GoogleMaps;
		};
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
		018995424606F2620D54F2A065A8267C /* Pods-ProductosPY-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ProductosPY-frameworks.sh"; sourceTree = "<group>"; };
		02EE6CAC1CCC06D19C21A11ACC2DBC1A /* Alamofire-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-prefix.pch"; sourceTree = "<group>"; };
		045FC9D236BB4DB741E66E1626A12B76 /* Pods-ProductosPY-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ProductosPY-resources.sh"; sourceTree = "<group>"; };
		0470913171E5F8BD817636C2D90FE14D /* AFError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AFError.swift; path = Source/AFError.swift; sourceTree = "<group>"; };
		0692F53A6EB4E64A8F0FE7E1129B2E61 /* Google-Maps-iOS-Utils-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Google-Maps-iOS-Utils-dummy.m"; sourceTree = "<group>"; };
		06B87E202250E97D53894F5B86E89477 /* Google-Maps-iOS-Utils.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Google-Maps-iOS-Utils.release.xcconfig"; sourceTree = "<group>"; };
		085690281F76F4AC35EB3B37212FD173 /* GMUGeometryRenderer+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GMUGeometryRenderer+Testing.h"; path = "src/Geometry/GMUGeometryRenderer+Testing.h"; sourceTree = "<group>"; };
		08F5141BBE5C8EF3D060F37257224FB7 /* GMUHeatmapTileLayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GMUHeatmapTileLayer.m; path = src/Heatmap/GMUHeatmapTileLayer.m; sourceTree = "<group>"; };
		0EF271CE684AEA0DEC2B555A21F5CBDA /* Pods-ProductosPY.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ProductosPY.debug.xcconfig"; sourceTree = "<group>"; };
		136FA40661E66FBD5934354572FDDB2A /* GMUClusterManager+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GMUClusterManager+Testing.h"; path = "src/Clustering/GMUClusterManager+Testing.h"; sourceTree = "<group>"; };
		16387C33EE2857D75177733548D41EF3 /* HTTPMethod.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPMethod.swift; path = Source/HTTPMethod.swift; sourceTree = "<group>"; };
		1668E8F00B2D02925EE62383D650BB05 /* GMUPair.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUPair.h; path = src/Geometry/Model/GMUPair.h; sourceTree = "<group>"; };
		17D8F8819A3FCCBFB3ACDBD9BAE83B08 /* Alamofire.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Alamofire.modulemap; sourceTree = "<group>"; };
		1836B043CF6004E39E9650A7B06956F5 /* ServerTrustEvaluation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustEvaluation.swift; path = Source/ServerTrustEvaluation.swift; sourceTree = "<group>"; };
		18402C611BB72F72F40D6CED99AFCE12 /* Google-Maps-iOS-Utils-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Google-Maps-iOS-Utils-prefix.pch"; sourceTree = "<group>"; };
		1CB95C2770334A77D289104048523E68 /* AlamofireExtended.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlamofireExtended.swift; path = Source/AlamofireExtended.swift; sourceTree = "<group>"; };
		1FB7D44EF0E364F69490B1C7C236F195 /* Pods-ProductosPY-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ProductosPY-umbrella.h"; sourceTree = "<group>"; };
		222DAEF0D819F359AFCFF3D4F927E8A7 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
		22C36638C405F9D2D7B0BD46E3F0967B /* GMULineString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMULineString.h; path = src/Geometry/Model/GMULineString.h; sourceTree = "<group>"; };
		25E422C2CDB394D8AD89288A0770A80A /* RetryPolicy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryPolicy.swift; path = Source/RetryPolicy.swift; sourceTree = "<group>"; };
		28569415F9DDD24077AD7FD62E5193A2 /* GQTPointQuadTree.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GQTPointQuadTree.m; path = src/QuadTree/GQTPointQuadTree.m; sourceTree = "<group>"; };
		2A55BB5D61F80B4D72D3CF71F0A8AA31 /* GooglePlaces.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = GooglePlaces.bundle; path = Frameworks/GooglePlaces.framework/Resources/GooglePlaces.bundle; sourceTree = "<group>"; };
		2CFE72A59086DB4916CED8B8A9E150AE /* Alamofire-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Alamofire-Info.plist"; sourceTree = "<group>"; };
		2D462C05421F4C51D12C1C12817DC01B /* GMUPolygon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUPolygon.h; path = src/Geometry/Model/GMUPolygon.h; sourceTree = "<group>"; };
		2EDE850D33EB42514C9469CEE95C0D09 /* GQTPointQuadTreeItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GQTPointQuadTreeItem.h; path = src/QuadTree/GQTPointQuadTreeItem.h; sourceTree = "<group>"; };
		31CA5FBE4D19BCD460F60F8326C8C42E /* GMUClusterManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUClusterManager.h; path = src/Clustering/GMUClusterManager.h; sourceTree = "<group>"; };
		33685DBB53853EBA62D8586A85BFE632 /* GooglePlaces.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GooglePlaces.debug.xcconfig; sourceTree = "<group>"; };
		38CF52CE209C0B69D87352870100787C /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Response.swift; sourceTree = "<group>"; };
		39A6F352EE5C522B21C7190947EAA7EC /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkReachabilityManager.swift; path = Source/NetworkReachabilityManager.swift; sourceTree = "<group>"; };
		3BD118ADD1554312D67F37AFDCA28E08 /* GMUClusterIconGenerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUClusterIconGenerator.h; path = src/Clustering/View/GMUClusterIconGenerator.h; sourceTree = "<group>"; };
		3D669A84D4751E18E680ED15B2F9348A /* Pods-ProductosPY-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ProductosPY-acknowledgements.markdown"; sourceTree = "<group>"; };
		3F5B0F8731A4E8526EB60BB7F0C4086D /* GoogleMapsCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleMapsCore.framework; path = Maps/Frameworks/GoogleMapsCore.framework; sourceTree = "<group>"; };
		40E0A7525CF243E5C54C64CB47065AF7 /* GMUPair.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GMUPair.m; path = src/Geometry/Model/GMUPair.m; sourceTree = "<group>"; };
		4177CDFC747A668317CB195FB640D892 /* GMUPlacemark.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GMUPlacemark.m; path = src/Geometry/Model/GMUPlacemark.m; sourceTree = "<group>"; };
		41E8DFD15F1E56043CC42AC3CEAD039E /* GMUDefaultClusterIconGenerator+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GMUDefaultClusterIconGenerator+Testing.h"; path = "src/Clustering/View/GMUDefaultClusterIconGenerator+Testing.h"; sourceTree = "<group>"; };
		441E627A9DB0A80780F363C1001F27F2 /* GMUGroundOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUGroundOverlay.h; path = src/Geometry/Model/GMUGroundOverlay.h; sourceTree = "<group>"; };
		446C2364A4B6FF3D0B9273CD0B3F9D36 /* Pods_ProductosPY.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_ProductosPY.framework; path = "Pods-ProductosPY.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
		4570018A44C8420628B97C8DEB501A10 /* GMUStyleMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUStyleMap.h; path = src/Geometry/Model/GMUStyleMap.h; sourceTree = "<group>"; };
		460FEC51F8B83C36A9F66483E068035C /* Google-Maps-iOS-Utils.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Google-Maps-iOS-Utils.debug.xcconfig"; sourceTree = "<group>"; };
		463D8C0593B8D62BAEA905DA689B427F /* GMUGeometryRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUGeometryRenderer.h; path = src/Geometry/GMUGeometryRenderer.h; sourceTree = "<group>"; };
		475C71BA85AD9FDE6E3C4E70D938EBE3 /* URLRequest+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLRequest+Alamofire.swift"; path = "Source/URLRequest+Alamofire.swift"; sourceTree = "<group>"; };
		4808DD5BB696DAD4BA2A22F8ADAC7E39 /* GMUDefaultClusterRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GMUDefaultClusterRenderer.m; path = src/Clustering/View/GMUDefaultClusterRenderer.m; sourceTree = "<group>"; };
		48685635464E4E04DBAD431275750780 /* GMUDefaultClusterIconGenerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUDefaultClusterIconGenerator.h; path = src/Clustering/View/GMUDefaultClusterIconGenerator.h; sourceTree = "<group>"; };
		4944A0A1EECB6326526BBD8594BBCA27 /* GMUPoint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GMUPoint.m; path = src/Geometry/Model/GMUPoint.m; sourceTree = "<group>"; };
		4DF1345302BF7CE049A0F22CB711B71D /* GMUPlacemark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUPlacemark.h; path = src/Geometry/Model/GMUPlacemark.h; sourceTree = "<group>"; };
		53362E976B7BBF98339337AAC5476081 /* GMUWeightedLatLng.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUWeightedLatLng.h; path = src/Heatmap/GMUWeightedLatLng.h; sourceTree = "<group>"; };
		56FD8C19D6F3A302E2625038C9FDF360 /* GMUFeature.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUFeature.h; path = src/Geometry/Model/GMUFeature.h; sourceTree = "<group>"; };
		57DFD5F9A718CADCDF977E6AC23C3217 /* GMUDefaultClusterIconGenerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GMUDefaultClusterIconGenerator.m; path = src/Clustering/View/GMUDefaultClusterIconGenerator.m; sourceTree = "<group>"; };
		59679C7B17CFD91B1582844DCE27C8EE /* GMUGeometryContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUGeometryContainer.h; path = src/Geometry/Model/GMUGeometryContainer.h; sourceTree = "<group>"; };
		5BFD333D9C6D2525A8529861D6CDCC93 /* GMUGeometry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUGeometry.h; path = src/Geometry/Model/GMUGeometry.h; sourceTree = "<group>"; };
		5CA9E6FE438CE79CD76FA3B34CC95836 /* GoogleMapsUtils.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GoogleMapsUtils.framework; path = "Google-Maps-iOS-Utils.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
		5D797E9A5C5782CE845840781FA1CC81 /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Alamofire.framework; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; };
		5E4FAF897FD47617D04333B1EE232051 /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Request.swift; path = Source/Request.swift; sourceTree = "<group>"; };
		6314D81E5E77A19B27E8B26BBA30F9CA /* Alamofire-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-dummy.m"; sourceTree = "<group>"; };
		67A7465CF8BBBFBF5C96E86025BDA1EA /* URLEncodedFormEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLEncodedFormEncoder.swift; path = Source/URLEncodedFormEncoder.swift; sourceTree = "<group>"; };
		67F4701909B0BE8E53954E509A078A9D /* DispatchQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Alamofire.swift"; path = "Source/DispatchQueue+Alamofire.swift"; sourceTree = "<group>"; };
		6945C8BFFFB511EDDF4B3C058B9E58C8 /* GMUWrappingDictionaryKey.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUWrappingDictionaryKey.h; path = src/Clustering/Algo/GMUWrappingDictionaryKey.h; sourceTree = "<group>"; };
		6C3A8D937D0D73F8D560DDE8A5D42202 /* GMUStyleMap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GMUStyleMap.m; path = src/Geometry/Model/GMUStyleMap.m; sourceTree = "<group>"; };
		6D1D7968AF420C6F7584D3F202685288 /* Alamofire.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.debug.xcconfig; sourceTree = "<group>"; };
		6F96C1FC1A9ACF8AF887EFA89E5175EF /* GMUKMLParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUKMLParser.h; path = src/Geometry/GMUKMLParser.h; sourceTree = "<group>"; };
		70518AB2437E2C2B95F5D68F20F3B0C4 /* GQTPointQuadTreeChild.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GQTPointQuadTreeChild.m; path = src/QuadTree/GQTPointQuadTreeChild.m; sourceTree = "<group>"; };
		73B55A27FD1BCD9FCFB594735D62B37E /* GMUWrappingDictionaryKey.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GMUWrappingDictionaryKey.m; path = src/Clustering/Algo/GMUWrappingDictionaryKey.m; sourceTree = "<group>"; };
		75CDE62DB2144DCD54B361A79DC6AA05 /* Pods-ProductosPY.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ProductosPY.release.xcconfig"; sourceTree = "<group>"; };
		765AD0E2CB2E5E9CBFB68F7D8D562B31 /* GMUGeoJSONParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUGeoJSONParser.h; path = src/Geometry/GMUGeoJSONParser.h; sourceTree = "<group>"; };
		7776E5AFC98EF84727508180F36AB9D2 /* GMUSimpleClusterAlgorithm.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GMUSimpleClusterAlgorithm.m; path = src/Clustering/Algo/GMUSimpleClusterAlgorithm.m; sourceTree = "<group>"; };
		7910345EFA02EB980119663FC0118C4C /* GMUGeometryRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GMUGeometryRenderer.m; path = src/Geometry/GMUGeometryRenderer.m; sourceTree = "<group>"; };
		7F15D37A836D795619ACE813F984EE90 /* GooglePlaces.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GooglePlaces.release.xcconfig; sourceTree = "<group>"; };
		7FFB2CF74C9E444F185C502BF7F038AF /* GMUGeoJSONParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GMUGeoJSONParser.m; path = src/Geometry/GMUGeoJSONParser.m; sourceTree = "<group>"; };
		81F771C81527652BBC3CBE3BD2D5BFB7 /* Google-Maps-iOS-Utils-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Google-Maps-iOS-Utils-umbrella.h"; sourceTree = "<group>"; };
		824D9B018A25B4CD36B515A21A2C66BB /* Alamofire-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-umbrella.h"; sourceTree = "<group>"; };
		826C4BB1BCAA99C2C306EF73D3214A14 /* Validation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Validation.swift; path = Source/Validation.swift; sourceTree = "<group>"; };
		86448828884537069E904956F0B7B09F /* GMULineString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GMULineString.m; path = src/Geometry/Model/GMULineString.m; sourceTree = "<group>"; };
		86E35644E17C50C2B88F0E4CD3FE19DA /* RedirectHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RedirectHandler.swift; path = Source/RedirectHandler.swift; sourceTree = "<group>"; };
		87841B5E4DDA85CCD038E4F2CFFA66BD /* GQTBounds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GQTBounds.h; path = src/QuadTree/GQTBounds.h; sourceTree = "<group>"; };
		88BB6C294CAE16A3F4D6DDD2F323F528 /* Google-Maps-iOS-Utils.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Google-Maps-iOS-Utils.modulemap"; sourceTree = "<group>"; };
		890078C2FF31BA357388E66C927421F5 /* GQTPointQuadTree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GQTPointQuadTree.h; path = src/QuadTree/GQTPointQuadTree.h; sourceTree = "<group>"; };
		8B079F294DA5D9A879E6D53A91F51A1E /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/CFNetwork.framework; sourceTree = DEVELOPER_DIR; };
		8BD5DDC2DD330ABBC1B27AA9F95D3631 /* GMUFeature.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GMUFeature.m; path = src/Geometry/Model/GMUFeature.m; sourceTree = "<group>"; };
		8DB0E560CF2BBC70B65382AFDB82BDC8 /* GQTPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GQTPoint.h; path = src/QuadTree/GQTPoint.h; sourceTree = "<group>"; };
		8F5BE0412AD8EF93DC5EA8B7C08818B0 /* Protector.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Protector.swift; path = Source/Protector.swift; sourceTree = "<group>"; };
		90507B1B6D2E4DA381F4476E153BC866 /* Pods-ProductosPY-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ProductosPY-Info.plist"; sourceTree = "<group>"; };
		9259849B5E110806A283B82FE6A64D26 /* GMUGeometryCollection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUGeometryCollection.h; path = src/Geometry/Model/GMUGeometryCollection.h; sourceTree = "<group>"; };
		931CF34C7A6EF9D2CA2359F7FAD0AE01 /* GMUGridBasedClusterAlgorithm.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GMUGridBasedClusterAlgorithm.m; path = src/Clustering/Algo/GMUGridBasedClusterAlgorithm.m; sourceTree = "<group>"; };
		943BF3AE1A85B0C2F45A531F3D987A99 /* MultipartUpload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartUpload.swift; path = Source/MultipartUpload.swift; sourceTree = "<group>"; };
		97425D27470BCB0CF4923830C1F00971 /* Pods-ProductosPY.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ProductosPY.modulemap"; sourceTree = "<group>"; };
		9C168E9290609458FCB33D00C6EA814E /* GMUGroundOverlay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GMUGroundOverlay.m; path = src/Geometry/Model/GMUGroundOverlay.m; sourceTree = "<group>"; };
		9D07AEFFFF1B7416A5A8C912CD81C756 /* Pods-ProductosPY-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ProductosPY-acknowledgements.plist"; sourceTree = "<group>"; };
		9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
		A065556B268C5AFE1B15918CC0A2F4EE /* GMUClusterAlgorithm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUClusterAlgorithm.h; path = src/Clustering/Algo/GMUClusterAlgorithm.h; sourceTree = "<group>"; };
		A105505B5A7F93B104357983D2FD0103 /* GMUGeometryCollection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GMUGeometryCollection.m; path = src/Geometry/Model/GMUGeometryCollection.m; sourceTree = "<group>"; };
		A3072F3163953FC4A9326F701684A1F7 /* GMUNonHierarchicalDistanceBasedAlgorithm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUNonHierarchicalDistanceBasedAlgorithm.h; path = src/Clustering/Algo/GMUNonHierarchicalDistanceBasedAlgorithm.h; sourceTree = "<group>"; };
		AB523041AD37AE051E0E81DA5296D8CD /* URLConvertible+URLRequestConvertible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLConvertible+URLRequestConvertible.swift"; path = "Source/URLConvertible+URLRequestConvertible.swift"; sourceTree = "<group>"; };
		AB61C3E8DF4DC93D53DCE30BA373C8C5 /* GMUStaticCluster.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GMUStaticCluster.m; path = src/Clustering/GMUStaticCluster.m; sourceTree = "<group>"; };
		AB9CF6C7F866F8824E089698965CAC44 /* GMUWeightedLatLng.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GMUWeightedLatLng.m; path = src/Heatmap/GMUWeightedLatLng.m; sourceTree = "<group>"; };
		AD0212690AAC3E4ACE9A4AE674B30961 /* GMUClusterItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUClusterItem.h; path = src/Clustering/GMUClusterItem.h; sourceTree = "<group>"; };
		AE2CD1EE8FE2518E089A5C940F47599D /* GMUNonHierarchicalDistanceBasedAlgorithm.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GMUNonHierarchicalDistanceBasedAlgorithm.m; path = src/Clustering/Algo/GMUNonHierarchicalDistanceBasedAlgorithm.m; sourceTree = "<group>"; };
		B415744A81F9A13705C031EB4AFB692F /* URLSessionConfiguration+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLSessionConfiguration+Alamofire.swift"; path = "Source/URLSessionConfiguration+Alamofire.swift"; sourceTree = "<group>"; };
		B6CDCEAB74DC761D56282BE32749FF46 /* CachedResponseHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CachedResponseHandler.swift; path = Source/CachedResponseHandler.swift; sourceTree = "<group>"; };
		B7A9F407054B0D56C55A5D283CCB1A69 /* GoogleMaps.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = GoogleMaps.bundle; path = Maps/Frameworks/GoogleMaps.framework/Resources/GoogleMaps.bundle; sourceTree = "<group>"; };
		B7FC57D610EF2C139CAAEB54FB215382 /* GoogleMaps.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMaps.debug.xcconfig; sourceTree = "<group>"; };
		B8A988926B41DB9CCFA3A9E45D67647F /* GMUHeatmapTileLayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUHeatmapTileLayer.h; path = src/Heatmap/GMUHeatmapTileLayer.h; sourceTree = "<group>"; };
		B8BC73624F20C0D13D9F96859F6F21A7 /* GMUClusterManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GMUClusterManager.m; path = src/Clustering/GMUClusterManager.m; sourceTree = "<group>"; };
		B8C52A0F8BF4BDF06044F78D2B3F1E49 /* GMUStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GMUStyle.m; path = src/Geometry/Model/GMUStyle.m; sourceTree = "<group>"; };
		BAFF5178299081BDC9BAAA067092782E /* Session.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Session.swift; path = Source/Session.swift; sourceTree = "<group>"; };
		BC3559AD43498D0318355CBAC4610FAA /* Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Alamofire.swift; path = Source/Alamofire.swift; sourceTree = "<group>"; };
		C05A0AE31AD6283457EF7BE610CE933E /* GMUCluster.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUCluster.h; path = src/Clustering/GMUCluster.h; sourceTree = "<group>"; };
		C138DBD8D9811B6538120A36C77D948A /* GMUPolygon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GMUPolygon.m; path = src/Geometry/Model/GMUPolygon.m; sourceTree = "<group>"; };
		C2A3A6CC9BD14F3A5E3D54C20B4DB334 /* GoogleMapsBase.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleMapsBase.framework; path = Base/Frameworks/GoogleMapsBase.framework; sourceTree = "<group>"; };
		C58DFC323A1D00905391AC7CC1C60598 /* HTTPHeaders.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPHeaders.swift; path = Source/HTTPHeaders.swift; sourceTree = "<group>"; };
		C5EE4AF46FBF1E1BB2C8AF3476AFD1A6 /* EventMonitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EventMonitor.swift; path = Source/EventMonitor.swift; sourceTree = "<group>"; };
		C72BA217A2202A36B10845576046E34C /* GMUKMLParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GMUKMLParser.m; path = src/Geometry/GMUKMLParser.m; sourceTree = "<group>"; };
		C7D0B5F7FD1FF55198E20C93ADEF0817 /* GMUGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUGradient.h; path = src/Heatmap/GMUGradient.h; sourceTree = "<group>"; };
		CA986BAAF4F1397563D846A5B0BAB773 /* Alamofire.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.release.xcconfig; sourceTree = "<group>"; };
		CC533C5422195A9B17AB377F7C4042AE /* ResponseSerialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerialization.swift; path = Source/ResponseSerialization.swift; sourceTree = "<group>"; };
		CE9C7DC971E19AD4AA7F3DB8798D0A58 /* GoogleMaps.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMaps.release.xcconfig; sourceTree = "<group>"; };
		CFA94513E74C92CA47A935391EBD4AD1 /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Notifications.swift; sourceTree = "<group>"; };
		D2C3F52CF83AD164811FA449AA5793AF /* ParameterEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoder.swift; path = Source/ParameterEncoder.swift; sourceTree = "<group>"; };
		D326586EF1D59F0F474DB21CA8FE6769 /* GooglePlaces.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GooglePlaces.framework; path = Frameworks/GooglePlaces.framework; sourceTree = "<group>"; };
		D412EA5D825FA653997D1B5DBCE37B33 /* ParameterEncoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoding.swift; path = Source/ParameterEncoding.swift; sourceTree = "<group>"; };
		D56E84B2F1E7B8E279A43A6B95358324 /* GMUSimpleClusterAlgorithm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUSimpleClusterAlgorithm.h; path = src/Clustering/Algo/GMUSimpleClusterAlgorithm.h; sourceTree = "<group>"; };
		D5BB1690EA0051C601CB7D7D7198F9AC /* Result+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Result+Alamofire.swift"; path = "Source/Result+Alamofire.swift"; sourceTree = "<group>"; };
		D64239F8542DB542A4627FC4BA91B238 /* RequestTaskMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestTaskMap.swift; path = Source/RequestTaskMap.swift; sourceTree = "<group>"; };
		D6DB9626D8D8D3FFA5701B1D9311D1DC /* GQTPointQuadTreeChild.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GQTPointQuadTreeChild.h; path = src/QuadTree/GQTPointQuadTreeChild.h; sourceTree = "<group>"; };
		D7EA8F643A5CD180525ED32998C51AC8 /* GMUClusterRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUClusterRenderer.h; path = src/Clustering/View/GMUClusterRenderer.h; sourceTree = "<group>"; };
		DDCD994E0F58C0288F0558F2809F1245 /* GoogleMaps.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleMaps.framework; path = Maps/Frameworks/GoogleMaps.framework; sourceTree = "<group>"; };
		E3FAAD7D6792C3619859BD3EF0EB5065 /* GMUStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUStyle.h; path = src/Geometry/Model/GMUStyle.h; sourceTree = "<group>"; };
		EB4DEE4258DD2C23A922E9A12D1CDDD3 /* Pods-ProductosPY-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ProductosPY-dummy.m"; sourceTree = "<group>"; };
		ED41FB255023CEA9D301935A7B7BF02A /* GMUDefaultClusterRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUDefaultClusterRenderer.h; path = src/Clustering/View/GMUDefaultClusterRenderer.h; sourceTree = "<group>"; };
		EEBF6A83C6193F2EBDCA896D5133EE42 /* GMUPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUPoint.h; path = src/Geometry/Model/GMUPoint.h; sourceTree = "<group>"; };
		F073C76708B6A37E2692E32F685A99A9 /* GMUStaticCluster.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUStaticCluster.h; path = src/Clustering/GMUStaticCluster.h; sourceTree = "<group>"; };
		F229A62EBE3DED272F8E4551ECF58469 /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Source/MultipartFormData.swift; sourceTree = "<group>"; };
		F36BF563D6B758A9AACF69600A6381E0 /* RequestInterceptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestInterceptor.swift; path = Source/RequestInterceptor.swift; sourceTree = "<group>"; };
		F3FFFE6E4D57E64B966E312B8A19FEC2 /* OperationQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "OperationQueue+Alamofire.swift"; path = "Source/OperationQueue+Alamofire.swift"; sourceTree = "<group>"; };
		F577EEA88330AB31532B57FE0698393E /* GMUGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GMUGradient.m; path = src/Heatmap/GMUGradient.m; sourceTree = "<group>"; };
		F7D60C2923C5FCD7E7F24F09C5B2E5D3 /* Google-Maps-iOS-Utils-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Google-Maps-iOS-Utils-Info.plist"; sourceTree = "<group>"; };
		F80A40E52D364F95EF6A9476D3FB6682 /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Source/SessionDelegate.swift; sourceTree = "<group>"; };
		F9C37A351E75E0AED124AFBF47D09F6F /* GMUGridBasedClusterAlgorithm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMUGridBasedClusterAlgorithm.h; path = src/Clustering/Algo/GMUGridBasedClusterAlgorithm.h; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		5E1B497A5D3ECD3AC40C3C17C5FC28D8 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				4246DDBC277DC9C7EF6A4E137E00E2CA /* Foundation.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		8B0D8633F410345F93419B8C3D7B6916 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				97A168DFB6DB61770CE2DBF4FD39AA8D /* CFNetwork.framework in Frameworks */,
				BE82AE980F8C7EE28A6448959194F93A /* Foundation.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		F78A9E71E1AEE3DBF17AFB4F92D874C9 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				C10B079A50364FAC9845BB6D74F5D780 /* Foundation.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		0531BBBAA1EC91C766C8B2FA15B53317 /* Resources */ = {
			isa = PBXGroup;
			children = (
				2A55BB5D61F80B4D72D3CF71F0A8AA31 /* GooglePlaces.bundle */,
			);
			name = Resources;
			sourceTree = "<group>";
		};
		0A5E2551047DB1BFDE7749BF06E3E713 /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				D326586EF1D59F0F474DB21CA8FE6769 /* GooglePlaces.framework */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		142D489EB06E1A2C26E8235825A9602B /* GoogleMaps */ = {
			isa = PBXGroup;
			children = (
				D4CD5FE47826C0456B884CB99AB9DB13 /* Base */,
				CB77EDF3F4AB94B3D51C2340B87FD9C3 /* Maps */,
				FB81623E28D80C45E8C6F16FBFBB4498 /* Support Files */,
			);
			name = GoogleMaps;
			path = GoogleMaps;
			sourceTree = "<group>";
		};
		1628BF05B4CAFDCC3549A101F5A10A17 /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				E34DCC8E2CF86B8D72232914781A840D /* iOS */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		3651D6C600A3F9910E19926950660CEB /* Alamofire */ = {
			isa = PBXGroup;
			children = (
				0470913171E5F8BD817636C2D90FE14D /* AFError.swift */,
				BC3559AD43498D0318355CBAC4610FAA /* Alamofire.swift */,
				1CB95C2770334A77D289104048523E68 /* AlamofireExtended.swift */,
				B6CDCEAB74DC761D56282BE32749FF46 /* CachedResponseHandler.swift */,
				67F4701909B0BE8E53954E509A078A9D /* DispatchQueue+Alamofire.swift */,
				C5EE4AF46FBF1E1BB2C8AF3476AFD1A6 /* EventMonitor.swift */,
				C58DFC323A1D00905391AC7CC1C60598 /* HTTPHeaders.swift */,
				16387C33EE2857D75177733548D41EF3 /* HTTPMethod.swift */,
				F229A62EBE3DED272F8E4551ECF58469 /* MultipartFormData.swift */,
				943BF3AE1A85B0C2F45A531F3D987A99 /* MultipartUpload.swift */,
				39A6F352EE5C522B21C7190947EAA7EC /* NetworkReachabilityManager.swift */,
				CFA94513E74C92CA47A935391EBD4AD1 /* Notifications.swift */,
				F3FFFE6E4D57E64B966E312B8A19FEC2 /* OperationQueue+Alamofire.swift */,
				D2C3F52CF83AD164811FA449AA5793AF /* ParameterEncoder.swift */,
				D412EA5D825FA653997D1B5DBCE37B33 /* ParameterEncoding.swift */,
				8F5BE0412AD8EF93DC5EA8B7C08818B0 /* Protector.swift */,
				86E35644E17C50C2B88F0E4CD3FE19DA /* RedirectHandler.swift */,
				5E4FAF897FD47617D04333B1EE232051 /* Request.swift */,
				F36BF563D6B758A9AACF69600A6381E0 /* RequestInterceptor.swift */,
				D64239F8542DB542A4627FC4BA91B238 /* RequestTaskMap.swift */,
				38CF52CE209C0B69D87352870100787C /* Response.swift */,
				CC533C5422195A9B17AB377F7C4042AE /* ResponseSerialization.swift */,
				D5BB1690EA0051C601CB7D7D7198F9AC /* Result+Alamofire.swift */,
				25E422C2CDB394D8AD89288A0770A80A /* RetryPolicy.swift */,
				1836B043CF6004E39E9650A7B06956F5 /* ServerTrustEvaluation.swift */,
				BAFF5178299081BDC9BAAA067092782E /* Session.swift */,
				F80A40E52D364F95EF6A9476D3FB6682 /* SessionDelegate.swift */,
				AB523041AD37AE051E0E81DA5296D8CD /* URLConvertible+URLRequestConvertible.swift */,
				67A7465CF8BBBFBF5C96E86025BDA1EA /* URLEncodedFormEncoder.swift */,
				475C71BA85AD9FDE6E3C4E70D938EBE3 /* URLRequest+Alamofire.swift */,
				B415744A81F9A13705C031EB4AFB692F /* URLSessionConfiguration+Alamofire.swift */,
				826C4BB1BCAA99C2C306EF73D3214A14 /* Validation.swift */,
				E4B73F3437A713320266B13F2696C2DF /* Support Files */,
			);
			name = Alamofire;
			path = Alamofire;
			sourceTree = "<group>";
		};
		46C313D9654D620EB04AE1605B389424 /* Heatmap */ = {
			isa = PBXGroup;
			children = (
				C7D0B5F7FD1FF55198E20C93ADEF0817 /* GMUGradient.h */,
				F577EEA88330AB31532B57FE0698393E /* GMUGradient.m */,
				B8A988926B41DB9CCFA3A9E45D67647F /* GMUHeatmapTileLayer.h */,
				08F5141BBE5C8EF3D060F37257224FB7 /* GMUHeatmapTileLayer.m */,
				53362E976B7BBF98339337AAC5476081 /* GMUWeightedLatLng.h */,
				AB9CF6C7F866F8824E089698965CAC44 /* GMUWeightedLatLng.m */,
			);
			name = Heatmap;
			sourceTree = "<group>";
		};
		480538505277DDF636950267222B21D8 /* Resources */ = {
			isa = PBXGroup;
			children = (
				B7A9F407054B0D56C55A5D283CCB1A69 /* GoogleMaps.bundle */,
			);
			name = Resources;
			sourceTree = "<group>";
		};
		5486EECC59E292AE4E6E9CAD0F57EC81 /* Support Files */ = {
			isa = PBXGroup;
			children = (
				33685DBB53853EBA62D8586A85BFE632 /* GooglePlaces.debug.xcconfig */,
				7F15D37A836D795619ACE813F984EE90 /* GooglePlaces.release.xcconfig */,
			);
			name = "Support Files";
			path = "../Target Support Files/GooglePlaces";
			sourceTree = "<group>";
		};
		5614861E6B5D1C99009820B19E6C959E /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				C2A3A6CC9BD14F3A5E3D54C20B4DB334 /* GoogleMapsBase.framework */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		584E7ABA38771773A899CD5DC7868148 /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				DDCD994E0F58C0288F0558F2809F1245 /* GoogleMaps.framework */,
				3F5B0F8731A4E8526EB60BB7F0C4086D /* GoogleMapsCore.framework */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		6081A573A18F6E0E48497024BFB09222 /* Geometry */ = {
			isa = PBXGroup;
			children = (
				56FD8C19D6F3A302E2625038C9FDF360 /* GMUFeature.h */,
				8BD5DDC2DD330ABBC1B27AA9F95D3631 /* GMUFeature.m */,
				765AD0E2CB2E5E9CBFB68F7D8D562B31 /* GMUGeoJSONParser.h */,
				7FFB2CF74C9E444F185C502BF7F038AF /* GMUGeoJSONParser.m */,
				5BFD333D9C6D2525A8529861D6CDCC93 /* GMUGeometry.h */,
				9259849B5E110806A283B82FE6A64D26 /* GMUGeometryCollection.h */,
				A105505B5A7F93B104357983D2FD0103 /* GMUGeometryCollection.m */,
				59679C7B17CFD91B1582844DCE27C8EE /* GMUGeometryContainer.h */,
				463D8C0593B8D62BAEA905DA689B427F /* GMUGeometryRenderer.h */,
				7910345EFA02EB980119663FC0118C4C /* GMUGeometryRenderer.m */,
				085690281F76F4AC35EB3B37212FD173 /* GMUGeometryRenderer+Testing.h */,
				441E627A9DB0A80780F363C1001F27F2 /* GMUGroundOverlay.h */,
				9C168E9290609458FCB33D00C6EA814E /* GMUGroundOverlay.m */,
				6F96C1FC1A9ACF8AF887EFA89E5175EF /* GMUKMLParser.h */,
				C72BA217A2202A36B10845576046E34C /* GMUKMLParser.m */,
				22C36638C405F9D2D7B0BD46E3F0967B /* GMULineString.h */,
				86448828884537069E904956F0B7B09F /* GMULineString.m */,
				1668E8F00B2D02925EE62383D650BB05 /* GMUPair.h */,
				40E0A7525CF243E5C54C64CB47065AF7 /* GMUPair.m */,
				4DF1345302BF7CE049A0F22CB711B71D /* GMUPlacemark.h */,
				4177CDFC747A668317CB195FB640D892 /* GMUPlacemark.m */,
				EEBF6A83C6193F2EBDCA896D5133EE42 /* GMUPoint.h */,
				4944A0A1EECB6326526BBD8594BBCA27 /* GMUPoint.m */,
				2D462C05421F4C51D12C1C12817DC01B /* GMUPolygon.h */,
				C138DBD8D9811B6538120A36C77D948A /* GMUPolygon.m */,
				E3FAAD7D6792C3619859BD3EF0EB5065 /* GMUStyle.h */,
				B8C52A0F8BF4BDF06044F78D2B3F1E49 /* GMUStyle.m */,
				4570018A44C8420628B97C8DEB501A10 /* GMUStyleMap.h */,
				6C3A8D937D0D73F8D560DDE8A5D42202 /* GMUStyleMap.m */,
			);
			name = Geometry;
			sourceTree = "<group>";
		};
		70FCA4AD8DBFFC2ED9C999A716257F9A /* Google-Maps-iOS-Utils */ = {
			isa = PBXGroup;
			children = (
				D117AEA37CC9C4ABEAF4E53E1B513ABB /* Clustering */,
				6081A573A18F6E0E48497024BFB09222 /* Geometry */,
				46C313D9654D620EB04AE1605B389424 /* Heatmap */,
				A31D65EA7BA4981D979627CF5F89A0F3 /* QuadTree */,
				D8DE3988D19E5980B8B6D91F086EA862 /* Support Files */,
			);
			name = "Google-Maps-iOS-Utils";
			path = "Google-Maps-iOS-Utils";
			sourceTree = "<group>";
		};
		A31D65EA7BA4981D979627CF5F89A0F3 /* QuadTree */ = {
			isa = PBXGroup;
			children = (
				87841B5E4DDA85CCD038E4F2CFFA66BD /* GQTBounds.h */,
				8DB0E560CF2BBC70B65382AFDB82BDC8 /* GQTPoint.h */,
				890078C2FF31BA357388E66C927421F5 /* GQTPointQuadTree.h */,
				28569415F9DDD24077AD7FD62E5193A2 /* GQTPointQuadTree.m */,
				D6DB9626D8D8D3FFA5701B1D9311D1DC /* GQTPointQuadTreeChild.h */,
				70518AB2437E2C2B95F5D68F20F3B0C4 /* GQTPointQuadTreeChild.m */,
				2EDE850D33EB42514C9469CEE95C0D09 /* GQTPointQuadTreeItem.h */,
			);
			name = QuadTree;
			sourceTree = "<group>";
		};
		BEF42DB34ADC551E6D2A5DEBF0329D30 /* Pods */ = {
			isa = PBXGroup;
			children = (
				3651D6C600A3F9910E19926950660CEB /* Alamofire */,
				70FCA4AD8DBFFC2ED9C999A716257F9A /* Google-Maps-iOS-Utils */,
				142D489EB06E1A2C26E8235825A9602B /* GoogleMaps */,
				C734CCFF34FCA97032AB5155FA43CE7E /* GooglePlaces */,
			);
			name = Pods;
			sourceTree = "<group>";
		};
		C28A105A7FBC01CC3E3D3695395AD4E3 /* Targets Support Files */ = {
			isa = PBXGroup;
			children = (
				EB8A11E549F6589539FA2E30A8A40269 /* Pods-ProductosPY */,
			);
			name = "Targets Support Files";
			sourceTree = "<group>";
		};
		C734CCFF34FCA97032AB5155FA43CE7E /* GooglePlaces */ = {
			isa = PBXGroup;
			children = (
				0A5E2551047DB1BFDE7749BF06E3E713 /* Frameworks */,
				0531BBBAA1EC91C766C8B2FA15B53317 /* Resources */,
				5486EECC59E292AE4E6E9CAD0F57EC81 /* Support Files */,
			);
			name = GooglePlaces;
			path = GooglePlaces;
			sourceTree = "<group>";
		};
		CB77EDF3F4AB94B3D51C2340B87FD9C3 /* Maps */ = {
			isa = PBXGroup;
			children = (
				584E7ABA38771773A899CD5DC7868148 /* Frameworks */,
				480538505277DDF636950267222B21D8 /* Resources */,
			);
			name = Maps;
			sourceTree = "<group>";
		};
		CF1408CF629C7361332E53B88F7BD30C = {
			isa = PBXGroup;
			children = (
				9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
				1628BF05B4CAFDCC3549A101F5A10A17 /* Frameworks */,
				BEF42DB34ADC551E6D2A5DEBF0329D30 /* Pods */,
				F3C8D3492307FC91B8269A87ABCF4CEA /* Products */,
				C28A105A7FBC01CC3E3D3695395AD4E3 /* Targets Support Files */,
			);
			sourceTree = "<group>";
		};
		D117AEA37CC9C4ABEAF4E53E1B513ABB /* Clustering */ = {
			isa = PBXGroup;
			children = (
				C05A0AE31AD6283457EF7BE610CE933E /* GMUCluster.h */,
				A065556B268C5AFE1B15918CC0A2F4EE /* GMUClusterAlgorithm.h */,
				3BD118ADD1554312D67F37AFDCA28E08 /* GMUClusterIconGenerator.h */,
				AD0212690AAC3E4ACE9A4AE674B30961 /* GMUClusterItem.h */,
				31CA5FBE4D19BCD460F60F8326C8C42E /* GMUClusterManager.h */,
				B8BC73624F20C0D13D9F96859F6F21A7 /* GMUClusterManager.m */,
				136FA40661E66FBD5934354572FDDB2A /* GMUClusterManager+Testing.h */,
				D7EA8F643A5CD180525ED32998C51AC8 /* GMUClusterRenderer.h */,
				48685635464E4E04DBAD431275750780 /* GMUDefaultClusterIconGenerator.h */,
				57DFD5F9A718CADCDF977E6AC23C3217 /* GMUDefaultClusterIconGenerator.m */,
				41E8DFD15F1E56043CC42AC3CEAD039E /* GMUDefaultClusterIconGenerator+Testing.h */,
				ED41FB255023CEA9D301935A7B7BF02A /* GMUDefaultClusterRenderer.h */,
				4808DD5BB696DAD4BA2A22F8ADAC7E39 /* GMUDefaultClusterRenderer.m */,
				F9C37A351E75E0AED124AFBF47D09F6F /* GMUGridBasedClusterAlgorithm.h */,
				931CF34C7A6EF9D2CA2359F7FAD0AE01 /* GMUGridBasedClusterAlgorithm.m */,
				A3072F3163953FC4A9326F701684A1F7 /* GMUNonHierarchicalDistanceBasedAlgorithm.h */,
				AE2CD1EE8FE2518E089A5C940F47599D /* GMUNonHierarchicalDistanceBasedAlgorithm.m */,
				D56E84B2F1E7B8E279A43A6B95358324 /* GMUSimpleClusterAlgorithm.h */,
				7776E5AFC98EF84727508180F36AB9D2 /* GMUSimpleClusterAlgorithm.m */,
				F073C76708B6A37E2692E32F685A99A9 /* GMUStaticCluster.h */,
				AB61C3E8DF4DC93D53DCE30BA373C8C5 /* GMUStaticCluster.m */,
				6945C8BFFFB511EDDF4B3C058B9E58C8 /* GMUWrappingDictionaryKey.h */,
				73B55A27FD1BCD9FCFB594735D62B37E /* GMUWrappingDictionaryKey.m */,
			);
			name = Clustering;
			sourceTree = "<group>";
		};
		D4CD5FE47826C0456B884CB99AB9DB13 /* Base */ = {
			isa = PBXGroup;
			children = (
				5614861E6B5D1C99009820B19E6C959E /* Frameworks */,
			);
			name = Base;
			sourceTree = "<group>";
		};
		D8DE3988D19E5980B8B6D91F086EA862 /* Support Files */ = {
			isa = PBXGroup;
			children = (
				88BB6C294CAE16A3F4D6DDD2F323F528 /* Google-Maps-iOS-Utils.modulemap */,
				0692F53A6EB4E64A8F0FE7E1129B2E61 /* Google-Maps-iOS-Utils-dummy.m */,
				F7D60C2923C5FCD7E7F24F09C5B2E5D3 /* Google-Maps-iOS-Utils-Info.plist */,
				18402C611BB72F72F40D6CED99AFCE12 /* Google-Maps-iOS-Utils-prefix.pch */,
				81F771C81527652BBC3CBE3BD2D5BFB7 /* Google-Maps-iOS-Utils-umbrella.h */,
				460FEC51F8B83C36A9F66483E068035C /* Google-Maps-iOS-Utils.debug.xcconfig */,
				06B87E202250E97D53894F5B86E89477 /* Google-Maps-iOS-Utils.release.xcconfig */,
			);
			name = "Support Files";
			path = "../Target Support Files/Google-Maps-iOS-Utils";
			sourceTree = "<group>";
		};
		E34DCC8E2CF86B8D72232914781A840D /* iOS */ = {
			isa = PBXGroup;
			children = (
				8B079F294DA5D9A879E6D53A91F51A1E /* CFNetwork.framework */,
				222DAEF0D819F359AFCFF3D4F927E8A7 /* Foundation.framework */,
			);
			name = iOS;
			sourceTree = "<group>";
		};
		E4B73F3437A713320266B13F2696C2DF /* Support Files */ = {
			isa = PBXGroup;
			children = (
				17D8F8819A3FCCBFB3ACDBD9BAE83B08 /* Alamofire.modulemap */,
				6314D81E5E77A19B27E8B26BBA30F9CA /* Alamofire-dummy.m */,
				2CFE72A59086DB4916CED8B8A9E150AE /* Alamofire-Info.plist */,
				02EE6CAC1CCC06D19C21A11ACC2DBC1A /* Alamofire-prefix.pch */,
				824D9B018A25B4CD36B515A21A2C66BB /* Alamofire-umbrella.h */,
				6D1D7968AF420C6F7584D3F202685288 /* Alamofire.debug.xcconfig */,
				CA986BAAF4F1397563D846A5B0BAB773 /* Alamofire.release.xcconfig */,
			);
			name = "Support Files";
			path = "../Target Support Files/Alamofire";
			sourceTree = "<group>";
		};
		EB8A11E549F6589539FA2E30A8A40269 /* Pods-ProductosPY */ = {
			isa = PBXGroup;
			children = (
				97425D27470BCB0CF4923830C1F00971 /* Pods-ProductosPY.modulemap */,
				3D669A84D4751E18E680ED15B2F9348A /* Pods-ProductosPY-acknowledgements.markdown */,
				9D07AEFFFF1B7416A5A8C912CD81C756 /* Pods-ProductosPY-acknowledgements.plist */,
				EB4DEE4258DD2C23A922E9A12D1CDDD3 /* Pods-ProductosPY-dummy.m */,
				018995424606F2620D54F2A065A8267C /* Pods-ProductosPY-frameworks.sh */,
				90507B1B6D2E4DA381F4476E153BC866 /* Pods-ProductosPY-Info.plist */,
				045FC9D236BB4DB741E66E1626A12B76 /* Pods-ProductosPY-resources.sh */,
				1FB7D44EF0E364F69490B1C7C236F195 /* Pods-ProductosPY-umbrella.h */,
				0EF271CE684AEA0DEC2B555A21F5CBDA /* Pods-ProductosPY.debug.xcconfig */,
				75CDE62DB2144DCD54B361A79DC6AA05 /* Pods-ProductosPY.release.xcconfig */,
			);
			name = "Pods-ProductosPY";
			path = "Target Support Files/Pods-ProductosPY";
			sourceTree = "<group>";
		};
		F3C8D3492307FC91B8269A87ABCF4CEA /* Products */ = {
			isa = PBXGroup;
			children = (
				5D797E9A5C5782CE845840781FA1CC81 /* Alamofire.framework */,
				5CA9E6FE438CE79CD76FA3B34CC95836 /* GoogleMapsUtils.framework */,
				446C2364A4B6FF3D0B9273CD0B3F9D36 /* Pods_ProductosPY.framework */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		FB81623E28D80C45E8C6F16FBFBB4498 /* Support Files */ = {
			isa = PBXGroup;
			children = (
				B7FC57D610EF2C139CAAEB54FB215382 /* GoogleMaps.debug.xcconfig */,
				CE9C7DC971E19AD4AA7F3DB8798D0A58 /* GoogleMaps.release.xcconfig */,
			);
			name = "Support Files";
			path = "../Target Support Files/GoogleMaps";
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
		3F8CD3E13BE276F37EC6543E7C425E89 /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				0FE9636CBBBDAF175DC388BB9BEC61A7 /* GMUCluster.h in Headers */,
				B25F2EEA0331ED9565890F3E83B374C4 /* GMUClusterAlgorithm.h in Headers */,
				FE9A380C20BEE72E22B07249A5EEE810 /* GMUClusterIconGenerator.h in Headers */,
				7740276C0ADB017D548E734AB862A001 /* GMUClusterItem.h in Headers */,
				FA6AC1583F0A10AE9B3B7F3C27750751 /* GMUClusterManager+Testing.h in Headers */,
				14FE485059B061EF889CD0D02CA93A6A /* GMUClusterManager.h in Headers */,
				BA454EB9A13831760BBC99EE20C3FBF4 /* GMUClusterRenderer.h in Headers */,
				6739BD83FE5790A56AC334EA10D63EF9 /* GMUDefaultClusterIconGenerator+Testing.h in Headers */,
				2B83281CBC344D2DA68619D42B7F2DCD /* GMUDefaultClusterIconGenerator.h in Headers */,
				87363FB2633AB0CF7D61D77C278F36B5 /* GMUDefaultClusterRenderer.h in Headers */,
				1E054C4442B55910F53D959E27086AA5 /* GMUFeature.h in Headers */,
				43D614C5D6D6C46426FF4528A67C03F5 /* GMUGeoJSONParser.h in Headers */,
				4D24D527232D2DB0DEEDD20FCA70E55B /* GMUGeometry.h in Headers */,
				891446206B0D33D4C61DD328436ECCF7 /* GMUGeometryCollection.h in Headers */,
				EB14D38F43945694C0EA794E208C280B /* GMUGeometryContainer.h in Headers */,
				4C430238D42160E133406F54A8C80CA8 /* GMUGeometryRenderer+Testing.h in Headers */,
				D5B66D6EF8E2061ECF6FA00CBFA88499 /* GMUGeometryRenderer.h in Headers */,
				10B2DE879AEAE070ED8F6E4E88F58899 /* GMUGradient.h in Headers */,
				9282857403CCFC218BA78F92FD6FF4FF /* GMUGridBasedClusterAlgorithm.h in Headers */,
				CC26C46010C0C45610345D613EC800E2 /* GMUGroundOverlay.h in Headers */,
				9110B41B4A6381390E48CDC6C305A01F /* GMUHeatmapTileLayer.h in Headers */,
				D4A0BD6E456FEB5863022168E5AFABFB /* GMUKMLParser.h in Headers */,
				0265F00E8DBCD6B925C23CE1DEB9F036 /* GMULineString.h in Headers */,
				907B13DB054C71D2258383B7BEABE0F5 /* GMUNonHierarchicalDistanceBasedAlgorithm.h in Headers */,
				236C125617A798ABF6398E3E5E819B88 /* GMUPair.h in Headers */,
				33AB7E44938A901376DA8FCE35EA7C20 /* GMUPlacemark.h in Headers */,
				69A7BAAF6FBD279510569C8F8AF0A772 /* GMUPoint.h in Headers */,
				28BC03E371CECCF48D59293D5EED60C9 /* GMUPolygon.h in Headers */,
				9ED1CB83EFF21A9AB9CC71227A2511DD /* GMUSimpleClusterAlgorithm.h in Headers */,
				2C193D8A5157A1FF32BF061AA5AC0796 /* GMUStaticCluster.h in Headers */,
				0607CCFD3183E86980426E8A34DCFC9A /* GMUStyle.h in Headers */,
				67223AB5F7E489AC8D5C44575511BD6E /* GMUStyleMap.h in Headers */,
				1A093C56EACCA8D49A9F834349941C41 /* GMUWeightedLatLng.h in Headers */,
				4C01D6E23408765A7B309D0937B17324 /* GMUWrappingDictionaryKey.h in Headers */,
				96D1E899BC7DD51F454776775AC88A0B /* Google-Maps-iOS-Utils-umbrella.h in Headers */,
				D92E08DFD5C09C0BB6899A90D8D6EF3D /* GQTBounds.h in Headers */,
				A25B6D4A6B93D89917B398F6F8D24497 /* GQTPoint.h in Headers */,
				841564F61C36BB1FC7022F2AF01D2C98 /* GQTPointQuadTree.h in Headers */,
				9AAA595D0C758D3AC560FC8E774F4810 /* GQTPointQuadTreeChild.h in Headers */,
				EAC9AD000371B916841F111E2DD1F50F /* GQTPointQuadTreeItem.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		47FFC02C606FE417D89E8A71310E3963 /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				A0C5BE52F1BFAF7647159E2E9CCFD616 /* Pods-ProductosPY-umbrella.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		ADDF288DD930A46B5F0F198C225895C9 /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				00FA97D56201027AEB1C7692A2C3CF8B /* Alamofire-umbrella.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXHeadersBuildPhase section */

/* Begin PBXNativeTarget section */
		2C463086A561DAB4651A42C6F34E6B3F /* Pods-ProductosPY */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 4EA648756AD07BF3B2D11E4C917309C2 /* Build configuration list for PBXNativeTarget "Pods-ProductosPY" */;
			buildPhases = (
				47FFC02C606FE417D89E8A71310E3963 /* Headers */,
				11AD484923BFCA5D5C4E92EDFBCCF9FB /* Sources */,
				F78A9E71E1AEE3DBF17AFB4F92D874C9 /* Frameworks */,
				16EFE9104960579C31F713119F8791FD /* Resources */,
			);
			buildRules = (
			);
			dependencies = (
				3FB2EAA32FDB190EA551697B331C0A21 /* PBXTargetDependency */,
				C30D4900327B979BD1BB68CF80986AD8 /* PBXTargetDependency */,
				239B5593F2B743480649D600E72811FE /* PBXTargetDependency */,
				6723E24E8CF11820DD5B3797FEA12EAB /* PBXTargetDependency */,
			);
			name = "Pods-ProductosPY";
			productName = "Pods-ProductosPY";
			productReference = 446C2364A4B6FF3D0B9273CD0B3F9D36 /* Pods_ProductosPY.framework */;
			productType = "com.apple.product-type.framework";
		};
		A5EEC7C2AA5BC7C67CFA2C7578AB62C7 /* Google-Maps-iOS-Utils */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = A46249E8E4E7A30292AF6969CA1290B0 /* Build configuration list for PBXNativeTarget "Google-Maps-iOS-Utils" */;
			buildPhases = (
				3F8CD3E13BE276F37EC6543E7C425E89 /* Headers */,
				E07677FF8A0F96DEBCAEAAC360EC248A /* Sources */,
				5E1B497A5D3ECD3AC40C3C17C5FC28D8 /* Frameworks */,
				130FEBA56C600EA01114ED311D514853 /* Resources */,
			);
			buildRules = (
			);
			dependencies = (
				7452725632C7E06E9BCE9A426D85C069 /* PBXTargetDependency */,
			);
			name = "Google-Maps-iOS-Utils";
			productName = "Google-Maps-iOS-Utils";
			productReference = 5CA9E6FE438CE79CD76FA3B34CC95836 /* GoogleMapsUtils.framework */;
			productType = "com.apple.product-type.framework";
		};
		EAAA1AD3A8A1B59AB91319EE40752C6D /* Alamofire */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 6B2B8EC7E21CDBFF2BDA26B1B4AC4C0D /* Build configuration list for PBXNativeTarget "Alamofire" */;
			buildPhases = (
				ADDF288DD930A46B5F0F198C225895C9 /* Headers */,
				7349DB0E9BEBE664696F1DCC25226F26 /* Sources */,
				8B0D8633F410345F93419B8C3D7B6916 /* Frameworks */,
				28FC0024B79C28A420D7C4FEBB9E3AEB /* Resources */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = Alamofire;
			productName = Alamofire;
			productReference = 5D797E9A5C5782CE845840781FA1CC81 /* Alamofire.framework */;
			productType = "com.apple.product-type.framework";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		BFDFE7DC352907FC980B868725387E98 /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastSwiftUpdateCheck = 1100;
				LastUpgradeCheck = 1100;
			};
			buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */;
			compatibilityVersion = "Xcode 10.0";
			developmentRegion = en;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
				Base,
			);
			mainGroup = CF1408CF629C7361332E53B88F7BD30C;
			productRefGroup = F3C8D3492307FC91B8269A87ABCF4CEA /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				EAAA1AD3A8A1B59AB91319EE40752C6D /* Alamofire */,
				A5EEC7C2AA5BC7C67CFA2C7578AB62C7 /* Google-Maps-iOS-Utils */,
				E5B4BBC6DD552AC8943C7E22772FC1D3 /* GoogleMaps */,
				0C1885900810601510E0C632060FAF26 /* GooglePlaces */,
				2C463086A561DAB4651A42C6F34E6B3F /* Pods-ProductosPY */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		130FEBA56C600EA01114ED311D514853 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		16EFE9104960579C31F713119F8791FD /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		28FC0024B79C28A420D7C4FEBB9E3AEB /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		11AD484923BFCA5D5C4E92EDFBCCF9FB /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				C60E2279A53FED46BE69E60A7343B46B /* Pods-ProductosPY-dummy.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		7349DB0E9BEBE664696F1DCC25226F26 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				17953A9CF2E354B3E69B9ABC2F367AD9 /* AFError.swift in Sources */,
				B1C58F6CED7B3E45170711D9ADF878AF /* Alamofire-dummy.m in Sources */,
				B788B3354CCEBE56DFDB963CAFD7F6C2 /* Alamofire.swift in Sources */,
				44127C4B989C9CC6A90D78B66A929A5E /* AlamofireExtended.swift in Sources */,
				0AE06C3AEA6CA45342BA703230ABD2CB /* CachedResponseHandler.swift in Sources */,
				E9A5AC2F471699CCA516952A5FEB990B /* DispatchQueue+Alamofire.swift in Sources */,
				CACBD166E573774FB5613C34AA6DA7A7 /* EventMonitor.swift in Sources */,
				56EC8ED1535DAB987F3D2B71D4C05773 /* HTTPHeaders.swift in Sources */,
				B23E9A5CDA31534491226F4C2EE8F8E6 /* HTTPMethod.swift in Sources */,
				5C4A0685B5A201436AB52EF25829B333 /* MultipartFormData.swift in Sources */,
				E07BD425C4EA9ADF15DDFCDB10D0B2FB /* MultipartUpload.swift in Sources */,
				7CF8362BA31492053F5CB165637AE117 /* NetworkReachabilityManager.swift in Sources */,
				C7369563F6946D8984124E1A546B6425 /* Notifications.swift in Sources */,
				92811AC5CD9A5004116AE43C4E8FD955 /* OperationQueue+Alamofire.swift in Sources */,
				5D61C8ED0DDCC9F8B576B6514B19EE50 /* ParameterEncoder.swift in Sources */,
				14AB7976E100075ADEA0AB1DB833E72D /* ParameterEncoding.swift in Sources */,
				0419772A87B16DB7DCF405A9E77D671F /* Protector.swift in Sources */,
				C64AF152F7928CDB59385528DB65FE19 /* RedirectHandler.swift in Sources */,
				6A22C46CB1EDE471794D9AB2AC10327F /* Request.swift in Sources */,
				AD9899986955B2EC1EC20818C860C971 /* RequestInterceptor.swift in Sources */,
				48D97BE7D5CAED273BD2341C239CC934 /* RequestTaskMap.swift in Sources */,
				F71789DC91A75033EFB79DB828676451 /* Response.swift in Sources */,
				13457FE4E607509A3B9527B0711033D5 /* ResponseSerialization.swift in Sources */,
				4082513A35C682F2193D002C80F72B79 /* Result+Alamofire.swift in Sources */,
				D6B2983389480F48F27A0704EEB5DC81 /* RetryPolicy.swift in Sources */,
				0CC43FF0E31AA320ACFEB0FE6239DF34 /* ServerTrustEvaluation.swift in Sources */,
				69ACE4EEE5A8C1C618B22CC1F7B8EF01 /* Session.swift in Sources */,
				42CDB5C986C78BBC8E5C0185F746CABF /* SessionDelegate.swift in Sources */,
				70517C3BAC2D6614347DEAC15299EB84 /* URLConvertible+URLRequestConvertible.swift in Sources */,
				5D12235D061AEE7459279AAF8C348DFE /* URLEncodedFormEncoder.swift in Sources */,
				E4E12208D5246E64B7E6CCAE987ADB03 /* URLRequest+Alamofire.swift in Sources */,
				AF92602937CA016548022C600B8CDC16 /* URLSessionConfiguration+Alamofire.swift in Sources */,
				06507A26118BA5ACFBBC8C225776920E /* Validation.swift in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		E07677FF8A0F96DEBCAEAAC360EC248A /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				A89051C6EA5100B172785C3188D4B2D0 /* GMUClusterManager.m in Sources */,
				B53B81C6718DF236268217E126292366 /* GMUDefaultClusterIconGenerator.m in Sources */,
				58B40EDF31BCCA0D2F16E22363AD7C75 /* GMUDefaultClusterRenderer.m in Sources */,
				BAA738D81673FB182E7C780EE7E285E9 /* GMUFeature.m in Sources */,
				8D47CC0F688062AF0CFC96EADE699720 /* GMUGeoJSONParser.m in Sources */,
				D28AAC7E032FD710FF5886A3D66C31DA /* GMUGeometryCollection.m in Sources */,
				09A0B7185BD8E31909034EE2C1C1508F /* GMUGeometryRenderer.m in Sources */,
				52CCCA1CA7E24AF8D674AB8C52B38488 /* GMUGradient.m in Sources */,
				21C693BBEAD272F3A1352D61B238B787 /* GMUGridBasedClusterAlgorithm.m in Sources */,
				339CA4289E532D19016FB4EF77A6C41C /* GMUGroundOverlay.m in Sources */,
				4094F4C3473CD6D05D3B7C091701028F /* GMUHeatmapTileLayer.m in Sources */,
				6A16615AACC6395730C7590AEA5DDFC8 /* GMUKMLParser.m in Sources */,
				F03547B0792049EEE6829CC76B7B6F03 /* GMULineString.m in Sources */,
				2CA3A1FE2BC7A0724A55D9E3063BA0D7 /* GMUNonHierarchicalDistanceBasedAlgorithm.m in Sources */,
				7BB265CF4E1D5F26520C3E8B03FA7727 /* GMUPair.m in Sources */,
				1269CFA194EA8D7E42B863FA6D61C7B3 /* GMUPlacemark.m in Sources */,
				CA244CA3C187A1CE131810767E9220EB /* GMUPoint.m in Sources */,
				18CE1994C0ECC17289B2224647D0305A /* GMUPolygon.m in Sources */,
				DD5A6A1EECC38AB2BC739FC0FFA29BC0 /* GMUSimpleClusterAlgorithm.m in Sources */,
				0FDC1FEDB01554D88784CA2A88E6234F /* GMUStaticCluster.m in Sources */,
				0E6ED333181FF923562E02EEB3162308 /* GMUStyle.m in Sources */,
				5AE43A0662DE2ABCAAEE60EBBDBA3ED6 /* GMUStyleMap.m in Sources */,
				94E033876210CFB80731D45265F4E935 /* GMUWeightedLatLng.m in Sources */,
				D4CB4D76A7EECFEA1688B08BA8A34941 /* GMUWrappingDictionaryKey.m in Sources */,
				3BD0A1ABCE3E5856D4073097218C1D93 /* Google-Maps-iOS-Utils-dummy.m in Sources */,
				CF8108DD69C3B7E70F59DABFB4D41CE4 /* GQTPointQuadTree.m in Sources */,
				D1A8A521BD9F9894656E6C3ACFBF3338 /* GQTPointQuadTreeChild.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		239B5593F2B743480649D600E72811FE /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = GoogleMaps;
			target = E5B4BBC6DD552AC8943C7E22772FC1D3 /* GoogleMaps */;
			targetProxy = 2A41B5D33DF9F61A340800FBC8862CFB /* PBXContainerItemProxy */;
		};
		3FB2EAA32FDB190EA551697B331C0A21 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = Alamofire;
			target = EAAA1AD3A8A1B59AB91319EE40752C6D /* Alamofire */;
			targetProxy = 36DA671AC7B31F672E7329EABE516E38 /* PBXContainerItemProxy */;
		};
		6723E24E8CF11820DD5B3797FEA12EAB /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = GooglePlaces;
			target = 0C1885900810601510E0C632060FAF26 /* GooglePlaces */;
			targetProxy = 893E440CC930AD559414CDA37C9DD79C /* PBXContainerItemProxy */;
		};
		7452725632C7E06E9BCE9A426D85C069 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = GoogleMaps;
			target = E5B4BBC6DD552AC8943C7E22772FC1D3 /* GoogleMaps */;
			targetProxy = BF0C356659B997EAD399AE2462796B0C /* PBXContainerItemProxy */;
		};
		C30D4900327B979BD1BB68CF80986AD8 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = "Google-Maps-iOS-Utils";
			target = A5EEC7C2AA5BC7C67CFA2C7578AB62C7 /* Google-Maps-iOS-Utils */;
			targetProxy = 84ED0303E64A8AE0019C8ED4E4100B16 /* PBXContainerItemProxy */;
		};
		D42315111F400C0605ACCD6B5CAF2178 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = GoogleMaps;
			target = E5B4BBC6DD552AC8943C7E22772FC1D3 /* GoogleMaps */;
			targetProxy = 6EB1C2DD30E6564FC3135C9E8002D8F7 /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin XCBuildConfiguration section */
		0291518A29015F53971C0EA982191884 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 75CDE62DB2144DCD54B361A79DC6AA05 /* Pods-ProductosPY.release.xcconfig */;
			buildSettings = {
				ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
				CLANG_ENABLE_OBJC_WEAK = NO;
				CODE_SIGN_IDENTITY = "";
				"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
				CURRENT_PROJECT_VERSION = 1;
				DEFINES_MODULE = YES;
				DYLIB_COMPATIBILITY_VERSION = 1;
				DYLIB_CURRENT_VERSION = 1;
				DYLIB_INSTALL_NAME_BASE = "@rpath";
				INFOPLIST_FILE = "Target Support Files/Pods-ProductosPY/Pods-ProductosPY-Info.plist";
				INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
				IPHONEOS_DEPLOYMENT_TARGET = 13.1;
				LD_RUNPATH_SEARCH_PATHS = (
					"$(inherited)",
					"@executable_path/Frameworks",
					"@loader_path/Frameworks",
				);
				MACH_O_TYPE = staticlib;
				MODULEMAP_FILE = "Target Support Files/Pods-ProductosPY/Pods-ProductosPY.modulemap";
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PODS_ROOT = "$(SRCROOT)";
				PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
				PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
				TARGETED_DEVICE_FAMILY = "1,2";
				VALIDATE_PRODUCT = YES;
				VERSIONING_SYSTEM = "apple-generic";
				VERSION_INFO_PREFIX = "";
			};
			name = Release;
		};
		088448C7DB72BF0EE7EB2288E87DECEF /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 06B87E202250E97D53894F5B86E89477 /* Google-Maps-iOS-Utils.release.xcconfig */;
			buildSettings = {
				CODE_SIGN_IDENTITY = "";
				"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
				CURRENT_PROJECT_VERSION = 1;
				DEFINES_MODULE = YES;
				DYLIB_COMPATIBILITY_VERSION = 1;
				DYLIB_CURRENT_VERSION = 1;
				DYLIB_INSTALL_NAME_BASE = "@rpath";
				GCC_PREFIX_HEADER = "Target Support Files/Google-Maps-iOS-Utils/Google-Maps-iOS-Utils-prefix.pch";
				INFOPLIST_FILE = "Target Support Files/Google-Maps-iOS-Utils/Google-Maps-iOS-Utils-Info.plist";
				INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
				IPHONEOS_DEPLOYMENT_TARGET = 9.0;
				LD_RUNPATH_SEARCH_PATHS = (
					"$(inherited)",
					"@executable_path/Frameworks",
					"@loader_path/Frameworks",
				);
				MACH_O_TYPE = staticlib;
				MODULEMAP_FILE = "Target Support Files/Google-Maps-iOS-Utils/Google-Maps-iOS-Utils.modulemap";
				PRODUCT_MODULE_NAME = GoogleMapsUtils;
				PRODUCT_NAME = GoogleMapsUtils;
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
				SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
				SWIFT_VERSION = 5.0;
				TARGETED_DEVICE_FAMILY = "1,2";
				VALIDATE_PRODUCT = YES;
				VERSIONING_SYSTEM = "apple-generic";
				VERSION_INFO_PREFIX = "";
			};
			name = Release;
		};
		2B51F82FE490FF29228A173F842AB02D /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = CE9C7DC971E19AD4AA7F3DB8798D0A58 /* GoogleMaps.release.xcconfig */;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				CODE_SIGN_IDENTITY = "iPhone Developer";
				IPHONEOS_DEPLOYMENT_TARGET = 9.0;
				LD_RUNPATH_SEARCH_PATHS = (
					"$(inherited)",
					"@executable_path/Frameworks",
				);
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = "1,2";
				VALIDATE_PRODUCT = YES;
			};
			name = Release;
		};
		4AE9FC8A852243DC9A2EFE9BA39BAC7B /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 33685DBB53853EBA62D8586A85BFE632 /* GooglePlaces.debug.xcconfig */;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				CODE_SIGN_IDENTITY = "iPhone Developer";
				IPHONEOS_DEPLOYMENT_TARGET = 9.0;
				LD_RUNPATH_SEARCH_PATHS = (
					"$(inherited)",
					"@executable_path/Frameworks",
				);
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = "1,2";
			};
			name = Debug;
		};
		510B057D2E9F059C50D52DA5D90F3ACF /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_NONNULL = YES;
				CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_ENABLE_OBJC_WEAK = YES;
				CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_COMMA = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INFINITE_RECURSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
				CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
				CLANG_WARN_STRICT_PROTOTYPES = YES;
				CLANG_WARN_SUSPICIOUS_MOVE = YES;
				CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				COPY_PHASE_STRIP = NO;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				ENABLE_NS_ASSERTIONS = NO;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_C_LANGUAGE_STANDARD = gnu11;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"POD_CONFIGURATION_RELEASE=1",
					"$(inherited)",
				);
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 13.1;
				MTL_ENABLE_DEBUG_INFO = NO;
				MTL_FAST_MATH = YES;
				PRODUCT_NAME = "$(TARGET_NAME)";
				STRIP_INSTALLED_PRODUCT = NO;
				SWIFT_COMPILATION_MODE = wholemodule;
				SWIFT_OPTIMIZATION_LEVEL = "-O";
				SWIFT_VERSION = 5.0;
				SYMROOT = "${SRCROOT}/../build";
			};
			name = Release;
		};
		573B04AB9E058A1911353A22A780E993 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 7F15D37A836D795619ACE813F984EE90 /* GooglePlaces.release.xcconfig */;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				CODE_SIGN_IDENTITY = "iPhone Developer";
				IPHONEOS_DEPLOYMENT_TARGET = 9.0;
				LD_RUNPATH_SEARCH_PATHS = (
					"$(inherited)",
					"@executable_path/Frameworks",
				);
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = "1,2";
				VALIDATE_PRODUCT = YES;
			};
			name = Release;
		};
		78F0A7E7490F24509D56845F81922CF6 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = CA986BAAF4F1397563D846A5B0BAB773 /* Alamofire.release.xcconfig */;
			buildSettings = {
				CLANG_ENABLE_OBJC_WEAK = NO;
				CODE_SIGN_IDENTITY = "";
				"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
				CURRENT_PROJECT_VERSION = 1;
				DEFINES_MODULE = YES;
				DYLIB_COMPATIBILITY_VERSION = 1;
				DYLIB_CURRENT_VERSION = 1;
				DYLIB_INSTALL_NAME_BASE = "@rpath";
				GCC_PREFIX_HEADER = "Target Support Files/Alamofire/Alamofire-prefix.pch";
				INFOPLIST_FILE = "Target Support Files/Alamofire/Alamofire-Info.plist";
				INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
				IPHONEOS_DEPLOYMENT_TARGET = 10.0;
				LD_RUNPATH_SEARCH_PATHS = (
					"$(inherited)",
					"@executable_path/Frameworks",
					"@loader_path/Frameworks",
				);
				MODULEMAP_FILE = "Target Support Files/Alamofire/Alamofire.modulemap";
				PRODUCT_MODULE_NAME = Alamofire;
				PRODUCT_NAME = Alamofire;
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
				SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
				SWIFT_VERSION = 5.1;
				TARGETED_DEVICE_FAMILY = "1,2";
				VALIDATE_PRODUCT = YES;
				VERSIONING_SYSTEM = "apple-generic";
				VERSION_INFO_PREFIX = "";
			};
			name = Release;
		};
		804E13245C9FBBE6A340C555CA8B2B4C /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_NONNULL = YES;
				CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_ENABLE_OBJC_WEAK = YES;
				CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_COMMA = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INFINITE_RECURSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
				CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
				CLANG_WARN_STRICT_PROTOTYPES = YES;
				CLANG_WARN_SUSPICIOUS_MOVE = YES;
				CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				COPY_PHASE_STRIP = NO;
				DEBUG_INFORMATION_FORMAT = dwarf;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				ENABLE_TESTABILITY = YES;
				GCC_C_LANGUAGE_STANDARD = gnu11;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"POD_CONFIGURATION_DEBUG=1",
					"DEBUG=1",
					"$(inherited)",
				);
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 13.1;
				MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
				MTL_FAST_MATH = YES;
				ONLY_ACTIVE_ARCH = YES;
				PRODUCT_NAME = "$(TARGET_NAME)";
				STRIP_INSTALLED_PRODUCT = NO;
				SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
				SWIFT_OPTIMIZATION_LEVEL = "-Onone";
				SWIFT_VERSION = 5.0;
				SYMROOT = "${SRCROOT}/../build";
			};
			name = Debug;
		};
		9A20D9C5346766D8C4243E542E6C0E31 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 6D1D7968AF420C6F7584D3F202685288 /* Alamofire.debug.xcconfig */;
			buildSettings = {
				CLANG_ENABLE_OBJC_WEAK = NO;
				CODE_SIGN_IDENTITY = "";
				"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
				CURRENT_PROJECT_VERSION = 1;
				DEFINES_MODULE = YES;
				DYLIB_COMPATIBILITY_VERSION = 1;
				DYLIB_CURRENT_VERSION = 1;
				DYLIB_INSTALL_NAME_BASE = "@rpath";
				GCC_PREFIX_HEADER = "Target Support Files/Alamofire/Alamofire-prefix.pch";
				INFOPLIST_FILE = "Target Support Files/Alamofire/Alamofire-Info.plist";
				INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
				IPHONEOS_DEPLOYMENT_TARGET = 10.0;
				LD_RUNPATH_SEARCH_PATHS = (
					"$(inherited)",
					"@executable_path/Frameworks",
					"@loader_path/Frameworks",
				);
				MODULEMAP_FILE = "Target Support Files/Alamofire/Alamofire.modulemap";
				PRODUCT_MODULE_NAME = Alamofire;
				PRODUCT_NAME = Alamofire;
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
				SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
				SWIFT_VERSION = 5.1;
				TARGETED_DEVICE_FAMILY = "1,2";
				VERSIONING_SYSTEM = "apple-generic";
				VERSION_INFO_PREFIX = "";
			};
			name = Debug;
		};
		9D1BF7F4B0F06AA9119AB22878447971 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = B7FC57D610EF2C139CAAEB54FB215382 /* GoogleMaps.debug.xcconfig */;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				CODE_SIGN_IDENTITY = "iPhone Developer";
				IPHONEOS_DEPLOYMENT_TARGET = 9.0;
				LD_RUNPATH_SEARCH_PATHS = (
					"$(inherited)",
					"@executable_path/Frameworks",
				);
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = "1,2";
			};
			name = Debug;
		};
		B85DFC56BE14542C68832C529BC748F9 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 0EF271CE684AEA0DEC2B555A21F5CBDA /* Pods-ProductosPY.debug.xcconfig */;
			buildSettings = {
				ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
				CLANG_ENABLE_OBJC_WEAK = NO;
				CODE_SIGN_IDENTITY = "";
				"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
				CURRENT_PROJECT_VERSION = 1;
				DEFINES_MODULE = YES;
				DYLIB_COMPATIBILITY_VERSION = 1;
				DYLIB_CURRENT_VERSION = 1;
				DYLIB_INSTALL_NAME_BASE = "@rpath";
				INFOPLIST_FILE = "Target Support Files/Pods-ProductosPY/Pods-ProductosPY-Info.plist";
				INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
				IPHONEOS_DEPLOYMENT_TARGET = 13.1;
				LD_RUNPATH_SEARCH_PATHS = (
					"$(inherited)",
					"@executable_path/Frameworks",
					"@loader_path/Frameworks",
				);
				MACH_O_TYPE = staticlib;
				MODULEMAP_FILE = "Target Support Files/Pods-ProductosPY/Pods-ProductosPY.modulemap";
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PODS_ROOT = "$(SRCROOT)";
				PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
				PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
				TARGETED_DEVICE_FAMILY = "1,2";
				VERSIONING_SYSTEM = "apple-generic";
				VERSION_INFO_PREFIX = "";
			};
			name = Debug;
		};
		DBBDA79EE8382D8FDE88756C5497ED26 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 460FEC51F8B83C36A9F66483E068035C /* Google-Maps-iOS-Utils.debug.xcconfig */;
			buildSettings = {
				CODE_SIGN_IDENTITY = "";
				"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
				CURRENT_PROJECT_VERSION = 1;
				DEFINES_MODULE = YES;
				DYLIB_COMPATIBILITY_VERSION = 1;
				DYLIB_CURRENT_VERSION = 1;
				DYLIB_INSTALL_NAME_BASE = "@rpath";
				GCC_PREFIX_HEADER = "Target Support Files/Google-Maps-iOS-Utils/Google-Maps-iOS-Utils-prefix.pch";
				INFOPLIST_FILE = "Target Support Files/Google-Maps-iOS-Utils/Google-Maps-iOS-Utils-Info.plist";
				INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
				IPHONEOS_DEPLOYMENT_TARGET = 9.0;
				LD_RUNPATH_SEARCH_PATHS = (
					"$(inherited)",
					"@executable_path/Frameworks",
					"@loader_path/Frameworks",
				);
				MACH_O_TYPE = staticlib;
				MODULEMAP_FILE = "Target Support Files/Google-Maps-iOS-Utils/Google-Maps-iOS-Utils.modulemap";
				PRODUCT_MODULE_NAME = GoogleMapsUtils;
				PRODUCT_NAME = GoogleMapsUtils;
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
				SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
				SWIFT_VERSION = 5.0;
				TARGETED_DEVICE_FAMILY = "1,2";
				VERSIONING_SYSTEM = "apple-generic";
				VERSION_INFO_PREFIX = "";
			};
			name = Debug;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		2FC2AC47FDB0310285CE777F18CD1532 /* Build configuration list for PBXAggregateTarget "GooglePlaces" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				4AE9FC8A852243DC9A2EFE9BA39BAC7B /* Debug */,
				573B04AB9E058A1911353A22A780E993 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				804E13245C9FBBE6A340C555CA8B2B4C /* Debug */,
				510B057D2E9F059C50D52DA5D90F3ACF /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		4EA648756AD07BF3B2D11E4C917309C2 /* Build configuration list for PBXNativeTarget "Pods-ProductosPY" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				B85DFC56BE14542C68832C529BC748F9 /* Debug */,
				0291518A29015F53971C0EA982191884 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		6B2B8EC7E21CDBFF2BDA26B1B4AC4C0D /* Build configuration list for PBXNativeTarget "Alamofire" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				9A20D9C5346766D8C4243E542E6C0E31 /* Debug */,
				78F0A7E7490F24509D56845F81922CF6 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		72FDCC61040C0C672F23959415CAEFC6 /* Build configuration list for PBXAggregateTarget "GoogleMaps" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				9D1BF7F4B0F06AA9119AB22878447971 /* Debug */,
				2B51F82FE490FF29228A173F842AB02D /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		A46249E8E4E7A30292AF6969CA1290B0 /* Build configuration list for PBXNativeTarget "Google-Maps-iOS-Utils" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				DBBDA79EE8382D8FDE88756C5497ED26 /* Debug */,
				088448C7DB72BF0EE7EB2288E87DECEF /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */;
}