├── .gitignore ├── Cloud-Functions ├── firebase.json └── functions │ ├── .eslintrc.json │ ├── .gitignore │ ├── app.js │ ├── index.js │ ├── package-lock.json │ └── package.json ├── Connfa.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ └── xcschemes │ ├── Connfa.xcscheme │ └── ConnfaTests.xcscheme ├── Connfa.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── Connfa ├── Classes │ ├── EventTableView │ │ ├── BaseEventTableViewController.swift │ │ └── EventsTableView.swift │ ├── Events │ │ ├── Interested List │ │ │ └── InterestedListViewController.swift │ │ ├── List Base │ │ │ ├── Cells │ │ │ │ ├── ProgramListCell.swift │ │ │ │ ├── ProgramListCell.xib │ │ │ │ ├── ProgramListCollectionCell.swift │ │ │ │ ├── ProgramListCollectionCell.xib │ │ │ │ ├── ProgramListDayCell.swift │ │ │ │ ├── ProgramListDayCell.xib │ │ │ │ ├── ProgramListHeader.swift │ │ │ │ └── ProgramListHeader.xib │ │ │ ├── EventListViewController.swift │ │ │ ├── ProgramListDaysViewController.swift │ │ │ ├── ProgramTableController.swift │ │ │ └── ViewData │ │ │ │ ├── EventsViewModelsTransformer.swift │ │ │ │ ├── ProgramListDayViewData.swift │ │ │ │ ├── ProgramListSlotViewData.swift │ │ │ │ ├── ProgramListViewData.swift │ │ │ │ └── SpeakerEventsViewModelsTransformer.swift │ │ ├── Program Details │ │ │ ├── AppLogoTableViewCell.xib │ │ │ ├── BaseHeaderProgramDetailsView.xib │ │ │ ├── InterestedHeaderProgramDetailsView.xib │ │ │ ├── ProgramDetailHeaderViews.swift │ │ │ ├── ProgramDetailInterestTableViewCell.swift │ │ │ ├── ProgramDetailSpeakerTableViewCell.swift │ │ │ ├── ProgramDetailWebTableViewCell.swift │ │ │ ├── ProgramDetailsSection.swift │ │ │ ├── ProgramDetailsSponsorsTableViewCell.swift │ │ │ ├── ProgramDetailsTitleTableViewCell.swift │ │ │ └── ProgramDetailsViewController.swift │ │ └── Program List │ │ │ ├── ProgramListFilter │ │ │ ├── Cells │ │ │ │ ├── ProgramListFilterBaseCell.swift │ │ │ │ ├── ProgramListFilterCell.swift │ │ │ │ ├── ProgramListFilterCell.xib │ │ │ │ ├── ProgramListFilterHeader.swift │ │ │ │ ├── ProgramListFilterHeader.xib │ │ │ │ ├── ProgramListFilterLevelCell.swift │ │ │ │ └── ProgramListFilterLevelCell.xib │ │ │ ├── ProgramListFilter.swift │ │ │ ├── ProgramListFilterAdapter.swift │ │ │ └── ProgramListFilterViewController.swift │ │ │ └── ProgramListViewController.swift │ ├── FloorPlans │ │ ├── FloorPlanCollectionViewCell.swift │ │ ├── FloorPlanPageControl.swift │ │ └── FloorPlanViewController.swift │ ├── InfoWebViews │ │ └── InfoViewController.swift │ ├── Location │ │ ├── LocationMapViewController.swift │ │ └── LocationViewController.swift │ ├── More │ │ ├── MoreTableViewCell.swift │ │ ├── MoreTableViewController.swift │ │ └── MoreViewController.swift │ ├── Pin │ │ ├── PinTableViewController.swift │ │ └── PinViewController.swift │ ├── Preloader │ │ └── PreloaderViewController.swift │ ├── SocialMedia │ │ ├── SocialMediaParentViewController.swift │ │ └── SocialMediaViewController.swift │ ├── Speakers │ │ ├── Details │ │ │ ├── SpeakerDetailTableController.swift │ │ │ └── SpeakerDetailViewController.swift │ │ └── List │ │ │ ├── SpeakerListTableViewCell.swift │ │ │ ├── SpeakersListViewController.swift │ │ │ └── SpeakersSectionView.swift │ ├── Venue │ │ └── VenueViewController.swift │ ├── Views │ │ └── EmptyStateView.swift │ └── WebView │ │ ├── WebViewController.swift │ │ └── WebViewData.swift ├── Common │ ├── Configurations │ │ ├── Configurations.plist │ │ └── Configurations.swift │ ├── Constants │ │ ├── Constants.swift │ │ ├── SegueIdentifiers.swift │ │ └── SegueIdentifiers.swift.orig │ ├── DateManager.swift │ ├── EmptyState.swift │ ├── Extensions │ │ ├── CALayer+Shadow.swift │ │ ├── DateFormatter+Default.swift │ │ ├── UIActivityViewController+default.swift │ │ ├── UIApplication+topViewController.swift │ │ ├── UICollectionView+Generics.swift │ │ ├── UIColor+hex.swift │ │ ├── UINavigationBar+BottomHairline.swift │ │ ├── UITableView+Generics.swift │ │ ├── UIView+Rotate.swift │ │ ├── UIView+hairlineImageView.swift │ │ ├── UIViewController+Shadow.swift │ │ ├── UIViewController+isModal.swift │ │ ├── URL+queryDictionary.swift │ │ └── UserDefaults+CalendarEvents.swift │ ├── HTMLManager.swift │ ├── ImageCache │ │ └── ImageCache.swift │ ├── NavigationTitleLabel.swift │ ├── Notifications.swift │ ├── PersistentStorage │ │ └── StorageDataSaver.swift │ └── ReusableCell.swift ├── Connfa.entitlements ├── Resourses │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-72.png │ │ │ ├── Icon-72@2x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x-1.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small-40@3x.png │ │ │ ├── Icon-Small-50.png │ │ │ ├── Icon-Small-50@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x-1.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@3x-1.png │ │ │ ├── Icon-Small@3x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ ├── Contents.json │ │ ├── Interested │ │ │ ├── Contents.json │ │ │ ├── arrow.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── arrow@2x.png │ │ │ │ └── arrow@3x.png │ │ │ ├── attanding_icon_gray.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── attanding_icon_gray@2x.png │ │ │ │ └── attanding_icon_gray@3x.png │ │ │ ├── attanding_icon_red.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── attanding_icon_red@2x.png │ │ │ │ └── attanding_icon_red@3x.png │ │ │ ├── expanded_option_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── expanded_option_icon@2x.png │ │ │ │ └── expanded_option_icon@3x.png │ │ │ ├── ic-arrow-down.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic-arrow-down@2x.png │ │ │ │ └── ic-arrow-down@3x.png │ │ │ ├── ic-more.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic-more@2x.png │ │ │ │ └── ic-more@3x.png │ │ │ ├── menu-icon-interested-sel.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── interested_icon_red@2x.png │ │ │ │ └── interested_icon_red@3x.png │ │ │ ├── menu-icon-interested.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── interested_icon_gray@2x.png │ │ │ │ └── interested_icon_gray@3x.png │ │ │ ├── wis_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── wis_icon@2x.png │ │ │ │ └── wis_icon@3x.png │ │ │ └── wis_icon_grey.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── wis_icon@2x.png │ │ │ │ └── wis_icon@3x.png │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ ├── More │ │ │ ├── Contents.json │ │ │ ├── connfa-icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── connfa_icon@2x.png │ │ │ │ └── connfa_icon@3x.png │ │ │ ├── drupal-icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── drupal_icon.png │ │ │ │ ├── drupal_icon@2x.png │ │ │ │ └── drupal_icon@3x.png │ │ │ ├── menu-icon-more-sel.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── more_icon_red@2x.png │ │ │ │ └── more_icon_red@3x.png │ │ │ ├── menu-icon-more.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── more_icon_gray@2x.png │ │ │ │ └── more_icon_gray@3x.png │ │ │ └── sponsor-icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── spnsor_icon.png │ │ │ │ ├── spnsor_icon@2x.png │ │ │ │ └── spnsor_icon@3x.png │ │ ├── OldIcons │ │ │ ├── Contents.json │ │ │ ├── ic-no-floor-plan.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic_no_floor_plan@2x.png │ │ │ │ └── ic_no_floor_plan@3x.png │ │ │ ├── menu-icon-about-sel.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── menu_icon_about_sel@2x.png │ │ │ │ └── menu_icon_about_sel@3x.png │ │ │ ├── menu-icon-about.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── menu_icon_about@2x.png │ │ │ │ └── menu_icon_about@3x.png │ │ │ ├── menu-icon-floor-plan-sel.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── menu_icon_floor-plan_sel@2x.png │ │ │ │ └── menu_icon_floor-plan_sel@3x.png │ │ │ ├── menu-icon-floor-plan.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── menu_icon_floor-plan@2x.png │ │ │ │ └── menu_icon_floor-plan@3x.png │ │ │ ├── menu-icon-location-sel.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── menu_icon_location_sel@2x.png │ │ │ │ └── menu_icon_location_sel@3x.png │ │ │ └── menu-icon-location.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── menu_icon_location@2x.png │ │ │ │ └── menu_icon_location@3x.png │ │ ├── Placeholders │ │ │ ├── Contents.json │ │ │ ├── empty-schedule-icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── empty_icon.png │ │ │ │ └── empty_icon@2x.png │ │ │ ├── ic-no-floor-plan.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic_no_floor_plan@2x.png │ │ │ │ └── ic_no_floor_plan@3x.png │ │ │ ├── ic_no_about.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic_no_about@2x.png │ │ │ │ └── ic_no_about@3x.png │ │ │ ├── ic_no_location.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic_no_location@2x.png │ │ │ │ └── ic_no_location@3x.png │ │ │ ├── ic_no_my_schedule.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic_no_my_schedule@2x.png │ │ │ │ └── ic_no_my_schedule@3x.png │ │ │ ├── ic_no_sessions.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic_no_sessions@2x.png │ │ │ │ └── ic_no_sessions@3x.png │ │ │ ├── ic_no_social_media.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic_no_social_media@2x.png │ │ │ │ └── ic_no_social_media@3x.png │ │ │ └── ic_no_speakers.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic_no_speakers@2x.png │ │ │ │ └── ic_no_speakers@3x.png │ │ ├── Program │ │ │ ├── Contents.json │ │ │ ├── btn-close.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── btn-close@2x.png │ │ │ │ └── btn-close@3x.png │ │ │ ├── ic-event-bg-active.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic-event-bg-active@2x.png │ │ │ │ └── ic-event-bg-active@3x.png │ │ │ ├── ic-event-bg.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── event-bg@2x.png │ │ │ │ └── event-bg@3x.png │ │ │ ├── ic-filter-checkmark-selected.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic-filter-checkmark-selected@2x.png │ │ │ │ └── ic-filter-checkmark-selected@3x.png │ │ │ ├── ic-filter-checkmark.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic-filter-checkmark@2x.png │ │ │ │ └── ic-filter-checkmark@3x.png │ │ │ ├── ic-friends-interested.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── friends-interested@2x.png │ │ │ │ └── friends-interested@3x.png │ │ │ ├── ic-going-now.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic-going-now@2x.png │ │ │ │ └── ic-going-now@3x.png │ │ │ ├── ic-header-shadow.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic-header-shadow@2x.png │ │ │ │ └── ic-header-shadow@3x.png │ │ │ ├── ic-interest-star-active.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── interest-star-active@2x.png │ │ │ │ └── interest-star-active@3x.png │ │ │ ├── ic-interest-star-inactive.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── interest-star-inactive@2x.png │ │ │ │ └── interest-star-inactive@3x.png │ │ │ ├── ic-level-0.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── level-1@2x.png │ │ │ │ └── level-1@3x.png │ │ │ ├── ic-level-1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── level-2@2x.png │ │ │ │ └── level-2@3x.png │ │ │ ├── ic-level-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── level-3.png │ │ │ │ └── level-3@3x.png │ │ │ ├── ic-location.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic-location@2x.png │ │ │ │ └── ic-location@3x.png │ │ │ ├── ic-menu-icon-program-sel.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── program_icon_red@2x.png │ │ │ │ └── program_icon_red@3x.png │ │ │ ├── ic-menu-icon-program.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── program_icon_gray@2x.png │ │ │ │ └── program_icon_gray@3x.png │ │ │ ├── ic-neutral-logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── neutral-logo@2x.png │ │ │ │ └── neutral-logo@3x.png │ │ │ ├── ic-slot-bg.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── slot-bg@2x.png │ │ │ │ └── slot-bg@3x.png │ │ │ ├── ic-speakers-card.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── speakers-card@2x.png │ │ │ │ └── speakers-card@3x.png │ │ │ └── ic-upcoming.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic-upcomming.png │ │ │ │ └── ic-upcomming@2x.png │ │ ├── Program_Details │ │ │ ├── Contents.json │ │ │ ├── calendar_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── calendarIcon.png │ │ │ │ ├── calendarIcon@2x.png │ │ │ │ └── calendarIcon@3x.png │ │ │ ├── clock_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── clock_icon.png │ │ │ │ ├── clock_icon@2x.png │ │ │ │ └── clock_icon@3x.png │ │ │ ├── location_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── location_icon.png │ │ │ │ ├── location_icon@2x.png │ │ │ │ └── location_icon@3x.png │ │ │ └── toolbar_icon_frame.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── toolbar_icon_frame@2x.png │ │ │ │ └── toolbar_icon_frame@3x.png │ │ ├── SocialMedia │ │ │ ├── Contents.json │ │ │ ├── menu-icon-social-media-sel.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── social_media_icon_red@2x.png │ │ │ │ └── social_media_icon_red@3x.png │ │ │ └── menu-icon-social-media.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── social_media_icon_gray@2x.png │ │ │ │ └── social_media_icon_gray@3x.png │ │ ├── SpeakerDetails │ │ │ ├── Contents.json │ │ │ ├── disabled_twitter.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── disabled_twitter@2x.png │ │ │ │ └── disabled_twitter@3x.png │ │ │ ├── disabled_website.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── disabled_website@2x.png │ │ │ │ └── disabled_website@3x.png │ │ │ ├── twitter_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── twitter_icon@2x.png │ │ │ │ └── twitter_icon@3x.png │ │ │ └── web_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── web_icon@2x.png │ │ │ │ └── web_icon@3x.png │ │ ├── Speakers │ │ │ ├── Contents.json │ │ │ ├── menu-icon-speakers-sel.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── speakers_tab_icon_red@2x.png │ │ │ │ └── speakers_tab_icon_red@3x.png │ │ │ └── menu-icon-speakers.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── speakers_tab_icon_gray@2x.png │ │ │ │ └── speakers_tab_icon_gray@3x.png │ │ ├── Venue │ │ │ ├── Contents.json │ │ │ └── path.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── path@2x.png │ │ │ │ └── path@3x.png │ │ ├── connfa-logo.imageset │ │ │ ├── Contents.json │ │ │ ├── connfa_logo@2x.png │ │ │ └── connfa_logo@3x.png │ │ ├── floor-plan-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── floor_plan_icon.png │ │ │ ├── floor_plan_icon@2x.png │ │ │ └── floor_plan_icon@3x.png │ │ └── share.imageset │ │ │ ├── Contents.json │ │ │ ├── share.png │ │ │ ├── share@2x.png │ │ │ └── share@3x.png │ ├── Fonts │ │ ├── SF-UI-Text-Bold.otf │ │ ├── SF-UI-Text-Regular.otf │ │ └── SF-UI-Text-Semibold.otf │ ├── HTML declaration + css │ │ ├── Declaration.html │ │ ├── event_detail_style.css │ │ └── style.css │ ├── Storyboards │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── FloorPlans.storyboard │ │ ├── Info.storyboard │ │ ├── Interested.storyboard │ │ ├── Location.storyboard │ │ ├── More.storyboard │ │ ├── Pin.storyboard │ │ ├── Program.storyboard │ │ ├── ProgramDay.storyboard │ │ ├── ProgramDetails.storyboard │ │ ├── Settings.storyboard │ │ ├── SocialMedia.storyboard │ │ ├── SpeakerDetails.storyboard │ │ ├── Speakers.storyboard │ │ ├── UnderConstruction.storyboard │ │ ├── Venue.storyboard │ │ └── WebView.storyboard │ └── Views │ │ ├── EmptyStateView.xib │ │ └── SpeakersSectionHeaderView.xib ├── Stores │ ├── EventStorage.swift │ └── Firebase │ │ ├── FirebaseError.swift │ │ ├── FirebaseModel.swift │ │ ├── FirebaseModels │ │ ├── Additional │ │ │ ├── ExperienceLevel.swift │ │ │ └── InfoType.swift │ │ ├── EventModel.swift │ │ ├── FloorPlanModel.swift │ │ ├── InfoModel.swift │ │ ├── LocationModel.swift │ │ ├── PinModel.swift │ │ ├── SpeakerModel.swift │ │ └── TitleModel.swift │ │ ├── FirebaseRepository │ │ ├── EventFirebaseRepository.swift │ │ ├── FirebaseRepository.swift │ │ └── SpeakerFirebaseRepository.swift │ │ ├── InterestedFirebase.swift │ │ ├── Keys.swift │ │ ├── SponsorsRepository.swift │ │ └── UserFirebase.swift └── Support │ ├── AppDelegate.swift │ └── Info.plist ├── ConnfaTests ├── Common │ ├── ConfigurationsTests.swift │ ├── EventStorageTests.swift │ └── FilterStorageTests.swift ├── Info.plist ├── Modules │ ├── EventFirebaseModelTests.swift │ ├── FloorPlanFirebaseModelTests.swift │ ├── InfoFirebaseModelTests.swift │ ├── LocationFirebaseModelTests.swift │ ├── PinFirebaseModelTests.swift │ └── SpeakerFirebaseModelTests.swift └── Repositories │ └── FirebaseRepositoryTests.swift ├── Gymfile ├── Podfile ├── Podfile.lock ├── Pods ├── Alamofire │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AFError.swift │ │ ├── Alamofire.swift │ │ ├── DispatchQueue+Alamofire.swift │ │ ├── MultipartFormData.swift │ │ ├── NetworkReachabilityManager.swift │ │ ├── Notifications.swift │ │ ├── ParameterEncoding.swift │ │ ├── Request.swift │ │ ├── Response.swift │ │ ├── ResponseSerialization.swift │ │ ├── Result.swift │ │ ├── ServerTrustPolicy.swift │ │ ├── SessionDelegate.swift │ │ ├── SessionManager.swift │ │ ├── TaskDelegate.swift │ │ ├── Timeline.swift │ │ └── Validation.swift ├── AlamofireImage │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AFIError.swift │ │ ├── Image.swift │ │ ├── ImageCache.swift │ │ ├── ImageDownloader.swift │ │ ├── ImageFilter.swift │ │ ├── Request+AlamofireImage.swift │ │ ├── UIButton+AlamofireImage.swift │ │ ├── UIImage+AlamofireImage.swift │ │ └── UIImageView+AlamofireImage.swift ├── Firebase │ ├── .cocoapods.yml │ ├── CHANGELOG.md │ ├── CoreOnly │ │ └── Sources │ │ │ ├── Firebase.h │ │ │ └── module.modulemap │ ├── NOTICES │ └── README.md ├── FirebaseAnalytics │ └── Frameworks │ │ ├── FIRAnalyticsConnector.framework │ │ ├── FIRAnalyticsConnector │ │ └── Modules │ │ │ └── module.modulemap │ │ ├── FirebaseAnalytics.framework │ │ ├── FirebaseAnalytics │ │ ├── Headers │ │ │ ├── FIRAnalytics+AppDelegate.h │ │ │ ├── FIRAnalytics.h │ │ │ ├── FIREventNames.h │ │ │ ├── FIRParameterNames.h │ │ │ ├── FIRUserPropertyNames.h │ │ │ └── FirebaseAnalytics.h │ │ └── Modules │ │ │ └── module.modulemap │ │ └── FirebaseCoreDiagnostics.framework │ │ ├── FirebaseCoreDiagnostics │ │ └── Modules │ │ └── module.modulemap ├── FirebaseAnalyticsInterop │ ├── Interop │ │ └── Analytics │ │ │ └── Public │ │ │ ├── FIRAnalyticsInterop.h │ │ │ ├── FIRInteropEventNames.h │ │ │ └── FIRInteropParameterNames.h │ ├── LICENSE │ └── README.md ├── FirebaseAuth │ ├── Firebase │ │ └── Auth │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ └── Source │ │ │ ├── AuthProviders │ │ │ ├── EmailPassword │ │ │ │ ├── FIREmailAuthProvider.m │ │ │ │ ├── FIREmailPasswordAuthCredential.h │ │ │ │ └── FIREmailPasswordAuthCredential.m │ │ │ ├── Facebook │ │ │ │ ├── FIRFacebookAuthCredential.h │ │ │ │ ├── FIRFacebookAuthCredential.m │ │ │ │ └── FIRFacebookAuthProvider.m │ │ │ ├── GameCenter │ │ │ │ ├── FIRGameCenterAuthCredential.h │ │ │ │ ├── FIRGameCenterAuthCredential.m │ │ │ │ └── FIRGameCenterAuthProvider.m │ │ │ ├── GitHub │ │ │ │ ├── FIRGitHubAuthCredential.h │ │ │ │ ├── FIRGitHubAuthCredential.m │ │ │ │ └── FIRGitHubAuthProvider.m │ │ │ ├── Google │ │ │ │ ├── FIRGoogleAuthCredential.h │ │ │ │ ├── FIRGoogleAuthCredential.m │ │ │ │ └── FIRGoogleAuthProvider.m │ │ │ ├── OAuth │ │ │ │ ├── FIROAuthCredential.h │ │ │ │ ├── FIROAuthCredential.m │ │ │ │ └── FIROAuthProvider.m │ │ │ ├── Phone │ │ │ │ ├── FIRPhoneAuthCredential.m │ │ │ │ ├── FIRPhoneAuthCredential_Internal.h │ │ │ │ └── FIRPhoneAuthProvider.m │ │ │ └── Twitter │ │ │ │ ├── FIRTwitterAuthCredential.h │ │ │ │ ├── FIRTwitterAuthCredential.m │ │ │ │ └── FIRTwitterAuthProvider.m │ │ │ ├── FIRActionCodeSettings.m │ │ │ ├── FIRAdditionalUserInfo.m │ │ │ ├── FIRAdditionalUserInfo_Internal.h │ │ │ ├── FIRAuth.m │ │ │ ├── FIRAuthAPNSToken.h │ │ │ ├── FIRAuthAPNSToken.m │ │ │ ├── FIRAuthAPNSTokenManager.h │ │ │ ├── FIRAuthAPNSTokenManager.m │ │ │ ├── FIRAuthAppCredential.h │ │ │ ├── FIRAuthAppCredential.m │ │ │ ├── FIRAuthAppCredentialManager.h │ │ │ ├── FIRAuthAppCredentialManager.m │ │ │ ├── FIRAuthAppDelegateProxy.h │ │ │ ├── FIRAuthAppDelegateProxy.m │ │ │ ├── FIRAuthCredential.m │ │ │ ├── FIRAuthCredential_Internal.h │ │ │ ├── FIRAuthDataResult.m │ │ │ ├── FIRAuthDataResult_Internal.h │ │ │ ├── FIRAuthDefaultUIDelegate.h │ │ │ ├── FIRAuthDefaultUIDelegate.m │ │ │ ├── FIRAuthDispatcher.h │ │ │ ├── FIRAuthDispatcher.m │ │ │ ├── FIRAuthErrorUtils.h │ │ │ ├── FIRAuthErrorUtils.m │ │ │ ├── FIRAuthExceptionUtils.h │ │ │ ├── FIRAuthExceptionUtils.m │ │ │ ├── FIRAuthGlobalWorkQueue.h │ │ │ ├── FIRAuthGlobalWorkQueue.m │ │ │ ├── FIRAuthInternalErrors.h │ │ │ ├── FIRAuthKeychain.h │ │ │ ├── FIRAuthKeychain.m │ │ │ ├── FIRAuthNotificationManager.h │ │ │ ├── FIRAuthNotificationManager.m │ │ │ ├── FIRAuthOperationType.h │ │ │ ├── FIRAuthProvider.m │ │ │ ├── FIRAuthSerialTaskQueue.h │ │ │ ├── FIRAuthSerialTaskQueue.m │ │ │ ├── FIRAuthSettings.m │ │ │ ├── FIRAuthTokenResult.m │ │ │ ├── FIRAuthTokenResult_Internal.h │ │ │ ├── FIRAuthURLPresenter.h │ │ │ ├── FIRAuthURLPresenter.m │ │ │ ├── FIRAuthUserDefaultsStorage.h │ │ │ ├── FIRAuthUserDefaultsStorage.m │ │ │ ├── FIRAuthWebUtils.h │ │ │ ├── FIRAuthWebUtils.m │ │ │ ├── FIRAuthWebView.h │ │ │ ├── FIRAuthWebView.m │ │ │ ├── FIRAuthWebViewController.h │ │ │ ├── FIRAuthWebViewController.m │ │ │ ├── FIRAuth_Internal.h │ │ │ ├── FIRSecureTokenService.h │ │ │ ├── FIRSecureTokenService.m │ │ │ ├── FIRUser.m │ │ │ ├── FIRUserInfoImpl.h │ │ │ ├── FIRUserInfoImpl.m │ │ │ ├── FIRUserMetadata.m │ │ │ ├── FIRUserMetadata_Internal.h │ │ │ ├── FIRUser_Internal.h │ │ │ ├── FirebaseAuthVersion.m │ │ │ ├── NSData+FIRBase64.h │ │ │ ├── NSData+FIRBase64.m │ │ │ ├── Public │ │ │ ├── FIRActionCodeSettings.h │ │ │ ├── FIRAdditionalUserInfo.h │ │ │ ├── FIRAuth.h │ │ │ ├── FIRAuthAPNSTokenType.h │ │ │ ├── FIRAuthCredential.h │ │ │ ├── FIRAuthDataResult.h │ │ │ ├── FIRAuthErrors.h │ │ │ ├── FIRAuthSettings.h │ │ │ ├── FIRAuthTokenResult.h │ │ │ ├── FIRAuthUIDelegate.h │ │ │ ├── FIREmailAuthProvider.h │ │ │ ├── FIRFacebookAuthProvider.h │ │ │ ├── FIRGameCenterAuthProvider.h │ │ │ ├── FIRGitHubAuthProvider.h │ │ │ ├── FIRGoogleAuthProvider.h │ │ │ ├── FIROAuthProvider.h │ │ │ ├── FIRPhoneAuthCredential.h │ │ │ ├── FIRPhoneAuthProvider.h │ │ │ ├── FIRTwitterAuthProvider.h │ │ │ ├── FIRUser.h │ │ │ ├── FIRUserInfo.h │ │ │ ├── FIRUserMetadata.h │ │ │ ├── FirebaseAuth.h │ │ │ └── FirebaseAuthVersion.h │ │ │ └── RPCs │ │ │ ├── FIRAuthBackend.h │ │ │ ├── FIRAuthBackend.m │ │ │ ├── FIRAuthRPCRequest.h │ │ │ ├── FIRAuthRPCResponse.h │ │ │ ├── FIRAuthRequestConfiguration.h │ │ │ ├── FIRAuthRequestConfiguration.m │ │ │ ├── FIRCreateAuthURIRequest.h │ │ │ ├── FIRCreateAuthURIRequest.m │ │ │ ├── FIRCreateAuthURIResponse.h │ │ │ ├── FIRCreateAuthURIResponse.m │ │ │ ├── FIRDeleteAccountRequest.h │ │ │ ├── FIRDeleteAccountRequest.m │ │ │ ├── FIRDeleteAccountResponse.h │ │ │ ├── FIRDeleteAccountResponse.m │ │ │ ├── FIREmailLinkSignInRequest.h │ │ │ ├── FIREmailLinkSignInRequest.m │ │ │ ├── FIREmailLinkSignInResponse.h │ │ │ ├── FIREmailLinkSignInResponse.m │ │ │ ├── FIRGetAccountInfoRequest.h │ │ │ ├── FIRGetAccountInfoRequest.m │ │ │ ├── FIRGetAccountInfoResponse.h │ │ │ ├── FIRGetAccountInfoResponse.m │ │ │ ├── FIRGetOOBConfirmationCodeRequest.h │ │ │ ├── FIRGetOOBConfirmationCodeRequest.m │ │ │ ├── FIRGetOOBConfirmationCodeResponse.h │ │ │ ├── FIRGetOOBConfirmationCodeResponse.m │ │ │ ├── FIRGetProjectConfigRequest.h │ │ │ ├── FIRGetProjectConfigRequest.m │ │ │ ├── FIRGetProjectConfigResponse.h │ │ │ ├── FIRGetProjectConfigResponse.m │ │ │ ├── FIRIdentityToolkitRequest.h │ │ │ ├── FIRIdentityToolkitRequest.m │ │ │ ├── FIRResetPasswordRequest.h │ │ │ ├── FIRResetPasswordRequest.m │ │ │ ├── FIRResetPasswordResponse.h │ │ │ ├── FIRResetPasswordResponse.m │ │ │ ├── FIRSecureTokenRequest.h │ │ │ ├── FIRSecureTokenRequest.m │ │ │ ├── FIRSecureTokenResponse.h │ │ │ ├── FIRSecureTokenResponse.m │ │ │ ├── FIRSendVerificationCodeRequest.h │ │ │ ├── FIRSendVerificationCodeRequest.m │ │ │ ├── FIRSendVerificationCodeResponse.h │ │ │ ├── FIRSendVerificationCodeResponse.m │ │ │ ├── FIRSetAccountInfoRequest.h │ │ │ ├── FIRSetAccountInfoRequest.m │ │ │ ├── FIRSetAccountInfoResponse.h │ │ │ ├── FIRSetAccountInfoResponse.m │ │ │ ├── FIRSignInWithGameCenterRequest.h │ │ │ ├── FIRSignInWithGameCenterRequest.m │ │ │ ├── FIRSignInWithGameCenterResponse.h │ │ │ ├── FIRSignInWithGameCenterResponse.m │ │ │ ├── FIRSignUpNewUserRequest.h │ │ │ ├── FIRSignUpNewUserRequest.m │ │ │ ├── FIRSignUpNewUserResponse.h │ │ │ ├── FIRSignUpNewUserResponse.m │ │ │ ├── FIRVerifyAssertionRequest.h │ │ │ ├── FIRVerifyAssertionRequest.m │ │ │ ├── FIRVerifyAssertionResponse.h │ │ │ ├── FIRVerifyAssertionResponse.m │ │ │ ├── FIRVerifyClientRequest.h │ │ │ ├── FIRVerifyClientRequest.m │ │ │ ├── FIRVerifyClientResponse.h │ │ │ ├── FIRVerifyClientResponse.m │ │ │ ├── FIRVerifyCustomTokenRequest.h │ │ │ ├── FIRVerifyCustomTokenRequest.m │ │ │ ├── FIRVerifyCustomTokenResponse.h │ │ │ ├── FIRVerifyCustomTokenResponse.m │ │ │ ├── FIRVerifyPasswordRequest.h │ │ │ ├── FIRVerifyPasswordRequest.m │ │ │ ├── FIRVerifyPasswordResponse.h │ │ │ ├── FIRVerifyPasswordResponse.m │ │ │ ├── FIRVerifyPhoneNumberRequest.h │ │ │ ├── FIRVerifyPhoneNumberRequest.m │ │ │ ├── FIRVerifyPhoneNumberResponse.h │ │ │ └── FIRVerifyPhoneNumberResponse.m │ ├── LICENSE │ └── README.md ├── FirebaseAuthInterop │ ├── Interop │ │ └── Auth │ │ │ └── Public │ │ │ └── FIRAuthInterop.h │ ├── LICENSE │ └── README.md ├── FirebaseCore │ ├── Firebase │ │ └── Core │ │ │ ├── FIRAnalyticsConfiguration.m │ │ │ ├── FIRApp.m │ │ │ ├── FIRAppAssociationRegistration.m │ │ │ ├── FIRBundleUtil.m │ │ │ ├── FIRComponent.m │ │ │ ├── FIRComponentContainer.m │ │ │ ├── FIRComponentType.m │ │ │ ├── FIRConfiguration.m │ │ │ ├── FIRDependency.m │ │ │ ├── FIRErrors.m │ │ │ ├── FIRLogger.m │ │ │ ├── FIROptions.m │ │ │ ├── FIRVersion.m │ │ │ ├── Private │ │ │ ├── FIRAnalyticsConfiguration+Internal.h │ │ │ ├── FIRAppAssociationRegistration.h │ │ │ ├── FIRAppInternal.h │ │ │ ├── FIRBundleUtil.h │ │ │ ├── FIRComponent.h │ │ │ ├── FIRComponentContainer.h │ │ │ ├── FIRComponentContainerInternal.h │ │ │ ├── FIRComponentRegistrant.h │ │ │ ├── FIRComponentType.h │ │ │ ├── FIRCoreConfigurable.h │ │ │ ├── FIRDependency.h │ │ │ ├── FIRErrorCode.h │ │ │ ├── FIRErrors.h │ │ │ ├── FIRLogger.h │ │ │ ├── FIROptionsInternal.h │ │ │ └── FIRVersion.h │ │ │ └── Public │ │ │ ├── FIRAnalyticsConfiguration.h │ │ │ ├── FIRApp.h │ │ │ ├── FIRConfiguration.h │ │ │ ├── FIRLoggerLevel.h │ │ │ ├── FIROptions.h │ │ │ └── FirebaseCore.h │ ├── LICENSE │ └── README.md ├── FirebaseDatabase │ ├── Firebase │ │ └── Database │ │ │ ├── Api │ │ │ ├── FIRDataSnapshot.m │ │ │ ├── FIRDatabase.m │ │ │ ├── FIRDatabaseComponent.h │ │ │ ├── FIRDatabaseComponent.m │ │ │ ├── FIRDatabaseConfig.h │ │ │ ├── FIRDatabaseConfig.m │ │ │ ├── FIRDatabaseQuery.m │ │ │ ├── FIRMutableData.m │ │ │ ├── FIRServerValue.m │ │ │ ├── FIRTransactionResult.m │ │ │ └── Private │ │ │ │ ├── FIRDataSnapshot_Private.h │ │ │ │ ├── FIRDatabaseQuery_Private.h │ │ │ │ ├── FIRDatabaseReference_Private.h │ │ │ │ ├── FIRDatabase_Private.h │ │ │ │ ├── FIRMutableData_Private.h │ │ │ │ ├── FIRTransactionResult_Private.h │ │ │ │ └── FTypedefs_Private.h │ │ │ ├── Constants │ │ │ ├── FConstants.h │ │ │ └── FConstants.m │ │ │ ├── Core │ │ │ ├── FCompoundHash.h │ │ │ ├── FCompoundHash.m │ │ │ ├── FListenProvider.h │ │ │ ├── FListenProvider.m │ │ │ ├── FPersistentConnection.h │ │ │ ├── FPersistentConnection.m │ │ │ ├── FQueryParams.h │ │ │ ├── FQueryParams.m │ │ │ ├── FQuerySpec.h │ │ │ ├── FQuerySpec.m │ │ │ ├── FRangeMerge.h │ │ │ ├── FRangeMerge.m │ │ │ ├── FRepo.h │ │ │ ├── FRepo.m │ │ │ ├── FRepoInfo.h │ │ │ ├── FRepoInfo.m │ │ │ ├── FRepoManager.h │ │ │ ├── FRepoManager.m │ │ │ ├── FRepo_Private.h │ │ │ ├── FServerValues.h │ │ │ ├── FServerValues.m │ │ │ ├── FSnapshotHolder.h │ │ │ ├── FSnapshotHolder.m │ │ │ ├── FSparseSnapshotTree.h │ │ │ ├── FSparseSnapshotTree.m │ │ │ ├── FSyncPoint.h │ │ │ ├── FSyncPoint.m │ │ │ ├── FSyncTree.h │ │ │ ├── FSyncTree.m │ │ │ ├── FWriteRecord.h │ │ │ ├── FWriteRecord.m │ │ │ ├── FWriteTree.h │ │ │ ├── FWriteTree.m │ │ │ ├── FWriteTreeRef.h │ │ │ ├── FWriteTreeRef.m │ │ │ ├── Operation │ │ │ │ ├── FAckUserWrite.h │ │ │ │ ├── FAckUserWrite.m │ │ │ │ ├── FMerge.h │ │ │ │ ├── FMerge.m │ │ │ │ ├── FOperation.h │ │ │ │ ├── FOperationSource.h │ │ │ │ ├── FOperationSource.m │ │ │ │ ├── FOverwrite.h │ │ │ │ └── FOverwrite.m │ │ │ ├── Utilities │ │ │ │ ├── FIRRetryHelper.h │ │ │ │ ├── FIRRetryHelper.m │ │ │ │ ├── FImmutableTree.h │ │ │ │ ├── FImmutableTree.m │ │ │ │ ├── FPath.h │ │ │ │ ├── FPath.m │ │ │ │ ├── FTree.h │ │ │ │ ├── FTree.m │ │ │ │ ├── FTreeNode.h │ │ │ │ └── FTreeNode.m │ │ │ └── View │ │ │ │ ├── FCacheNode.h │ │ │ │ ├── FCacheNode.m │ │ │ │ ├── FCancelEvent.h │ │ │ │ ├── FCancelEvent.m │ │ │ │ ├── FChange.h │ │ │ │ ├── FChange.m │ │ │ │ ├── FChildEventRegistration.h │ │ │ │ ├── FChildEventRegistration.m │ │ │ │ ├── FDataEvent.h │ │ │ │ ├── FDataEvent.m │ │ │ │ ├── FEvent.h │ │ │ │ ├── FEventRaiser.h │ │ │ │ ├── FEventRaiser.m │ │ │ │ ├── FEventRegistration.h │ │ │ │ ├── FKeepSyncedEventRegistration.h │ │ │ │ ├── FKeepSyncedEventRegistration.m │ │ │ │ ├── FValueEventRegistration.h │ │ │ │ ├── FValueEventRegistration.m │ │ │ │ ├── FView.h │ │ │ │ ├── FView.m │ │ │ │ ├── FViewCache.h │ │ │ │ ├── FViewCache.m │ │ │ │ └── Filter │ │ │ │ ├── FChildChangeAccumulator.h │ │ │ │ ├── FChildChangeAccumulator.m │ │ │ │ ├── FCompleteChildSource.h │ │ │ │ ├── FIndexedFilter.h │ │ │ │ ├── FIndexedFilter.m │ │ │ │ ├── FLimitedFilter.h │ │ │ │ ├── FLimitedFilter.m │ │ │ │ └── FNodeFilter.h │ │ │ ├── FClock.h │ │ │ ├── FClock.m │ │ │ ├── FEventGenerator.h │ │ │ ├── FEventGenerator.m │ │ │ ├── FIRDatabaseConfig_Private.h │ │ │ ├── FIRDatabaseReference.m │ │ │ ├── FIndex.h │ │ │ ├── FIndex.m │ │ │ ├── FKeyIndex.h │ │ │ ├── FKeyIndex.m │ │ │ ├── FListenComplete.h │ │ │ ├── FListenComplete.m │ │ │ ├── FMaxNode.h │ │ │ ├── FMaxNode.m │ │ │ ├── FNamedNode.h │ │ │ ├── FNamedNode.m │ │ │ ├── FPathIndex.h │ │ │ ├── FPathIndex.m │ │ │ ├── FPriorityIndex.h │ │ │ ├── FPriorityIndex.m │ │ │ ├── FRangedFilter.h │ │ │ ├── FRangedFilter.m │ │ │ ├── FTransformedEnumerator.h │ │ │ ├── FTransformedEnumerator.m │ │ │ ├── FValueIndex.h │ │ │ ├── FValueIndex.m │ │ │ ├── FViewProcessor.h │ │ │ ├── FViewProcessor.m │ │ │ ├── FViewProcessorResult.h │ │ │ ├── FViewProcessorResult.m │ │ │ ├── Login │ │ │ ├── FAuthTokenProvider.h │ │ │ ├── FAuthTokenProvider.m │ │ │ ├── FIRNoopAuthTokenProvider.h │ │ │ └── FIRNoopAuthTokenProvider.m │ │ │ ├── Persistence │ │ │ ├── FCachePolicy.h │ │ │ ├── FCachePolicy.m │ │ │ ├── FLevelDBStorageEngine.h │ │ │ ├── FLevelDBStorageEngine.m │ │ │ ├── FPendingPut.h │ │ │ ├── FPendingPut.m │ │ │ ├── FPersistenceManager.h │ │ │ ├── FPersistenceManager.m │ │ │ ├── FPruneForest.h │ │ │ ├── FPruneForest.m │ │ │ ├── FStorageEngine.h │ │ │ ├── FTrackedQuery.h │ │ │ ├── FTrackedQuery.m │ │ │ ├── FTrackedQueryManager.h │ │ │ └── FTrackedQueryManager.m │ │ │ ├── Public │ │ │ ├── FIRDataEventType.h │ │ │ ├── FIRDataSnapshot.h │ │ │ ├── FIRDatabase.h │ │ │ ├── FIRDatabaseQuery.h │ │ │ ├── FIRDatabaseReference.h │ │ │ ├── FIRMutableData.h │ │ │ ├── FIRServerValue.h │ │ │ ├── FIRTransactionResult.h │ │ │ └── FirebaseDatabase.h │ │ │ ├── Realtime │ │ │ ├── FConnection.h │ │ │ ├── FConnection.m │ │ │ ├── FWebSocketConnection.h │ │ │ └── FWebSocketConnection.m │ │ │ ├── Snapshot │ │ │ ├── FChildrenNode.h │ │ │ ├── FChildrenNode.m │ │ │ ├── FCompoundWrite.h │ │ │ ├── FCompoundWrite.m │ │ │ ├── FEmptyNode.h │ │ │ ├── FEmptyNode.m │ │ │ ├── FIndexedNode.h │ │ │ ├── FIndexedNode.m │ │ │ ├── FLeafNode.h │ │ │ ├── FLeafNode.m │ │ │ ├── FNode.h │ │ │ ├── FSnapshotUtilities.h │ │ │ └── FSnapshotUtilities.m │ │ │ ├── Utilities │ │ │ ├── FAtomicNumber.h │ │ │ ├── FAtomicNumber.m │ │ │ ├── FEventEmitter.h │ │ │ ├── FEventEmitter.m │ │ │ ├── FNextPushId.h │ │ │ ├── FNextPushId.m │ │ │ ├── FParsedUrl.h │ │ │ ├── FParsedUrl.m │ │ │ ├── FStringUtilities.h │ │ │ ├── FStringUtilities.m │ │ │ ├── FTypedefs.h │ │ │ ├── FUtilities.h │ │ │ ├── FUtilities.m │ │ │ ├── FValidation.h │ │ │ ├── FValidation.m │ │ │ └── Tuples │ │ │ │ ├── FTupleBoolBlock.h │ │ │ │ ├── FTupleBoolBlock.m │ │ │ │ ├── FTupleCallbackStatus.h │ │ │ │ ├── FTupleCallbackStatus.m │ │ │ │ ├── FTupleFirebase.h │ │ │ │ ├── FTupleFirebase.m │ │ │ │ ├── FTupleNodePath.h │ │ │ │ ├── FTupleNodePath.m │ │ │ │ ├── FTupleObjectNode.h │ │ │ │ ├── FTupleObjectNode.m │ │ │ │ ├── FTupleObjects.h │ │ │ │ ├── FTupleObjects.m │ │ │ │ ├── FTupleOnDisconnect.h │ │ │ │ ├── FTupleOnDisconnect.m │ │ │ │ ├── FTuplePathValue.h │ │ │ │ ├── FTuplePathValue.m │ │ │ │ ├── FTupleRemovedQueriesEvents.h │ │ │ │ ├── FTupleRemovedQueriesEvents.m │ │ │ │ ├── FTupleSetIdPath.h │ │ │ │ ├── FTupleSetIdPath.m │ │ │ │ ├── FTupleStringNode.h │ │ │ │ ├── FTupleStringNode.m │ │ │ │ ├── FTupleTSN.h │ │ │ │ ├── FTupleTSN.m │ │ │ │ ├── FTupleTransaction.h │ │ │ │ ├── FTupleTransaction.m │ │ │ │ ├── FTupleUserCallback.h │ │ │ │ └── FTupleUserCallback.m │ │ │ └── third_party │ │ │ ├── FImmutableSortedDictionary │ │ │ └── FImmutableSortedDictionary │ │ │ │ ├── FArraySortedDictionary.h │ │ │ │ ├── FArraySortedDictionary.m │ │ │ │ ├── FImmutableSortedDictionary.h │ │ │ │ ├── FImmutableSortedDictionary.m │ │ │ │ ├── FImmutableSortedSet.h │ │ │ │ ├── FImmutableSortedSet.m │ │ │ │ ├── FLLRBEmptyNode.h │ │ │ │ ├── FLLRBEmptyNode.m │ │ │ │ ├── FLLRBNode.h │ │ │ │ ├── FLLRBValueNode.h │ │ │ │ ├── FLLRBValueNode.m │ │ │ │ ├── FTreeSortedDictionary.h │ │ │ │ ├── FTreeSortedDictionary.m │ │ │ │ ├── FTreeSortedDictionaryEnumerator.h │ │ │ │ └── FTreeSortedDictionaryEnumerator.m │ │ │ ├── SocketRocket │ │ │ ├── FSRWebSocket.h │ │ │ ├── FSRWebSocket.m │ │ │ ├── NSData+SRB64Additions.h │ │ │ ├── NSData+SRB64Additions.m │ │ │ ├── fbase64.c │ │ │ └── fbase64.h │ │ │ └── Wrap-leveldb │ │ │ ├── APLevelDB.h │ │ │ └── APLevelDB.mm │ ├── LICENSE │ └── README.md ├── FirebaseDynamicLinks │ ├── Firebase │ │ └── DynamicLinks │ │ │ ├── FDLURLComponents │ │ │ ├── FDLURLComponents+Private.h │ │ │ ├── FDLURLComponents.m │ │ │ ├── FIRDynamicLinkComponentsKeyProvider.h │ │ │ └── FIRDynamicLinkComponentsKeyProvider.m │ │ │ ├── FIRDLDefaultRetrievalProcessV2.h │ │ │ ├── FIRDLDefaultRetrievalProcessV2.m │ │ │ ├── FIRDLJavaScriptExecutor.h │ │ │ ├── FIRDLJavaScriptExecutor.m │ │ │ ├── FIRDLRetrievalProcessFactory.h │ │ │ ├── FIRDLRetrievalProcessFactory.m │ │ │ ├── FIRDLRetrievalProcessProtocols.h │ │ │ ├── FIRDLRetrievalProcessResult+Private.h │ │ │ ├── FIRDLRetrievalProcessResult.h │ │ │ ├── FIRDLRetrievalProcessResult.m │ │ │ ├── FIRDLScionLogging.h │ │ │ ├── FIRDLScionLogging.m │ │ │ ├── FIRDynamicLink+Private.h │ │ │ ├── FIRDynamicLink.m │ │ │ ├── FIRDynamicLinkNetworking+Private.h │ │ │ ├── FIRDynamicLinkNetworking.h │ │ │ ├── FIRDynamicLinkNetworking.m │ │ │ ├── FIRDynamicLinks+FirstParty.h │ │ │ ├── FIRDynamicLinks+Private.h │ │ │ ├── FIRDynamicLinks.m │ │ │ ├── GINInvocation │ │ │ ├── GINArgument.h │ │ │ ├── GINArgument.m │ │ │ ├── GINInvocation.h │ │ │ └── GINInvocation.m │ │ │ ├── Logging │ │ │ ├── FDLLogging.h │ │ │ └── FDLLogging.m │ │ │ ├── Public │ │ │ ├── FDLURLComponents.h │ │ │ ├── FIRDynamicLink.h │ │ │ ├── FIRDynamicLinks.h │ │ │ ├── FIRDynamicLinksCommon.h │ │ │ └── FirebaseDynamicLinks.h │ │ │ └── Utilities │ │ │ ├── FDLUtilities.h │ │ │ └── FDLUtilities.m │ ├── LICENSE │ └── README.md ├── FirebaseInstanceID │ ├── CHANGELOG.md │ ├── Frameworks │ │ └── FirebaseInstanceID.framework │ │ │ ├── FirebaseInstanceID │ │ │ ├── Headers │ │ │ ├── FIRInstanceID.h │ │ │ └── FirebaseInstanceID.h │ │ │ └── Modules │ │ │ └── module.modulemap │ └── README.md ├── FirebaseStorage │ ├── Firebase │ │ └── Storage │ │ │ ├── FIRStorage.m │ │ │ ├── FIRStorageComponent.m │ │ │ ├── FIRStorageConstants.m │ │ │ ├── FIRStorageDeleteTask.m │ │ │ ├── FIRStorageDownloadTask.m │ │ │ ├── FIRStorageErrors.m │ │ │ ├── FIRStorageGetDownloadURLTask.m │ │ │ ├── FIRStorageGetMetadataTask.m │ │ │ ├── FIRStorageMetadata.m │ │ │ ├── FIRStorageObservableTask.m │ │ │ ├── FIRStoragePath.m │ │ │ ├── FIRStorageReference.m │ │ │ ├── FIRStorageTask.m │ │ │ ├── FIRStorageTaskSnapshot.m │ │ │ ├── FIRStorageTokenAuthorizer.m │ │ │ ├── FIRStorageUpdateMetadataTask.m │ │ │ ├── FIRStorageUploadTask.m │ │ │ ├── FIRStorageUtils.m │ │ │ ├── Private │ │ │ ├── FIRStorageComponent.h │ │ │ ├── FIRStorageConstants_Private.h │ │ │ ├── FIRStorageDeleteTask.h │ │ │ ├── FIRStorageDownloadTask_Private.h │ │ │ ├── FIRStorageErrors.h │ │ │ ├── FIRStorageGetDownloadURLTask.h │ │ │ ├── FIRStorageGetDownloadURLTask_Private.h │ │ │ ├── FIRStorageGetMetadataTask.h │ │ │ ├── FIRStorageMetadata_Private.h │ │ │ ├── FIRStorageObservableTask_Private.h │ │ │ ├── FIRStoragePath.h │ │ │ ├── FIRStorageReference_Private.h │ │ │ ├── FIRStorageTaskSnapshot_Private.h │ │ │ ├── FIRStorageTask_Private.h │ │ │ ├── FIRStorageTokenAuthorizer.h │ │ │ ├── FIRStorageUpdateMetadataTask.h │ │ │ ├── FIRStorageUploadTask_Private.h │ │ │ ├── FIRStorageUtils.h │ │ │ └── FIRStorage_Private.h │ │ │ └── Public │ │ │ ├── FIRStorage.h │ │ │ ├── FIRStorageConstants.h │ │ │ ├── FIRStorageDownloadTask.h │ │ │ ├── FIRStorageMetadata.h │ │ │ ├── FIRStorageObservableTask.h │ │ │ ├── FIRStorageReference.h │ │ │ ├── FIRStorageTask.h │ │ │ ├── FIRStorageTaskSnapshot.h │ │ │ ├── FIRStorageUploadTask.h │ │ │ └── FirebaseStorage.h │ ├── LICENSE │ └── README.md ├── GTMSessionFetcher │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── GTMSessionFetcher.h │ │ ├── GTMSessionFetcher.m │ │ ├── GTMSessionFetcherLogging.h │ │ ├── GTMSessionFetcherLogging.m │ │ ├── GTMSessionFetcherService.h │ │ ├── GTMSessionFetcherService.m │ │ ├── GTMSessionUploadFetcher.h │ │ └── GTMSessionUploadFetcher.m ├── GoogleAppMeasurement │ └── Frameworks │ │ └── GoogleAppMeasurement.framework │ │ ├── GoogleAppMeasurement │ │ └── Modules │ │ └── module.modulemap ├── GoogleUtilities │ ├── GoogleUtilities │ │ ├── AppDelegateSwizzler │ │ │ ├── GULAppDelegateSwizzler.m │ │ │ ├── Internal │ │ │ │ └── GULAppDelegateSwizzler_Private.h │ │ │ └── Private │ │ │ │ └── GULAppDelegateSwizzler.h │ │ ├── Common │ │ │ └── GULLoggerCodes.h │ │ ├── Environment │ │ │ └── third_party │ │ │ │ ├── GULAppEnvironmentUtil.h │ │ │ │ └── GULAppEnvironmentUtil.m │ │ ├── Logger │ │ │ ├── GULLogger.m │ │ │ ├── Private │ │ │ │ └── GULLogger.h │ │ │ └── Public │ │ │ │ └── GULLoggerLevel.h │ │ ├── MethodSwizzler │ │ │ ├── GULSwizzler.m │ │ │ └── Private │ │ │ │ ├── GULOriginalIMPConvenienceMacros.h │ │ │ │ └── GULSwizzler.h │ │ ├── NSData+zlib │ │ │ ├── GULNSData+zlib.h │ │ │ └── GULNSData+zlib.m │ │ ├── Network │ │ │ ├── GULMutableDictionary.m │ │ │ ├── GULNetwork.m │ │ │ ├── GULNetworkConstants.m │ │ │ ├── GULNetworkURLSession.m │ │ │ └── Private │ │ │ │ ├── GULMutableDictionary.h │ │ │ │ ├── GULNetwork.h │ │ │ │ ├── GULNetworkConstants.h │ │ │ │ ├── GULNetworkLoggerProtocol.h │ │ │ │ ├── GULNetworkMessageCode.h │ │ │ │ └── GULNetworkURLSession.h │ │ ├── Reachability │ │ │ ├── GULReachabilityChecker+Internal.h │ │ │ ├── GULReachabilityChecker.m │ │ │ └── Private │ │ │ │ ├── GULReachabilityChecker.h │ │ │ │ └── GULReachabilityMessageCode.h │ │ └── UserDefaults │ │ │ ├── GULUserDefaults.m │ │ │ └── Private │ │ │ └── GULUserDefaults.h │ ├── LICENSE │ └── README.md ├── Headers │ ├── Private │ │ ├── Firebase │ │ │ └── Firebase.h │ │ ├── FirebaseAnalyticsInterop │ │ │ ├── FIRAnalyticsInterop.h │ │ │ ├── FIRInteropEventNames.h │ │ │ └── FIRInteropParameterNames.h │ │ └── FirebaseAuthInterop │ │ │ └── FIRAuthInterop.h │ └── Public │ │ ├── Firebase │ │ └── Firebase.h │ │ ├── FirebaseAnalyticsInterop │ │ ├── FIRAnalyticsInterop.h │ │ ├── FIRInteropEventNames.h │ │ └── FIRInteropParameterNames.h │ │ └── FirebaseAuthInterop │ │ └── FIRAuthInterop.h ├── Manifest.lock ├── OHHTTPStubs │ ├── LICENSE │ ├── OHHTTPStubs │ │ └── Sources │ │ │ ├── Compatibility.h │ │ │ ├── JSON │ │ │ ├── OHHTTPStubsResponse+JSON.h │ │ │ └── OHHTTPStubsResponse+JSON.m │ │ │ ├── NSURLSession │ │ │ ├── NSURLRequest+HTTPBodyTesting.h │ │ │ ├── NSURLRequest+HTTPBodyTesting.m │ │ │ ├── OHHTTPStubs+NSURLSessionConfiguration.m │ │ │ ├── OHHTTPStubsMethodSwizzling.h │ │ │ └── OHHTTPStubsMethodSwizzling.m │ │ │ ├── OHHTTPStubs.h │ │ │ ├── OHHTTPStubs.m │ │ │ ├── OHHTTPStubsResponse.h │ │ │ ├── OHHTTPStubsResponse.m │ │ │ ├── OHPathHelpers │ │ │ ├── OHPathHelpers.h │ │ │ └── OHPathHelpers.m │ │ │ └── Swift │ │ │ └── OHHTTPStubsSwift.swift │ └── README.md ├── Pods.xcodeproj │ └── project.pbxproj ├── SVProgressHUD │ ├── LICENSE │ ├── README.md │ └── SVProgressHUD │ │ ├── SVIndefiniteAnimatedView.h │ │ ├── SVIndefiniteAnimatedView.m │ │ ├── SVProgressAnimatedView.h │ │ ├── SVProgressAnimatedView.m │ │ ├── SVProgressHUD.bundle │ │ ├── angle-mask.png │ │ ├── angle-mask@2x.png │ │ ├── angle-mask@3x.png │ │ ├── error.png │ │ ├── error@2x.png │ │ ├── error@3x.png │ │ ├── info.png │ │ ├── info@2x.png │ │ ├── info@3x.png │ │ ├── success.png │ │ ├── success@2x.png │ │ └── success@3x.png │ │ ├── SVProgressHUD.h │ │ ├── SVProgressHUD.m │ │ ├── SVRadialGradientLayer.h │ │ └── SVRadialGradientLayer.m ├── SwiftDate │ ├── LICENSE │ ├── README.md │ └── Sources │ │ └── SwiftDate │ │ ├── Date │ │ ├── Date+Compare.swift │ │ ├── Date+Components.swift │ │ ├── Date+Create.swift │ │ ├── Date+Math.swift │ │ └── Date.swift │ │ ├── DateInRegion │ │ ├── DateInRegion+Compare.swift │ │ ├── DateInRegion+Components.swift │ │ ├── DateInRegion+Create.swift │ │ ├── DateInRegion+Math.swift │ │ ├── DateInRegion.swift │ │ └── Region.swift │ │ ├── DateRepresentable.swift │ │ ├── Formatters │ │ ├── DotNetParserFormatter.swift │ │ ├── Formatter+Protocols.swift │ │ ├── ISOFormatter.swift │ │ ├── ISOParser.swift │ │ └── RelativeFormatter │ │ │ ├── RelativeFormatter+Style.swift │ │ │ ├── RelativeFormatter.swift │ │ │ └── languages │ │ │ ├── lang_af.swift │ │ │ ├── lang_am.swift │ │ │ ├── lang_ar.swift │ │ │ ├── lang_ar_AE.swift │ │ │ ├── lang_as.swift │ │ │ ├── lang_az.swift │ │ │ ├── lang_be.swift │ │ │ ├── lang_bg.swift │ │ │ ├── lang_bn.swift │ │ │ ├── lang_br.swift │ │ │ ├── lang_bs.swift │ │ │ ├── lang_bsCyrl.swift │ │ │ ├── lang_ca.swift │ │ │ ├── lang_cs.swift │ │ │ ├── lang_cy.swift │ │ │ ├── lang_da.swift │ │ │ ├── lang_de.swift │ │ │ ├── lang_dsb.swift │ │ │ ├── lang_dz.swift │ │ │ ├── lang_ee.swift │ │ │ ├── lang_el.swift │ │ │ ├── lang_en.swift │ │ │ ├── lang_es.swift │ │ │ ├── lang_es_AR.swift │ │ │ ├── lang_es_MX.swift │ │ │ ├── lang_es_PY.swift │ │ │ ├── lang_es_US.swift │ │ │ ├── lang_et.swift │ │ │ ├── lang_eu.swift │ │ │ ├── lang_fa.swift │ │ │ ├── lang_fi.swift │ │ │ ├── lang_fil.swift │ │ │ ├── lang_fo.swift │ │ │ ├── lang_fr.swift │ │ │ ├── lang_fr_CA.swift │ │ │ ├── lang_fur.swift │ │ │ ├── lang_fy.swift │ │ │ ├── lang_ga.swift │ │ │ ├── lang_gd.swift │ │ │ ├── lang_gl.swift │ │ │ ├── lang_gu.swift │ │ │ ├── lang_he.swift │ │ │ ├── lang_hi.swift │ │ │ ├── lang_hr.swift │ │ │ ├── lang_hsb.swift │ │ │ ├── lang_hu.swift │ │ │ ├── lang_hy.swift │ │ │ ├── lang_id.swift │ │ │ ├── lang_is.swift │ │ │ ├── lang_it.swift │ │ │ ├── lang_ja.swift │ │ │ ├── lang_jgo.swift │ │ │ ├── lang_ka.swift │ │ │ ├── lang_kea.swift │ │ │ ├── lang_kk.swift │ │ │ ├── lang_kl.swift │ │ │ ├── lang_km.swift │ │ │ ├── lang_kn.swift │ │ │ ├── lang_ko.swift │ │ │ ├── lang_kok.swift │ │ │ ├── lang_ksh.swift │ │ │ ├── lang_ky.swift │ │ │ ├── lang_lb.swift │ │ │ ├── lang_lkt.swift │ │ │ ├── lang_lo.swift │ │ │ ├── lang_lt.swift │ │ │ ├── lang_lv.swift │ │ │ ├── lang_mk.swift │ │ │ ├── lang_ml.swift │ │ │ ├── lang_mn.swift │ │ │ ├── lang_mr.swift │ │ │ ├── lang_ms.swift │ │ │ ├── lang_mt.swift │ │ │ ├── lang_my.swift │ │ │ ├── lang_mzn.swift │ │ │ ├── lang_nb.swift │ │ │ ├── lang_ne.swift │ │ │ ├── lang_nl.swift │ │ │ ├── lang_nn.swift │ │ │ ├── lang_or.swift │ │ │ ├── lang_pa.swift │ │ │ ├── lang_pl.swift │ │ │ ├── lang_ps.swift │ │ │ ├── lang_pt.swift │ │ │ ├── lang_ro.swift │ │ │ ├── lang_ru.swift │ │ │ ├── lang_sah.swift │ │ │ ├── lang_sd.swift │ │ │ ├── lang_se.swift │ │ │ ├── lang_se_FI.swift │ │ │ ├── lang_si.swift │ │ │ ├── lang_sk.swift │ │ │ ├── lang_sl.swift │ │ │ ├── lang_sq.swift │ │ │ ├── lang_sr.swift │ │ │ ├── lang_sr_Latn.swift │ │ │ ├── lang_sv.swift │ │ │ ├── lang_sw.swift │ │ │ ├── lang_ta.swift │ │ │ ├── lang_te.swift │ │ │ ├── lang_th.swift │ │ │ ├── lang_ti.swift │ │ │ ├── lang_tk.swift │ │ │ ├── lang_to.swift │ │ │ ├── lang_tr.swift │ │ │ ├── lang_ug.swift │ │ │ ├── lang_uk.swift │ │ │ ├── lang_ur.swift │ │ │ ├── lang_ur_IN.swift │ │ │ ├── lang_uz.swift │ │ │ ├── lang_uz_Cyrl.swift │ │ │ ├── lang_vi.swift │ │ │ ├── lang_wae.swift │ │ │ ├── lang_yi.swift │ │ │ ├── lang_yue_Hans.swift │ │ │ ├── lang_yue_Hant.swift │ │ │ ├── lang_zh.swift │ │ │ ├── lang_zh_Hans_HK.swift │ │ │ ├── lang_zh_Hans_MO.swift │ │ │ ├── lang_zh_Hans_SG.swift │ │ │ ├── lang_zh_Hant.swift │ │ │ ├── lang_zh_Hant_HK.swift │ │ │ ├── lang_zh_Hant_MO.swift │ │ │ └── lang_zu.swift │ │ ├── Foundation+Extras │ │ ├── DateComponents+Extras.swift │ │ ├── Int+DateComponents.swift │ │ ├── String+Parser.swift │ │ └── TimeInterval+Formatter.swift │ │ ├── Supports │ │ ├── AssociatedValues.swift │ │ ├── Calendars.swift │ │ ├── Commons.swift │ │ ├── Locales.swift │ │ └── Zones.swift │ │ ├── SwiftDate.swift │ │ └── TimePeriod │ │ ├── Groups │ │ ├── TimePeriodChain.swift │ │ ├── TimePeriodCollection.swift │ │ └── TimePeriodGroup.swift │ │ ├── TimePeriod+Support.swift │ │ ├── TimePeriod.swift │ │ └── TimePeriodProtocol.swift ├── SwiftyJSON │ ├── LICENSE │ ├── README.md │ └── Source │ │ └── SwiftyJSON.swift ├── Target Support Files │ ├── Alamofire │ │ ├── Alamofire-dummy.m │ │ ├── Alamofire-prefix.pch │ │ ├── Alamofire-umbrella.h │ │ ├── Alamofire.modulemap │ │ ├── Alamofire.xcconfig │ │ └── Info.plist │ ├── AlamofireImage │ │ ├── AlamofireImage-dummy.m │ │ ├── AlamofireImage-prefix.pch │ │ ├── AlamofireImage-umbrella.h │ │ ├── AlamofireImage.modulemap │ │ ├── AlamofireImage.xcconfig │ │ └── Info.plist │ ├── FirebaseAuth │ │ ├── FirebaseAuth-dummy.m │ │ ├── FirebaseAuth-umbrella.h │ │ ├── FirebaseAuth.modulemap │ │ └── FirebaseAuth.xcconfig │ ├── FirebaseCore │ │ ├── FirebaseCore-dummy.m │ │ ├── FirebaseCore-umbrella.h │ │ ├── FirebaseCore.modulemap │ │ └── FirebaseCore.xcconfig │ ├── FirebaseDatabase │ │ ├── FirebaseDatabase-dummy.m │ │ ├── FirebaseDatabase-umbrella.h │ │ ├── FirebaseDatabase.modulemap │ │ └── FirebaseDatabase.xcconfig │ ├── FirebaseDynamicLinks │ │ ├── FirebaseDynamicLinks-dummy.m │ │ ├── FirebaseDynamicLinks-umbrella.h │ │ ├── FirebaseDynamicLinks.modulemap │ │ └── FirebaseDynamicLinks.xcconfig │ ├── FirebaseStorage │ │ ├── FirebaseStorage-dummy.m │ │ ├── FirebaseStorage-umbrella.h │ │ ├── FirebaseStorage.modulemap │ │ └── FirebaseStorage.xcconfig │ ├── GTMSessionFetcher │ │ ├── GTMSessionFetcher-dummy.m │ │ ├── GTMSessionFetcher-prefix.pch │ │ ├── GTMSessionFetcher-umbrella.h │ │ ├── GTMSessionFetcher.modulemap │ │ ├── GTMSessionFetcher.xcconfig │ │ └── Info.plist │ ├── GoogleUtilities │ │ ├── GoogleUtilities-dummy.m │ │ ├── GoogleUtilities-prefix.pch │ │ ├── GoogleUtilities-umbrella.h │ │ ├── GoogleUtilities.modulemap │ │ ├── GoogleUtilities.xcconfig │ │ └── Info.plist │ ├── OHHTTPStubs │ │ ├── Info.plist │ │ ├── OHHTTPStubs-dummy.m │ │ ├── OHHTTPStubs-prefix.pch │ │ ├── OHHTTPStubs-umbrella.h │ │ ├── OHHTTPStubs.modulemap │ │ └── OHHTTPStubs.xcconfig │ ├── Pods-Connfa │ │ ├── Info.plist │ │ ├── Pods-Connfa-acknowledgements.markdown │ │ ├── Pods-Connfa-acknowledgements.plist │ │ ├── Pods-Connfa-dummy.m │ │ ├── Pods-Connfa-frameworks.sh │ │ ├── Pods-Connfa-resources.sh │ │ ├── Pods-Connfa-umbrella.h │ │ ├── Pods-Connfa.debug.xcconfig │ │ ├── Pods-Connfa.modulemap │ │ └── Pods-Connfa.release.xcconfig │ ├── Pods-ConnfaTests │ │ ├── Info.plist │ │ ├── Pods-ConnfaTests-acknowledgements.markdown │ │ ├── Pods-ConnfaTests-acknowledgements.plist │ │ ├── Pods-ConnfaTests-dummy.m │ │ ├── Pods-ConnfaTests-frameworks.sh │ │ ├── Pods-ConnfaTests-resources.sh │ │ ├── Pods-ConnfaTests-umbrella.h │ │ ├── Pods-ConnfaTests.debug.xcconfig │ │ ├── Pods-ConnfaTests.modulemap │ │ └── Pods-ConnfaTests.release.xcconfig │ ├── SVProgressHUD │ │ ├── Info.plist │ │ ├── SVProgressHUD-dummy.m │ │ ├── SVProgressHUD-prefix.pch │ │ ├── SVProgressHUD-umbrella.h │ │ ├── SVProgressHUD.modulemap │ │ └── SVProgressHUD.xcconfig │ ├── SwiftDate │ │ ├── Info.plist │ │ ├── SwiftDate-dummy.m │ │ ├── SwiftDate-prefix.pch │ │ ├── SwiftDate-umbrella.h │ │ ├── SwiftDate.modulemap │ │ └── SwiftDate.xcconfig │ ├── SwiftyJSON │ │ ├── Info.plist │ │ ├── SwiftyJSON-dummy.m │ │ ├── SwiftyJSON-prefix.pch │ │ ├── SwiftyJSON-umbrella.h │ │ ├── SwiftyJSON.modulemap │ │ └── SwiftyJSON.xcconfig │ ├── leveldb-library │ │ ├── Info.plist │ │ ├── leveldb-library-dummy.m │ │ ├── leveldb-library-prefix.pch │ │ ├── leveldb-library-umbrella.h │ │ ├── leveldb-library.modulemap │ │ └── leveldb-library.xcconfig │ └── nanopb │ │ ├── Info.plist │ │ ├── nanopb-dummy.m │ │ ├── nanopb-prefix.pch │ │ ├── nanopb-umbrella.h │ │ ├── nanopb.modulemap │ │ └── nanopb.xcconfig ├── TwitterCore │ ├── README.md │ └── iOS │ │ └── TwitterCore.framework │ │ ├── Headers │ │ ├── TWTRAPIErrorCode.h │ │ ├── TWTRAuthConfig.h │ │ ├── TWTRAuthSession.h │ │ ├── TWTRColorUtil.h │ │ ├── TWTRConstants.h │ │ ├── TWTRCoreOAuthSigning.h │ │ ├── TWTRDefines.h │ │ ├── TWTRGuestSession.h │ │ ├── TWTRSession.h │ │ ├── TWTRSessionStore.h │ │ └── TwitterCore.h │ │ ├── Info.plist │ │ ├── Modules │ │ ├── module.modulemap │ │ └── module.private.modulemap │ │ ├── PrivateHeaders │ │ ├── TWTRAPIConstants.h │ │ ├── TWTRAPIConstantsUser.h │ │ ├── TWTRAPINetworkErrorsShim.h │ │ ├── TWTRAPIServiceConfig.h │ │ ├── TWTRAPIServiceConfigRegistry.h │ │ ├── TWTRAppAPIClient.h │ │ ├── TWTRAppAuthProvider.h │ │ ├── TWTRAppInstallationUUID.h │ │ ├── TWTRAppleSocialAuthenticaticationProvider.h │ │ ├── TWTRAssertionMacros.h │ │ ├── TWTRAuthConfigSessionsValidator.h │ │ ├── TWTRAuthConfigSessionsValidator_Private.h │ │ ├── TWTRAuthConfigStore.h │ │ ├── TWTRAuthenticationConstants.h │ │ ├── TWTRAuthenticationProvider.h │ │ ├── TWTRAuthenticationProvider_Private.h │ │ ├── TWTRAuthenticator.h │ │ ├── TWTRCoreConstants.h │ │ ├── TWTRCoreLanguage.h │ │ ├── TWTRCoreOAuthSigning+Private.h │ │ ├── TWTRDateFormatters.h │ │ ├── TWTRDateFormatters_Private.h │ │ ├── TWTRDateUtil.h │ │ ├── TWTRDictUtil.h │ │ ├── TWTRGCOAuth.h │ │ ├── TWTRGenericKeychainItem.h │ │ ├── TWTRGuestAuthProvider.h │ │ ├── TWTRGuestAuthRequestSigner.h │ │ ├── TWTRIdentifier.h │ │ ├── TWTRKeychainWrapper.h │ │ ├── TWTRKeychainWrapper_Private.h │ │ ├── TWTRMultiThreadUtil.h │ │ ├── TWTRMultipartFormDocument.h │ │ ├── TWTRNetworking.h │ │ ├── TWTRNetworkingConstants.h │ │ ├── TWTRNetworkingPipeline.h │ │ ├── TWTRNetworkingPipelinePackage.h │ │ ├── TWTRNetworkingPipelineQueue.h │ │ ├── TWTRNetworkingUtil.h │ │ ├── TWTRRequestSigningOperation.h │ │ ├── TWTRResourcesUtil.h │ │ ├── TWTRSecItemWrapper.h │ │ ├── TWTRSessionMigrating.h │ │ ├── TWTRSessionRefreshStrategy.h │ │ ├── TWTRSessionStore_Private.h │ │ ├── TWTRSession_Private.h │ │ ├── TWTRTokenOnlyAuthSession.h │ │ ├── TWTRUserAPIClient.h │ │ ├── TWTRUserAuthRequestSigner.h │ │ ├── TWTRUserSessionVerifier.h │ │ └── TWTRUtils.h │ │ └── TwitterCore ├── TwitterKit │ ├── README.md │ └── iOS │ │ └── TwitterKit.framework │ │ ├── Headers │ │ ├── TWTRAPIClient.h │ │ ├── TWTRCollectionTimelineDataSource.h │ │ ├── TWTRComposer.h │ │ ├── TWTRComposerViewController.h │ │ ├── TWTRJSONConvertible.h │ │ ├── TWTRKit.h │ │ ├── TWTRListTimelineDataSource.h │ │ ├── TWTRLogInButton.h │ │ ├── TWTRMediaEntitySize.h │ │ ├── TWTRMoPubAdConfiguration.h │ │ ├── TWTRMoPubNativeAdContainerView.h │ │ ├── TWTRNotificationConstants.h │ │ ├── TWTROAuthSigning.h │ │ ├── TWTRSearchTimelineDataSource.h │ │ ├── TWTRTimelineCursor.h │ │ ├── TWTRTimelineDataSource.h │ │ ├── TWTRTimelineDelegate.h │ │ ├── TWTRTimelineFilter.h │ │ ├── TWTRTimelineType.h │ │ ├── TWTRTimelineViewController.h │ │ ├── TWTRTweet.h │ │ ├── TWTRTweetCashtagEntity.h │ │ ├── TWTRTweetEntity.h │ │ ├── TWTRTweetHashtagEntity.h │ │ ├── TWTRTweetTableViewCell.h │ │ ├── TWTRTweetUrlEntity.h │ │ ├── TWTRTweetUserMentionEntity.h │ │ ├── TWTRTweetView.h │ │ ├── TWTRTweetViewDelegate.h │ │ ├── TWTRTwitter.h │ │ ├── TWTRUser.h │ │ ├── TWTRUserTimelineDataSource.h │ │ ├── TWTRVideoMetaData.h │ │ ├── TWTRVideoPlaybackState.h │ │ └── TwitterKit-Prefix.pch │ │ ├── Info.plist │ │ ├── Modules │ │ └── module.modulemap │ │ ├── PrivateHeaders │ │ ├── TWTRConstants_Private.h │ │ └── TWTRDateFormatter.h │ │ ├── TwitterKit │ │ └── TwitterKitResources.bundle │ │ ├── TFSScribe.momd │ │ ├── TFSScribe.mom │ │ └── VersionInfo.plist │ │ ├── ar.lproj │ │ └── Localizable.strings │ │ ├── bg.lproj │ │ └── Localizable.strings │ │ ├── bn.lproj │ │ └── Localizable.strings │ │ ├── ca.lproj │ │ └── Localizable.strings │ │ ├── cs.lproj │ │ └── Localizable.strings │ │ ├── da.lproj │ │ └── Localizable.strings │ │ ├── de.lproj │ │ └── Localizable.strings │ │ ├── el.lproj │ │ └── Localizable.strings │ │ ├── emailshare.png │ │ ├── emailshare@2x.png │ │ ├── emailshare@3x.png │ │ ├── en-gb.lproj │ │ └── Localizable.strings │ │ ├── en.lproj │ │ └── Localizable.strings │ │ ├── es-MX.lproj │ │ └── Localizable.strings │ │ ├── es.lproj │ │ └── Localizable.strings │ │ ├── fa.lproj │ │ └── Localizable.strings │ │ ├── fi.lproj │ │ └── Localizable.strings │ │ ├── fr.lproj │ │ └── Localizable.strings │ │ ├── gu.lproj │ │ └── Localizable.strings │ │ ├── he.lproj │ │ └── Localizable.strings │ │ ├── hi.lproj │ │ └── Localizable.strings │ │ ├── hr.lproj │ │ └── Localizable.strings │ │ ├── hu.lproj │ │ └── Localizable.strings │ │ ├── icn_vine_badge.png │ │ ├── icn_vine_badge@2x.png │ │ ├── icn_vine_badge@3x.png │ │ ├── id.lproj │ │ └── Localizable.strings │ │ ├── it.lproj │ │ └── Localizable.strings │ │ ├── ja.lproj │ │ └── Localizable.strings │ │ ├── kn.lproj │ │ └── Localizable.strings │ │ ├── ko.lproj │ │ └── Localizable.strings │ │ ├── mr.lproj │ │ └── Localizable.strings │ │ ├── ms.lproj │ │ └── Localizable.strings │ │ ├── nb.lproj │ │ └── Localizable.strings │ │ ├── nl.lproj │ │ └── Localizable.strings │ │ ├── pl.lproj │ │ └── Localizable.strings │ │ ├── pt.lproj │ │ └── Localizable.strings │ │ ├── ro.lproj │ │ └── Localizable.strings │ │ ├── ru.lproj │ │ └── Localizable.strings │ │ ├── sk.lproj │ │ └── Localizable.strings │ │ ├── sr.lproj │ │ └── Localizable.strings │ │ ├── sv.lproj │ │ └── Localizable.strings │ │ ├── ta.lproj │ │ └── Localizable.strings │ │ ├── th.lproj │ │ └── Localizable.strings │ │ ├── tl.lproj │ │ └── Localizable.strings │ │ ├── tr.lproj │ │ └── Localizable.strings │ │ ├── twtr-heart-animation-sheet-large.png │ │ ├── twtr-heart-animation-sheet-large@2x.png │ │ ├── twtr-heart-animation-sheet-large@3x.png │ │ ├── twtr-heart-animation-sheet.png │ │ ├── twtr-heart-animation-sheet@2x.png │ │ ├── twtr-heart-animation-sheet@3x.png │ │ ├── twtr-icn-heart-off-large.png │ │ ├── twtr-icn-heart-off-large@2x.png │ │ ├── twtr-icn-heart-off-large@3x.png │ │ ├── twtr-icn-heart-off.png │ │ ├── twtr-icn-heart-off@2x.png │ │ ├── twtr-icn-heart-off@3x.png │ │ ├── twtr-icn-heart-on.png │ │ ├── twtr-icn-heart-on@2x.png │ │ ├── twtr-icn-heart-on@3x.png │ │ ├── twtr-icn-logo-white.png │ │ ├── twtr-icn-logo-white@2x.png │ │ ├── twtr-icn-logo-white@3x.png │ │ ├── twtr-icn-logo.png │ │ ├── twtr-icn-logo@2x.png │ │ ├── twtr-icn-logo@3x.png │ │ ├── twtr-icn-media-pause.png │ │ ├── twtr-icn-media-pause@2x.png │ │ ├── twtr-icn-media-pause@3x.png │ │ ├── twtr-icn-media-play.png │ │ ├── twtr-icn-media-play@2x.png │ │ ├── twtr-icn-media-play@3x.png │ │ ├── twtr-icn-media-replay.png │ │ ├── twtr-icn-media-replay@2x.png │ │ ├── twtr-icn-media-replay@3x.png │ │ ├── twtr-icn-media-scrubber.png │ │ ├── twtr-icn-media-scrubber@2x.png │ │ ├── twtr-icn-media-scrubber@3x.png │ │ ├── twtr-icn-tweet-retweeted-by-dark.png │ │ ├── twtr-icn-tweet-retweeted-by-dark@2x.png │ │ ├── twtr-icn-tweet-retweeted-by-dark@3x.png │ │ ├── twtr-icn-tweet-retweeted-by-light.png │ │ ├── twtr-icn-tweet-retweeted-by-light@2x.png │ │ ├── twtr-icn-tweet-retweeted-by-light@3x.png │ │ ├── twtr-icn-tweet-verified.png │ │ ├── twtr-icn-tweet-verified@2x.png │ │ ├── twtr-icn-tweet-verified@3x.png │ │ ├── twtr-icn_close.png │ │ ├── twtr-icn_close@2x.png │ │ ├── twtr-icn_close@3x.png │ │ ├── twtr-icon-heart-on-large.png │ │ ├── twtr-icon-heart-on-large@2x.png │ │ ├── twtr-icon-heart-on-large@3x.png │ │ ├── twtr-media-expand.png │ │ ├── twtr-media-expand@2x.png │ │ ├── twtr-media-expand@3x.png │ │ ├── twtr-play.png │ │ ├── twtr-play@2x.png │ │ ├── twtr-play@3x.png │ │ ├── twtr-share-large.png │ │ ├── twtr-share-large@2x.png │ │ ├── twtr-share-large@3x.png │ │ ├── twtr-share.png │ │ ├── twtr-share@2x.png │ │ ├── twtr-share@3x.png │ │ ├── twttr-icn-tweet-place-holder-photo-error.png │ │ ├── twttr-icn-tweet-place-holder-photo-error@2x.png │ │ ├── twttr-icn-tweet-place-holder-photo-error@3x.png │ │ ├── twttr-icn-tweet-place-holder-photo.png │ │ ├── twttr-icn-tweet-place-holder-photo@2x.png │ │ ├── twttr-icn-tweet-place-holder-photo@3x.png │ │ ├── uk.lproj │ │ └── Localizable.strings │ │ ├── ur.lproj │ │ └── Localizable.strings │ │ ├── vi.lproj │ │ └── Localizable.strings │ │ ├── zh-Hans.lproj │ │ └── Localizable.strings │ │ └── zh-Hant.lproj │ │ └── Localizable.strings ├── leveldb-library │ ├── LICENSE │ ├── README.md │ ├── db │ │ ├── builder.cc │ │ ├── builder.h │ │ ├── c.cc │ │ ├── db_impl.cc │ │ ├── db_impl.h │ │ ├── db_iter.cc │ │ ├── db_iter.h │ │ ├── dbformat.cc │ │ ├── dbformat.h │ │ ├── dumpfile.cc │ │ ├── filename.cc │ │ ├── filename.h │ │ ├── log_format.h │ │ ├── log_reader.cc │ │ ├── log_reader.h │ │ ├── log_writer.cc │ │ ├── log_writer.h │ │ ├── memtable.cc │ │ ├── memtable.h │ │ ├── repair.cc │ │ ├── skiplist.h │ │ ├── snapshot.h │ │ ├── table_cache.cc │ │ ├── table_cache.h │ │ ├── version_edit.cc │ │ ├── version_edit.h │ │ ├── version_set.cc │ │ ├── version_set.h │ │ ├── write_batch.cc │ │ └── write_batch_internal.h │ ├── include │ │ └── leveldb │ │ │ ├── c.h │ │ │ ├── cache.h │ │ │ ├── comparator.h │ │ │ ├── db.h │ │ │ ├── dumpfile.h │ │ │ ├── env.h │ │ │ ├── filter_policy.h │ │ │ ├── iterator.h │ │ │ ├── options.h │ │ │ ├── slice.h │ │ │ ├── status.h │ │ │ ├── table.h │ │ │ ├── table_builder.h │ │ │ └── write_batch.h │ ├── port │ │ ├── atomic_pointer.h │ │ ├── port.h │ │ ├── port_example.h │ │ ├── port_posix.cc │ │ ├── port_posix.h │ │ ├── port_posix_sse.cc │ │ └── thread_annotations.h │ ├── table │ │ ├── block.cc │ │ ├── block.h │ │ ├── block_builder.cc │ │ ├── block_builder.h │ │ ├── filter_block.cc │ │ ├── filter_block.h │ │ ├── format.cc │ │ ├── format.h │ │ ├── iterator.cc │ │ ├── iterator_wrapper.h │ │ ├── merger.cc │ │ ├── merger.h │ │ ├── table.cc │ │ ├── table_builder.cc │ │ ├── two_level_iterator.cc │ │ └── two_level_iterator.h │ └── util │ │ ├── arena.cc │ │ ├── arena.h │ │ ├── bloom.cc │ │ ├── cache.cc │ │ ├── coding.cc │ │ ├── coding.h │ │ ├── comparator.cc │ │ ├── crc32c.cc │ │ ├── crc32c.h │ │ ├── env.cc │ │ ├── env_posix.cc │ │ ├── env_posix_test_helper.h │ │ ├── filter_policy.cc │ │ ├── hash.cc │ │ ├── hash.h │ │ ├── histogram.cc │ │ ├── histogram.h │ │ ├── logging.cc │ │ ├── logging.h │ │ ├── mutexlock.h │ │ ├── options.cc │ │ ├── posix_logger.h │ │ ├── random.h │ │ ├── status.cc │ │ ├── testharness.cc │ │ ├── testharness.h │ │ ├── testutil.cc │ │ └── testutil.h └── nanopb │ ├── LICENSE.txt │ ├── README.md │ ├── pb.h │ ├── pb_common.c │ ├── pb_common.h │ ├── pb_decode.c │ ├── pb_decode.h │ ├── pb_encode.c │ └── pb_encode.h ├── README.md └── connfa_database_structure_example.json /Cloud-Functions/firebase.json: -------------------------------------------------------------------------------- 1 | { 2 | "functions": { 3 | "predeploy": [ 4 | "npm --prefix $RESOURCE_DIR run lint" 5 | ] 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Cloud-Functions/functions/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | -------------------------------------------------------------------------------- /Cloud-Functions/functions/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "functions", 3 | "description": "Cloud Functions for Firebase", 4 | "scripts": { 5 | "lint": "./node_modules/.bin/eslint .", 6 | "serve": "firebase serve --only functions", 7 | "shell": "firebase experimental:functions:shell", 8 | "start": "npm run shell", 9 | "deploy": "firebase deploy --only functions", 10 | "logs": "firebase functions:log" 11 | }, 12 | "dependencies": { 13 | "@google-cloud/storage": "1.5.1", 14 | "firebase-admin": "^5.8.1", 15 | "firebase-functions": "^0.8.1", 16 | "knuth-shuffle": "^1.0.8", 17 | "knuth-shuffle-seeded": "^1.0.6" 18 | }, 19 | "devDependencies": { 20 | "eslint": "^4.16.0", 21 | "eslint-plugin-promise": "^3.6.0", 22 | "flow-bin": "^0.63.1" 23 | }, 24 | "private": true 25 | } 26 | -------------------------------------------------------------------------------- /Connfa.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Connfa.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Connfa.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Connfa.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Connfa/Classes/Events/Program Details/ProgramDetailInterestTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // InterestedProgramDetailsTableViewCell.swift 3 | // Connfa 4 | // 5 | // Created by Marian Fedyk on 9/19/17. 6 | // 7 | 8 | import UIKit 9 | 10 | class ProgramDetailInterestTableViewCell: UITableViewCell { 11 | 12 | @IBOutlet weak var interestedLabel: UILabel! 13 | 14 | } 15 | -------------------------------------------------------------------------------- /Connfa/Classes/Events/Program Details/ProgramDetailWebTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // WebProgramDetailsTableViewCell.swift 3 | // Connfa 4 | // 5 | // Created by Marian Fedyk on 9/18/17. 6 | // 7 | 8 | import UIKit 9 | 10 | class ProgramDetailWebTableViewCell: UITableViewCell { 11 | 12 | @IBOutlet weak var webView: UIWebView! 13 | 14 | func fill(with event: EventModel, height: CGFloat) { 15 | let content = event.text 16 | webView.scrollView.isScrollEnabled = false 17 | webView.loadHTMLString(HTMLManager.makeDocument(withContent: content ?? "", withStyle: .event) ?? "", baseURL: Bundle.main.bundleURL) 18 | webView.frame = CGRect(origin: CGPoint.zero, size: CGSize(width: self.frame.width, height: height)) 19 | webView.setNeedsLayout() 20 | webView.layoutIfNeeded() 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /Connfa/Classes/Events/Program Details/ProgramDetailsSection.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ProgramDetailsSection.swift 3 | // Connfa 4 | // 5 | // Created by Marian Fedyk on 9/19/18. 6 | // Copyright © 2018 Lemberg Solution. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | struct ProgramDetailsSection { 12 | enum SectionType { 13 | case logoSectionType 14 | case speakersAndWebAndTitleSectionType 15 | case sponsorsSectionType 16 | case interestedSectionType 17 | } 18 | 19 | var rowNumber: Int 20 | var type: SectionType 21 | 22 | init?(_ type: SectionType, rows: Int = 1){ 23 | if rows <= 0 { 24 | return nil 25 | } else { 26 | self.rowNumber = rows 27 | self.type = type 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Connfa/Classes/Events/Program Details/ProgramDetailsTitleTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ProgramDetailsTitleTableViewCell.swift 3 | // Connfa 4 | // 5 | // Created by Marian Fedyk on 12/22/17. 6 | // Copyright © 2017 Lemberg Solution. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class ProgramDetailsTitleTableViewCell: UITableViewCell { 12 | 13 | @IBOutlet weak var eventTitle: UILabel! 14 | @IBOutlet weak var eventTrack: UILabel! 15 | @IBOutlet weak var experienceLevel: UILabel! 16 | 17 | func fill(with event: EventModel) { 18 | eventTitle.text = event.name 19 | experienceLevel.text = ExperienceLevel(rawValue: event.experienceLevel)?.description 20 | eventTrack.text = event.track 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /Connfa/Classes/Events/Program List/ProgramListFilter/Cells/ProgramListFilterBaseCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ProgramListFilterBaseCell.swift 3 | // Connfa 4 | // 5 | // Created by Volodymyr Hyrka on 11/24/17. 6 | // Copyright © 2017 Lemberg Solution. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class ProgramListFilterBaseCell: UITableViewCell { 12 | 13 | @IBOutlet weak var checkmark: UIImageView! 14 | @IBOutlet weak var title: UILabel! 15 | 16 | } 17 | -------------------------------------------------------------------------------- /Connfa/Classes/Events/Program List/ProgramListFilter/Cells/ProgramListFilterCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ProgramListFilterCell.swift 3 | // Connfa 4 | // 5 | // Created by Volodymyr Hyrka on 11/24/17. 6 | // Copyright © 2017 Lemberg Solution. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class ProgramListFilterCell: ProgramListFilterBaseCell { 12 | static let identifier = "ProgramListFilterCell" 13 | 14 | } 15 | -------------------------------------------------------------------------------- /Connfa/Classes/Events/Program List/ProgramListFilter/Cells/ProgramListFilterHeader.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ProgramListFilterHeader.swift 3 | // Connfa 4 | // 5 | // Created by Volodymyr Hyrka on 11/24/17. 6 | // Copyright © 2017 Lemberg Solution. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class ProgramListFilterHeader: UITableViewHeaderFooterView { 12 | static let identifier = "ProgramListFilterHeader" 13 | 14 | @IBOutlet weak var title: UILabel! 15 | } 16 | -------------------------------------------------------------------------------- /Connfa/Classes/Events/Program List/ProgramListFilter/Cells/ProgramListFilterLevelCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ProgramListFilterLevelCell.swift 3 | // Connfa 4 | // 5 | // Created by Volodymyr Hyrka on 11/24/17. 6 | // Copyright © 2017 Lemberg Solution. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class ProgramListFilterLevelCell: ProgramListFilterBaseCell { 12 | static let identifier = "ProgramListFilterLevelCell" 13 | 14 | } 15 | -------------------------------------------------------------------------------- /Connfa/Classes/FloorPlans/FloorPlanPageControl.swift: -------------------------------------------------------------------------------- 1 | // 2 | // FloorPlanPageControl.swift 3 | // Connfa 4 | // 5 | // Created by Marian Fedyk on 10/2/17. 6 | // Copyright © 2017 Lemberg Solution. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class FloorPlanPageControl: UIPageControl { 12 | func customizeDots(onPage: Int) { 13 | for dot in self.subviews { 14 | if let i = self.subviews.index(of: dot) , i != onPage { 15 | dot.layer.borderWidth = 1.0 16 | dot.layer.borderColor = UIColor.lightGray.cgColor 17 | dot.backgroundColor = UIColor.clear 18 | } else { 19 | dot.layer.borderWidth = 0 20 | } 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Connfa/Classes/More/MoreTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // MoreTableViewCell.swift 3 | // Connfa 4 | // 5 | // Created by Marian Fedyk on 2/13/18. 6 | // Copyright © 2018 Lemberg Solution. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class MoreTableViewCell: UITableViewCell { 12 | @IBOutlet weak var logo: UIImageView! 13 | @IBOutlet weak var title: UILabel! 14 | } 15 | -------------------------------------------------------------------------------- /Connfa/Classes/Pin/PinTableViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // PinTableViewController.swift 3 | // Connfa 4 | // 5 | // Created by Marian Fedyk on 12/28/17. 6 | // Copyright © 2017 Lemberg Solution. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class PinTableViewController: UITableViewController { 12 | 13 | @IBOutlet weak var pinTextField: UITextField! 14 | @IBOutlet weak var displayNameTextField: UITextField! 15 | 16 | } 17 | -------------------------------------------------------------------------------- /Connfa/Classes/SocialMedia/SocialMediaParentViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SocialMediaParentViewController.swift 3 | // Connfa 4 | // 5 | // Created by Marian Fedyk on 10/12/17. 6 | // Copyright © 2017 Lemberg Solution. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class SocialMediaParentViewController: UIViewController { 12 | override func viewDidLoad() { 13 | super.viewDidLoad() 14 | navigationItem.titleView = NavigationTitleLabel(withText: "Social Media") 15 | navigationController?.navigationBar.isTranslucent = true 16 | navigationController?.navigationBar.shadowImage = UIImage() 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Connfa/Classes/Speakers/List/SpeakersSectionView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SpeakersSectionView.swift 3 | // Connfa 4 | // 5 | // Created by Marian Fedyk on 5/16/18. 6 | // Copyright © 2018 Lemberg Solution. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class SpeakersSectionView: UIView { 12 | 13 | @IBOutlet weak var abreviationLabel: UILabel! 14 | 15 | private static let fileName = "SpeakersSectionHeaderView" 16 | 17 | static func instanceFromNib() -> SpeakersSectionView { 18 | let view = UINib(nibName: SpeakersSectionView.fileName, bundle: nil).instantiate(withOwner: nil, options: nil).first as! SpeakersSectionView 19 | return view 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Connfa/Classes/WebView/WebViewData.swift: -------------------------------------------------------------------------------- 1 | // 2 | // WebViewViewData.swift 3 | // Connfa 4 | // 5 | // Created by Marian Fedyk on 7/28/17. 6 | // Copyright (c) 2017 Lemberg Solution Ltd. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | struct WebViewData { 12 | var content: String 13 | var style: CssFileName 14 | 15 | var htmlDocument: String? { 16 | return HTMLManager.makeDocument(withContent: content, withStyle: style) 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Connfa/Common/Extensions/CALayer+Shadow.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CALayer+Shadow.swift 3 | // Connfa 4 | // 5 | // Created by Volodymyr Hyrka on 11/24/17. 6 | // Copyright © 2017 Lemberg Solution. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | extension CALayer { 12 | 13 | func applyConnfaShadow() { 14 | shadowColor = UIColor.black.cgColor 15 | shadowOffset = CGSize(width: 0, height: 5.0) 16 | shadowRadius = 5 17 | shadowOpacity = 0.2 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /Connfa/Common/Extensions/DateFormatter+Default.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DateFormatter+default.swift 3 | // ConnfaCore 4 | // 5 | // Created by Marian Fedyk on 8/28/17. 6 | // 7 | 8 | import Foundation 9 | 10 | let defaultFormatter = DateFormatter.default 11 | 12 | extension DateFormatter { 13 | static var `default`: DateFormatter { 14 | let formatter = DateFormatter() 15 | formatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ssZ" 16 | formatter.locale = Locale(identifier: "en_US") 17 | formatter.timeZone = TimeZone(abbreviation: "UTC") 18 | return formatter 19 | } 20 | } 21 | 22 | 23 | -------------------------------------------------------------------------------- /Connfa/Common/Extensions/UIColor+hex.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UIColor+hex.swift 3 | // Connfa 4 | // 5 | // Created by Marian Fedyk on 9/12/17. 6 | // 7 | 8 | import UIKit 9 | 10 | extension UIColor { 11 | convenience init(hexString : String) 12 | { 13 | if let rgbValue = UInt(hexString, radix: 16) { 14 | let red = CGFloat((rgbValue >> 16) & 0xff) / 255 15 | let green = CGFloat((rgbValue >> 8) & 0xff) / 255 16 | let blue = CGFloat((rgbValue ) & 0xff) / 255 17 | self.init(red: red, green: green, blue: blue, alpha: 1.0) 18 | } else { 19 | self.init(red: 0.0, green: 0.0, blue: 0.0, alpha: 1.0) 20 | } 21 | } 22 | 23 | static var bottomBackgroundColor: UIColor { 24 | return UIColor(red: 200.0/255.0, green: 201.0/255.0, blue: 200.0/255.0, alpha: 1.0) 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Connfa/Common/Extensions/UINavigationBar+BottomHairline.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UINavigationBar + BottomHairline.swift 3 | // Connfa 4 | // 5 | // Created by Marian Fedyk on 10/4/17. 6 | // Copyright © 2017 Lemberg Solution. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | extension UINavigationBar { 12 | func hideBottomHairline() { 13 | self.hairlineImageView?.isHidden = true 14 | } 15 | 16 | func showBottomHairline() { 17 | self.hairlineImageView?.isHidden = false 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Connfa/Common/Extensions/UIView+Rotate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UIView + Rotate.swift 3 | // Connfa 4 | // 5 | // Created by Marian Fedyk on 9/15/17. 6 | // 7 | 8 | import UIKit 9 | 10 | extension UIView { 11 | func rotate(_ toValue: CGFloat, duration: CFTimeInterval = 0.2) { 12 | let animation = CABasicAnimation(keyPath: "transform.rotation") 13 | animation.toValue = toValue 14 | animation.duration = duration 15 | animation.isRemovedOnCompletion = false 16 | animation.fillMode = CAMediaTimingFillMode.forwards 17 | self.layer.add(animation, forKey: nil) 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Connfa/Common/Extensions/UIView+hairlineImageView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UIView + hairlineImageView.swift 3 | // Connfa 4 | // 5 | // Created by Marian Fedyk on 10/4/17. 6 | // Copyright © 2017 Lemberg Solution. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | extension UIView { 12 | var hairlineImageView: UIImageView? { 13 | return hairlineImageView(in: self) 14 | } 15 | 16 | private func hairlineImageView(in view: UIView) -> UIImageView? { 17 | if let imageView = view as? UIImageView, imageView.bounds.height <= 1.0 { 18 | return imageView 19 | } 20 | for subview in view.subviews { 21 | if let imageView = self.hairlineImageView(in: subview) { return imageView } 22 | } 23 | return nil 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Connfa/Common/Extensions/UIViewController+isModal.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UIViewController+isModal.swift 3 | // Connfa 4 | // 5 | // Created by Marian Fedyk on 9/10/18. 6 | // Copyright © 2018 Lemberg Solution. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | extension UIViewController { 12 | var isModal: Bool { 13 | return presentingViewController != nil || 14 | navigationController?.presentingViewController?.presentedViewController === navigationController || 15 | tabBarController?.presentingViewController is UITabBarController 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Connfa/Common/Extensions/URL+queryDictionary.swift: -------------------------------------------------------------------------------- 1 | // 2 | // URL+queryDictionary.swift 3 | // Connfa 4 | // 5 | // Created by Marian Fedyk on 9/6/18. 6 | // Copyright © 2018 Lemberg Solution. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | extension URL { 12 | var queryDictionary: [String: String]? { 13 | guard let components = query?.components(separatedBy: "&").map({ $0.components(separatedBy: "=") }) else { return nil } 14 | return components.reduce(into: [String:String]()) { dict, pair in 15 | if pair.count == 2 { 16 | dict[pair[0]] = pair[1] 17 | } 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Connfa/Common/Extensions/UserDefaults+CalendarEvents.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UserDefaults+CalendarEvents.swift 3 | // Connfa 4 | // 5 | // Created by Hellen Soloviy on 11/14/18. 6 | // Copyright © 2018 Lemberg Solution. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | extension UserDefaults { 12 | private var eventCalendarKey: String { 13 | return "com.connfa.eventCalendarKey" 14 | } 15 | 16 | var eventCalendarIdentifier: String? { 17 | get { 18 | return value(forKey: eventCalendarKey) as? String 19 | } 20 | set { 21 | setValue(newValue, forKey: eventCalendarKey) 22 | synchronize() 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Connfa/Common/NavigationTitleLabel.swift: -------------------------------------------------------------------------------- 1 | // 2 | // NavigationTitleLabel.swift 3 | // Connfa 4 | // 5 | // Created by Marian Fedyk on 10/12/17. 6 | // Copyright © 2017 Lemberg Solution. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class NavigationTitleLabel: UILabel { 12 | override init(frame: CGRect) { 13 | super.init(frame: frame) 14 | font = UIFont.systemFont(ofSize: 17, weight: .semibold) 15 | textAlignment = .center 16 | } 17 | 18 | required init?(coder aDecoder: NSCoder) { 19 | fatalError("init(coder:) has not been implemented") 20 | } 21 | 22 | convenience init (withText: String) { 23 | self.init() 24 | text = withText 25 | sizeToFit() 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /Connfa/Common/ReusableCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ReusableCell.swift 3 | // Connfa 4 | // 5 | // Created by Volodymyr Hyrka on 10/27/17. 6 | // Copyright © 2017 Lemberg Solution. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | protocol ReusableCell { 12 | static var cellIdentifier: String { get } 13 | } 14 | -------------------------------------------------------------------------------- /Connfa/Connfa.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.developer.associated-domains 6 | 7 | applinks:newconnfa.page.link 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-72.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-72@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-Small-40.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-Small-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-Small-40@2x-1.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-Small-50.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-Small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-Small-50@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-Small@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-Small@3x-1.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/AppIcon.appiconset/Icon@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/arrow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "arrow@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "arrow@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/arrow.imageset/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Interested/arrow.imageset/arrow@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/arrow.imageset/arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Interested/arrow.imageset/arrow@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/attanding_icon_gray.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "attanding_icon_gray@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "attanding_icon_gray@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "original" 24 | } 25 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/attanding_icon_gray.imageset/attanding_icon_gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Interested/attanding_icon_gray.imageset/attanding_icon_gray@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/attanding_icon_gray.imageset/attanding_icon_gray@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Interested/attanding_icon_gray.imageset/attanding_icon_gray@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/attanding_icon_red.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "attanding_icon_red@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "attanding_icon_red@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "original" 24 | } 25 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/attanding_icon_red.imageset/attanding_icon_red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Interested/attanding_icon_red.imageset/attanding_icon_red@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/attanding_icon_red.imageset/attanding_icon_red@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Interested/attanding_icon_red.imageset/attanding_icon_red@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/expanded_option_icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "expanded_option_icon@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "expanded_option_icon@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/expanded_option_icon.imageset/expanded_option_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Interested/expanded_option_icon.imageset/expanded_option_icon@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/expanded_option_icon.imageset/expanded_option_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Interested/expanded_option_icon.imageset/expanded_option_icon@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/ic-arrow-down.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic-arrow-down@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ic-arrow-down@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/ic-arrow-down.imageset/ic-arrow-down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Interested/ic-arrow-down.imageset/ic-arrow-down@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/ic-arrow-down.imageset/ic-arrow-down@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Interested/ic-arrow-down.imageset/ic-arrow-down@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/ic-more.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic-more@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ic-more@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/ic-more.imageset/ic-more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Interested/ic-more.imageset/ic-more@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/ic-more.imageset/ic-more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Interested/ic-more.imageset/ic-more@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/menu-icon-interested-sel.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "interested_icon_red@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "interested_icon_red@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "original" 24 | } 25 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/menu-icon-interested-sel.imageset/interested_icon_red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Interested/menu-icon-interested-sel.imageset/interested_icon_red@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/menu-icon-interested-sel.imageset/interested_icon_red@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Interested/menu-icon-interested-sel.imageset/interested_icon_red@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/menu-icon-interested.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "interested_icon_gray@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "interested_icon_gray@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "original" 24 | } 25 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/menu-icon-interested.imageset/interested_icon_gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Interested/menu-icon-interested.imageset/interested_icon_gray@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/menu-icon-interested.imageset/interested_icon_gray@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Interested/menu-icon-interested.imageset/interested_icon_gray@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/wis_icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "wis_icon@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "wis_icon@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/wis_icon.imageset/wis_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Interested/wis_icon.imageset/wis_icon@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/wis_icon.imageset/wis_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Interested/wis_icon.imageset/wis_icon@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/wis_icon_grey.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "wis_icon@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "wis_icon@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/wis_icon_grey.imageset/wis_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Interested/wis_icon_grey.imageset/wis_icon@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Interested/wis_icon_grey.imageset/wis_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Interested/wis_icon_grey.imageset/wis_icon@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "orientation" : "portrait", 5 | "idiom" : "iphone", 6 | "minimum-system-version" : "7.0", 7 | "scale" : "2x" 8 | }, 9 | { 10 | "orientation" : "portrait", 11 | "idiom" : "iphone", 12 | "minimum-system-version" : "7.0", 13 | "subtype" : "retina4", 14 | "scale" : "2x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/More/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/More/connfa-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "connfa_icon@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "connfa_icon@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "original" 24 | } 25 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/More/connfa-icon.imageset/connfa_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/More/connfa-icon.imageset/connfa_icon@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/More/connfa-icon.imageset/connfa_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/More/connfa-icon.imageset/connfa_icon@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/More/drupal-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "drupal_icon.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "drupal_icon@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "drupal_icon@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "original" 25 | } 26 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/More/drupal-icon.imageset/drupal_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/More/drupal-icon.imageset/drupal_icon.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/More/drupal-icon.imageset/drupal_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/More/drupal-icon.imageset/drupal_icon@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/More/drupal-icon.imageset/drupal_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/More/drupal-icon.imageset/drupal_icon@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/More/menu-icon-more-sel.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "more_icon_red@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "more_icon_red@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "original" 24 | } 25 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/More/menu-icon-more-sel.imageset/more_icon_red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/More/menu-icon-more-sel.imageset/more_icon_red@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/More/menu-icon-more-sel.imageset/more_icon_red@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/More/menu-icon-more-sel.imageset/more_icon_red@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/More/menu-icon-more.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "more_icon_gray@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "more_icon_gray@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "original" 24 | } 25 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/More/menu-icon-more.imageset/more_icon_gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/More/menu-icon-more.imageset/more_icon_gray@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/More/menu-icon-more.imageset/more_icon_gray@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/More/menu-icon-more.imageset/more_icon_gray@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/More/sponsor-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "spnsor_icon.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "spnsor_icon@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "spnsor_icon@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "original" 25 | } 26 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/More/sponsor-icon.imageset/spnsor_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/More/sponsor-icon.imageset/spnsor_icon.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/More/sponsor-icon.imageset/spnsor_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/More/sponsor-icon.imageset/spnsor_icon@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/More/sponsor-icon.imageset/spnsor_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/More/sponsor-icon.imageset/spnsor_icon@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/OldIcons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/OldIcons/ic-no-floor-plan.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic_no_floor_plan@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ic_no_floor_plan@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/OldIcons/ic-no-floor-plan.imageset/ic_no_floor_plan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/OldIcons/ic-no-floor-plan.imageset/ic_no_floor_plan@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/OldIcons/ic-no-floor-plan.imageset/ic_no_floor_plan@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/OldIcons/ic-no-floor-plan.imageset/ic_no_floor_plan@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-about-sel.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "menu_icon_about_sel@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "menu_icon_about_sel@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-about-sel.imageset/menu_icon_about_sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-about-sel.imageset/menu_icon_about_sel@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-about-sel.imageset/menu_icon_about_sel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-about-sel.imageset/menu_icon_about_sel@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-about.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "menu_icon_about@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "menu_icon_about@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-about.imageset/menu_icon_about@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-about.imageset/menu_icon_about@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-about.imageset/menu_icon_about@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-about.imageset/menu_icon_about@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-floor-plan-sel.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "menu_icon_floor-plan_sel@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "menu_icon_floor-plan_sel@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-floor-plan-sel.imageset/menu_icon_floor-plan_sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-floor-plan-sel.imageset/menu_icon_floor-plan_sel@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-floor-plan-sel.imageset/menu_icon_floor-plan_sel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-floor-plan-sel.imageset/menu_icon_floor-plan_sel@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-floor-plan.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "menu_icon_floor-plan@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "menu_icon_floor-plan@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-floor-plan.imageset/menu_icon_floor-plan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-floor-plan.imageset/menu_icon_floor-plan@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-floor-plan.imageset/menu_icon_floor-plan@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-floor-plan.imageset/menu_icon_floor-plan@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-location-sel.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "menu_icon_location_sel@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "menu_icon_location_sel@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-location-sel.imageset/menu_icon_location_sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-location-sel.imageset/menu_icon_location_sel@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-location-sel.imageset/menu_icon_location_sel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-location-sel.imageset/menu_icon_location_sel@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-location.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "menu_icon_location@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "menu_icon_location@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-location.imageset/menu_icon_location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-location.imageset/menu_icon_location@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-location.imageset/menu_icon_location@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/OldIcons/menu-icon-location.imageset/menu_icon_location@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Placeholders/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Placeholders/empty-schedule-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "empty_icon.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "empty_icon@2x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Placeholders/empty-schedule-icon.imageset/empty_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Placeholders/empty-schedule-icon.imageset/empty_icon.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Placeholders/empty-schedule-icon.imageset/empty_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Placeholders/empty-schedule-icon.imageset/empty_icon@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Placeholders/ic-no-floor-plan.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic_no_floor_plan@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ic_no_floor_plan@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Placeholders/ic-no-floor-plan.imageset/ic_no_floor_plan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Placeholders/ic-no-floor-plan.imageset/ic_no_floor_plan@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Placeholders/ic-no-floor-plan.imageset/ic_no_floor_plan@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Placeholders/ic-no-floor-plan.imageset/ic_no_floor_plan@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_about.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic_no_about@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ic_no_about@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_about.imageset/ic_no_about@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_about.imageset/ic_no_about@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_about.imageset/ic_no_about@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_about.imageset/ic_no_about@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_location.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic_no_location@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ic_no_location@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_location.imageset/ic_no_location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_location.imageset/ic_no_location@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_location.imageset/ic_no_location@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_location.imageset/ic_no_location@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_my_schedule.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic_no_my_schedule@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ic_no_my_schedule@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_my_schedule.imageset/ic_no_my_schedule@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_my_schedule.imageset/ic_no_my_schedule@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_my_schedule.imageset/ic_no_my_schedule@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_my_schedule.imageset/ic_no_my_schedule@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_sessions.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic_no_sessions@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ic_no_sessions@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_sessions.imageset/ic_no_sessions@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_sessions.imageset/ic_no_sessions@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_sessions.imageset/ic_no_sessions@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_sessions.imageset/ic_no_sessions@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_social_media.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic_no_social_media@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ic_no_social_media@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_social_media.imageset/ic_no_social_media@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_social_media.imageset/ic_no_social_media@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_social_media.imageset/ic_no_social_media@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_social_media.imageset/ic_no_social_media@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_speakers.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic_no_speakers@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ic_no_speakers@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_speakers.imageset/ic_no_speakers@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_speakers.imageset/ic_no_speakers@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_speakers.imageset/ic_no_speakers@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Placeholders/ic_no_speakers.imageset/ic_no_speakers@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/btn-close.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "btn-close@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "btn-close@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/btn-close.imageset/btn-close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/btn-close.imageset/btn-close@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/btn-close.imageset/btn-close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/btn-close.imageset/btn-close@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-event-bg-active.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic-event-bg-active@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ic-event-bg-active@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-event-bg-active.imageset/ic-event-bg-active@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-event-bg-active.imageset/ic-event-bg-active@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-event-bg-active.imageset/ic-event-bg-active@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-event-bg-active.imageset/ic-event-bg-active@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-event-bg.imageset/event-bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-event-bg.imageset/event-bg@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-event-bg.imageset/event-bg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-event-bg.imageset/event-bg@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-filter-checkmark-selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic-filter-checkmark-selected@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ic-filter-checkmark-selected@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-filter-checkmark-selected.imageset/ic-filter-checkmark-selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-filter-checkmark-selected.imageset/ic-filter-checkmark-selected@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-filter-checkmark-selected.imageset/ic-filter-checkmark-selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-filter-checkmark-selected.imageset/ic-filter-checkmark-selected@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-filter-checkmark.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic-filter-checkmark@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ic-filter-checkmark@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-filter-checkmark.imageset/ic-filter-checkmark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-filter-checkmark.imageset/ic-filter-checkmark@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-filter-checkmark.imageset/ic-filter-checkmark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-filter-checkmark.imageset/ic-filter-checkmark@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-friends-interested.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "friends-interested@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "friends-interested@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-friends-interested.imageset/friends-interested@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-friends-interested.imageset/friends-interested@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-friends-interested.imageset/friends-interested@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-friends-interested.imageset/friends-interested@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-going-now.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic-going-now@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ic-going-now@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-going-now.imageset/ic-going-now@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-going-now.imageset/ic-going-now@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-going-now.imageset/ic-going-now@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-going-now.imageset/ic-going-now@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-header-shadow.imageset/ic-header-shadow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-header-shadow.imageset/ic-header-shadow@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-header-shadow.imageset/ic-header-shadow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-header-shadow.imageset/ic-header-shadow@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-interest-star-active.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "interest-star-active@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "interest-star-active@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-interest-star-active.imageset/interest-star-active@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-interest-star-active.imageset/interest-star-active@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-interest-star-active.imageset/interest-star-active@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-interest-star-active.imageset/interest-star-active@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-interest-star-inactive.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "interest-star-inactive@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "interest-star-inactive@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-interest-star-inactive.imageset/interest-star-inactive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-interest-star-inactive.imageset/interest-star-inactive@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-interest-star-inactive.imageset/interest-star-inactive@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-interest-star-inactive.imageset/interest-star-inactive@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-level-0.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "level-1@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "level-1@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-level-0.imageset/level-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-level-0.imageset/level-1@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-level-0.imageset/level-1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-level-0.imageset/level-1@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-level-1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "level-2@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "level-2@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-level-1.imageset/level-2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-level-1.imageset/level-2@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-level-1.imageset/level-2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-level-1.imageset/level-2@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-level-2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "level-3.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "level-3@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-level-2.imageset/level-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-level-2.imageset/level-3.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-level-2.imageset/level-3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-level-2.imageset/level-3@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-location.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic-location@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ic-location@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-location.imageset/ic-location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-location.imageset/ic-location@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-location.imageset/ic-location@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-location.imageset/ic-location@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-menu-icon-program-sel.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "program_icon_red@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "program_icon_red@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "original" 24 | } 25 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-menu-icon-program-sel.imageset/program_icon_red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-menu-icon-program-sel.imageset/program_icon_red@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-menu-icon-program-sel.imageset/program_icon_red@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-menu-icon-program-sel.imageset/program_icon_red@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-menu-icon-program.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "program_icon_gray@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "program_icon_gray@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "original" 24 | } 25 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-menu-icon-program.imageset/program_icon_gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-menu-icon-program.imageset/program_icon_gray@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-menu-icon-program.imageset/program_icon_gray@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-menu-icon-program.imageset/program_icon_gray@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-neutral-logo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "neutral-logo@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "neutral-logo@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-neutral-logo.imageset/neutral-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-neutral-logo.imageset/neutral-logo@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-neutral-logo.imageset/neutral-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-neutral-logo.imageset/neutral-logo@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-slot-bg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "slot-bg@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "slot-bg@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-slot-bg.imageset/slot-bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-slot-bg.imageset/slot-bg@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-slot-bg.imageset/slot-bg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-slot-bg.imageset/slot-bg@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-speakers-card.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "speakers-card@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "speakers-card@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-speakers-card.imageset/speakers-card@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-speakers-card.imageset/speakers-card@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-speakers-card.imageset/speakers-card@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-speakers-card.imageset/speakers-card@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-upcoming.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ic-upcomming.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "ic-upcomming@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-upcoming.imageset/ic-upcomming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-upcoming.imageset/ic-upcomming.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program/ic-upcoming.imageset/ic-upcomming@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program/ic-upcoming.imageset/ic-upcomming@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program_Details/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program_Details/calendar_icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "calendarIcon.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "calendarIcon@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "calendarIcon@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "original" 25 | } 26 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program_Details/calendar_icon.imageset/calendarIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program_Details/calendar_icon.imageset/calendarIcon.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program_Details/calendar_icon.imageset/calendarIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program_Details/calendar_icon.imageset/calendarIcon@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program_Details/calendar_icon.imageset/calendarIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program_Details/calendar_icon.imageset/calendarIcon@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program_Details/clock_icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "clock_icon.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "clock_icon@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "clock_icon@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "original" 25 | } 26 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program_Details/clock_icon.imageset/clock_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program_Details/clock_icon.imageset/clock_icon.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program_Details/clock_icon.imageset/clock_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program_Details/clock_icon.imageset/clock_icon@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program_Details/clock_icon.imageset/clock_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program_Details/clock_icon.imageset/clock_icon@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program_Details/location_icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "location_icon.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "location_icon@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "location_icon@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "original" 25 | } 26 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program_Details/location_icon.imageset/location_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program_Details/location_icon.imageset/location_icon.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program_Details/location_icon.imageset/location_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program_Details/location_icon.imageset/location_icon@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program_Details/location_icon.imageset/location_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program_Details/location_icon.imageset/location_icon@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program_Details/toolbar_icon_frame.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "toolbar_icon_frame@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "toolbar_icon_frame@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program_Details/toolbar_icon_frame.imageset/toolbar_icon_frame@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program_Details/toolbar_icon_frame.imageset/toolbar_icon_frame@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Program_Details/toolbar_icon_frame.imageset/toolbar_icon_frame@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Program_Details/toolbar_icon_frame.imageset/toolbar_icon_frame@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/SocialMedia/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/SocialMedia/menu-icon-social-media-sel.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "social_media_icon_red@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "social_media_icon_red@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "original" 24 | } 25 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/SocialMedia/menu-icon-social-media-sel.imageset/social_media_icon_red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/SocialMedia/menu-icon-social-media-sel.imageset/social_media_icon_red@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/SocialMedia/menu-icon-social-media-sel.imageset/social_media_icon_red@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/SocialMedia/menu-icon-social-media-sel.imageset/social_media_icon_red@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/SocialMedia/menu-icon-social-media.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "social_media_icon_gray@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "social_media_icon_gray@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "original" 24 | } 25 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/SocialMedia/menu-icon-social-media.imageset/social_media_icon_gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/SocialMedia/menu-icon-social-media.imageset/social_media_icon_gray@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/SocialMedia/menu-icon-social-media.imageset/social_media_icon_gray@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/SocialMedia/menu-icon-social-media.imageset/social_media_icon_gray@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/SpeakerDetails/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/SpeakerDetails/disabled_twitter.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "disabled_twitter@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "disabled_twitter@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/SpeakerDetails/disabled_twitter.imageset/disabled_twitter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/SpeakerDetails/disabled_twitter.imageset/disabled_twitter@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/SpeakerDetails/disabled_twitter.imageset/disabled_twitter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/SpeakerDetails/disabled_twitter.imageset/disabled_twitter@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/SpeakerDetails/disabled_website.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "disabled_website@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "disabled_website@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/SpeakerDetails/disabled_website.imageset/disabled_website@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/SpeakerDetails/disabled_website.imageset/disabled_website@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/SpeakerDetails/disabled_website.imageset/disabled_website@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/SpeakerDetails/disabled_website.imageset/disabled_website@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/SpeakerDetails/twitter_icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "twitter_icon@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "twitter_icon@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/SpeakerDetails/twitter_icon.imageset/twitter_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/SpeakerDetails/twitter_icon.imageset/twitter_icon@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/SpeakerDetails/twitter_icon.imageset/twitter_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/SpeakerDetails/twitter_icon.imageset/twitter_icon@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/SpeakerDetails/web_icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "web_icon@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "web_icon@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/SpeakerDetails/web_icon.imageset/web_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/SpeakerDetails/web_icon.imageset/web_icon@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/SpeakerDetails/web_icon.imageset/web_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/SpeakerDetails/web_icon.imageset/web_icon@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Speakers/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Speakers/menu-icon-speakers-sel.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "speakers_tab_icon_red@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "speakers_tab_icon_red@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "original" 24 | } 25 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Speakers/menu-icon-speakers-sel.imageset/speakers_tab_icon_red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Speakers/menu-icon-speakers-sel.imageset/speakers_tab_icon_red@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Speakers/menu-icon-speakers-sel.imageset/speakers_tab_icon_red@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Speakers/menu-icon-speakers-sel.imageset/speakers_tab_icon_red@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Speakers/menu-icon-speakers.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "speakers_tab_icon_gray@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "speakers_tab_icon_gray@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "original" 24 | } 25 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Speakers/menu-icon-speakers.imageset/speakers_tab_icon_gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Speakers/menu-icon-speakers.imageset/speakers_tab_icon_gray@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Speakers/menu-icon-speakers.imageset/speakers_tab_icon_gray@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Speakers/menu-icon-speakers.imageset/speakers_tab_icon_gray@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Venue/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Venue/path.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "path@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "path@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "original" 24 | } 25 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Venue/path.imageset/path@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Venue/path.imageset/path@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/Venue/path.imageset/path@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/Venue/path.imageset/path@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/connfa-logo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "connfa_logo@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "connfa_logo@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/connfa-logo.imageset/connfa_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/connfa-logo.imageset/connfa_logo@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/connfa-logo.imageset/connfa_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/connfa-logo.imageset/connfa_logo@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/floor-plan-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "floor_plan_icon.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "floor_plan_icon@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "floor_plan_icon@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "original" 25 | } 26 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/floor-plan-icon.imageset/floor_plan_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/floor-plan-icon.imageset/floor_plan_icon.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/floor-plan-icon.imageset/floor_plan_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/floor-plan-icon.imageset/floor_plan_icon@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/floor-plan-icon.imageset/floor_plan_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/floor-plan-icon.imageset/floor_plan_icon@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/share.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "share.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "share@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "share@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/share.imageset/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/share.imageset/share.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/share.imageset/share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/share.imageset/share@2x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Assets.xcassets/share.imageset/share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Assets.xcassets/share.imageset/share@3x.png -------------------------------------------------------------------------------- /Connfa/Resourses/Fonts/SF-UI-Text-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Fonts/SF-UI-Text-Bold.otf -------------------------------------------------------------------------------- /Connfa/Resourses/Fonts/SF-UI-Text-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Fonts/SF-UI-Text-Regular.otf -------------------------------------------------------------------------------- /Connfa/Resourses/Fonts/SF-UI-Text-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Connfa/Resourses/Fonts/SF-UI-Text-Semibold.otf -------------------------------------------------------------------------------- /Connfa/Resourses/HTML declaration + css/Declaration.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | @content 10 | 11 | 12 | -------------------------------------------------------------------------------- /Connfa/Stores/Firebase/FirebaseError.swift: -------------------------------------------------------------------------------- 1 | // 2 | // FirebaseError.swift 3 | // Connfa 4 | // 5 | // Created by Marian Fedyk on 1/2/18. 6 | // Copyright © 2018 Lemberg Solution. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | enum FirebaseError { 12 | case noCurrentUser 13 | case invalidPin 14 | case noPin 15 | case noInternet 16 | 17 | var description: String { 18 | switch self { 19 | case .noCurrentUser: 20 | return Constants.Text.noCurrentUser 21 | case .invalidPin: 22 | return Constants.Text.invalidPin 23 | case .noPin: 24 | return Constants.Text.noPin 25 | case .noInternet: 26 | return Constants.Text.noInternet 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Connfa/Stores/Firebase/FirebaseModels/Additional/ExperienceLevel.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ExperienceLevel.swift 3 | // ConnfaCore 4 | // 5 | // Created by Volodymyr Hyrka on 11/24/17. 6 | // Copyright © 2017 Lemberg Solutions. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public enum ExperienceLevel: Int { 12 | case Beginner = 0 13 | case Intermediate 14 | case Advanced 15 | 16 | public var imageName: String { 17 | return "ic-level-\(self.rawValue)" 18 | } 19 | 20 | public var description: String { 21 | return String(describing: self) 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Connfa/Stores/Firebase/FirebaseModels/Additional/InfoType.swift: -------------------------------------------------------------------------------- 1 | // 2 | // InfoType.swift 3 | // Connfa 4 | // 5 | // Created by Marian Fedyk on 2/13/18. 6 | // Copyright © 2018 Lemberg Solution. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | public enum InfoType: Int { 12 | case aboutApp = 0 13 | case aboutEvent 14 | case sponsors 15 | 16 | var image: UIImage { 17 | switch self { 18 | case .aboutApp: 19 | return #imageLiteral(resourceName: "connfa-icon") 20 | case .aboutEvent: 21 | return #imageLiteral(resourceName: "drupal-icon") 22 | case .sponsors: 23 | return #imageLiteral(resourceName: "sponsor-icon") 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Connfa/Stores/Firebase/FirebaseRepository/SpeakerFirebaseRepository.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SpeakerFirebaseRepository.swift 3 | // Connfa 4 | // 5 | // Created by Marian Fedyk on 12/19/17. 6 | // Copyright © 2017 Lemberg Solution. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | class SpeakerFirebaseRepository: FirebaseArrayRepository { 12 | public func speakersFrom(eventUniqueName: String) -> [SpeakerInList] { 13 | return models.filter{ $0.eventsUniqueNames.contains(eventUniqueName) } 14 | } 15 | } 16 | 17 | class SpeakerDetailFirebaseRepository: FirebaseArrayRepository { 18 | public func speakerBy(uniqueName: String) -> SpeakerDetail? { 19 | return models.filter{ $0.uniqueName == uniqueName }.first 20 | } 21 | } 22 | 23 | -------------------------------------------------------------------------------- /Gymfile: -------------------------------------------------------------------------------- 1 | export_xcargs "-allowProvisioningUpdates" 2 | -------------------------------------------------------------------------------- /Pods/Firebase/.cocoapods.yml: -------------------------------------------------------------------------------- 1 | try: 2 | install: 3 | pre: 4 | - git clone https://github.com/firebase/quickstart-ios 5 | 6 | -------------------------------------------------------------------------------- /Pods/Firebase/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | Please go to https://firebase.google.com/support/release-notes/ios#0.0.0 2 | to view the Firebase iOS release notes. 3 | 4 | You can find information about prior changes to the Firebase pod and Firebase 5 | Database [here](https://www.firebase.com/docs/ios/changelog.html). 6 | -------------------------------------------------------------------------------- /Pods/Firebase/CoreOnly/Sources/module.modulemap: -------------------------------------------------------------------------------- 1 | module Firebase { 2 | export * 3 | header "Firebase.h" 4 | } -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FIRAnalyticsConnector.framework/FIRAnalyticsConnector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/FirebaseAnalytics/Frameworks/FIRAnalyticsConnector.framework/FIRAnalyticsConnector -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FIRAnalyticsConnector.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module FIRAnalyticsConnector { 2 | export * 3 | module * { export *} 4 | link framework "Security" 5 | link framework "SystemConfiguration"} 6 | -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/FirebaseAnalytics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/FirebaseAnalytics -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h: -------------------------------------------------------------------------------- 1 | #import "FIRAnalytics+AppDelegate.h" 2 | #import "FIRAnalytics.h" 3 | #import "FIREventNames.h" 4 | #import "FIRParameterNames.h" 5 | #import "FIRUserPropertyNames.h" 6 | -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module FirebaseAnalytics { 2 | umbrella header "FirebaseAnalytics.h" 3 | export * 4 | module * { export *} 5 | link "sqlite3" 6 | link "z" 7 | link framework "Security" 8 | link framework "StoreKit" 9 | link framework "SystemConfiguration" 10 | link framework "UIKit"} 11 | -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseCoreDiagnostics.framework/FirebaseCoreDiagnostics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/FirebaseAnalytics/Frameworks/FirebaseCoreDiagnostics.framework/FirebaseCoreDiagnostics -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseCoreDiagnostics.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module FirebaseCoreDiagnostics { 2 | export * 3 | module * { export *} 4 | link "z" 5 | link framework "Security" 6 | link framework "SystemConfiguration"} 7 | -------------------------------------------------------------------------------- /Pods/FirebaseAuth/Firebase/Auth/README.md: -------------------------------------------------------------------------------- 1 | # Firebase Auth for iOS 2 | 3 | Firebase Auth enables apps to easily support multiple authentication options 4 | for their end users. 5 | 6 | Please visit [our developer site](https://firebase.google.com/docs/auth/) for 7 | integration instructions, documentation, support information, and terms of 8 | service. 9 | 10 | # Firebase Auth Development 11 | 12 | Example/Auth contains a set of samples and tests that integrate with 13 | FirebaseAuth. 14 | 15 | The unit tests run without any additional configuration along with the rest of 16 | Firebase. See [Example/Auth/README.md](../../Example/Auth/README.md) for 17 | information about setting up, running, and testing the samples. 18 | -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Firebase/Database/third_party/FImmutableSortedDictionary/FImmutableSortedDictionary/FTreeSortedDictionaryEnumerator.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "FTreeSortedDictionary.h" 3 | 4 | @interface FTreeSortedDictionaryEnumerator : NSEnumerator 5 | 6 | - (id)initWithImmutableSortedDictionary:(FTreeSortedDictionary *)aDict startKey:(id)startKey isReverse:(BOOL)reverse; 7 | - (id)nextObject; 8 | 9 | @end 10 | -------------------------------------------------------------------------------- /Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/FirebaseInstanceID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/FirebaseInstanceID -------------------------------------------------------------------------------- /Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Headers/FirebaseInstanceID.h: -------------------------------------------------------------------------------- 1 | #import "FIRInstanceID.h" 2 | -------------------------------------------------------------------------------- /Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module FirebaseInstanceID { 2 | umbrella header "FirebaseInstanceID.h" 3 | export * 4 | module * { export *} 5 | link framework "Security" 6 | link framework "SystemConfiguration"} 7 | -------------------------------------------------------------------------------- /Pods/FirebaseInstanceID/README.md: -------------------------------------------------------------------------------- 1 | # InstanceID SDK for iOS 2 | 3 | Instance ID provides a unique ID per instance of your apps and also provides a 4 | mechanism to authenticate and authorize actions, like sending messages via 5 | Firebase Cloud Messaging (FCM). 6 | 7 | 8 | Please visit [our developer 9 | site](https://developers.google.com/instance-id/) for integration instructions, 10 | documentation, support information, and terms of service. 11 | -------------------------------------------------------------------------------- /Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.framework/GoogleAppMeasurement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.framework/GoogleAppMeasurement -------------------------------------------------------------------------------- /Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module GoogleAppMeasurement { 2 | export * 3 | module * { export *} 4 | link "sqlite3" 5 | link "z" 6 | link framework "Security" 7 | link framework "StoreKit" 8 | link framework "SystemConfiguration" 9 | link framework "UIKit"} 10 | -------------------------------------------------------------------------------- /Pods/Headers/Private/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FirebaseAnalyticsInterop/FIRAnalyticsInterop.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseAnalyticsInterop/Interop/Analytics/Public/FIRAnalyticsInterop.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FirebaseAnalyticsInterop/FIRInteropEventNames.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseAnalyticsInterop/Interop/Analytics/Public/FIRInteropEventNames.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FirebaseAnalyticsInterop/FIRInteropParameterNames.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseAnalyticsInterop/Interop/Analytics/Public/FIRInteropParameterNames.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FirebaseAuthInterop/FIRAuthInterop.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseAuthInterop/Interop/Auth/Public/FIRAuthInterop.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FirebaseAnalyticsInterop/FIRAnalyticsInterop.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseAnalyticsInterop/Interop/Analytics/Public/FIRAnalyticsInterop.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FirebaseAnalyticsInterop/FIRInteropEventNames.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseAnalyticsInterop/Interop/Analytics/Public/FIRInteropEventNames.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FirebaseAnalyticsInterop/FIRInteropParameterNames.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseAnalyticsInterop/Interop/Analytics/Public/FIRInteropParameterNames.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FirebaseAuthInterop/FIRAuthInterop.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseAuthInterop/Interop/Auth/Public/FIRAuthInterop.h -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h: -------------------------------------------------------------------------------- 1 | // 2 | // SVIndefiniteAnimatedView.h 3 | // SVProgressHUD, https://github.com/SVProgressHUD/SVProgressHUD 4 | // 5 | // Copyright (c) 2014-2018 Guillaume Campagna. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | @interface SVIndefiniteAnimatedView : UIView 11 | 12 | @property (nonatomic, assign) CGFloat strokeThickness; 13 | @property (nonatomic, assign) CGFloat radius; 14 | @property (nonatomic, strong) UIColor *strokeColor; 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressAnimatedView.h: -------------------------------------------------------------------------------- 1 | // 2 | // SVProgressAnimatedView.h 3 | // SVProgressHUD, https://github.com/SVProgressHUD/SVProgressHUD 4 | // 5 | // Copyright (c) 2017-2018 Tobias Tiemerding. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | @interface SVProgressAnimatedView : UIView 11 | 12 | @property (nonatomic, assign) CGFloat radius; 13 | @property (nonatomic, assign) CGFloat strokeThickness; 14 | @property (nonatomic, strong) UIColor *strokeColor; 15 | @property (nonatomic, assign) CGFloat strokeEnd; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@2x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@3x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@2x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@3x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@2x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@3x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVRadialGradientLayer.h: -------------------------------------------------------------------------------- 1 | // 2 | // SVRadialGradientLayer.h 3 | // SVProgressHUD, https://github.com/SVProgressHUD/SVProgressHUD 4 | // 5 | // Copyright (c) 2014-2018 Tobias Tiemerding. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | @interface SVRadialGradientLayer : CALayer 11 | 12 | @property (nonatomic) CGPoint gradientCenter; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Alamofire : NSObject 3 | @end 4 | @implementation PodsDummy_Alamofire 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double AlamofireVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char AlamofireVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.modulemap: -------------------------------------------------------------------------------- 1 | framework module Alamofire { 2 | umbrella header "Alamofire-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Alamofire 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/Alamofire 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AlamofireImage/AlamofireImage-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AlamofireImage : NSObject 3 | @end 4 | @implementation PodsDummy_AlamofireImage 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AlamofireImage/AlamofireImage-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AlamofireImage/AlamofireImage-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double AlamofireImageVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char AlamofireImageVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AlamofireImage/AlamofireImage.modulemap: -------------------------------------------------------------------------------- 1 | framework module AlamofireImage { 2 | umbrella header "AlamofireImage-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AlamofireImage/AlamofireImage.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/AlamofireImage 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/AlamofireImage 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseAuth/FirebaseAuth-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_FirebaseAuth : NSObject 3 | @end 4 | @implementation PodsDummy_FirebaseAuth 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseAuth/FirebaseAuth.modulemap: -------------------------------------------------------------------------------- 1 | framework module FirebaseAuth { 2 | umbrella header "FirebaseAuth-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCore/FirebaseCore-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_FirebaseCore : NSObject 3 | @end 4 | @implementation PodsDummy_FirebaseCore 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCore/FirebaseCore-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "FIRAnalyticsConfiguration.h" 14 | #import "FIRApp.h" 15 | #import "FIRConfiguration.h" 16 | #import "FirebaseCore.h" 17 | #import "FIRLoggerLevel.h" 18 | #import "FIROptions.h" 19 | 20 | FOUNDATION_EXPORT double FirebaseCoreVersionNumber; 21 | FOUNDATION_EXPORT const unsigned char FirebaseCoreVersionString[]; 22 | 23 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCore/FirebaseCore.modulemap: -------------------------------------------------------------------------------- 1 | framework module FirebaseCore { 2 | umbrella header "FirebaseCore-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCore/FirebaseCore.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" 3 | GCC_C_LANGUAGE_STANDARD = c99 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 FIRCore_VERSION=5.1.10 Firebase_VERSION=5.15.0 5 | OTHER_CFLAGS = $(inherited) -fno-autolink 6 | OTHER_LDFLAGS = -framework "Foundation" 7 | PODS_BUILD_DIR = ${BUILD_DIR} 8 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 9 | PODS_ROOT = ${SRCROOT} 10 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/FirebaseCore 11 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 12 | SKIP_INSTALL = YES 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseDatabase/FirebaseDatabase-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_FirebaseDatabase : NSObject 3 | @end 4 | @implementation PodsDummy_FirebaseDatabase 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseDatabase/FirebaseDatabase-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "FIRDatabase.h" 14 | #import "FIRDatabaseQuery.h" 15 | #import "FIRDatabaseReference.h" 16 | #import "FIRDataEventType.h" 17 | #import "FIRDataSnapshot.h" 18 | #import "FirebaseDatabase.h" 19 | #import "FIRMutableData.h" 20 | #import "FIRServerValue.h" 21 | #import "FIRTransactionResult.h" 22 | 23 | FOUNDATION_EXPORT double FirebaseDatabaseVersionNumber; 24 | FOUNDATION_EXPORT const unsigned char FirebaseDatabaseVersionString[]; 25 | 26 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseDatabase/FirebaseDatabase.modulemap: -------------------------------------------------------------------------------- 1 | framework module FirebaseDatabase { 2 | umbrella header "FirebaseDatabase-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseDynamicLinks/FirebaseDynamicLinks-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_FirebaseDynamicLinks : NSObject 3 | @end 4 | @implementation PodsDummy_FirebaseDynamicLinks 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseDynamicLinks/FirebaseDynamicLinks-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "FDLURLComponents.h" 14 | #import "FIRDynamicLink.h" 15 | #import "FIRDynamicLinks.h" 16 | #import "FIRDynamicLinksCommon.h" 17 | #import "FirebaseDynamicLinks.h" 18 | 19 | FOUNDATION_EXPORT double FirebaseDynamicLinksVersionNumber; 20 | FOUNDATION_EXPORT const unsigned char FirebaseDynamicLinksVersionString[]; 21 | 22 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseDynamicLinks/FirebaseDynamicLinks.modulemap: -------------------------------------------------------------------------------- 1 | framework module FirebaseDynamicLinks { 2 | umbrella header "FirebaseDynamicLinks-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseStorage/FirebaseStorage-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_FirebaseStorage : NSObject 3 | @end 4 | @implementation PodsDummy_FirebaseStorage 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseStorage/FirebaseStorage-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "FirebaseStorage.h" 14 | #import "FIRStorage.h" 15 | #import "FIRStorageConstants.h" 16 | #import "FIRStorageDownloadTask.h" 17 | #import "FIRStorageMetadata.h" 18 | #import "FIRStorageObservableTask.h" 19 | #import "FIRStorageReference.h" 20 | #import "FIRStorageTask.h" 21 | #import "FIRStorageTaskSnapshot.h" 22 | #import "FIRStorageUploadTask.h" 23 | 24 | FOUNDATION_EXPORT double FirebaseStorageVersionNumber; 25 | FOUNDATION_EXPORT const unsigned char FirebaseStorageVersionString[]; 26 | 27 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseStorage/FirebaseStorage.modulemap: -------------------------------------------------------------------------------- 1 | framework module FirebaseStorage { 2 | umbrella header "FirebaseStorage-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GTMSessionFetcher/GTMSessionFetcher-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_GTMSessionFetcher : NSObject 3 | @end 4 | @implementation PodsDummy_GTMSessionFetcher 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GTMSessionFetcher/GTMSessionFetcher-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GTMSessionFetcher/GTMSessionFetcher-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "GTMSessionFetcher.h" 14 | #import "GTMSessionFetcherLogging.h" 15 | #import "GTMSessionFetcherService.h" 16 | #import "GTMSessionUploadFetcher.h" 17 | 18 | FOUNDATION_EXPORT double GTMSessionFetcherVersionNumber; 19 | FOUNDATION_EXPORT const unsigned char GTMSessionFetcherVersionString[]; 20 | 21 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GTMSessionFetcher/GTMSessionFetcher.modulemap: -------------------------------------------------------------------------------- 1 | framework module GTMSessionFetcher { 2 | umbrella header "GTMSessionFetcher-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GTMSessionFetcher/GTMSessionFetcher.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_LDFLAGS = -framework "Security" 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/GTMSessionFetcher 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleUtilities/GoogleUtilities-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_GoogleUtilities : NSObject 3 | @end 4 | @implementation PodsDummy_GoogleUtilities 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleUtilities/GoogleUtilities-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleUtilities/GoogleUtilities-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "GULLoggerLevel.h" 14 | #import "GULLoggerCodes.h" 15 | #import "GULNSData+zlib.h" 16 | 17 | FOUNDATION_EXPORT double GoogleUtilitiesVersionNumber; 18 | FOUNDATION_EXPORT const unsigned char GoogleUtilitiesVersionString[]; 19 | 20 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleUtilities/GoogleUtilities.modulemap: -------------------------------------------------------------------------------- 1 | framework module GoogleUtilities { 2 | umbrella header "GoogleUtilities-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleUtilities/GoogleUtilities.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_LDFLAGS = -l"z" -framework "Security" -framework "SystemConfiguration" 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/GoogleUtilities 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_OHHTTPStubs : NSObject 3 | @end 4 | @implementation PodsDummy_OHHTTPStubs 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "Compatibility.h" 14 | #import "OHHTTPStubs.h" 15 | #import "OHHTTPStubsResponse.h" 16 | #import "OHHTTPStubsResponse+JSON.h" 17 | #import "NSURLRequest+HTTPBodyTesting.h" 18 | #import "OHPathHelpers.h" 19 | #import "Compatibility.h" 20 | 21 | FOUNDATION_EXPORT double OHHTTPStubsVersionNumber; 22 | FOUNDATION_EXPORT const unsigned char OHHTTPStubsVersionString[]; 23 | 24 | -------------------------------------------------------------------------------- /Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs.modulemap: -------------------------------------------------------------------------------- 1 | framework module OHHTTPStubs { 2 | umbrella header "OHHTTPStubs-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/OHHTTPStubs 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_LDFLAGS = -framework "CFNetwork" -framework "Foundation" 4 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/OHHTTPStubs 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Connfa/Pods-Connfa-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Connfa : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Connfa 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Connfa/Pods-Connfa-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_ConnfaVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_ConnfaVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Connfa/Pods-Connfa.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_Connfa { 2 | umbrella header "Pods-Connfa-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ConnfaTests/Pods-ConnfaTests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ConnfaTests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ConnfaTests 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ConnfaTests/Pods-ConnfaTests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_ConnfaTestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_ConnfaTestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ConnfaTests/Pods-ConnfaTests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_ConnfaTests { 2 | umbrella header "Pods-ConnfaTests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SVProgressHUD/SVProgressHUD-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SVProgressHUD : NSObject 3 | @end 4 | @implementation PodsDummy_SVProgressHUD 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SVProgressHUD/SVProgressHUD-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "SVIndefiniteAnimatedView.h" 14 | #import "SVProgressAnimatedView.h" 15 | #import "SVProgressHUD.h" 16 | #import "SVRadialGradientLayer.h" 17 | 18 | FOUNDATION_EXPORT double SVProgressHUDVersionNumber; 19 | FOUNDATION_EXPORT const unsigned char SVProgressHUDVersionString[]; 20 | 21 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SVProgressHUD/SVProgressHUD.modulemap: -------------------------------------------------------------------------------- 1 | framework module SVProgressHUD { 2 | umbrella header "SVProgressHUD-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SVProgressHUD/SVProgressHUD.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SVProgressHUD 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_LDFLAGS = -framework "QuartzCore" 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/SVProgressHUD 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftDate/SwiftDate-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SwiftDate : NSObject 3 | @end 4 | @implementation PodsDummy_SwiftDate 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftDate/SwiftDate-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftDate/SwiftDate-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double SwiftDateVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char SwiftDateVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftDate/SwiftDate.modulemap: -------------------------------------------------------------------------------- 1 | framework module SwiftDate { 2 | umbrella header "SwiftDate-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftDate/SwiftDate.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SwiftDate 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_LDFLAGS = -framework "Foundation" 4 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/SwiftDate 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SwiftyJSON : NSObject 3 | @end 4 | @implementation PodsDummy_SwiftyJSON 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double SwiftyJSONVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char SwiftyJSONVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON.modulemap: -------------------------------------------------------------------------------- 1 | framework module SwiftyJSON { 2 | umbrella header "SwiftyJSON-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/SwiftyJSON 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /Pods/Target Support Files/leveldb-library/leveldb-library-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_leveldb_library : NSObject 3 | @end 4 | @implementation PodsDummy_leveldb_library 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/leveldb-library/leveldb-library-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/leveldb-library/leveldb-library-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "c.h" 14 | #import "cache.h" 15 | #import "comparator.h" 16 | #import "db.h" 17 | #import "dumpfile.h" 18 | #import "env.h" 19 | #import "filter_policy.h" 20 | #import "iterator.h" 21 | #import "options.h" 22 | #import "slice.h" 23 | #import "status.h" 24 | #import "table.h" 25 | #import "table_builder.h" 26 | #import "write_batch.h" 27 | 28 | FOUNDATION_EXPORT double leveldbVersionNumber; 29 | FOUNDATION_EXPORT const unsigned char leveldbVersionString[]; 30 | 31 | -------------------------------------------------------------------------------- /Pods/Target Support Files/leveldb-library/leveldb-library.modulemap: -------------------------------------------------------------------------------- 1 | framework module leveldb { 2 | umbrella header "leveldb-library-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/leveldb-library/leveldb-library.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/leveldb-library 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/leveldb-library" "${PODS_ROOT}/leveldb-library/include" 4 | OTHER_LDFLAGS = -l"c++" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/leveldb-library 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_HEADERMAP = No 12 | WARNING_CFLAGS = -Wno-shorten-64-to-32 -Wno-comma -Wno-unreachable-code -Wno-conditional-uninitialized -Wno-deprecated-declarations 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_nanopb : NSObject 3 | @end 4 | @implementation PodsDummy_nanopb 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "pb.h" 14 | #import "pb_common.h" 15 | #import "pb_decode.h" 16 | #import "pb_encode.h" 17 | #import "pb.h" 18 | #import "pb_decode.h" 19 | #import "pb_common.h" 20 | #import "pb.h" 21 | #import "pb_encode.h" 22 | #import "pb_common.h" 23 | 24 | FOUNDATION_EXPORT double nanopbVersionNumber; 25 | FOUNDATION_EXPORT const unsigned char nanopbVersionString[]; 26 | 27 | -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb.modulemap: -------------------------------------------------------------------------------- 1 | framework module nanopb { 2 | umbrella header "nanopb-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/nanopb 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 3 | PODS_BUILD_DIR = ${BUILD_DIR} 4 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 5 | PODS_ROOT = ${SRCROOT} 6 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/nanopb 7 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 8 | SKIP_INSTALL = YES 9 | -------------------------------------------------------------------------------- /Pods/TwitterCore/README.md: -------------------------------------------------------------------------------- 1 | TwitterCore is provided to support [Digits](https://cocoapods.org/pods/Digits) and [TwitterKit](https://cocoapods.org/pods/TwitterKit). 2 | -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterCore/iOS/TwitterCore.framework/Info.plist -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module TwitterCore { 2 | umbrella header "TwitterCore.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/Modules/module.private.modulemap: -------------------------------------------------------------------------------- 1 | explicit module TwitterCore.Private { 2 | } 3 | -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/TwitterCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterCore/iOS/TwitterCore.framework/TwitterCore -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/Info.plist -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module TwitterKit { 2 | umbrella header "TWTRKit.h" 3 | 4 | export * 5 | module * { export * } 6 | 7 | link framework "AVFoundation" 8 | link framework "CoreMedia" 9 | link framework "SafariServices" 10 | } 11 | -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKit -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/TFSScribe.momd/TFSScribe.mom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/TFSScribe.momd/TFSScribe.mom -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/TFSScribe.momd/VersionInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/TFSScribe.momd/VersionInfo.plist -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/bg.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | "tw__empty_timeline" = "Хрониката е празна"; 2 | 3 | "tw__image_viewer_done_button" = "Готово"; 4 | 5 | "tw__open_in_text" = "Отваряне в/ъв %@"; 6 | 7 | "tw__privacy_information_button" = "Поверителна информация"; 8 | 9 | "tw__tweet_share_button" = "Споделяне"; 10 | 11 | "tw__view_is_sponsored_ad" = "Това е платена реклама"; 12 | 13 | -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/emailshare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/emailshare.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/emailshare@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/emailshare@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/emailshare@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/emailshare@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/gu.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | "tw__empty_timeline" = "સમય અવધિ ખાલી છે"; 2 | 3 | "tw__image_viewer_done_button" = "પૂરું થયું"; 4 | 5 | "tw__open_in_text" = "%@ માં ખોલો"; 6 | 7 | "tw__privacy_information_button" = "ગોપનીયતા માહિતી"; 8 | 9 | "tw__tweet_share_button" = "શેર કરો"; 10 | 11 | "tw__view_is_sponsored_ad" = "આ એક પ્રાયોજિત જાહેરાત છે"; 12 | 13 | -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/icn_vine_badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/icn_vine_badge.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/icn_vine_badge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/icn_vine_badge@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/icn_vine_badge@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/icn_vine_badge@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/kn.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | "tw__empty_timeline" = "ಕಾಲರೇಖೆ ಖಾಲಿ ಆಗಿದೆ"; 2 | 3 | "tw__image_viewer_done_button" = "ಆಗಿದೆ"; 4 | 5 | "tw__open_in_text" = "%@ ನಲ್ಲಿ ತೆರೆಯಿರಿ"; 6 | 7 | "tw__privacy_information_button" = "ಗೌಪ್ಯತೆ ಮಾಹಿತಿ"; 8 | 9 | "tw__tweet_share_button" = "ಹಂಚಿ"; 10 | 11 | "tw__view_is_sponsored_ad" = "ಇದು ಒಂದು ಪ್ರಾಯೋಜಿತ ಜಾಹೀರಾತು"; 12 | 13 | -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/mr.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | "tw__empty_timeline" = "टाइमलाइन रिक्त आहे"; 2 | 3 | "tw__image_viewer_done_button" = "पूर्ण"; 4 | 5 | "tw__open_in_text" = "%@ मध्ये उघडा"; 6 | 7 | "tw__privacy_information_button" = "गोपनीयता माहिती"; 8 | 9 | "tw__tweet_share_button" = "शेअर करा"; 10 | 11 | "tw__view_is_sponsored_ad" = "ही एक प्रायोजित जाहिरात आहे"; 12 | 13 | -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/ta.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | "tw__empty_timeline" = "காலவரிசை வெறுமையாக உள்ளது"; 2 | 3 | "tw__image_viewer_done_button" = "முடிந்தது"; 4 | 5 | "tw__open_in_text" = "%@ -இல் திற"; 6 | 7 | "tw__privacy_information_button" = "தனியுரிமைத் தகவல்"; 8 | 9 | "tw__tweet_share_button" = "பகிர்"; 10 | 11 | "tw__view_is_sponsored_ad" = "இது ஒரு ஸ்பான்சர் விளம்பரம்"; 12 | 13 | -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-heart-animation-sheet-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-heart-animation-sheet-large.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-heart-animation-sheet-large@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-heart-animation-sheet-large@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-heart-animation-sheet-large@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-heart-animation-sheet-large@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-heart-animation-sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-heart-animation-sheet.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-heart-animation-sheet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-heart-animation-sheet@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-heart-animation-sheet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-heart-animation-sheet@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-off-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-off-large.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-off-large@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-off-large@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-off-large@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-off-large@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-off.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-off@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-off@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-on.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-on@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-on@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-logo-white.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-logo-white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-logo-white@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-logo-white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-logo-white@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-logo.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-logo@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-logo@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-pause.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-pause@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-pause@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-pause@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-play.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-play@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-play@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-replay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-replay.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-replay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-replay@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-replay@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-replay@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-scrubber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-scrubber.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-scrubber@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-scrubber@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-scrubber@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-scrubber@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-retweeted-by-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-retweeted-by-dark.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-retweeted-by-dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-retweeted-by-dark@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-retweeted-by-dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-retweeted-by-dark@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-retweeted-by-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-retweeted-by-light.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-retweeted-by-light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-retweeted-by-light@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-retweeted-by-light@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-retweeted-by-light@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-verified.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-verified@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-verified@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-verified@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-verified@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn_close.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn_close@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn_close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn_close@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icon-heart-on-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icon-heart-on-large.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icon-heart-on-large@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icon-heart-on-large@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icon-heart-on-large@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icon-heart-on-large@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-media-expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-media-expand.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-media-expand@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-media-expand@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-media-expand@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-media-expand@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-play.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-play@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-play@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-share-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-share-large.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-share-large@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-share-large@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-share-large@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-share-large@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-share.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-share@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-share@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twttr-icn-tweet-place-holder-photo-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twttr-icn-tweet-place-holder-photo-error.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twttr-icn-tweet-place-holder-photo-error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twttr-icn-tweet-place-holder-photo-error@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twttr-icn-tweet-place-holder-photo-error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twttr-icn-tweet-place-holder-photo-error@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twttr-icn-tweet-place-holder-photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twttr-icn-tweet-place-holder-photo.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twttr-icn-tweet-place-holder-photo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twttr-icn-tweet-place-holder-photo@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twttr-icn-tweet-place-holder-photo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemberg/connfa-ios/a8fe47c52cef328408c09fee723a162068a13ff3/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twttr-icn-tweet-place-holder-photo@3x.png -------------------------------------------------------------------------------- /Pods/leveldb-library/port/port.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2011 The LevelDB Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. See the AUTHORS file for names of contributors. 4 | 5 | #ifndef STORAGE_LEVELDB_PORT_PORT_H_ 6 | #define STORAGE_LEVELDB_PORT_PORT_H_ 7 | 8 | #include 9 | 10 | // Include the appropriate platform specific file below. If you are 11 | // porting to a new platform, see "port_example.h" for documentation 12 | // of what the new port_.h file must provide. 13 | #if defined(LEVELDB_PLATFORM_POSIX) 14 | # include "port/port_posix.h" 15 | #elif defined(LEVELDB_PLATFORM_CHROMIUM) 16 | # include "port/port_chromium.h" 17 | #endif 18 | 19 | #endif // STORAGE_LEVELDB_PORT_PORT_H_ 20 | -------------------------------------------------------------------------------- /Pods/leveldb-library/util/filter_policy.cc: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012 The LevelDB Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. See the AUTHORS file for names of contributors. 4 | 5 | #include "leveldb/filter_policy.h" 6 | 7 | namespace leveldb { 8 | 9 | FilterPolicy::~FilterPolicy() { } 10 | 11 | } // namespace leveldb 12 | -------------------------------------------------------------------------------- /Pods/leveldb-library/util/hash.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2011 The LevelDB Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. See the AUTHORS file for names of contributors. 4 | // 5 | // Simple hash function used for internal data structures 6 | 7 | #ifndef STORAGE_LEVELDB_UTIL_HASH_H_ 8 | #define STORAGE_LEVELDB_UTIL_HASH_H_ 9 | 10 | #include 11 | #include 12 | 13 | namespace leveldb { 14 | 15 | extern uint32_t Hash(const char* data, size_t n, uint32_t seed); 16 | 17 | } 18 | 19 | #endif // STORAGE_LEVELDB_UTIL_HASH_H_ 20 | --------------------------------------------------------------------------------