gitextract_cf47kx2c/ ├── .gitignore ├── BuddyBuildSDK.framework/ │ ├── BuddyBuildSDK │ ├── Headers/ │ │ └── BuddyBuildSDK.h │ └── build.num ├── PRESENTATIONS.md ├── Podfile ├── Pods/ │ ├── AcknowList/ │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── Resources/ │ │ │ └── AcknowList.bundle/ │ │ │ ├── da.lproj/ │ │ │ │ └── Localizable.strings │ │ │ ├── de.lproj/ │ │ │ │ └── Localizable.strings │ │ │ ├── en.lproj/ │ │ │ │ └── Localizable.strings │ │ │ ├── es.lproj/ │ │ │ │ └── Localizable.strings │ │ │ ├── fr.lproj/ │ │ │ │ └── Localizable.strings │ │ │ ├── it.lproj/ │ │ │ │ └── Localizable.strings │ │ │ ├── ja.lproj/ │ │ │ │ └── Localizable.strings │ │ │ ├── nl.lproj/ │ │ │ │ └── Localizable.strings │ │ │ ├── pt-BR.lproj/ │ │ │ │ └── Localizable.strings │ │ │ ├── pt-PT.lproj/ │ │ │ │ └── Localizable.strings │ │ │ ├── sv.lproj/ │ │ │ │ └── Localizable.strings │ │ │ ├── zh-Hans.lproj/ │ │ │ │ └── Localizable.strings │ │ │ └── zh-Hant.lproj/ │ │ │ └── Localizable.strings │ │ └── Source/ │ │ ├── Acknow.swift │ │ ├── AcknowListViewController.swift │ │ ├── AcknowLocalization.swift │ │ ├── AcknowParser.swift │ │ └── AcknowViewController.swift │ ├── DynamicColor/ │ │ ├── LICENSE │ │ ├── README.md │ │ └── Sources/ │ │ ├── Array.swift │ │ ├── DynamicColor+Deriving.swift │ │ ├── DynamicColor+HSB.swift │ │ ├── DynamicColor+HSL.swift │ │ ├── DynamicColor+Lab.swift │ │ ├── DynamicColor+Mixing.swift │ │ ├── DynamicColor+RGBA.swift │ │ ├── DynamicColor+XYZ.swift │ │ ├── DynamicColor.swift │ │ ├── DynamicColorSpace.swift │ │ ├── DynamicGradient.swift │ │ ├── HSL.swift │ │ └── Utils.swift │ ├── Local Podspecs/ │ │ ├── Timepiece.podspec.json │ │ └── Toucan.podspec.json │ ├── Pods.xcodeproj/ │ │ └── project.pbxproj │ ├── Realm/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Realm/ │ │ │ ├── ObjectStore/ │ │ │ │ └── src/ │ │ │ │ ├── collection_notifications.cpp │ │ │ │ ├── impl/ │ │ │ │ │ ├── apple/ │ │ │ │ │ │ └── external_commit_helper.cpp │ │ │ │ │ ├── collection_change_builder.cpp │ │ │ │ │ ├── collection_notifier.cpp │ │ │ │ │ ├── handover.cpp │ │ │ │ │ ├── list_notifier.cpp │ │ │ │ │ ├── realm_coordinator.cpp │ │ │ │ │ ├── results_notifier.cpp │ │ │ │ │ ├── transact_log_handler.cpp │ │ │ │ │ └── weak_realm_notifier.cpp │ │ │ │ ├── index_set.cpp │ │ │ │ ├── list.cpp │ │ │ │ ├── object_schema.cpp │ │ │ │ ├── object_store.cpp │ │ │ │ ├── placeholder.cpp │ │ │ │ ├── results.cpp │ │ │ │ ├── schema.cpp │ │ │ │ ├── shared_realm.cpp │ │ │ │ ├── thread_confined.cpp │ │ │ │ └── util/ │ │ │ │ └── format.cpp │ │ │ ├── RLMAccessor.mm │ │ │ ├── RLMAnalytics.mm │ │ │ ├── RLMArray.mm │ │ │ ├── RLMArrayLinkView.mm │ │ │ ├── RLMClassInfo.mm │ │ │ ├── RLMCollection.mm │ │ │ ├── RLMConstants.m │ │ │ ├── RLMListBase.mm │ │ │ ├── RLMMigration.mm │ │ │ ├── RLMObject.mm │ │ │ ├── RLMObjectBase.mm │ │ │ ├── RLMObjectSchema.mm │ │ │ ├── RLMObjectStore.mm │ │ │ ├── RLMObservation.mm │ │ │ ├── RLMOptionalBase.mm │ │ │ ├── RLMPredicateUtil.mm │ │ │ ├── RLMProperty.mm │ │ │ ├── RLMQueryUtil.mm │ │ │ ├── RLMRealm.mm │ │ │ ├── RLMRealmConfiguration.mm │ │ │ ├── RLMRealmUtil.mm │ │ │ ├── RLMResults.mm │ │ │ ├── RLMSchema.mm │ │ │ ├── RLMSwiftSupport.m │ │ │ ├── RLMUpdateChecker.mm │ │ │ ├── RLMUtil.mm │ │ │ └── module.modulemap │ │ ├── build.sh │ │ ├── core/ │ │ │ ├── librealm-ios.a │ │ │ └── librealm-watchos.a │ │ └── include/ │ │ ├── RLMAccessor.h │ │ ├── RLMAnalytics.hpp │ │ ├── RLMArray.h │ │ ├── RLMArray_Private.h │ │ ├── RLMArray_Private.hpp │ │ ├── RLMClassInfo.hpp │ │ ├── RLMCollection.h │ │ ├── RLMCollection_Private.hpp │ │ ├── RLMConstants.h │ │ ├── RLMListBase.h │ │ ├── RLMMigration.h │ │ ├── RLMMigration_Private.h │ │ ├── RLMObject.h │ │ ├── RLMObjectBase.h │ │ ├── RLMObjectBase_Dynamic.h │ │ ├── RLMObjectSchema.h │ │ ├── RLMObjectSchema_Private.h │ │ ├── RLMObjectSchema_Private.hpp │ │ ├── RLMObjectStore.h │ │ ├── RLMObject_Private.h │ │ ├── RLMObject_Private.hpp │ │ ├── RLMObservation.hpp │ │ ├── RLMOptionalBase.h │ │ ├── RLMPlatform.h │ │ ├── RLMPredicateUtil.hpp │ │ ├── RLMPrefix.h │ │ ├── RLMProperty.h │ │ ├── RLMProperty_Private.h │ │ ├── RLMProperty_Private.hpp │ │ ├── RLMQueryUtil.hpp │ │ ├── RLMRealm.h │ │ ├── RLMRealmConfiguration.h │ │ ├── RLMRealmConfiguration_Private.h │ │ ├── RLMRealmConfiguration_Private.hpp │ │ ├── RLMRealmUtil.hpp │ │ ├── RLMRealm_Dynamic.h │ │ ├── RLMRealm_Private.h │ │ ├── RLMRealm_Private.hpp │ │ ├── RLMResults.h │ │ ├── RLMResults_Private.h │ │ ├── RLMSchema.h │ │ ├── RLMSchema_Private.h │ │ ├── RLMSchema_Private.hpp │ │ ├── RLMSwiftBridgingHeader.h │ │ ├── RLMSwiftSupport.h │ │ ├── RLMUpdateChecker.hpp │ │ ├── RLMUtil.hpp │ │ ├── Realm.h │ │ ├── binding_context.hpp │ │ ├── collection_notifications.hpp │ │ ├── core/ │ │ │ ├── realm/ │ │ │ │ ├── alloc.hpp │ │ │ │ ├── alloc_slab.hpp │ │ │ │ ├── array.hpp │ │ │ │ ├── array_basic.hpp │ │ │ │ ├── array_basic_tpl.hpp │ │ │ │ ├── array_binary.hpp │ │ │ │ ├── array_blob.hpp │ │ │ │ ├── array_blobs_big.hpp │ │ │ │ ├── array_integer.hpp │ │ │ │ ├── array_string.hpp │ │ │ │ ├── array_string_long.hpp │ │ │ │ ├── binary_data.hpp │ │ │ │ ├── bptree.hpp │ │ │ │ ├── column.hpp │ │ │ │ ├── column_backlink.hpp │ │ │ │ ├── column_binary.hpp │ │ │ │ ├── column_fwd.hpp │ │ │ │ ├── column_link.hpp │ │ │ │ ├── column_linkbase.hpp │ │ │ │ ├── column_linklist.hpp │ │ │ │ ├── column_mixed.hpp │ │ │ │ ├── column_mixed_tpl.hpp │ │ │ │ ├── column_string.hpp │ │ │ │ ├── column_string_enum.hpp │ │ │ │ ├── column_table.hpp │ │ │ │ ├── column_timestamp.hpp │ │ │ │ ├── column_tpl.hpp │ │ │ │ ├── column_type.hpp │ │ │ │ ├── column_type_traits.hpp │ │ │ │ ├── commit_log.hpp │ │ │ │ ├── data_type.hpp │ │ │ │ ├── descriptor.hpp │ │ │ │ ├── descriptor_fwd.hpp │ │ │ │ ├── disable_sync_to_disk.hpp │ │ │ │ ├── exceptions.hpp │ │ │ │ ├── group.hpp │ │ │ │ ├── group_shared.hpp │ │ │ │ ├── group_writer.hpp │ │ │ │ ├── handover_defs.hpp │ │ │ │ ├── history.hpp │ │ │ │ ├── impl/ │ │ │ │ │ ├── array_writer.hpp │ │ │ │ │ ├── continuous_transactions_history.hpp │ │ │ │ │ ├── destroy_guard.hpp │ │ │ │ │ ├── input_stream.hpp │ │ │ │ │ ├── output_stream.hpp │ │ │ │ │ ├── sequential_getter.hpp │ │ │ │ │ ├── simulated_failure.hpp │ │ │ │ │ └── transact_log.hpp │ │ │ │ ├── importer.hpp │ │ │ │ ├── index_string.hpp │ │ │ │ ├── lang_bind_helper.hpp │ │ │ │ ├── link_view.hpp │ │ │ │ ├── link_view_fwd.hpp │ │ │ │ ├── mixed.hpp │ │ │ │ ├── null.hpp │ │ │ │ ├── olddatetime.hpp │ │ │ │ ├── owned_data.hpp │ │ │ │ ├── query.hpp │ │ │ │ ├── query_conditions.hpp │ │ │ │ ├── query_engine.hpp │ │ │ │ ├── query_expression.hpp │ │ │ │ ├── realm_nmmintrin.h │ │ │ │ ├── replication.hpp │ │ │ │ ├── row.hpp │ │ │ │ ├── spec.hpp │ │ │ │ ├── string_data.hpp │ │ │ │ ├── table.hpp │ │ │ │ ├── table_accessors.hpp │ │ │ │ ├── table_basic.hpp │ │ │ │ ├── table_basic_fwd.hpp │ │ │ │ ├── table_macros.hpp │ │ │ │ ├── table_ref.hpp │ │ │ │ ├── table_view.hpp │ │ │ │ ├── table_view_basic.hpp │ │ │ │ ├── timestamp.hpp │ │ │ │ ├── unicode.hpp │ │ │ │ ├── util/ │ │ │ │ │ ├── assert.hpp │ │ │ │ │ ├── basic_system_errors.hpp │ │ │ │ │ ├── bind_ptr.hpp │ │ │ │ │ ├── buffer.hpp │ │ │ │ │ ├── call_with_tuple.hpp │ │ │ │ │ ├── cf_ptr.hpp │ │ │ │ │ ├── config.h │ │ │ │ │ ├── encrypted_file_mapping.hpp │ │ │ │ │ ├── features.h │ │ │ │ │ ├── file.hpp │ │ │ │ │ ├── file_mapper.hpp │ │ │ │ │ ├── hex_dump.hpp │ │ │ │ │ ├── inspect.hpp │ │ │ │ │ ├── interprocess_condvar.hpp │ │ │ │ │ ├── interprocess_mutex.hpp │ │ │ │ │ ├── logger.hpp │ │ │ │ │ ├── memory_stream.hpp │ │ │ │ │ ├── meta.hpp │ │ │ │ │ ├── misc_errors.hpp │ │ │ │ │ ├── miscellaneous.hpp │ │ │ │ │ ├── optional.hpp │ │ │ │ │ ├── priority_queue.hpp │ │ │ │ │ ├── safe_int_ops.hpp │ │ │ │ │ ├── scope_exit.hpp │ │ │ │ │ ├── shared_ptr.hpp │ │ │ │ │ ├── string_buffer.hpp │ │ │ │ │ ├── terminate.hpp │ │ │ │ │ ├── thread.hpp │ │ │ │ │ ├── to_string.hpp │ │ │ │ │ ├── tuple.hpp │ │ │ │ │ ├── type_list.hpp │ │ │ │ │ ├── type_traits.hpp │ │ │ │ │ └── utf8.hpp │ │ │ │ ├── utilities.hpp │ │ │ │ ├── version.hpp │ │ │ │ └── views.hpp │ │ │ └── realm.hpp │ │ ├── impl/ │ │ │ ├── apple/ │ │ │ │ └── external_commit_helper.hpp │ │ │ ├── collection_change_builder.hpp │ │ │ ├── collection_notifier.hpp │ │ │ ├── external_commit_helper.hpp │ │ │ ├── handover.hpp │ │ │ ├── list_notifier.hpp │ │ │ ├── realm_coordinator.hpp │ │ │ ├── results_notifier.hpp │ │ │ ├── transact_log_handler.hpp │ │ │ └── weak_realm_notifier.hpp │ │ ├── index_set.hpp │ │ ├── list.hpp │ │ ├── object_accessor.hpp │ │ ├── object_schema.hpp │ │ ├── object_store.hpp │ │ ├── property.hpp │ │ ├── results.hpp │ │ ├── schema.hpp │ │ ├── shared_realm.hpp │ │ ├── thread_confined.hpp │ │ └── util/ │ │ ├── apple/ │ │ │ └── event_loop_signal.hpp │ │ ├── atomic_shared_ptr.hpp │ │ ├── compiler.hpp │ │ ├── event_loop_signal.hpp │ │ └── format.hpp │ ├── RealmSwift/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── RealmSwift/ │ │ │ ├── Aliases.swift │ │ │ ├── Error.swift │ │ │ ├── LinkingObjects.swift │ │ │ ├── List.swift │ │ │ ├── Migration.swift │ │ │ ├── Object.swift │ │ │ ├── ObjectSchema.swift │ │ │ ├── Optional.swift │ │ │ ├── Property.swift │ │ │ ├── Realm.swift │ │ │ ├── RealmCollection.swift │ │ │ ├── RealmConfiguration.swift │ │ │ ├── Results.swift │ │ │ ├── Schema.swift │ │ │ ├── SortDescriptor.swift │ │ │ ├── SwiftVersion.swift │ │ │ └── Util.swift │ │ └── build.sh │ ├── Target Support Files/ │ │ ├── AcknowList/ │ │ │ ├── AcknowList-dummy.m │ │ │ ├── AcknowList-prefix.pch │ │ │ ├── AcknowList-umbrella.h │ │ │ ├── AcknowList.modulemap │ │ │ ├── AcknowList.xcconfig │ │ │ └── Info.plist │ │ ├── DynamicColor/ │ │ │ ├── DynamicColor-dummy.m │ │ │ ├── DynamicColor-prefix.pch │ │ │ ├── DynamicColor-umbrella.h │ │ │ ├── DynamicColor.modulemap │ │ │ ├── DynamicColor.xcconfig │ │ │ └── Info.plist │ │ ├── Pods-try Extension/ │ │ │ ├── Info.plist │ │ │ ├── Pods-try Extension-acknowledgements.markdown │ │ │ ├── Pods-try Extension-acknowledgements.plist │ │ │ ├── Pods-try Extension-dummy.m │ │ │ ├── Pods-try Extension-frameworks.sh │ │ │ ├── Pods-try Extension-resources.sh │ │ │ ├── Pods-try Extension-umbrella.h │ │ │ ├── Pods-try Extension.debug.xcconfig │ │ │ ├── Pods-try Extension.modulemap │ │ │ └── Pods-try Extension.release.xcconfig │ │ ├── Pods-trySwift/ │ │ │ ├── Info.plist │ │ │ ├── Pods-trySwift-acknowledgements.markdown │ │ │ ├── Pods-trySwift-acknowledgements.plist │ │ │ ├── Pods-trySwift-dummy.m │ │ │ ├── Pods-trySwift-frameworks.sh │ │ │ ├── Pods-trySwift-resources.sh │ │ │ ├── Pods-trySwift-umbrella.h │ │ │ ├── Pods-trySwift.debug.xcconfig │ │ │ ├── Pods-trySwift.modulemap │ │ │ └── Pods-trySwift.release.xcconfig │ │ ├── Realm-iOS/ │ │ │ ├── Info.plist │ │ │ ├── Realm-iOS-dummy.m │ │ │ ├── Realm-iOS-prefix.pch │ │ │ ├── Realm-iOS.modulemap │ │ │ └── Realm-iOS.xcconfig │ │ ├── Realm-watchOS/ │ │ │ ├── Info.plist │ │ │ ├── Realm-watchOS-dummy.m │ │ │ ├── Realm-watchOS-prefix.pch │ │ │ ├── Realm-watchOS.modulemap │ │ │ └── Realm-watchOS.xcconfig │ │ ├── RealmSwift-iOS/ │ │ │ ├── Info.plist │ │ │ ├── RealmSwift-iOS-dummy.m │ │ │ ├── RealmSwift-iOS-prefix.pch │ │ │ ├── RealmSwift-iOS-umbrella.h │ │ │ ├── RealmSwift-iOS.modulemap │ │ │ └── RealmSwift-iOS.xcconfig │ │ ├── RealmSwift-watchOS/ │ │ │ ├── Info.plist │ │ │ ├── RealmSwift-watchOS-dummy.m │ │ │ ├── RealmSwift-watchOS-prefix.pch │ │ │ ├── RealmSwift-watchOS-umbrella.h │ │ │ ├── RealmSwift-watchOS.modulemap │ │ │ └── RealmSwift-watchOS.xcconfig │ │ ├── Timepiece-iOS/ │ │ │ ├── Info.plist │ │ │ ├── Timepiece-iOS-dummy.m │ │ │ ├── Timepiece-iOS-prefix.pch │ │ │ ├── Timepiece-iOS-umbrella.h │ │ │ ├── Timepiece-iOS.modulemap │ │ │ └── Timepiece-iOS.xcconfig │ │ ├── Timepiece-watchOS/ │ │ │ ├── Info.plist │ │ │ ├── Timepiece-watchOS-dummy.m │ │ │ ├── Timepiece-watchOS-prefix.pch │ │ │ ├── Timepiece-watchOS-umbrella.h │ │ │ ├── Timepiece-watchOS.modulemap │ │ │ └── Timepiece-watchOS.xcconfig │ │ ├── Toucan/ │ │ │ ├── Info.plist │ │ │ ├── Toucan-dummy.m │ │ │ ├── Toucan-prefix.pch │ │ │ ├── Toucan-umbrella.h │ │ │ ├── Toucan.modulemap │ │ │ └── Toucan.xcconfig │ │ └── XLPagerTabStrip/ │ │ ├── Info.plist │ │ ├── ResourceBundle-XLPagerTabStrip-Info.plist │ │ ├── XLPagerTabStrip-dummy.m │ │ ├── XLPagerTabStrip-prefix.pch │ │ ├── XLPagerTabStrip-umbrella.h │ │ ├── XLPagerTabStrip.modulemap │ │ └── XLPagerTabStrip.xcconfig │ ├── Timepiece/ │ │ ├── LICENSE │ │ ├── README.md │ │ └── Sources/ │ │ ├── Duration.swift │ │ ├── Int+Timepiece.swift │ │ ├── NSCalendar+Timepiece.swift │ │ ├── NSCalendarUnit+Timepiece.swift │ │ ├── NSDate+Timepiece.swift │ │ ├── NSDateComponents+Timepiece.swift │ │ ├── NSTimeInterval+Timepiece.swift │ │ └── String+Timepiece.swift │ ├── Toucan/ │ │ ├── LICENSE │ │ ├── README.md │ │ └── Source/ │ │ └── Toucan.swift │ └── XLPagerTabStrip/ │ ├── LICENSE │ ├── README.md │ └── Sources/ │ ├── BarPagerTabStripViewController.swift │ ├── BarView.swift │ ├── BaseButtonBarPagerTabStripViewController.swift │ ├── ButtonBarPagerTabStripViewController.swift │ ├── ButtonBarView.swift │ ├── ButtonBarViewCell.swift │ ├── ButtonCell.xib │ ├── FXPageControl.h │ ├── FXPageControl.m │ ├── IndicatorInfo.swift │ ├── PagerTabStripBehaviour.swift │ ├── PagerTabStripError.swift │ ├── PagerTabStripViewController.swift │ ├── SegmentedPagerTabStripViewController.swift │ ├── SwipeDirection.swift │ └── TwitterPagerTabStripViewController.swift ├── README.md ├── TrySwiftDataFrameworks/ │ ├── Models/ │ │ ├── ChangeNotificationManager.swift │ │ ├── Conference.swift │ │ ├── Event.swift │ │ ├── Organizer.swift │ │ ├── Presentation.swift │ │ ├── Session.swift │ │ ├── Speaker.swift │ │ ├── Sponsor.swift │ │ └── Venue.swift │ ├── TrySwiftData/ │ │ ├── TrySwiftData/ │ │ │ ├── Info.plist │ │ │ ├── TrySwiftData.h │ │ │ └── realm-swift-1.1.0 2/ │ │ │ └── ios/ │ │ │ └── swift-3.0/ │ │ │ ├── Realm.framework/ │ │ │ │ ├── 2813AE6F-3BD5-36A1-8D41-82D9F5AAE132.bcsymbolmap │ │ │ │ ├── 517F56E2-532A-3782-9330-757CBF505BAE.bcsymbolmap │ │ │ │ ├── 538EF986-18C1-36EE-BDF6-17B2715142A8.bcsymbolmap │ │ │ │ ├── 5A9A09AC-5AAB-361A-9248-0D4D7720A0EA.bcsymbolmap │ │ │ │ ├── 5BFFCCD4-FA03-354A-9549-5AFEFB1C8BD5.bcsymbolmap │ │ │ │ ├── A338E27F-471A-3E70-A88D-90A486CAB9ED.bcsymbolmap │ │ │ │ ├── A6116266-2432-3414-A998-BA9F738A127C.bcsymbolmap │ │ │ │ ├── BBF82B5B-E0AA-38C2-B8D2-95B104BAB427.bcsymbolmap │ │ │ │ ├── C80C7A5D-EDDB-347F-856C-15F1FB0BF406.bcsymbolmap │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Headers/ │ │ │ │ │ ├── RLMArray.h │ │ │ │ │ ├── RLMCollection.h │ │ │ │ │ ├── RLMConstants.h │ │ │ │ │ ├── RLMMigration.h │ │ │ │ │ ├── RLMObject.h │ │ │ │ │ ├── RLMObjectBase.h │ │ │ │ │ ├── RLMObjectBase_Dynamic.h │ │ │ │ │ ├── RLMObjectSchema.h │ │ │ │ │ ├── RLMPlatform.h │ │ │ │ │ ├── RLMProperty.h │ │ │ │ │ ├── RLMRealm.h │ │ │ │ │ ├── RLMRealmConfiguration.h │ │ │ │ │ ├── RLMRealm_Dynamic.h │ │ │ │ │ ├── RLMResults.h │ │ │ │ │ ├── RLMSchema.h │ │ │ │ │ └── Realm.h │ │ │ │ ├── Info.plist │ │ │ │ ├── LICENSE │ │ │ │ ├── Modules/ │ │ │ │ │ └── module.modulemap │ │ │ │ ├── PrivateHeaders/ │ │ │ │ │ ├── RLMAccessor.h │ │ │ │ │ ├── RLMArray_Private.h │ │ │ │ │ ├── RLMListBase.h │ │ │ │ │ ├── RLMMigration_Private.h │ │ │ │ │ ├── RLMObjectSchema_Private.h │ │ │ │ │ ├── RLMObjectStore.h │ │ │ │ │ ├── RLMObject_Private.h │ │ │ │ │ ├── RLMOptionalBase.h │ │ │ │ │ ├── RLMProperty_Private.h │ │ │ │ │ ├── RLMRealmConfiguration_Private.h │ │ │ │ │ ├── RLMRealmUtil.hpp │ │ │ │ │ ├── RLMRealm_Private.h │ │ │ │ │ ├── RLMResults_Private.h │ │ │ │ │ └── RLMSchema_Private.h │ │ │ │ ├── Realm │ │ │ │ ├── _CodeSignature/ │ │ │ │ │ └── CodeResources │ │ │ │ └── strip-frameworks.sh │ │ │ └── RealmSwift.framework/ │ │ │ ├── 2813AE6F-3BD5-36A1-8D41-82D9F5AAE132.bcsymbolmap │ │ │ ├── 517F56E2-532A-3782-9330-757CBF505BAE.bcsymbolmap │ │ │ ├── 538EF986-18C1-36EE-BDF6-17B2715142A8.bcsymbolmap │ │ │ ├── 5A9A09AC-5AAB-361A-9248-0D4D7720A0EA.bcsymbolmap │ │ │ ├── 5BFFCCD4-FA03-354A-9549-5AFEFB1C8BD5.bcsymbolmap │ │ │ ├── A338E27F-471A-3E70-A88D-90A486CAB9ED.bcsymbolmap │ │ │ ├── A6116266-2432-3414-A998-BA9F738A127C.bcsymbolmap │ │ │ ├── AC05D011-8E96-3B23-BA60-48B8905091B4.bcsymbolmap │ │ │ ├── BBF82B5B-E0AA-38C2-B8D2-95B104BAB427.bcsymbolmap │ │ │ ├── C80C7A5D-EDDB-347F-856C-15F1FB0BF406.bcsymbolmap │ │ │ ├── E273A1B5-F26A-33BF-AC98-E0195D3CF089.bcsymbolmap │ │ │ ├── Headers/ │ │ │ │ └── RealmSwift-Swift.h │ │ │ ├── Info.plist │ │ │ ├── Modules/ │ │ │ │ ├── RealmSwift.swiftmodule/ │ │ │ │ │ ├── arm.swiftdoc │ │ │ │ │ ├── arm.swiftmodule │ │ │ │ │ ├── arm64.swiftdoc │ │ │ │ │ ├── arm64.swiftmodule │ │ │ │ │ ├── i386.swiftdoc │ │ │ │ │ ├── i386.swiftmodule │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ └── module.modulemap │ │ │ ├── RealmSwift │ │ │ └── _CodeSignature/ │ │ │ └── CodeResources │ │ ├── TrySwiftData.xcodeproj/ │ │ │ └── project.pbxproj │ │ └── TrySwiftDataTests/ │ │ ├── Info.plist │ │ └── TrySwiftDataTests.swift │ └── TrySwiftDataWatch/ │ ├── TrySwiftDataWatch/ │ │ ├── Info.plist │ │ └── TrySwiftDataWatch.h │ ├── TrySwiftDataWatch.xcodeproj/ │ │ └── project.pbxproj │ └── realm-swift-1.1.0 2/ │ └── watchos/ │ └── swift-3.0/ │ ├── Realm.framework/ │ │ ├── 7CDD3B11-C784-3174-9AF6-0D98DD731253.bcsymbolmap │ │ ├── 9FB9FC5A-4858-3276-95EA-38E94E55A789.bcsymbolmap │ │ ├── C64E213B-3CB3-3D7A-953A-F72023B8156F.bcsymbolmap │ │ ├── CHANGELOG.md │ │ ├── D254332B-5A92-3ED9-98B1-FC72938B2AA2.bcsymbolmap │ │ ├── Headers/ │ │ │ ├── RLMArray.h │ │ │ ├── RLMCollection.h │ │ │ ├── RLMConstants.h │ │ │ ├── RLMMigration.h │ │ │ ├── RLMObject.h │ │ │ ├── RLMObjectBase.h │ │ │ ├── RLMObjectBase_Dynamic.h │ │ │ ├── RLMObjectSchema.h │ │ │ ├── RLMPlatform.h │ │ │ ├── RLMProperty.h │ │ │ ├── RLMRealm.h │ │ │ ├── RLMRealmConfiguration.h │ │ │ ├── RLMRealm_Dynamic.h │ │ │ ├── RLMResults.h │ │ │ ├── RLMSchema.h │ │ │ └── Realm.h │ │ ├── Info.plist │ │ ├── LICENSE │ │ ├── Modules/ │ │ │ └── module.modulemap │ │ ├── PrivateHeaders/ │ │ │ ├── RLMAccessor.h │ │ │ ├── RLMArray_Private.h │ │ │ ├── RLMListBase.h │ │ │ ├── RLMMigration_Private.h │ │ │ ├── RLMObjectSchema_Private.h │ │ │ ├── RLMObjectStore.h │ │ │ ├── RLMObject_Private.h │ │ │ ├── RLMOptionalBase.h │ │ │ ├── RLMProperty_Private.h │ │ │ ├── RLMRealmConfiguration_Private.h │ │ │ ├── RLMRealmUtil.hpp │ │ │ ├── RLMRealm_Private.h │ │ │ ├── RLMResults_Private.h │ │ │ └── RLMSchema_Private.h │ │ ├── Realm │ │ ├── _CodeSignature/ │ │ │ └── CodeResources │ │ └── strip-frameworks.sh │ └── RealmSwift.framework/ │ ├── 7CDD3B11-C784-3174-9AF6-0D98DD731253.bcsymbolmap │ ├── 9FB9FC5A-4858-3276-95EA-38E94E55A789.bcsymbolmap │ ├── ADBF6BAA-55EB-3AD4-989F-B72E433F927A.bcsymbolmap │ ├── C64E213B-3CB3-3D7A-953A-F72023B8156F.bcsymbolmap │ ├── D254332B-5A92-3ED9-98B1-FC72938B2AA2.bcsymbolmap │ ├── Headers/ │ │ └── RealmSwift-Swift.h │ ├── Info.plist │ ├── Modules/ │ │ ├── RealmSwift.swiftmodule/ │ │ │ ├── arm.swiftdoc │ │ │ ├── arm.swiftmodule │ │ │ ├── i386.swiftdoc │ │ │ └── i386.swiftmodule │ │ └── module.modulemap │ ├── RealmSwift │ └── _CodeSignature/ │ └── CodeResources ├── try/ │ ├── Assets.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj/ │ │ └── Interface.storyboard │ └── Info.plist ├── try Extension/ │ ├── Assets.xcassets/ │ │ ├── Complication.complicationset/ │ │ │ ├── Circular.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Modular.imageset/ │ │ │ │ └── Contents.json │ │ │ └── Utilitarian.imageset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── speakers/ │ │ │ ├── Contents.json │ │ │ ├── amy_dyer.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── anastasiia_voitova.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── anat_gilboa.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── andrew_trice.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── andyy_hope.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── bojana_jam.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── cate_huston.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── chris_bailey.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── chris_britt.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── chris_robert.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── daniel_jalkut.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── daniel_tomlinson.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ellen_shapiro.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── erik_romijn.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── hector_matos.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── jorge_ortiz.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── katsumi_kishikawa.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── kristina_thai.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── marc_brown.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── marin_todorov.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── natalia_berdys.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── natasha_nazari.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── rob_napier.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── robert.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ryan_nystrom.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── samuel_giddins.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── saul_mora.imageset/ │ │ │ │ └── Contents.json │ │ │ └── tj_usiyan.imageset/ │ │ │ └── Contents.json │ │ ├── sponsors/ │ │ │ ├── Contents.json │ │ │ ├── airplanemode-short.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── domo.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ga_trimmed.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── meetup-square.imageset/ │ │ │ │ └── Contents.json │ │ │ └── twilio-small.imageset/ │ │ │ └── Contents.json │ │ └── tryLogo.imageset/ │ │ └── Contents.json │ ├── ChangeManager.swift │ ├── ComplicationController.swift │ ├── ExtensionDelegate.swift │ ├── GlanceController.swift │ ├── Info.plist │ ├── Session.swift │ ├── SessionTableRowController.swift │ ├── SessionsDay1InterfaceController.swift │ ├── WatchSessionManager.swift │ └── try Extension.entitlements ├── trySwift/ │ ├── AboutTableViewController.swift │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── logo.imageset/ │ │ │ └── Contents.json │ │ ├── organizers/ │ │ │ ├── Contents.json │ │ │ └── natasha_murashev.imageset/ │ │ │ └── Contents.json │ │ ├── speakers/ │ │ │ ├── Contents.json │ │ │ ├── amy_dyer.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── anastasiia_voitova.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── anat_gilboa.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── andrew_trice.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── andyy_hope.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── bojana_jam.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── cate_huston.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── chris_bailey.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── chris_britt.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── chris_robert.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── daniel_jalkut.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── daniel_tomlinson.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ellen_shapiro.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── erik_romijn.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── hector_matos.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── jorge_ortiz.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── katsumi_kishikawa.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── kristina_thai.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── marc_brown.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── marin_todorov.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── natalia_berdys.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── natasha_nazari.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── rob_napier.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── robert.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ryan_nystrom.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── samuel_giddins.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── saul_mora.imageset/ │ │ │ │ └── Contents.json │ │ │ └── tj_usiyan.imageset/ │ │ │ └── Contents.json │ │ ├── sponsors/ │ │ │ ├── Contents.json │ │ │ ├── airplane_mode.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── airplanemode-short.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── aol.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── buddybuild.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── contentful.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── dominos.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── domo.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── etsy.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── firebase.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ga.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ga_trimmed.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── hired.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ibm.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── instagram.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── jetbrains.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── liulishuo.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── lyft.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── meetup-square.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── meetup.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── nyt.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── perfectorg.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── realm.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── smallplanet.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── soundcloud.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── spothero.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── stanfy.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── swift_studies.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── technically_speaking.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── thoughtbot.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── thoughtworks.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── twilio-small.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── twilio.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── twitter.imageset/ │ │ │ │ └── Contents.json │ │ │ └── xogroup.imageset/ │ │ │ └── Contents.json │ │ ├── tab icons/ │ │ │ ├── Contents.json │ │ │ ├── chat.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── more.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── schedule.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── speakers.imageset/ │ │ │ │ └── Contents.json │ │ │ └── sponsors.imageset/ │ │ │ └── Contents.json │ │ ├── tryLogo.imageset/ │ │ │ └── Contents.json │ │ └── venues/ │ │ ├── Contents.json │ │ ├── americanBar.imageset/ │ │ │ └── Contents.json │ │ └── axa.imageset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── ChangeManager.swift │ ├── Info.plist │ ├── MailConfiguration.swift │ ├── MapTableViewCell.swift │ ├── MapTableViewCell.xib │ ├── MoreTableViewController.swift │ ├── NavTabButtonCell.xib │ ├── NibLoadableView.swift │ ├── OfficeHoursDetailViewController.swift │ ├── OrganizerDetailTableViewController.swift │ ├── OrganizerTableViewCell.swift │ ├── OrganizerTableViewCell.xib │ ├── OrganizersTableViewController.swift │ ├── ReusableView.swift │ ├── ScheduleViewController.swift │ ├── SessionDataSourceDay1.swift │ ├── SessionDataSourceDay2.swift │ ├── SessionDataSourceDay3.swift │ ├── SessionDataSourceProtocol.swift │ ├── SessionDetailsViewController.swift │ ├── SessionHeaderTableViewCell.swift │ ├── SessionHeaderTableViewCell.xib │ ├── SessionTableViewCell.swift │ ├── SessionTableViewCell.xib │ ├── SessionsTableViewController.swift │ ├── SpeakerDetailViewController.swift │ ├── SpeakerTableViewCell.swift │ ├── SpeakerTableViewCell.xib │ ├── SpeakersViewController.swift │ ├── SponsorTableViewCell.swift │ ├── SponsorTableViewCell.xib │ ├── SponsorsViewController.swift │ ├── TextTableViewCell.swift │ ├── TextTableViewCell.xib │ ├── Twitter.swift │ ├── TwitterFollowTableViewCell.swift │ ├── TwitterFollowTableViewCell.xib │ ├── UIColorExtension.swift │ ├── UIImageExtension.swift │ ├── UITableViewExtension.swift │ ├── UIViewControllerExtension.swift │ ├── VenueHeaderTableViewCell.swift │ ├── VenueHeaderTableViewCell.xib │ ├── VenueTableViewController.swift │ ├── WatchSessionManager.swift │ ├── WebDisplayViewController.swift │ ├── WebDisplayViewController.xib │ ├── WifiInfoTableViewCell.swift │ ├── WifiInfoTableViewCell.xib │ ├── trySwift-Bridging-Header.h │ └── trySwift.entitlements ├── trySwift.xcodeproj/ │ ├── project.pbxproj │ └── project.xcworkspace/ │ └── contents.xcworkspacedata ├── trySwift.xcworkspace/ │ └── contents.xcworkspacedata ├── trySwiftTests/ │ ├── Info.plist │ └── trySwiftTests.swift └── trySwiftUITests/ ├── Info.plist └── trySwiftUITests.swift