first commit

This commit is contained in:
snehalathad@aissel.com 2024-09-06 12:00:31 +05:30
commit 38870a3a8c
272 changed files with 259059 additions and 0 deletions

43
.gitignore vendored Normal file
View File

@ -0,0 +1,43 @@
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/
migrate_working_dir/
# IntelliJ related
*.iml
*.ipr
*.iws
.idea/
# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/
# Flutter/Dart/Pub related
**/doc/api/
**/ios/Flutter/.last_build_id
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
.pub-cache/
.pub/
/build/
# Symbolication related
app.*.symbols
# Obfuscation related
app.*.map.json
# Android Studio will place build artifacts here
/android/app/debug
/android/app/profile
/android/app/release

45
.metadata Normal file
View File

@ -0,0 +1,45 @@
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled and should not be manually edited.
version:
revision: "78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9"
channel: "stable"
project_type: app
# Tracks metadata for the flutter migrate command
migration:
platforms:
- platform: root
create_revision: 78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9
base_revision: 78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9
- platform: android
create_revision: 78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9
base_revision: 78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9
- platform: ios
create_revision: 78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9
base_revision: 78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9
- platform: linux
create_revision: 78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9
base_revision: 78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9
- platform: macos
create_revision: 78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9
base_revision: 78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9
- platform: web
create_revision: 78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9
base_revision: 78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9
- platform: windows
create_revision: 78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9
base_revision: 78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9
# User provided section
# List of Local paths (relative to this file) that should be
# ignored by the migrate tool.
#
# Files that are not part of the templates will be ignored by default.
unmanaged_files:
- 'lib/main.dart'
- 'ios/Runner.xcodeproj/project.pbxproj'

7
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,7 @@
{
"dart.previewCommitCharacters": true,
"dart.enableCompletionCommitCharacters": true,
"dart.env": {
}
}

16
README.md Normal file
View File

@ -0,0 +1,16 @@
# konectar_events
A new Flutter project.
## Getting Started
This project is a starting point for a Flutter application.
A few resources to get you started if this is your first Flutter project:
- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
For help getting started with Flutter development, view the
[online documentation](https://docs.flutter.dev/), which offers tutorials,
samples, guidance on mobile development, and a full API reference.

28
analysis_options.yaml Normal file
View File

@ -0,0 +1,28 @@
# This file configures the analyzer, which statically analyzes Dart code to
# check for errors, warnings, and lints.
#
# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
# invoked from the command line by running `flutter analyze`.
# The following line activates a set of recommended lints for Flutter apps,
# packages, and plugins designed to encourage good coding practices.
include: package:flutter_lints/flutter.yaml
linter:
# The lint rules applied to this project can be customized in the
# section below to disable rules from the `package:flutter_lints/flutter.yaml`
# included above or to enable additional rules. A list of all available lints
# and their documentation is published at https://dart.dev/lints.
#
# Instead of disabling a lint rule for the entire project in the
# section below, it can also be suppressed for a single line of code
# or a specific dart file by using the `// ignore: name_of_lint` and
# `// ignore_for_file: name_of_lint` syntax on the line or in the file
# producing the lint.
rules:
# avoid_print: false # Uncomment to disable the `avoid_print` rule
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
# Additional information about this file can be found at
# https://dart.dev/guides/language/analysis-options

13
android/.gitignore vendored Normal file
View File

@ -0,0 +1,13 @@
gradle-wrapper.jar
/.gradle
/captures/
/gradlew
/gradlew.bat
/local.properties
GeneratedPluginRegistrant.java
# Remember to never publicly share your keystore.
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
key.properties
**/*.keystore
**/*.jks

70
android/app/build.gradle Normal file
View File

@ -0,0 +1,70 @@
plugins {
id "com.android.application"
// START: FlutterFire Configuration
id 'com.google.gms.google-services'
// END: FlutterFire Configuration
id "kotlin-android"
id "dev.flutter.flutter-gradle-plugin"
}
def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
android {
namespace "com.example.konectar_events"
compileSdkVersion flutter.compileSdkVersion
ndkVersion flutter.ndkVersion
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.example.konectar_events"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
minSdkVersion flutter.minSdkVersion
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
}
}
}
flutter {
source '../..'
}
dependencies {}

View File

@ -0,0 +1,29 @@
{
"project_info": {
"project_number": "259165326883",
"project_id": "kevents-c4ff5",
"storage_bucket": "kevents-c4ff5.appspot.com"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:259165326883:android:bb5e1ebe38aee593c8ab96",
"android_client_info": {
"package_name": "com.example.konectar_events"
}
},
"oauth_client": [],
"api_key": [
{
"current_key": "AIzaSyC_H76Ukb7kOxIsLLFUQTmVegqwn08iWms"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": []
}
}
}
],
"configuration_version": "1"
}

View File

@ -0,0 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- The INTERNET permission is required for development. Specifically,
the Flutter tool needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>

View File

@ -0,0 +1,31 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application android:label="konectar_events" android:name="${applicationName}" android:icon="@mipmap/launcher_icon">
<activity android:name=".MainActivity" android:exported="true" android:launchMode="singleTop" android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize">
<!-- Specifies an Android theme to apply to this Activity as soon as
the Android process has started. This theme is visible to the user
while the Flutter UI initializes. After that, this theme continues
to determine the Window background behind the Flutter UI. -->
<meta-data android:name="io.flutter.embedding.android.NormalTheme" android:resource="@style/NormalTheme"/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<!-- Don't delete the meta-data below.
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
<meta-data android:name="flutterEmbedding" android:value="2"/>
</application>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_CALENDAR" />
<uses-permission android:name="android.permission.READ_CALENDAR" />
<queries>
<intent>
<action android:name="android.intent.action.INSERT" />
<data android:mimeType="vnd.android.cursor.item/event" />
</intent>
</queries>
</manifest>

View File

@ -0,0 +1,6 @@
package com.example.konectar_events
import io.flutter.embedding.android.FlutterActivity
class MainActivity: FlutterActivity() {
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Modify this file to customize your launch splash screen -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="?android:colorBackground" />
<!-- You can insert your own image assets here -->
<!-- <item>
<bitmap
android:gravity="center"
android:src="@mipmap/ic_launcher" />
</item> -->
</layer-list>

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Modify this file to customize your launch splash screen -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@android:color/white" />
<!-- You can insert your own image assets here -->
<!-- <item>
<bitmap
android:gravity="center"
android:src="@mipmap/ic_launcher" />
</item> -->
</layer-list>

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 544 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 442 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 721 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
<!-- Show a splash screen on the activity. Automatically removed when
the Flutter engine draws its first frame -->
<item name="android:windowBackground">@drawable/launch_background</item>
</style>
<!-- Theme applied to the Android Window as soon as the process has started.
This theme determines the color of the Android Window while your
Flutter UI initializes, as well as behind your Flutter UI while its
running.
This Theme is only used starting with V2 of Flutter's Android embedding. -->
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
<item name="android:windowBackground">?android:colorBackground</item>
</style>
</resources>

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
<!-- Show a splash screen on the activity. Automatically removed when
the Flutter engine draws its first frame -->
<item name="android:windowBackground">@drawable/launch_background</item>
</style>
<!-- Theme applied to the Android Window as soon as the process has started.
This theme determines the color of the Android Window while your
Flutter UI initializes, as well as behind your Flutter UI while its
running.
This Theme is only used starting with V2 of Flutter's Android embedding. -->
<style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
<item name="android:windowBackground">?android:colorBackground</item>
</style>
</resources>

View File

@ -0,0 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- The INTERNET permission is required for development. Specifically,
the Flutter tool needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>

30
android/build.gradle Normal file
View File

@ -0,0 +1,30 @@
buildscript {
ext.kotlin_version = '1.7.10'
repositories {
google()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
tasks.register("clean", Delete) {
delete rootProject.buildDir
}

View File

@ -0,0 +1,3 @@
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true

View File

@ -0,0 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip

32
android/settings.gradle Normal file
View File

@ -0,0 +1,32 @@
pluginManagement {
def flutterSdkPath = {
def properties = new Properties()
file("local.properties").withInputStream { properties.load(it) }
def flutterSdkPath = properties.getProperty("flutter.sdk")
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
return flutterSdkPath
}
settings.ext.flutterSdkPath = flutterSdkPath()
includeBuild("${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
plugins {
id "dev.flutter.flutter-gradle-plugin" version "1.0.0" apply false
}
}
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version "7.3.0" apply false
// START: FlutterFire Configuration
id "com.google.gms.google-services" version "4.3.15" apply false
// END: FlutterFire Configuration
}
include ":app"

21438
assets/ed128202.json Normal file

File diff suppressed because it is too large Load Diff

4909
assets/ed129314.json Normal file

File diff suppressed because it is too large Load Diff

157912
assets/ed129934.json Normal file

File diff suppressed because it is too large Load Diff

5430
assets/ed130546.json Normal file

File diff suppressed because it is too large Load Diff

444
assets/ed140846.json Normal file
View File

@ -0,0 +1,444 @@
{
"data": {
"eventsdetail": [
{
"proj_kol_id": true,
"eid": "140846",
"event_topics": "Hematologic Neoplasms",
"npi_num": "1518014307",
"hcp_pin_alias": "862156",
"session_name": "Hematological Malignancies",
"name": "2024 Total Health Best of ASCO Memphis Conference (ASCO)",
"kol_id": "862156",
"first_name": "Leonard",
"middle_name": "Jefferson",
"last_name": "Harris",
"org_name": "The University of Tennessee Medical Center",
"Country": "United States",
"Region": "Tennessee",
"City": "Memphis",
"num_sess": "1",
"opt_in_out_status": null,
"url1": "https://www.totalhealthoncology.com/upcoming-oncology-conferences/asco-memphis-2024",
"session_note": null,
"events_session": "Hematological Malignancies",
"rest_events_session_count": 0,
"rest_events_session": "",
"events_topic": "Hematologic Neoplasms",
"rest_events_topic_count": 0,
"rest_events_topic": "",
"kol_name": "<a class='link' target='new' href='https://cardio.konectar.io/kols/view/862156'>Leonard Jefferson Harris</a>",
"kol_full_name": "Leonard Jefferson Harris"
},
{
"proj_kol_id": true,
"eid": "140846",
"event_topics": "Gastrointestinal Neoplasms",
"npi_num": "1043576952",
"hcp_pin_alias": "636750",
"session_name": "Gastrointestinal Cancer",
"name": "2024 Total Health Best of ASCO Memphis Conference (ASCO)",
"kol_id": "636750",
"first_name": "Saurin",
"middle_name": "Akshay",
"last_name": "Chokshi",
"org_name": "UT Regional One Physicians Inc",
"Country": "United States",
"Region": "Tennessee",
"City": "Memphis",
"num_sess": "1",
"opt_in_out_status": null,
"url1": "https://www.totalhealthoncology.com/upcoming-oncology-conferences/asco-memphis-2024",
"session_note": null,
"events_session": "Gastrointestinal Cancer",
"rest_events_session_count": 0,
"rest_events_session": "",
"events_topic": "Gastrointestinal Neoplasms",
"rest_events_topic_count": 0,
"rest_events_topic": "",
"kol_name": "<a class='link' target='new' href='https://cardio.konectar.io/kols/view/636750'>Saurin Akshay Chokshi</a>",
"kol_full_name": "Saurin Akshay Chokshi"
},
{
"proj_kol_id": true,
"eid": "140846",
"event_topics": "Admin. & Management | Diversity, Equity, Inclusion | Research",
"npi_num": "1992879456",
"hcp_pin_alias": "632325",
"session_name": "The Intersection of Research Practice and DE&I,Program Committee",
"name": "2024 Total Health Best of ASCO Memphis Conference (ASCO)",
"kol_id": "632325",
"first_name": "Karen",
"middle_name": "Marie",
"last_name": "Winkfield",
"org_name": "Vanderbilt University Medical Center",
"Country": "United States",
"Region": "Tennessee",
"City": "Nashville",
"num_sess": "2",
"opt_in_out_status": null,
"url1": "https://www.totalhealthoncology.com/upcoming-oncology-conferences/asco-memphis-2024",
"session_note": null,
"events_session": "The Intersection of Research",
"rest_events_session_count": 3,
"rest_events_session": " Practice, and DE&I,Program Committee",
"events_topic": "Admin. & Management | Diversity, Equity, Inclusion ",
"rest_events_topic_count": 1,
"rest_events_topic": " Research",
"kol_name": "<a class='link' target='new' href='https://cardio.konectar.io/kols/view/632325'>Karen Marie Winkfield</a>",
"kol_full_name": "Karen Marie Winkfield"
},
{
"proj_kol_id": true,
"eid": "140846",
"event_topics": "Health Status Disparities | Palliative Care",
"npi_num": "1801076138",
"hcp_pin_alias": "623091",
"session_name": "Reducing Disparities in Palliative Care and End of Life",
"name": "2024 Total Health Best of ASCO Memphis Conference (ASCO)",
"kol_id": "623091",
"first_name": "Manali",
"middle_name": "Indravadan",
"last_name": "Patel",
"org_name": "Stanford Health Care",
"Country": "United States",
"Region": "California",
"City": "Stanford",
"num_sess": "1",
"opt_in_out_status": null,
"url1": "https://www.totalhealthoncology.com/upcoming-oncology-conferences/asco-memphis-2024",
"session_note": null,
"events_session": "Reducing Disparities in Palliative Care and End of Life",
"rest_events_session_count": 0,
"rest_events_session": "",
"events_topic": "Health Status Disparities | Palliative Care",
"rest_events_topic_count": 0,
"rest_events_topic": "",
"kol_name": "<a class='link' target='new' href='https://cardio.konectar.io/kols/view/623091'>Manali Indravadan Patel</a>",
"kol_full_name": "Manali Indravadan Patel"
},
{
"proj_kol_id": true,
"eid": "140846",
"event_topics": "Lung Neoplasms",
"npi_num": "1134485410",
"hcp_pin_alias": "577804",
"session_name": "Lung Cancer Updates",
"name": "2024 Total Health Best of ASCO Memphis Conference (ASCO)",
"kol_id": "577804",
"first_name": "Wade",
"middle_name": "Thomas",
"last_name": "Iams",
"org_name": "Vanderbilt University Medical Center",
"Country": "United States",
"Region": "Tennessee",
"City": "Nashville",
"num_sess": "1",
"opt_in_out_status": null,
"url1": "https://www.totalhealthoncology.com/upcoming-oncology-conferences/asco-memphis-2024",
"session_note": null,
"events_session": "Lung Cancer Updates",
"rest_events_session_count": 0,
"rest_events_session": "",
"events_topic": "Lung Neoplasms",
"rest_events_topic_count": 0,
"rest_events_topic": "",
"kol_name": "<a class='link' target='new' href='https://cardio.konectar.io/kols/view/577804'>Wade Thomas Iams</a>",
"kol_full_name": "Wade Thomas Iams"
},
{
"proj_kol_id": true,
"eid": "140846",
"event_topics": "Admin. & Management | Prostatic Neoplasms",
"npi_num": "1851320691",
"hcp_pin_alias": "570492",
"session_name": "Prostate Cancer,Program Committee",
"name": "2024 Total Health Best of ASCO Memphis Conference (ASCO)",
"kol_id": "570492",
"first_name": "Bradley",
"middle_name": "G",
"last_name": "Somer",
"org_name": "West Cancer Center",
"Country": "United States",
"Region": "Mississippi",
"City": "Southaven",
"num_sess": "2",
"opt_in_out_status": null,
"url1": "https://www.totalhealthoncology.com/upcoming-oncology-conferences/asco-memphis-2024",
"session_note": null,
"events_session": "Prostate Cancer",
"rest_events_session_count": 1,
"rest_events_session": "Program Committee",
"events_topic": "Admin. & Management | Prostatic Neoplasms",
"rest_events_topic_count": 0,
"rest_events_topic": "",
"kol_name": "<a class='link' target='new' href='https://cardio.konectar.io/kols/view/570492'>Bradley G Somer</a>",
"kol_full_name": "Bradley G Somer"
},
{
"proj_kol_id": true,
"eid": "140846",
"event_topics": "Melanoma",
"npi_num": "1619075207",
"hcp_pin_alias": "559030",
"session_name": "Melanomas",
"name": "2024 Total Health Best of ASCO Memphis Conference (ASCO)",
"kol_id": "559030",
"first_name": "Kent",
"middle_name": "C",
"last_name": "Shih",
"org_name": "Tennessee Oncology Pllc",
"Country": "United States",
"Region": "Tennessee",
"City": "Nashville",
"num_sess": "1",
"opt_in_out_status": null,
"url1": "https://www.totalhealthoncology.com/upcoming-oncology-conferences/asco-memphis-2024",
"session_note": null,
"events_session": "Melanomas",
"rest_events_session_count": 0,
"rest_events_session": "",
"events_topic": "Melanoma",
"rest_events_topic_count": 0,
"rest_events_topic": "",
"kol_name": "<a class='link' target='new' href='https://cardio.konectar.io/kols/view/559030'>Kent C Shih</a>",
"kol_full_name": "Kent C Shih"
},
{
"proj_kol_id": true,
"eid": "140846",
"event_topics": "Breast Neoplasms",
"npi_num": "1306878228",
"hcp_pin_alias": "556254",
"session_name": "Early and Metastatic Breast Cancer",
"name": "2024 Total Health Best of ASCO Memphis Conference (ASCO)",
"kol_id": "556254",
"first_name": "Lee",
"middle_name": "S",
"last_name": "Schwartzberg",
"org_name": "William N. Pennington Cancer Institute at Renown Health",
"Country": "United States",
"Region": "Nevada",
"City": "Reno",
"num_sess": "1",
"opt_in_out_status": null,
"url1": "https://www.totalhealthoncology.com/upcoming-oncology-conferences/asco-memphis-2024",
"session_note": null,
"events_session": "Early and Metastatic Breast Cancer",
"rest_events_session_count": 0,
"rest_events_session": "",
"events_topic": "Breast Neoplasms",
"rest_events_topic_count": 0,
"rest_events_topic": "",
"kol_name": "<a class='link' target='new' href='https://cardio.konectar.io/kols/view/556254'>Lee S Schwartzberg</a>",
"kol_full_name": "Lee S Schwartzberg"
},
{
"proj_kol_id": true,
"eid": "140846",
"event_topics": "Multiple Myeloma",
"npi_num": "1033491642",
"hcp_pin_alias": "528288",
"session_name": "Multiple Myeloma",
"name": "2024 Total Health Best of ASCO Memphis Conference (ASCO)",
"kol_id": "528288",
"first_name": "Bhagirathbhai",
"middle_name": "Ravjibhai",
"last_name": "Dholaria",
"org_name": "Vanderbilt University Medical Center",
"Country": "United States",
"Region": "Tennessee",
"City": "Nashville",
"num_sess": "1",
"opt_in_out_status": null,
"url1": "https://www.totalhealthoncology.com/upcoming-oncology-conferences/asco-memphis-2024",
"session_note": null,
"events_session": "Multiple Myeloma",
"rest_events_session_count": 0,
"rest_events_session": "",
"events_topic": "Multiple Myeloma",
"rest_events_topic_count": 0,
"rest_events_topic": "",
"kol_name": "<a class='link' target='new' href='https://cardio.konectar.io/kols/view/528288'>Bhagirathbhai Ravjibhai Dholaria</a>",
"kol_full_name": "Bhagirathbhai Ravjibhai Dholaria"
},
{
"proj_kol_id": true,
"eid": "140846",
"event_topics": "Prostatic Neoplasms",
"npi_num": "1003349440",
"hcp_pin_alias": "364462",
"session_name": "Non-Prostate Cancer",
"name": "2024 Total Health Best of ASCO Memphis Conference (ASCO)",
"kol_id": "364462",
"first_name": "Ruchika",
"middle_name": "",
"last_name": "Talwar",
"org_name": "Vanderbilt University Medical Center",
"Country": "United States",
"Region": "Tennessee",
"City": "Nashville",
"num_sess": "1",
"opt_in_out_status": null,
"url1": "https://www.totalhealthoncology.com/upcoming-oncology-conferences/asco-memphis-2024",
"session_note": null,
"events_session": "Non-Prostate Cancer",
"rest_events_session_count": 0,
"rest_events_session": "",
"events_topic": "Prostatic Neoplasms",
"rest_events_topic_count": 0,
"rest_events_topic": "",
"kol_name": "<a class='link' target='new' href='https://cardio.konectar.io/kols/view/364462'>Ruchika Talwar</a>",
"kol_full_name": "Ruchika Talwar"
},
{
"proj_kol_id": true,
"eid": "140846",
"event_topics": "Head And Neck Neoplasms",
"npi_num": "1558479188",
"hcp_pin_alias": "219696",
"session_name": "Head and Neck Cancer",
"name": "2024 Total Health Best of ASCO Memphis Conference (ASCO)",
"kol_id": "219696",
"first_name": "Nabil",
"middle_name": "F",
"last_name": "Saba",
"org_name": "Emory University Hospital",
"Country": "United States",
"Region": "Georgia",
"City": "Atlanta",
"num_sess": "1",
"opt_in_out_status": null,
"url1": "https://www.totalhealthoncology.com/upcoming-oncology-conferences/asco-memphis-2024",
"session_note": null,
"events_session": "Head and Neck Cancer",
"rest_events_session_count": 0,
"rest_events_session": "",
"events_topic": "Head And Neck Neoplasms",
"rest_events_topic_count": 0,
"rest_events_topic": "",
"kol_name": "<a class='link' target='new' href='https://cardio.konectar.io/kols/view/219696'>Nabil F Saba</a>",
"kol_full_name": "Nabil F Saba"
},
{
"proj_kol_id": false,
"eid": "140846",
"event_topics": "Diversity, Equity, Inclusion",
"npi_num": "1871866830",
"hcp_pin_alias": "FU_HCP_5441541",
"session_name": "DEI from a Nurse Perspective",
"name": "2024 Total Health Best of ASCO Memphis Conference (ASCO)",
"kol_id": "0",
"first_name": "Clesheree Stepter",
"middle_name": null,
"last_name": null,
"org_name": "Baptist Cancer Center",
"Country": null,
"Region": null,
"City": null,
"num_sess": "1",
"opt_in_out_status": null,
"url1": "https://www.totalhealthoncology.com/upcoming-oncology-conferences/asco-memphis-2024",
"session_note": null,
"events_session": "DEI from a Nurse Perspective",
"rest_events_session_count": 0,
"rest_events_session": "",
"events_topic": "Diversity, Equity, Inclusion",
"rest_events_topic_count": 0,
"rest_events_topic": "",
"kol_name": "<div class=\"sprite_iconSet newIconSet\">\n\t\t\t\t\t<a class=\"requestProfileIcon \" href=\"#\" onclick=\"requestProfile(1871866830,'FU_HCP_5441541');return false;\" rel=\"tooltip\" data-original-title=\"Request Profile\">&nbsp;</a>\n\t\t\t\t\t</div>Clesheree Stepter ",
"kol_full_name": "Clesheree Stepter "
},
{
"proj_kol_id": false,
"eid": "140846",
"event_topics": "Patient Care",
"npi_num": "0",
"hcp_pin_alias": "FU_HCP_5441539",
"session_name": "Listening to Patients (Advocacy Corner)",
"name": "2024 Total Health Best of ASCO Memphis Conference (ASCO)",
"kol_id": "0",
"first_name": "Doretha Burrell",
"middle_name": null,
"last_name": null,
"org_name": "Dee Burrell Coaching",
"Country": "United States",
"Region": "District of Columbia",
"City": "Washington",
"num_sess": "1",
"opt_in_out_status": null,
"url1": "https://www.totalhealthoncology.com/upcoming-oncology-conferences/asco-memphis-2024",
"session_note": null,
"events_session": "Listening to Patients (Advocacy Corner)",
"rest_events_session_count": 0,
"rest_events_session": "",
"events_topic": "Patient Care",
"rest_events_topic_count": 0,
"rest_events_topic": "",
"kol_name": "<div class=\"sprite_iconSet newIconSet\">\n\t\t\t\t\t<a class=\"requestProfileIcon \" href=\"#\" onclick=\"requestProfile(0,'FU_HCP_5441539');return false;\" rel=\"tooltip\" data-original-title=\"Request Profile\">&nbsp;</a>\n\t\t\t\t\t</div>Doretha Burrell ",
"kol_full_name": "Doretha Burrell "
},
{
"proj_kol_id": false,
"eid": "140846",
"event_topics": "Healthy Lifestyle",
"npi_num": "0",
"hcp_pin_alias": "FU_HCP_5441535",
"session_name": "Lifestyle Tips and Strategies",
"name": "2024 Total Health Best of ASCO Memphis Conference (ASCO)",
"kol_id": "0",
"first_name": "Sami Mansfield",
"middle_name": null,
"last_name": null,
"org_name": "Cancer Wellness for Life",
"Country": "United States",
"Region": "Kansas",
"City": "Lenexa",
"num_sess": "1",
"opt_in_out_status": null,
"url1": "https://www.totalhealthoncology.com/upcoming-oncology-conferences/asco-memphis-2024",
"session_note": null,
"events_session": "Lifestyle Tips and Strategies",
"rest_events_session_count": 0,
"rest_events_session": "",
"events_topic": "Healthy Lifestyle",
"rest_events_topic_count": 0,
"rest_events_topic": "",
"kol_name": "<div class=\"sprite_iconSet newIconSet\">\n\t\t\t\t\t<a class=\"requestProfileIcon \" href=\"#\" onclick=\"requestProfile(0,'FU_HCP_5441535');return false;\" rel=\"tooltip\" data-original-title=\"Request Profile\">&nbsp;</a>\n\t\t\t\t\t</div>Sami Mansfield ",
"kol_full_name": "Sami Mansfield "
},
{
"proj_kol_id": false,
"eid": "140846",
"event_topics": "State Health Plans",
"npi_num": "0",
"hcp_pin_alias": "FU_HCP_5441536",
"session_name": "Memphis Tennessee: State of Health",
"name": "2024 Total Health Best of ASCO Memphis Conference (ASCO)",
"kol_id": "0",
"first_name": "Shalini Parekh",
"middle_name": null,
"last_name": null,
"org_name": "Tennessee Department of Health",
"Country": "United States",
"Region": "Tennessee",
"City": "Nashville",
"num_sess": "1",
"opt_in_out_status": null,
"url1": "https://www.totalhealthoncology.com/upcoming-oncology-conferences/asco-memphis-2024",
"session_note": null,
"events_session": "Memphis Tennessee: State of Health",
"rest_events_session_count": 0,
"rest_events_session": "",
"events_topic": "State Health Plans",
"rest_events_topic_count": 0,
"rest_events_topic": "",
"kol_name": "<div class=\"sprite_iconSet newIconSet\">\n\t\t\t\t\t<a class=\"requestProfileIcon \" href=\"#\" onclick=\"requestProfile(0,'FU_HCP_5441536');return false;\" rel=\"tooltip\" data-original-title=\"Request Profile\">&nbsp;</a>\n\t\t\t\t\t</div>Shalini Parekh ",
"kol_full_name": "Shalini Parekh "
}
]
}
}

12506
assets/ed142682.json Normal file

File diff suppressed because it is too large Load Diff

1026
assets/events.json Normal file

File diff suppressed because it is too large Load Diff

31762
assets/eventsdetail.json Normal file

File diff suppressed because it is too large Load Diff

40
assets/eventsdetail2.json Normal file
View File

@ -0,0 +1,40 @@
{
"data": {
"eventsdetail": [
{
"City": "Baltimore",
"Country": "United States",
"Region": "Maryland",
"cnt_medical_insight": "0",
"cnt_notes": "0",
"eid": "23396",
"event_attendees_id": "230944",
"event_topics": "Biomarkers, Tumor | Pancreatic Neoplasms",
"events_session": "Improving Pancreatic Cancer Early Detection Using A Tumor Marker Gene Test",
"events_topic": "Biomarkers, Tumor | Pancreatic Neoplasms",
"first_name": "Michael",
"hcp_pin_alias": "222553",
"id": "230944",
"kol_full_name": "Goggins, Michael Gilbert",
"kol_id": "222553",
"kol_name": "\u003Ca class='link' target='new' href='https://cardio-staging.konectar.io/kols/view/222553/fromId'\u003EGoggins, Michael Gilbert\u003C/a\u003E",
"last_name": "Goggins",
"medical_insight_id": "",
"middle_name": "Gilbert",
"name": "2024 American Association for Cancer Research Advances in Pancreatic Cancer Research Conference (AACR)",
"npi_num": "1861445983",
"num_sess": "1",
"opt_in_out_status": "",
"org_name": "Johns Hopkins University School of Medicine",
"proj_kol_id": 1,
"rest_events_session": "",
"rest_events_session_count": 0,
"rest_events_topic": "",
"rest_events_topic_count": 0,
"session_name": "Improving Pancreatic Cancer Early Detection Using A Tumor Marker Gene Test",
"session_note": "",
"url1": "https://www.aacr.org/meeting/aacr-special-conference-pancreatic-cancer-2024/program/"
}
]
}
}

385
assets/eventsnew.json Normal file
View File

@ -0,0 +1,385 @@
{
"data": {
"events": [
{
"therapeutic_area": "Oncology | Pediatrics",
"hcp_pin": "FU_HCP_5455134",
"cnt": "431",
"id": "2394176",
"kol_id": "0",
"type": "conference",
"event_type": "Congress",
"event_id": "142682",
"session_type": "CME",
"session_name": "Scientific Committee",
"role": "Chair",
"topic": "",
"start": "10/17/2024",
"end": "10/20/2024",
"organizer": "International Society of Paediatric Oncology (SIOP)",
"sponsor_type": "1",
"session_sponsor": "International Society of Paediatric Oncology (SIOP)",
"organizer_type": "1",
"location": "Hawaii Convention Center",
"address": "1801 Kalākaua Avenue",
"city_id": "1221",
"state_id": "133",
"country_id": "254",
"postal_code": "96815",
"subject": null,
"url1": "https://cslide.ctimeetingtech.com/siop24/attendee/confcal/session/list",
"url2": null,
"notes": null,
"created_by": "1304",
"created_on": "08/14/2024",
"modified_by": null,
"modified_on": "2024-08-14 09:15:28",
"client_id": "1",
"project_id": null,
"activity_type": "Organizing Committee",
"profile_type": "1",
"global_event_id": null,
"event_unique_id": "_2394176",
"old_kol_event_id": null,
"stype": "Association",
"otype": "Association",
"name1": "2024 International Society of Paediatric Oncology Annual Congress (SIOP)",
"partially_released_event": "1",
"Country": "United States",
"Region": "Hawaii",
"City": "Honolulu",
"topic_name": "Admin. & Management",
"eventLat": "21.3084",
"eventLong": "-157.846",
"user_count": "1",
"partialcount": "431",
"session_note1": null,
"session_note": null,
"organizerAlias": "ISPO",
"eAllowed": true,
"dAllowed": true,
"updated": true,
"speakerscount":"431",
"topTopics":"1. Neoplasms \n2. Solid Tumors \n3. Wilms Tumor",
"topSpeakers":"1. Marilyn Hockenberry \n2. Rob Pieters \n3. Avram Denburg",
"sponsors":"1. LES LABORATOIRES SERVIER, SERB \n2. International Society of Paediatric Oncology (SIOP)"
},
{
"therapeutic_area": "Medical Imaging",
"hcp_pin": "",
"cnt": "187",
"id": "2096326",
"kol_id": "0",
"type": "conference",
"event_type": "Annual Meeting",
"event_id": "130546",
"session_type": "",
"session_name": "",
"role": "",
"topic": "",
"start": "09/21/2024",
"end": "09/24/2024",
"organizer": "North American Society for Cardiovascular Imaging (NASCI)",
"sponsor_type": "11",
"session_sponsor": "",
"organizer_type": "1",
"location": "The Westin Boston Seaport District",
"address": "425 Summer Street",
"city_id": "8816",
"state_id": "143",
"country_id": "254",
"postal_code": "02210",
"subject": null,
"url1": "https://nasci.org/annual-meeting/",
"url2": null,
"notes": null,
"created_by": "663",
"created_on": "01/25/2024",
"modified_by": null,
"modified_on": "2024-01-25 10:09:44",
"client_id": "1",
"project_id": null,
"activity_type": "Speaking",
"profile_type": "1",
"global_event_id": null,
"event_unique_id": "_2096326",
"old_kol_event_id": null,
"stype": "",
"otype": "Association",
"name1": "2024 North American Society for Cardiovascular Imaging Annual Meeting (NASCI)",
"partially_released_event": "1",
"Country": "United States",
"Region": "Massachusetts",
"City": "Boston",
"topic_name": null,
"eventLat": "42.3535",
"eventLong": "-71.0627",
"user_count": "1",
"partialcount": "188",
"session_note1": null,
"session_note": null,
"organizerAlias": "NASFCI",
"eAllowed": true,
"dAllowed": true,
"updated": false,
"speakerscount":"187",
"topTopics":"1. Cardiac Imaging Techniques \n2. Admin. & Management \n3. Diagnostic Imaging",
"topSpeakers":"1. Monesha L Gupta \n2. Seyed Ali Nabipoorashrafi \n3. Yuval Liberman",
"sponsors":"1. North American Society for Cardiovascular Imaging (NASCI)"
},
{
"therapeutic_area": "Precision Oncology | Oncology | Oncology Syros | Cancer Screening | Oncology_Puma",
"hcp_pin": "FU_HCP_5454224",
"cnt": "739",
"id": "2392698",
"kol_id": "0",
"type": "conference",
"event_type": "Congress",
"event_id": "128202",
"session_type": "CME",
"session_name": "Clinics and research in LMIC",
"role": "Speaker",
"topic": "",
"start": "09/13/2024",
"end": "09/17/2024",
"organizer": "European Society for Medical Oncology (ESMO)",
"sponsor_type": "1",
"session_sponsor": "European Society for Medical Oncology (ESMO)",
"organizer_type": "1",
"location": "Fira Barcelona Gran Via",
"address": "Av. Joan Carles I, 64, L'Hospitalet de Llobregat",
"city_id": null,
"state_id": null,
"country_id": "226",
"postal_code": "08908",
"subject": null,
"url1": "https://cslide.ctimeetingtech.com/esmo2024/attendee/confcal/session",
"url2": null,
"notes": null,
"created_by": "1304",
"created_on": "08/12/2024",
"modified_by": null,
"modified_on": "2024-08-12 11:53:46",
"client_id": "1",
"project_id": null,
"activity_type": "Speaking",
"profile_type": "1",
"global_event_id": null,
"event_unique_id": "_2392698",
"old_kol_event_id": null,
"stype": "Association",
"otype": "Association",
"name1": "2024 European Society for Medical Oncology Congress (ESMO)",
"partially_released_event": "0",
"Country": "Spain",
"Region": null,
"City": null,
"topic_name": "Clinical Research",
"eventLat": null,
"eventLong": null,
"user_count": "1",
"partialcount": "739",
"session_note1": null,
"session_note": null,
"organizerAlias": "ESFMO",
"eAllowed": true,
"dAllowed": true,
"updated": true,
"speakerscount":"739",
"topTopics":"1. Breast Neoplasms \n2. Solid Tumors \n3. Carcinoma, Non-Small-Cell Lung",
"topSpeakers":"1. Elena Garralda \n2. Jarushka Naidoo \n3. Matthew N. Fowler",
"sponsors":"1. F. Hoffmann-La Roche Ltd \n2. Eli Lilly and Company \n3. Novocure GmbH"
},
{
"therapeutic_area": "Oncology",
"hcp_pin": "FU_HCP_100356",
"cnt": "15",
"id": "2360942",
"kol_id": "570492",
"type": "conference",
"event_type": "Conference",
"event_id": "140846",
"session_type": "CME",
"session_name": "Program Committee",
"role": "Chair",
"topic": "",
"start": "09/07/2024",
"end": "09/08/2024",
"organizer": "Total Health Information Services, LLC (THISL)",
"sponsor_type": "4",
"session_sponsor": "Total Health Information Services, LLC",
"organizer_type": "5",
"location": "Hilton Memphis",
"address": "939 Ridge Lake Boulevard",
"city_id": "10913",
"state_id": "164",
"country_id": "254",
"postal_code": "38120",
"subject": null,
"url1": "https://www.totalhealthoncology.com/upcoming-oncology-conferences/asco-memphis-2024",
"url2": null,
"notes": null,
"created_by": "663",
"created_on": "07/05/2024",
"modified_by": null,
"modified_on": "2024-07-05 12:57:49",
"client_id": "1",
"project_id": null,
"activity_type": "Organizing Committee",
"profile_type": "1",
"global_event_id": null,
"event_unique_id": "_2360942",
"old_kol_event_id": null,
"stype": "Other",
"otype": "Other",
"name1": "2024 Total Health Best of ASCO Memphis Conference (ASCO)",
"partially_released_event": "1",
"Country": "United States",
"Region": "Tennessee",
"City": "Memphis",
"topic_name": "Admin. & Management",
"eventLat": "35.1292",
"eventLong": "-89.9892",
"user_count": "1",
"partialcount": "15",
"session_note1": null,
"session_note": null,
"organizerAlias": "THISL",
"eAllowed": true,
"dAllowed": true,
"updated": false,
"speakerscount":"15",
"topTopics":"1. Admin. & Management \n2. Breast Neoplasms \n3. Prostatic Neoplasms",
"topSpeakers":"1. Bradley G Somer \n2. Karen Marie Winkfield \n3. Bhagirathbhai Ravjibhai Dholaria",
"sponsors":"1. Total Health Information Services, LLC"
},
{
"therapeutic_area": "Oncology_Syros",
"hcp_pin": "",
"cnt": "169",
"id": "2062445",
"kol_id": "0",
"type": "conference",
"event_type": "Annual Meeting",
"event_id": "129314",
"session_type": "",
"session_name": "",
"role": "",
"topic": "",
"start": "09/04/2024",
"end": "09/07/2024",
"organizer": "Society of Hematologic Oncology (SOHO)",
"sponsor_type": "11",
"session_sponsor": "",
"organizer_type": "1",
"location": "George R. Brown Convention Center",
"address": "1001 Avenida De Las Americas",
"city_id": "11109",
"state_id": "165",
"country_id": "254",
"postal_code": "77010",
"subject": null,
"url1": "https://sohoonline.org/SOHO/iCore/Events/Event_display.aspx?EventKey=SOHO24",
"url2": null,
"notes": null,
"created_by": "490",
"created_on": "12/18/2023",
"modified_by": null,
"modified_on": "2023-12-18 12:53:20",
"client_id": "1",
"project_id": null,
"activity_type": "Speaking",
"profile_type": "1",
"global_event_id": null,
"event_unique_id": "_2062445",
"old_kol_event_id": null,
"stype": "",
"otype": "Association",
"name1": "2024 Society of Hematologic Oncology Annual Meeting (SOHO)",
"partially_released_event": "1",
"Country": "United States",
"Region": "Texas",
"City": "Houston",
"topic_name": null,
"eventLat": "29.7716",
"eventLong": "-95.393",
"user_count": "1",
"partialcount": "170",
"session_note1": null,
"session_note": null,
"organizerAlias": "SHO",
"eAllowed": true,
"dAllowed": true,
"updated": false,
"speakerscount":"169",
"topTopics":"1. Myelodysplastic Syndromes \n2. Leukemia, Myeloid, Acute \n3. Precursor Cell Lymphoblastic Leukemia-Lymphoma",
"topSpeakers":"1. Angela Dispenzieri \n2. Elias J Jabbour \n3. Grzegorz Stanislaw Nowakowski",
"sponsors":"1. Medical Learning Institute Inc, ADC Therapeutics SA, Genentech Inc, F. Hoffmann-La Roche Ltd, Genmab A/S \n2. Medical Learning Institute Inc, Haymarket Media Inc, Bristol-Myers Squibb Company, Janssen Global Services, LLC \n3. Medical Learning Institute Inc, Medscape LLC, Novartis AG, Enliven Therapeutics"
},
{
"therapeutic_area": "Cardiology | Cardiology_Abbott | Critical Care | Chiesi_GMA | Cardiac_Imaging | Medical Imaging",
"hcp_pin": "FU_HCP_5455877",
"cnt": "5445",
"id": "2395349",
"kol_id": "906494",
"type": "conference",
"event_type": "Congress",
"event_id": "129934",
"session_type": "CME",
"session_name": "Infections and the heart: all we need to know given new migration patterns",
"role": "Chair",
"topic": "",
"start": "08/30/2024",
"end": "09/02/2024",
"organizer": "European Society of Cardiology Congress (ESC)",
"sponsor_type": "1",
"session_sponsor": "InterAmerican Society of Cardiology (IASC), European Society of Cardiology (ESC)",
"organizer_type": "1",
"location": "ExCeL London",
"address": "Royal Victoria Dock, 1 Western Gateway",
"city_id": "12008",
"state_id": "5392",
"country_id": "253",
"postal_code": "E16 1XL",
"subject": null,
"url1": "https://esc365.escardio.org/ESC-Congress/programme?text=&docType=DigitalSession&page=1",
"url2": null,
"notes": null,
"created_by": "1304",
"created_on": "08/14/2024",
"modified_by": null,
"modified_on": "2024-08-14 09:15:58",
"client_id": "1",
"project_id": null,
"activity_type": "Speaking",
"profile_type": "1",
"global_event_id": null,
"event_unique_id": "_2395349",
"old_kol_event_id": null,
"stype": "Association",
"otype": "Association",
"name1": "2024 European Society of Cardiology Congress (ESC)",
"partially_released_event": "1",
"Country": "United Kingdom",
"Region": "England",
"City": "London",
"topic_name": "Heart Diseases",
"eventLat": "51.517",
"eventLong": "-0.105",
"user_count": "1",
"partialcount": "5445",
"session_note1": null,
"session_note": null,
"organizerAlias": "ESCC",
"eAllowed": true,
"dAllowed": true,
"updated": true,
"speakerscount":"5445",
"topTopics":"1. Heart Failure \n2. Atrial Fibrillation \n3. Cardiovascular Diseases",
"topSpeakers":"1. Kang-Yin Chen \n2. Kausik Ray \n3. Mohamed Abouzid",
"sponsors":"1. Radcliffe Medical Education, AstraZeneca \n2. Radcliffe Medical Education, AtriCure Inc \n3. Great Wall International Congress of Cardiology (GW-ICC), European Society of Cardiology (ESC)"
}
]
}
}

41
assets/extras.txt Normal file
View File

@ -0,0 +1,41 @@
else :
frappe.response["data"] = {
"eventsdetail":[
{
"City": "Baltimore",
"Country": "United States",
"Region": "Maryland",
"cnt_medical_insight": "0",
"cnt_notes": "0",
"eid": "23396",
"event_attendees_id": "230944",
"event_topics": "Biomarkers, Tumor | Pancreatic Neoplasms",
"events_session": "Improving Pancreatic Cancer Early Detection Using A Tumor Marker Gene Test",
"events_topic": "Biomarkers, Tumor | Pancreatic Neoplasms",
"first_name": "Michael",
"hcp_pin_alias": "222553",
"id": "230944",
"kol_full_name": "Goggins, Michael Gilbert",
"kol_id": "222553",
"kol_name": "<a class='link' target='new' href='https://cardio-staging.konectar.io/kols/view/222553/fromId'>Goggins, Michael Gilbert</a>",
"last_name": "Goggins",
"medical_insight_id": "",
"middle_name": "Gilbert",
"name": "2024 American Association for Cancer Research Advances in Pancreatic Cancer Research Conference (AACR)",
"npi_num": "1861445983",
"num_sess": "1",
"opt_in_out_status": "",
"org_name": "Johns Hopkins University School of Medicine",
"proj_kol_id": 1,
"rest_events_session": "",
"rest_events_session_count": 0,
"rest_events_topic": "",
"rest_events_topic_count": 0,
"session_name": "Improving Pancreatic Cancer Early Detection Using A Tumor Marker Gene Test",
"session_note": "",
"url1": "https://www.aacr.org/meeting/aacr-special-conference-pancreatic-cancer-2024/program/"
}
]
}

BIN
assets/google-contacts.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 658 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
assets/images/events1.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
assets/images/events2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

BIN
assets/images/events3.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

BIN
assets/images/konectar.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

61
assets/klogo.svg Normal file
View File

@ -0,0 +1,61 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.2.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="300px" height="54px" viewBox="0 0 300 54" style="enable-background:new 0 0 300 54;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;}
.st1{fill:#F96731;}
.st2{fill:#2B9AF3;}
</style>
<g>
<g>
<g>
<g>
<path class="st0" d="M10,52.2V1h6.3v29.2l14.9-15.1h8.1L25.1,28.8l15.6,23.3H33l-12.2-19l-4.4,4.3v14.7H10z"/>
<path class="st0" d="M85.5,52.2V15.1h5.7v5.3c2.7-4.1,6.7-6.1,11.8-6.1c2.2,0,4.3,0.4,6.2,1.2c1.9,0.8,3.3,1.9,4.2,3.2
c0.9,1.3,1.6,2.9,2,4.6c0.2,1.2,0.3,3.2,0.3,6.1v22.8h-6.3V29.6c0-2.6-0.2-4.5-0.7-5.7c-0.5-1.3-1.4-2.3-2.6-3
c-1.2-0.8-2.7-1.1-4.4-1.1c-2.7,0-5,0.8-6.9,2.5c-1.9,1.7-2.9,4.9-2.9,9.7v20.2H85.5z"/>
<path class="st0" d="M150.6,40.2l6.5,0.8c-1,3.8-2.9,6.7-5.7,8.8c-2.8,2.1-6.3,3.1-10.6,3.1c-5.4,0-9.7-1.7-12.9-5
c-3.2-3.3-4.8-8-4.8-14c0-6.2,1.6-11.1,4.8-14.5c3.2-3.4,7.4-5.2,12.5-5.2c5,0,9,1.7,12.1,5.1c3.1,3.4,4.7,8.1,4.7,14.2
c0,0.4,0,0.9,0,1.7h-27.6c0.2,4.1,1.4,7.2,3.5,9.4c2.1,2.2,4.7,3.2,7.7,3.2c2.3,0,4.3-0.6,5.9-1.8
C148.4,44.8,149.6,42.9,150.6,40.2z M130,30.1h20.7c-0.3-3.1-1.1-5.5-2.4-7c-2-2.4-4.6-3.6-7.8-3.6c-2.9,0-5.3,1-7.3,2.9
C131.3,24.3,130.2,26.8,130,30.1z"/>
<path class="st0" d="M189.2,38.6l6.2,0.8c-0.7,4.3-2.4,7.6-5.2,10c-2.8,2.4-6.2,3.6-10.2,3.6c-5.1,0-9.1-1.7-12.2-5
c-3.1-3.3-4.6-8.1-4.6-14.3c0-4,0.7-7.5,2-10.5c1.3-3,3.3-5.3,6.1-6.8c2.7-1.5,5.7-2.3,8.8-2.3c4,0,7.3,1,9.9,3.1
c2.6,2,4.2,4.9,4.9,8.7l-6.1,0.9c-0.6-2.5-1.6-4.4-3.1-5.6c-1.5-1.3-3.3-1.9-5.4-1.9c-3.2,0-5.7,1.1-7.7,3.4
c-2,2.3-3,5.9-3,10.8c0,5,1,8.6,2.9,10.9c1.9,2.3,4.4,3.4,7.5,3.4c2.5,0,4.5-0.8,6.2-2.3C187.7,44.1,188.7,41.7,189.2,38.6z"/>
<path class="st0" d="M214.4,46.5l0.9,5.5c-1.8,0.4-3.4,0.6-4.7,0.6c-2.3,0-4-0.4-5.3-1.1c-1.3-0.7-2.1-1.7-2.7-2.8
c-0.5-1.2-0.8-3.6-0.8-7.4V20h-4.6v-4.9h4.6V5.9l6.2-3.8v12.9h6.3V20h-6.3v21.7c0,1.8,0.1,2.9,0.3,3.5c0.2,0.5,0.6,0.9,1.1,1.2
c0.5,0.3,1.2,0.5,2.1,0.5C212.4,46.8,213.3,46.7,214.4,46.5z"/>
<path class="st0" d="M244.8,47.6c-2.3,2-4.6,3.4-6.7,4.2c-2.2,0.8-4.5,1.2-6.9,1.2c-4.1,0-7.2-1-9.4-3c-2.2-2-3.3-4.5-3.3-7.6
c0-1.8,0.4-3.5,1.2-5c0.8-1.5,1.9-2.7,3.2-3.6c1.3-0.9,2.8-1.6,4.5-2.1c1.2-0.3,3.1-0.6,5.6-0.9c5.1-0.6,8.8-1.3,11.2-2.2
c0-0.9,0-1.4,0-1.6c0-2.6-0.6-4.4-1.8-5.4c-1.6-1.4-4-2.1-7.2-2.1c-3,0-5.1,0.5-6.5,1.6c-1.4,1-2.4,2.9-3.1,5.5l-6.1-0.8
c0.6-2.6,1.5-4.8,2.8-6.4c1.3-1.6,3.1-2.9,5.5-3.7c2.4-0.9,5.2-1.3,8.4-1.3c3.2,0,5.7,0.4,7.7,1.1c2,0.7,3.4,1.7,4.4,2.8
c0.9,1.1,1.6,2.6,2,4.3c0.2,1.1,0.3,3,0.3,5.8v8.4c0,5.8,0.1,9.5,0.4,11.1c0.3,1.5,0.8,3,1.6,4.4H246
C245.4,50.9,244.9,49.3,244.8,47.6z M244.2,33.6c-2.3,0.9-5.7,1.7-10.3,2.4c-2.6,0.4-4.4,0.8-5.5,1.3c-1.1,0.5-1.9,1.1-2.5,2
c-0.6,0.9-0.9,1.9-0.9,3c0,1.7,0.6,3.1,1.9,4.2c1.3,1.1,3.1,1.7,5.6,1.7c2.4,0,4.6-0.5,6.5-1.6c1.9-1.1,3.3-2.5,4.2-4.3
c0.7-1.4,1-3.5,1-6.3V33.6z"/>
<path class="st0" d="M260.3,52.2V15.1h5.7v5.6c1.4-2.6,2.8-4.4,4-5.2c1.2-0.8,2.6-1.3,4-1.3c2.1,0,4.3,0.7,6.5,2l-2.2,5.8
c-1.5-0.9-3.1-1.4-4.6-1.4c-1.4,0-2.6,0.4-3.7,1.2c-1.1,0.8-1.9,2-2.3,3.4c-0.7,2.2-1,4.7-1,7.3v19.4H260.3z"/>
<g>
<circle class="st1" cx="60.7" cy="48.6" r="3.5"/>
<circle class="st1" cx="60.7" cy="17.8" r="3.5"/>
<path class="st2" d="M57.3,44.8c-5-1.5-8.6-6.1-8.6-11.6c0-5.4,3.6-10.1,8.6-11.6c-1.1-1-1.7-2.3-1.7-3.9c0-1,0.3-1.9,0.7-2.7
c0,0,0,0,0,0c-8.1,2-14.2,9.4-14.2,18.1c0,8.7,6,16.1,14.2,18.1c0,0,0,0,0,0c-0.5-0.8-0.7-1.7-0.7-2.7
C55.5,47.1,56.2,45.7,57.3,44.8z"/>
<path class="st2" d="M65.2,15.1c0.5,0.8,0.8,1.7,0.8,2.7c0,1.5-0.7,2.9-1.7,3.9c5,1.5,8.6,6.1,8.6,11.6
c0,5.4-3.6,10.1-8.6,11.6c1.1,1,1.7,2.3,1.7,3.9c0,1-0.3,1.9-0.8,2.7c8.1-2,14.2-9.4,14.2-18.1C79.4,24.5,73.3,17.1,65.2,15.1z
"/>
</g>
</g>
</g>
</g>
<g>
<path class="st0" d="M290,8c0,3.4-2.7,6.1-6.1,6.1c-3.4,0-6.2-2.7-6.2-6.1c0-3.3,2.7-6,6.2-6C287.3,2,290,4.7,290,8z M279.2,8
c0,2.7,2,4.8,4.7,4.8c2.6,0,4.6-2.1,4.6-4.8c0-2.7-1.9-4.8-4.6-4.8C281.2,3.2,279.2,5.4,279.2,8z M282.9,11.1h-1.4v-6
C282,5,282.8,5,283.8,5c1.1,0,1.6,0.2,2.1,0.4c0.3,0.3,0.6,0.7,0.6,1.3c0,0.7-0.5,1.2-1.2,1.4v0.1c0.6,0.2,0.9,0.7,1.1,1.5
c0.2,0.9,0.3,1.3,0.4,1.5h-1.5c-0.2-0.2-0.3-0.8-0.5-1.5c-0.1-0.7-0.5-1-1.2-1h-0.7V11.1z M282.9,7.7h0.7c0.8,0,1.4-0.3,1.4-0.9
c0-0.5-0.4-0.9-1.3-0.9c-0.4,0-0.6,0-0.8,0.1V7.7z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.0.6, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="230px" height="42px" viewBox="0 0 230 42" style="enable-background:new 0 0 230 42;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<g>
<g>
<g>
<g>
<path class="st0" d="M2.8,41.2V0.1h5v23.4l11.9-12.1h6.5L15,22.5l12.5,18.7h-6.2L11.4,26l-3.6,3.4v11.8H2.8z"/>
<path class="st0" d="M63.5,41.2V11.4H68v4.2c2.2-3.3,5.3-4.9,9.5-4.9c1.8,0,3.4,0.3,5,1c1.5,0.6,2.6,1.5,3.4,2.5
c0.7,1,1.3,2.3,1.6,3.7c0.2,0.9,0.3,2.6,0.3,4.9v18.3h-5V23.1c0-2.1-0.2-3.6-0.6-4.6c-0.4-1-1.1-1.8-2.1-2.4
c-1-0.6-2.2-0.9-3.5-0.9c-2.2,0-4,0.7-5.6,2c-1.6,1.4-2.3,4-2.3,7.8v16.3H63.5z"/>
<path class="st0" d="M115.8,31.6l5.2,0.6c-0.8,3-2.3,5.4-4.6,7.1c-2.2,1.7-5.1,2.5-8.5,2.5c-4.4,0-7.8-1.3-10.4-4
c-2.6-2.7-3.8-6.4-3.8-11.3c0-5,1.3-8.9,3.9-11.7c2.6-2.8,5.9-4.2,10-4.2c4,0,7.2,1.4,9.8,4.1c2.5,2.7,3.8,6.5,3.8,11.4
c0,0.3,0,0.7,0,1.3H99c0.2,3.3,1.1,5.8,2.8,7.5c1.7,1.7,3.7,2.6,6.2,2.6c1.9,0,3.4-0.5,4.7-1.5C114,35.3,115.1,33.8,115.8,31.6z
M99.2,23.5h16.6c-0.2-2.5-0.9-4.4-1.9-5.6c-1.6-1.9-3.7-2.9-6.3-2.9c-2.3,0-4.3,0.8-5.8,2.3C100.3,18.8,99.4,20.9,99.2,23.5z"
/>
<path class="st0" d="M146.8,30.3l5,0.6c-0.5,3.4-1.9,6.1-4.2,8c-2.2,1.9-5,2.9-8.2,2.9c-4.1,0-7.4-1.3-9.8-4
c-2.5-2.7-3.7-6.5-3.7-11.5c0-3.2,0.5-6,1.6-8.4s2.7-4.2,4.9-5.4c2.2-1.2,4.5-1.8,7.1-1.8c3.2,0,5.9,0.8,7.9,2.5
c2.1,1.6,3.4,4,4,7l-4.9,0.8c-0.5-2-1.3-3.5-2.5-4.5c-1.2-1-2.6-1.5-4.3-1.5c-2.5,0-4.6,0.9-6.2,2.7c-1.6,1.8-2.4,4.7-2.4,8.7
c0,4,0.8,6.9,2.3,8.7c1.5,1.8,3.5,2.7,6,2.7c2,0,3.6-0.6,5-1.8C145.6,34.7,146.5,32.8,146.8,30.3z"/>
<path class="st0" d="M167.1,36.7l0.7,4.5c-1.4,0.3-2.7,0.4-3.8,0.4c-1.8,0-3.3-0.3-4.3-0.9c-1-0.6-1.7-1.3-2.1-2.3
c-0.4-0.9-0.6-2.9-0.6-6V15.4h-3.7v-3.9h3.7V4.1l5-3v10.4h5.1v3.9H162v17.4c0,1.4,0.1,2.4,0.3,2.8c0.2,0.4,0.5,0.7,0.9,1
c0.4,0.2,1,0.4,1.7,0.4C165.5,36.9,166.2,36.8,167.1,36.7z"/>
<path class="st0" d="M191.5,37.5c-1.9,1.6-3.7,2.7-5.4,3.4c-1.7,0.7-3.6,1-5.6,1c-3.3,0-5.8-0.8-7.5-2.4
c-1.8-1.6-2.6-3.6-2.6-6.1c0-1.5,0.3-2.8,1-4c0.7-1.2,1.5-2.2,2.6-2.9c1.1-0.7,2.3-1.3,3.6-1.7c1-0.3,2.5-0.5,4.5-0.8
c4.1-0.5,7.1-1.1,9-1.7c0-0.7,0-1.1,0-1.3c0-2.1-0.5-3.5-1.4-4.3c-1.3-1.1-3.2-1.7-5.8-1.7c-2.4,0-4.1,0.4-5.3,1.2
c-1.1,0.8-2,2.3-2.5,4.4l-4.9-0.7c0.4-2.1,1.2-3.8,2.2-5.1c1-1.3,2.5-2.3,4.5-3c1.9-0.7,4.2-1.1,6.8-1.1c2.5,0,4.6,0.3,6.2,0.9
c1.6,0.6,2.8,1.4,3.5,2.3c0.7,0.9,1.3,2.1,1.6,3.4c0.2,0.9,0.3,2.4,0.3,4.7v6.7c0,4.7,0.1,7.7,0.3,8.9c0.2,1.2,0.6,2.4,1.3,3.6
h-5.3C192,40.2,191.6,39,191.5,37.5z M191.1,26.3c-1.8,0.7-4.6,1.4-8.2,1.9c-2.1,0.3-3.5,0.6-4.4,1c-0.9,0.4-1.5,0.9-2,1.6
c-0.5,0.7-0.7,1.5-0.7,2.4c0,1.3,0.5,2.5,1.5,3.4c1,0.9,2.5,1.3,4.5,1.3c1.9,0,3.7-0.4,5.2-1.3c1.5-0.9,2.6-2,3.3-3.5
c0.5-1.1,0.8-2.8,0.8-5V26.3z"/>
<path class="st0" d="M204,41.2V11.4h4.5V16c1.2-2.1,2.2-3.5,3.2-4.2c1-0.7,2.1-1,3.2-1c1.7,0,3.4,0.5,5.2,1.6l-1.7,4.7
c-1.2-0.7-2.5-1.1-3.7-1.1c-1.1,0-2.1,0.3-3,1c-0.9,0.7-1.5,1.6-1.9,2.8c-0.6,1.8-0.8,3.8-0.8,5.9v15.6H204z"/>
<g>
<circle class="st0" cx="43.6" cy="38.4" r="2.8"/>
<circle class="st0" cx="43.6" cy="13.6" r="2.8"/>
<path class="st0" d="M40.8,35.3c-4-1.2-6.9-4.9-6.9-9.3c0-4.4,2.9-8.1,6.9-9.3c-0.8-0.8-1.4-1.9-1.4-3.1c0-0.8,0.2-1.5,0.6-2.1
c0,0,0,0,0,0C33.5,13.1,28.6,19,28.6,26c0,7,4.9,12.9,11.4,14.5c0,0,0,0,0,0c-0.4-0.6-0.6-1.4-0.6-2.1
C39.4,37.1,39.9,36,40.8,35.3z"/>
<path class="st0" d="M47.2,11.4c0.4,0.6,0.6,1.4,0.6,2.2c0,1.2-0.5,2.3-1.4,3.1c4,1.2,6.9,4.9,6.9,9.3c0,4.4-2.9,8.1-6.9,9.3
c0.8,0.8,1.4,1.9,1.4,3.1c0,0.8-0.2,1.5-0.6,2.2C53.7,38.9,58.6,33,58.6,26C58.6,19,53.7,13,47.2,11.4z"/>
</g>
</g>
</g>
</g>
<g>
<path class="st0" d="M227.2,6c0,2.1-1.7,3.8-3.8,3.8c-2.1,0-3.8-1.7-3.8-3.8c0-2.1,1.7-3.7,3.8-3.7C225.5,2.3,227.2,4,227.2,6z
M220.5,6c0,1.7,1.2,3,2.9,3c1.6,0,2.8-1.3,2.8-2.9c0-1.7-1.2-3-2.9-3C221.7,3.1,220.5,4.4,220.5,6z M222.8,8h-0.9V4.3
c0.3-0.1,0.8-0.1,1.4-0.1c0.7,0,1,0.1,1.3,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.4-0.3,0.7-0.8,0.9v0c0.4,0.1,0.6,0.4,0.7,0.9
c0.1,0.6,0.2,0.8,0.3,0.9h-0.9c-0.1-0.1-0.2-0.5-0.3-0.9c-0.1-0.4-0.3-0.6-0.8-0.6h-0.4V8z M222.8,5.9h0.4c0.5,0,0.9-0.2,0.9-0.5
c0-0.3-0.2-0.6-0.8-0.6c-0.2,0-0.4,0-0.5,0V5.9z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

72
assets/response.json Normal file
View File

@ -0,0 +1,72 @@
{
"type": "scaffold",
"appBar": {
"type": "appBar",
"title": {"type": "text", "data": "Appbar"},
"leading": {
"type": "iconButton",
"child": {"type": "icon", "iconType": "material", "icon": "menu"},
"onPressed": {}
},
"actions": [
{
"type": "iconButton",
"child": {
"type": "icon",
"iconType": "cupertino",
"icon": "heart_solid"
},
"onPressed": {}
},
{
"type": "iconButton",
"child": {"type": "icon", "iconType": "material", "icon": "search"},
"onPressed": {}
},
{
"type": "iconButton",
"child": {
"type": "icon",
"iconType": "material",
"icon": "more_horiz"
},
"onPressed": {}
}
]
},
"body": {
"type": "column",
"crossAxisAlignment": "start",
"mainAxisAlignment": "center",
"children": [
{
"type": "container",
"padding": {"left": 30, "right": 30},
"child": {
"type": "card",
"color": "#ffC8A2C8",
"child": {
"type": "row",
"children": [
{
"type": "container",
"padding": {"top": 30, "bottom": 80, "left": 1},
"child": {
"type": "text",
"data": "Notification",
"style": {
"fontSize": 24,
"fontWeight": "w800",
"color": "#ffffffff"
}
}
}
]
}
}
}
]
}
}

1362
assets/tagclouds.json Normal file

File diff suppressed because it is too large Load Diff

114
assets/topaffiliations.json Normal file
View File

@ -0,0 +1,114 @@
{
"data":
[
{
"129934":
{
"affiliationNames": [
"University of Oxford",
"Medical University of Vienna",
"Rigshospitalet - Copenhagen University Hospital",
"Amsterdam University Medical Centre",
"University Hospital Basel"
],
"affiliationCount": [
"38",
"30",
"30",
"29",
"24"
]
},
"140846":
{
"affiliationNames": [
"Vanderbilt University Medical Center",
"Baptist Cancer Center",
"Cancer Wellness for Life",
"Dee Burrell Coaching",
"Emory University Hospital"
],
"affiliationCount": [
"4",
"1",
"1",
"1",
"1"
]
},
"129314":
{
"affiliationNames": [
"University of Texas MD Anderson Cancer Center",
"Dana Farber Cancer Institute",
"Mayo Clinic ,Rochester",
"Memorial Sloan Kettering Cancer Center",
"Columbia University Irving Medical Center"
],
"affiliationCount": [
"16",
"6",
"5",
"4",
"3"
]
},
"142682":
{
"affiliationNames": [
"St. Jude Children's Research Hospital",
"Princess Máxima Center",
"The Hospital for Sick Children",
"Baylor College of Medicine",
"Shanghai Children's Medical Center"
],
"affiliationCount": [
"28",
"14",
"10",
"6",
"6"
]
},
"130456":{
"affiliationNames": [
"University of Toronto",
"University of Washington Medical Center",
"Beth Israel Deaconess Medical Center",
"The Johns Hopkin's Hospital",
"Emory University School of Medicine"
],
"affiliationCount": [
"10",
"5",
"4",
"4",
"3"
]
},
"128202":
{
"affiliationNames": [
"University of Texas MD Anderson Cancer Center",
"Dana Farber Cancer Institute",
"Memorial Hospital For Cancer And Allied Diseases",
"Memorial Sloan Kettering Cancer Center",
"Massachusetts General Hospital"
],
"affiliationCount": [
"26",
"19",
"17",
"13",
"8"
]
}
}
]
}

515
assets/topicnotes.json Normal file
View File

@ -0,0 +1,515 @@
{
"data": {
"notes":
[
{
"kol_event_id": "378748",
"eid": "",
"name": "2024 Society of Hematologic Oncology Annual Meeting (SOHO)",
"session_name": "Debate: Car T Should Be Reserved For Late Relapse > 3 Lines",
"note": "The speaker suggested that CAR T-cell therapy should be reserved for patients who had a late relapse, rather than being used early in their treatment.",
"event_id": "23423",
"speakerr_name": "Saad Z Usmani",
"hcpid": ""
},
{
"kol_event_id": "378609",
"eid": "",
"name": "2024 Society of Hematologic Oncology Annual Meeting (SOHO)",
"session_name": "Secondary Aml - Best Therapy",
"note": "The speaker discussed secondary AML and the most effective treatment approaches for managing it.",
"event_id": "23423",
"speakerr_name": "Pinkal Desai",
"hcpid": ""
},
{
"kol_event_id": "378613",
"eid": "",
"name": "2024 Society of Hematologic Oncology Annual Meeting (SOHO)",
"session_name": "All Use Of Ngs In Mrd",
"note": "The speaker discussed how Next-Generation Sequencing (NGS) is used to detect and monitor Minimal Residual Disease (MRD) across various cancers.",
"event_id": "23423",
"speakerr_name": "Aaron C Logan",
"hcpid": ""
},
{
"kol_event_id": "378674",
"eid": "",
"name": "2024 Society of Hematologic Oncology Annual Meeting (SOHO)",
"session_name": "Measuring Residual Disease Mrd, Mass Fix, Etc",
"note": "The speaker discussed the use of Mass Cytometry (Mass Fix) for detecting and treating Minimal Residual Disease (MRD).",
"event_id": "23423",
"speakerr_name": "Ajay K Nooka",
"hcpid": ""
},
{
"kol_event_id": "378746",
"eid": "",
"name": "2024 Society of Hematologic Oncology Annual Meeting (SOHO)",
"session_name": "Frontline Therapy - Quads For Everyone? Te/Ti",
"note": "The speaker discussed evaluating the effectiveness and determining the intensity of frontline therapy, including quadruplet therapy (a combination of four drugs), for cancer treatment.",
"event_id": "23423",
"speakerr_name": "Ajay K Nooka",
"hcpid": ""
},
{
"kol_event_id": "378813",
"eid": "",
"name": "2024 Society of Hematologic Oncology Annual Meeting (SOHO)",
"session_name": "Haploidentical Transplant Should Be The Cell Therapy Choice For Sickle Cell Disease",
"note": "The speaker discussed why haploidentical transplant should be considered the preferred cell therapy option for sickle cell disease.",
"event_id": "23423",
"speakerr_name": "Adetola Kassim",
"hcpid": ""
},
{
"kol_event_id": "378811",
"eid": "",
"name": "2024 Society of Hematologic Oncology Annual Meeting (SOHO)",
"session_name": "Cellular Therapy",
"note": "The speaker discussed cellular therapy and its various types that are effective in treating cancer.",
"event_id": "23423",
"speakerr_name": "Adetola Kassim",
"hcpid": ""
},
{
"kol_event_id": "378712",
"eid": "",
"name": "2024 Society of Hematologic Oncology Annual Meeting (SOHO)",
"session_name": "Azacytidine Plus Venetoclax Should Be Prescribed As Listed On The Label",
"note": "The speaker discussed that azacytidine and venetoclax should be used together according to the specific guidelines and dosages outlined in their official labeling.",
"event_id": "23423",
"speakerr_name": "Keith Pratz",
"hcpid": ""
},
{
"kol_event_id": "378758",
"eid": "",
"name": "2024 Society of Hematologic Oncology Annual Meeting (SOHO)",
"session_name": "Debate: Can Therapy With Btki Be Discontinued: No",
"note": "The speaker discussed the potential discontinuation of BTK inhibitor therapy, emphasizing its critical role in managing certain cancers and the associated risks.",
"event_id": "23423",
"speakerr_name": "Kerry A Rogers",
"hcpid": ""
},
{
"kol_event_id": "378621",
"eid": "",
"name": "2024 Society of Hematologic Oncology Annual Meeting (SOHO)",
"session_name": "Car T-Cell Therapy After Car T-Cell Therapy For Dlbcl",
"note": "The speaker discussed administering a second round of CAR T-cell therapy for patients with diffuse large B-cell lymphoma (DLBCL) who relapse or do not respond to their initial CAR T-cell treatment.",
"event_id": "23423",
"speakerr_name": "Frederick Locke",
"hcpid": ""
},
{
"kol_event_id": "378741",
"eid": "",
"name": "2024 Society of Hematologic Oncology Annual Meeting (SOHO)",
"session_name": "Long-Term Clinical Data From Multiple Phase 3 Trails For Calquence In The Treatment Of Cll/Sll",
"note": "The speaker discussed clinical data from multiple Phase 3 trials of Calquence in the treatment of CLL/SLL, focusing on its efficacy and safety.",
"event_id": "23423",
"speakerr_name": "Moshe Yair Levy",
"hcpid": ""
},
{
"kol_event_id": "378805",
"eid": "",
"name": "2024 Society of Hematologic Oncology Annual Meeting (SOHO)",
"session_name": "Car T Cell Therapy For Second-Line (2L) Lbcl",
"note": "The speaker discussed using CAR T-cell therapy for patients with large B-cell lymphoma (LBCL) who have not responded to or have relapsed after first-line treatment.",
"event_id": "23423",
"speakerr_name": "Moshe Yair Levy",
"hcpid": ""
},
{
"kol_event_id": "378710",
"eid": "",
"name": "2024 Society of Hematologic Oncology Annual Meeting (SOHO)",
"session_name": "Flt3 Mutated Aml Unanswered Questions",
"note": "The speaker provided insights into the ongoing uncertainties and unresolved issues in managing and treating acute myeloid leukemia (AML) with FLT3 mutations.",
"event_id": "23423",
"speakerr_name": "Mark J Levis",
"hcpid": ""
},
{
"kol_event_id": "375276",
"eid": "",
"name": "2024 European Society for Medical Oncology Congress (ESMO)",
"session_name": "DDR inhibitor combinations",
"note": "The speaker discussed how DDR inhibitor combinations use drugs to block DNA Damage Response (DDR) pathways alongside other treatments to enhance cancer therapy.",
"event_id": "23419",
"speakerr_name": "Timothy Anthony Yap",
"hcpid": ""
},
{
"kol_event_id": "375033",
"eid": "",
"name": "2024 European Society for Medical Oncology Congress (ESMO)",
"session_name": "Phase 1b/2 first-in-class novel combination trial of next generation CDK4-selective inhibitor PF-07220060 and next generation CDK2-selective inhibitor PF-07104091 in HR+ HER2- metastatic breast cancer and advanced solid tumors",
"note": "The speaker discussed the safety and efficacy of combining the CDK4-selective inhibitor PF-07220060 and the CDK2-selective inhibitor PF-07104091 for treating HR+ HER2- metastatic breast cancer and advanced solid tumors.",
"event_id": "23419",
"speakerr_name": "Timothy Anthony Yap",
"hcpid": ""
},
{
"kol_event_id": "374874",
"eid": "",
"name": "2024 European Society for Medical Oncology Congress (ESMO)",
"session_name": "Phase 1b study of NT-I7 (efineptakin alfa), a long-acting IL-7, post-CD19-directed CAR T cell therapy in diffuse large B-cell lymphoma (DLBCL)",
"note": "The speaker discussed the use of NT-I7, a long-acting IL-7, following CD19-directed CAR T-cell therapy in patients with diffuse large B-cell lymphoma (DLBCL).",
"event_id": "23419",
"speakerr_name": "Armin Ghobadi",
"hcpid": ""
},
{
"kol_event_id": "375154",
"eid": "",
"name": "2024 European Society for Medical Oncology Congress (ESMO)",
"session_name": "Phase 1/2 ALKOVE-1 study of NVL-655 in ALK-positive (ALK+) solid tumors",
"note": "The speaker provided insights into the ALKOVE-1 Study, which examined NVL-655 as a treatment for ALK-positive (ALK+) solid tumors, focusing on its safety and efficacy.",
"event_id": "23419",
"speakerr_name": "Alexander E. Drilon",
"hcpid": ""
},
{
"kol_event_id": "375492",
"eid": "",
"name": "2024 European Society for Medical Oncology Congress (ESMO)",
"session_name": "Is there a role for radiation therapy in advanced RCC?",
"note": "The speaker discussed the potential benefits and applications of radiation therapy in treating advanced renal cell carcinoma (RCC).",
"event_id": "23419",
"speakerr_name": "Chad Tang",
"hcpid": ""
},
{
"kol_event_id": "374951",
"eid": "",
"name": "2024 European Society for Medical Oncology Congress (ESMO)",
"session_name": "Novel data in the field of immune checkpoint blockade for eTNBC",
"note": "The speaker discussed new research on immune checkpoint blockade for early-stage triple-negative breast cancer (eTNBC), examining its effectiveness and safety.",
"event_id": "23419",
"speakerr_name": "Sara M. Tolaney",
"hcpid": ""
},
{
"kol_event_id": "374984",
"eid": "",
"name": "2024 European Society for Medical Oncology Congress (ESMO)",
"session_name": "Racial Disparities in immune-related adverse events in patients with lung cancer treated with Immune checkpoint inhibitors.",
"note": "The speaker discussed variations in the frequency, severity, and outcomes of side effects among patients of different racial backgrounds who were treated with immune checkpoint inhibitors for lung cancer.",
"event_id": "23419",
"speakerr_name": "Hina Khan",
"hcpid": ""
},
{
"kol_event_id": "374898",
"eid": "",
"name": "2024 European Society for Medical Oncology Congress (ESMO)",
"session_name": "Updated efficacy and safety of botensilimab plus balstilimab in patients with refractory metastatic sarcoma from an expanded phase 1 study",
"note": "The speaker discussed results from an expanded Phase 1 study on botensilimab plus balstilimab in patients with refractory metastatic sarcoma, focusing on the efficacy and safety of these treatments.",
"event_id": "23419",
"speakerr_name": "Breelyn A. Wilky",
"hcpid": ""
},
{
"kol_event_id": "375063",
"eid": "",
"name": "2024 European Society for Medical Oncology Congress (ESMO)",
"session_name": "A glimpse of the future: Ongoing research on novel therapeutics for advanced breast cancer patients post-progression on endocrine+CDK4/6-inhibition",
"note": "The speaker discussed ongoing research into new treatments for advanced breast cancer patients who had progressed after endocrine therapy and CDK4/6 inhibitors.",
"event_id": "23419",
"speakerr_name": "Joyce O'Shaughnessy",
"hcpid": ""
},
{
"kol_event_id": "375270",
"eid": "",
"name": "2024 European Society for Medical Oncology Congress (ESMO)",
"session_name": "Phase I, Two-Part, Multicenter First-In-Human (FIH) Study of TORL-1-23, A Novel Claudin 6 (CLDN6) Targeting Antibody Drug Conjugate (ADC) In Patient With Advanced Solid Tumors.",
"note": "The speaker provided insights into the study of TORL-1-23, a novel Claudin 6 (CLDN6) targeting antibody-drug conjugate (ADC), in patients with advanced solid tumors.",
"event_id": "23419",
"speakerr_name": "Gottfried E. Konecny",
"hcpid": ""
},
{
"kol_event_id": "375519",
"eid": "",
"name": "2024 European Society for Medical Oncology Congress (ESMO)",
"session_name": "Clinical activity of BMS-986365 (CC-94676), a dual androgen receptor (AR) ligand-directed degrader and antagonist, in heavily pretreated patients (pts) with metastatic castration-resistant prostate cancer (mCRPC)",
"note": "The speaker provided insights into BMS-986365 (CC-94676), a drug that targets and degrades the androgen receptor, and its evaluation in patients with metastatic castration-resistant prostate cancer (mCRPC) who had already received multiple treatments.",
"event_id": "23419",
"speakerr_name": "Dana Rathkopf",
"hcpid": ""
},
{
"kol_event_id": "359866",
"eid": "",
"name": "2024 American Society of Colon and Rectal Surgeons Annual Scientific Meeting (ASCRS)",
"session_name": "Results Of ctDNA As A Predictive Biomarker In Adjuvant Chemotherapy In Stage II Colon Cancer: NRG-GI005 (COBRA) Phase II/III study",
"note": "The speaker provided insights into the NRG-GI005 (COBRA) study, which investigates how circulating tumor DNA (ctDNA) can predict patient outcomes and inform the use of adjuvant chemotherapy for Stage II colon cancer.",
"event_id": "23381",
"speakerr_name": "Dustin A. Deming",
"hcpid": ""
},
{
"kol_event_id": "359327",
"eid": "",
"name": "2024 American Society of Colon and Rectal Surgeons Annual Scientific Meeting (ASCRS)",
"session_name": "A Comparative Analysis of Laparoscopic and Ultrasound-Guided TAP Blocks in Minimally Invasive Colorectal Surgery in a Community Hospital",
"note": "The speaker compared the effectiveness and outcomes of laparoscopic versus ultrasound-guided TAP blocks for minimally invasive colorectal surgery at a community hospital.",
"event_id": "23381",
"speakerr_name": "Robert J. Yu",
"hcpid": ""
},
{
"kol_event_id": "369679",
"eid": "",
"name": "2024 European Society of Cardiology Congress (ESC)",
"session_name": "Impact of left ventricular lead position on echocardiographic response after upgrading from right to biventricular pacing - Insights from the BUDAPEST CRT Upgrade Trial",
"note": "The speaker highlighted that optimal left ventricular (LV) lead placement during upgrades from right ventricular (RV) pacing to biventricular pacing significantly improves the effectiveness of cardiac resynchronization therapy (CRT), leading to better patient outcomes such as improved heart function and exercise capacity.",
"event_id": "23418",
"speakerr_name": "Bela Merkely",
"hcpid": ""
},
{
"kol_event_id": "374402",
"eid": "",
"name": "2024 European Society of Cardiology Congress (ESC)",
"session_name": "A global perspective of Lp(a) levels in patients with coronary heart disease - Implications for risk factor control & future trials from the INTERASPIRE Study",
"note": "The speaker provided insights into how the INTERASPIRE study revealed important information about lipoprotein(a) [Lp(a)] levels and their impact on coronary heart disease (CHD) across different populations.",
"event_id": "23418",
"speakerr_name": "Kausik K. Ray",
"hcpid": ""
},
{
"kol_event_id": "369775",
"eid": "",
"name": "2024 European Society of Cardiology Congress (ESC)",
"session_name": "The prognosis evaluation of guideline-directed medical therapy for type 2 acute myocardial infarction patients with acute respiratory failure",
"note": "The speaker provided insights into how following guideline-directed medical therapy (GDMT) impacted the prognosis of patients with type 2 acute myocardial infarction (MI) and acute respiratory failure.",
"event_id": "23418",
"speakerr_name": "Kang-Yin Chen",
"hcpid": ""
},
{
"kol_event_id": "373670",
"eid": "",
"name": "2024 European Society of Cardiology Congress (ESC)",
"session_name": "Ultrasound-guided versus palpation-guided techniques for vessel catheterization in children undergoing cardiac surgery. A systematic review and meta-analysis of randomized controlled trials.",
"note": "The speaker compared ultrasound-guided and palpation-guided techniques for vessel catheterization in children undergoing cardiac surgery by evaluating randomized controlled trials to identify which method is more effective.",
"event_id": "23418",
"speakerr_name": "Mohamed Abouzid",
"hcpid": ""
},
{
"kol_event_id": "374647",
"eid": "",
"name": "2024 European Society of Cardiology Congress (ESC)",
"session_name": "Predictors and Outcomes of Atrial Fibrillation Progression in Patients with Device-Detected Subclinical AF: Insights from the ARTESiA Trial",
"note": "The speaker shared insights from the ARTESiA trial, which forecasts the outcomes related to the progression of atrial fibrillation (AF) in patients with device-detected subclinical AF.",
"event_id": "23418",
"speakerr_name": "Giuseppe Boriani",
"hcpid": ""
},
{
"kol_event_id": "378748",
"eid": "",
"name": "2024 Society of Hematologic Oncology Annual Meeting (SOHO)",
"session_name": "Debate: Car T Should Be Reserved For Late Relapse > 3 Lines",
"note": "The speaker argued that reserving CAR T-cell therapy for late relapse cases optimized its impact and ensured that it was used in the most appropriate clinical scenarios.",
"event_id": "23423",
"speakerr_name": "Saad Z Usmani",
"hcpid": ""
},
{
"kol_event_id": "378613",
"eid": "",
"name": "2024 Society of Hematologic Oncology Annual Meeting (SOHO)",
"session_name": "All Use Of Ngs In Mrd",
"note": "The speaker talked about how using NGS for MRD detection provided a high-resolution view of genetic mutations and abnormalities, which helped in assessing treatment response and guiding further therapeutic decisions.",
"event_id": "23423",
"speakerr_name": "Aaron C Logan",
"hcpid": ""
},
{
"kol_event_id": "378712",
"eid": "",
"name": "2024 Society of Hematologic Oncology Annual Meeting (SOHO)",
"session_name": "Azacytidine Plus Venetoclax Should Be Prescribed As Listed On The Label",
"note": "The speaker talked about the necessity of adhering to the dosing and administration guidelines outlined on the label to ensure the treatment's efficacy and safety.",
"event_id": "23423",
"speakerr_name": "Keith Pratz",
"hcpid": ""
},
{
"kol_event_id": "378621",
"eid": "",
"name": "2024 Society of Hematologic Oncology Annual Meeting (SOHO)",
"session_name": "Car T-Cell Therapy After Car T-Cell Therapy For Dlbcl",
"note": "The speaker was likely focusing on the considerations, challenges, and potential strategies for using CAR T-cell therapy again in patients with DLBCL who had previously undergone this treatment.",
"event_id": "23423",
"speakerr_name": "Frederick Locke",
"hcpid": ""
},
{
"kol_event_id": "378674",
"eid": "",
"name": "2024 Society of Hematologic Oncology Annual Meeting (SOHO)",
"session_name": "Measuring Residual Disease Mrd, Mass Fix, Etc",
"note": "The speaker discussed the Mass Fix technique and how it contributed to monitoring and managing residual disease in cancer patients, enhancing treatment outcomes, and personalizing therapy.",
"event_id": "23423",
"speakerr_name": "Ajay K Nooka",
"hcpid": ""
},
{
"kol_event_id": "369679",
"eid": "",
"name": "2024 European Society of Cardiology Congress (ESC)",
"session_name": "Impact of left ventricular lead position on echocardiographic response after upgrading from right to biventricular pacing - Insights from the BUDAPEST CRT Upgrade Trial",
"note": "The speaker conveyed how the position of the LV lead impacted the effectiveness of biventricular pacing as measured by echocardiographic improvements, based on findings from the BUDAPEST CRT Upgrade Trial.",
"event_id": "23418",
"speakerr_name": "Bela Merkely",
"hcpid": ""
},
{
"kol_event_id": "374402",
"eid": "",
"name": "2024 European Society of Cardiology Congress (ESC)",
"session_name": "A global perspective of Lp(a) levels in patients with coronary heart disease - Implications for risk factor control & future trials from the INTERASPIRE Study",
"note": "The speaker gave a comprehensive view of Lp(a) levels in relation to coronary heart disease, utilizing data from the INTERASPIRE Study to highlight global trends, implications for cardiovascular risk management, and the need for further research to address these issues.",
"event_id": "23418",
"speakerr_name": "Kausik K. Ray",
"hcpid": ""
},
{
"kol_event_id": "369775",
"eid": "",
"name": "2024 European Society of Cardiology Congress (ESC)",
"session_name": "The prognosis evaluation of guideline-directed medical therapy for type 2 acute myocardial infarction patients with acute respiratory failure",
"note": "The speaker discussed how guideline-directed medical therapy (GDMT) affects the prognosis of patients with type 2 acute myocardial infarction (AMI) who also suffer from acute respiratory failure.",
"event_id": "23418",
"speakerr_name": "Kang-Yin Chen",
"hcpid": ""
},
{
"kol_event_id": "373670",
"eid": "",
"name": "2024 European Society of Cardiology Congress (ESC)",
"session_name": "Ultrasound-guided versus palpation-guided techniques for vessel catheterization in children undergoing cardiac surgery. A systematic review and meta-analysis of randomized controlled trials.",
"note": "The speaker conveyed the findings of a systematic review and meta-analysis comparing ultrasound-guided versus palpation-guided techniques for vessel catheterization in children undergoing cardiac surgery, focusing on which method proved more effective, safer, and preferable in clinical practice based on the evidence.",
"event_id": "23418",
"speakerr_name": "Mohamed Abouzid",
"hcpid": ""
},
{
"kol_event_id": "374647",
"eid": "",
"name": "2024 European Society of Cardiology Congress (ESC)",
"session_name": "Predictors and Outcomes of Atrial Fibrillation Progression in Patients with Device-Detected Subclinical AF: Insights from the ARTESiA Trial",
"note": "The speaker discussed the predictors and outcomes of atrial fibrillation (AF) progression in patients with device-detected subclinical AF, drawing insights from the ARTESiA Trial. ",
"event_id": "23418",
"speakerr_name": "Giuseppe Boriani",
"hcpid": ""
},
{
"kol_event_id": "371184",
"eid": "",
"name": "2024 European Society of Cardiology Congress (ESC)",
"session_name": "Performance of an automated echocardiographic artificial intelligence model. to detect subclinical heart failure with preserved ejection fraction (HFpEF) in community-dwelling older adults",
"note": "The speaker discussed how effectively an automated echocardiographic artificial intelligence (AI) model detects subclinical heart failure with preserved ejection fraction (HFpEF) in older adults.",
"event_id": "23418",
"speakerr_name": "Ambarish Pandey",
"hcpid": ""
},
{
"kol_event_id": "370813",
"eid": "",
"name": "2024 European Society of Cardiology Congress (ESC)",
"session_name": "Red cell distribution width as a predictor of cardiovascular events in high-risk patients with statin intolerance: post-hoc analysis of the CLEAR Outcomes trial",
"note": "The speaker discussed the potential of red cell distribution width (RDW) as a predictor of cardiovascular events in high-risk patients with statin intolerance, drawing on a post-hoc analysis of the CLEAR Outcomes trial.",
"event_id": "23418",
"speakerr_name": "Patrick Moriarty",
"hcpid": ""
},
{
"kol_event_id": "374565",
"eid": "",
"name": "2024 European Society of Cardiology Congress (ESC)",
"session_name": "RESHAPE-HF2 - Percutaneous repair of moderate-to-severe or severe functional mitral regurgitation in patients with symptomatic heart failure",
"note": "The speaker discussed the RESHAPE-HF2 trial, which focused on using percutaneous repair techniques to treat moderate-to-severe or severe functional mitral regurgitation in patients with symptomatic heart failure.",
"event_id": "23418",
"speakerr_name": "Stefan Anker",
"hcpid": ""
},
{
"kol_event_id": "374169",
"eid": "",
"name": "2024 European Society of Cardiology Congress (ESC)",
"session_name": "Transcatheter edge-to-edge repair (TEER) is failing in the mitral: re-intervention or surgical rescue",
"note": "The speaker discussed the challenges of transcatheter edge-to-edge repair (TEER) failure for mitral valve repair and explored options for addressing this, including re-intervention or surgical rescue.",
"event_id": "23418",
"speakerr_name": "Ran Kornowski",
"hcpid": ""
},
{
"kol_event_id": "372860",
"eid": "",
"name": "2024 European Society of Cardiology Congress (ESC)",
"session_name": "STOP-or-NOT - Impact of renin-angiotensin system inhibitors continuation versus discontinuation on postoperative complications: a multicenter randomised, controlled trial",
"note": "The speaker discussed the STOP-or-NOT trial, which investigated the impact of continuing versus discontinuing renin-angiotensin system (RAS) inhibitors on postoperative complications.",
"event_id": "23418",
"speakerr_name": "Matthieu Legrand",
"hcpid": ""
}
]
}
}

150
assets/topspecialities.json Normal file
View File

@ -0,0 +1,150 @@
{
"data": [
{
"129934":
[
{
"specialty_count": "2943",
"specialty_name": "Cardiology"
},
{
"specialty_count": "197",
"specialty_name": "Cardiovascular Disease (Cardiology)"
},
{
"specialty_count": "152",
"specialty_name": "Cardiovascular Diseases (Cardiology)"
},
{
"specialty_count": "34",
"specialty_name": "Interventional Cardiology"
},
{
"specialty_count": "22",
"specialty_name": "Clinical Cardiac Electrophysiology"
}
],
"140846":
[
{
"specialty_count": "7",
"specialty_name": "Hematology/Oncology"
},
{
"specialty_count": "2",
"specialty_name": "Medical Oncology"
},
{
"specialty_count": "1",
"specialty_name": "Nurse Practitioner - Family"
},
{
"specialty_count": "1",
"specialty_name": "Radiation Oncology"
},
{
"specialty_count": "1",
"specialty_name": "Urology"
}
],
"129314":
[
{
"specialty_count": "82",
"specialty_name": "Hematology/Oncology"
},
{
"specialty_count": "21",
"specialty_name": "Medical Oncology"
},
{
"specialty_count": "4",
"specialty_name": "Hematopoietic Cell Transplantation And Cellular Therapy"
},
{
"specialty_count": "4",
"specialty_name": "Internal Medicine"
},
{
"specialty_count": "3",
"specialty_name": "Pediatric Hematology/Oncology"
}
],
"142682":[
{
"specialty_count": "26",
"specialty_name": "Pediatric Hematology/Oncology"
},
{
"specialty_count": "13",
"specialty_name": "Hematology/Oncology"
},
{
"specialty_count": "13",
"specialty_name": "Pediatrics"
},
{
"specialty_count": "7",
"specialty_name": "Radiation Oncology"
},
{
"specialty_count": "5",
"specialty_name": "General Surgery"
}
],
"130456":[
{
"specialty_count": "67",
"specialty_name": "Diagnostic Radiology"
},
{
"specialty_count": "23",
"specialty_name": "Radiology"
},
{
"specialty_count": "6",
"specialty_name": "Cardiovascular Disease (Cardiology)"
},
{
"specialty_count": "6",
"specialty_name": "Pediatrics"
},
{
"specialty_count": "2",
"specialty_name": "Cardiology"
}
],
"128202":[
{
"specialty_count": "168",
"specialty_name": "Medical Oncology"
},
{
"specialty_count": "89",
"specialty_name": "Hematology/Oncology"
},
{
"specialty_count": "33",
"specialty_name": "Oncology"
},
{
"specialty_count": "15",
"specialty_name": "Gynecological Oncology"
},
{
"specialty_count": "10",
"specialty_name": "Internal Medicine"
}
]
}
]
}

1
devtools_options.yaml Normal file
View File

@ -0,0 +1 @@
extensions:

1
firebase.json Normal file
View File

@ -0,0 +1 @@
{"flutter":{"platforms":{"android":{"default":{"projectId":"kevents-c4ff5","appId":"1:259165326883:android:bb5e1ebe38aee593c8ab96","fileOutput":"android/app/google-services.json"}},"ios":{"default":{"projectId":"kevents-c4ff5","appId":"1:259165326883:ios:7e5a31b957c80644c8ab96","uploadDebugSymbols":false,"fileOutput":"ios/Runner/GoogleService-Info.plist"}},"dart":{"lib/firebase_options.dart":{"projectId":"kevents-c4ff5","configurations":{"android":"1:259165326883:android:bb5e1ebe38aee593c8ab96","ios":"1:259165326883:ios:7e5a31b957c80644c8ab96","web":"1:259165326883:web:5e1ea22925fd47fec8ab96"}}}}}}

View File

@ -0,0 +1,4 @@
flutter_launcher_icons:
android: false
ios: true
image_path: "assets/icon/konectaricon.png"

View File

@ -0,0 +1,4 @@
flutter_launcher_icons:
android: true
ios: true
image_path: "assets/icon/konectaricon.png"

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

202
fonts/open-sans/LICENSE.txt Normal file
View File

@ -0,0 +1,202 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

34
ios/.gitignore vendored Normal file
View File

@ -0,0 +1,34 @@
**/dgph
*.mode1v3
*.mode2v3
*.moved-aside
*.pbxuser
*.perspectivev3
**/*sync/
.sconsign.dblite
.tags*
**/.vagrant/
**/DerivedData/
Icon?
**/Pods/
**/.symlinks/
profile
xcuserdata
**/.generated/
Flutter/App.framework
Flutter/Flutter.framework
Flutter/Flutter.podspec
Flutter/Generated.xcconfig
Flutter/ephemeral/
Flutter/app.flx
Flutter/app.zip
Flutter/flutter_assets/
Flutter/flutter_export_environment.sh
ServiceDefinitions.json
Runner/GeneratedPluginRegistrant.*
# Exceptions to above rules.
!default.mode1v3
!default.mode2v3
!default.pbxuser
!default.perspectivev3

View File

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>App</string>
<key>CFBundleIdentifier</key>
<string>io.flutter.flutter.app</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>App</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>MinimumOSVersion</key>
<string>12.0</string>
</dict>
</plist>

View File

@ -0,0 +1,2 @@
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
#include "Generated.xcconfig"

View File

@ -0,0 +1,2 @@
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
#include "Generated.xcconfig"

44
ios/Podfile Normal file
View File

@ -0,0 +1,44 @@
# Uncomment this line to define a global platform for your project
# platform :ios, '12.0'
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
project 'Runner', {
'Debug' => :debug,
'Profile' => :release,
'Release' => :release,
}
def flutter_root
generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
unless File.exist?(generated_xcode_build_settings_path)
raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
end
File.foreach(generated_xcode_build_settings_path) do |line|
matches = line.match(/FLUTTER_ROOT\=(.*)/)
return matches[1].strip if matches
end
raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
end
require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)
flutter_ios_podfile_setup
target 'Runner' do
use_frameworks!
use_modular_headers!
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
target 'RunnerTests' do
inherit! :search_paths
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
end
end

205
ios/Podfile.lock Normal file
View File

@ -0,0 +1,205 @@
PODS:
- add_2_calendar (0.0.1):
- Flutter
- connectivity_plus (0.0.1):
- Flutter
- ReachabilitySwift
- device_info_plus (0.0.1):
- Flutter
- DKImagePickerController/Core (4.3.4):
- DKImagePickerController/ImageDataManager
- DKImagePickerController/Resource
- DKImagePickerController/ImageDataManager (4.3.4)
- DKImagePickerController/PhotoGallery (4.3.4):
- DKImagePickerController/Core
- DKPhotoGallery
- DKImagePickerController/Resource (4.3.4)
- DKPhotoGallery (0.0.17):
- DKPhotoGallery/Core (= 0.0.17)
- DKPhotoGallery/Model (= 0.0.17)
- DKPhotoGallery/Preview (= 0.0.17)
- DKPhotoGallery/Resource (= 0.0.17)
- SDWebImage
- SwiftyGif
- DKPhotoGallery/Core (0.0.17):
- DKPhotoGallery/Model
- DKPhotoGallery/Preview
- SDWebImage
- SwiftyGif
- DKPhotoGallery/Model (0.0.17):
- SDWebImage
- SwiftyGif
- DKPhotoGallery/Preview (0.0.17):
- DKPhotoGallery/Model
- DKPhotoGallery/Resource
- SDWebImage
- SwiftyGif
- DKPhotoGallery/Resource (0.0.17):
- SDWebImage
- SwiftyGif
- file_picker (0.0.1):
- DKImagePickerController/PhotoGallery
- Flutter
- Firebase/CoreOnly (10.25.0):
- FirebaseCore (= 10.25.0)
- Firebase/RemoteConfig (10.25.0):
- Firebase/CoreOnly
- FirebaseRemoteConfig (~> 10.25.0)
- firebase_core (2.31.0):
- Firebase/CoreOnly (= 10.25.0)
- Flutter
- firebase_remote_config (4.4.5):
- Firebase/RemoteConfig (= 10.25.0)
- firebase_core
- Flutter
- FirebaseABTesting (10.25.0):
- FirebaseCore (~> 10.0)
- FirebaseCore (10.25.0):
- FirebaseCoreInternal (~> 10.0)
- GoogleUtilities/Environment (~> 7.12)
- GoogleUtilities/Logger (~> 7.12)
- FirebaseCoreInternal (10.25.0):
- "GoogleUtilities/NSData+zlib (~> 7.8)"
- FirebaseInstallations (10.25.0):
- FirebaseCore (~> 10.0)
- GoogleUtilities/Environment (~> 7.8)
- GoogleUtilities/UserDefaults (~> 7.8)
- PromisesObjC (~> 2.1)
- FirebaseRemoteConfig (10.25.0):
- FirebaseABTesting (~> 10.0)
- FirebaseCore (~> 10.0)
- FirebaseInstallations (~> 10.0)
- FirebaseRemoteConfigInterop (~> 10.23)
- FirebaseSharedSwift (~> 10.0)
- GoogleUtilities/Environment (~> 7.8)
- "GoogleUtilities/NSData+zlib (~> 7.8)"
- FirebaseRemoteConfigInterop (10.25.0)
- FirebaseSharedSwift (10.25.0)
- Flutter (1.0.0)
- GoogleUtilities/Environment (7.13.3):
- GoogleUtilities/Privacy
- PromisesObjC (< 3.0, >= 1.2)
- GoogleUtilities/Logger (7.13.3):
- GoogleUtilities/Environment
- GoogleUtilities/Privacy
- "GoogleUtilities/NSData+zlib (7.13.3)":
- GoogleUtilities/Privacy
- GoogleUtilities/Privacy (7.13.3)
- GoogleUtilities/UserDefaults (7.13.3):
- GoogleUtilities/Logger
- GoogleUtilities/Privacy
- image_picker_ios (0.0.1):
- Flutter
- package_info_plus (0.4.5):
- Flutter
- path_provider_foundation (0.0.1):
- Flutter
- FlutterMacOS
- permission_handler_apple (9.3.0):
- Flutter
- PromisesObjC (2.4.0)
- ReachabilitySwift (5.0.0)
- SDWebImage (5.18.10):
- SDWebImage/Core (= 5.18.10)
- SDWebImage/Core (5.18.10)
- shared_preferences_foundation (0.0.1):
- Flutter
- FlutterMacOS
- SwiftyGif (5.4.4)
- url_launcher_ios (0.0.1):
- Flutter
DEPENDENCIES:
- add_2_calendar (from `.symlinks/plugins/add_2_calendar/ios`)
- connectivity_plus (from `.symlinks/plugins/connectivity_plus/ios`)
- device_info_plus (from `.symlinks/plugins/device_info_plus/ios`)
- file_picker (from `.symlinks/plugins/file_picker/ios`)
- firebase_core (from `.symlinks/plugins/firebase_core/ios`)
- firebase_remote_config (from `.symlinks/plugins/firebase_remote_config/ios`)
- Flutter (from `Flutter`)
- image_picker_ios (from `.symlinks/plugins/image_picker_ios/ios`)
- package_info_plus (from `.symlinks/plugins/package_info_plus/ios`)
- path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/darwin`)
- permission_handler_apple (from `.symlinks/plugins/permission_handler_apple/ios`)
- shared_preferences_foundation (from `.symlinks/plugins/shared_preferences_foundation/darwin`)
- url_launcher_ios (from `.symlinks/plugins/url_launcher_ios/ios`)
SPEC REPOS:
trunk:
- DKImagePickerController
- DKPhotoGallery
- Firebase
- FirebaseABTesting
- FirebaseCore
- FirebaseCoreInternal
- FirebaseInstallations
- FirebaseRemoteConfig
- FirebaseRemoteConfigInterop
- FirebaseSharedSwift
- GoogleUtilities
- PromisesObjC
- ReachabilitySwift
- SDWebImage
- SwiftyGif
EXTERNAL SOURCES:
add_2_calendar:
:path: ".symlinks/plugins/add_2_calendar/ios"
connectivity_plus:
:path: ".symlinks/plugins/connectivity_plus/ios"
device_info_plus:
:path: ".symlinks/plugins/device_info_plus/ios"
file_picker:
:path: ".symlinks/plugins/file_picker/ios"
firebase_core:
:path: ".symlinks/plugins/firebase_core/ios"
firebase_remote_config:
:path: ".symlinks/plugins/firebase_remote_config/ios"
Flutter:
:path: Flutter
image_picker_ios:
:path: ".symlinks/plugins/image_picker_ios/ios"
package_info_plus:
:path: ".symlinks/plugins/package_info_plus/ios"
path_provider_foundation:
:path: ".symlinks/plugins/path_provider_foundation/darwin"
permission_handler_apple:
:path: ".symlinks/plugins/permission_handler_apple/ios"
shared_preferences_foundation:
:path: ".symlinks/plugins/shared_preferences_foundation/darwin"
url_launcher_ios:
:path: ".symlinks/plugins/url_launcher_ios/ios"
SPEC CHECKSUMS:
add_2_calendar: 5eee66d5a3b99cd5e1487a7e03abd4e3ac4aff11
connectivity_plus: 413a8857dd5d9f1c399a39130850d02fe0feaf7e
device_info_plus: c6fb39579d0f423935b0c9ce7ee2f44b71b9fce6
DKImagePickerController: b512c28220a2b8ac7419f21c491fc8534b7601ac
DKPhotoGallery: fdfad5125a9fdda9cc57df834d49df790dbb4179
file_picker: 15fd9539e4eb735dc54bae8c0534a7a9511a03de
Firebase: 0312a2352584f782ea56f66d91606891d4607f06
firebase_core: 0b39f4f424e02eecabb2356ddf331fa07b772af8
firebase_remote_config: f57c28ff78d1d933bbe1b2cc11659cc82f9978e8
FirebaseABTesting: e6e3c3e0e35813874f571d1b7bdae2aab319dd38
FirebaseCore: 7ec4d0484817f12c3373955bc87762d96842d483
FirebaseCoreInternal: 910a81992c33715fec9263ca7381d59ab3a750b7
FirebaseInstallations: 91950fe859846fff0fbd296180909dd273103b09
FirebaseRemoteConfig: 9f3935cefecd85d5b312192117f444957de24a75
FirebaseRemoteConfigInterop: b25018791b204c0d78a90e394d6c62d9b1f22da8
FirebaseSharedSwift: 0274086954b1b2d5fd7e829eccc587044d72a4ba
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
GoogleUtilities: ea963c370a38a8069cc5f7ba4ca849a60b6d7d15
image_picker_ios: b545a5f16c0fa88e3ecbbce3ed4de45567a8ec18
package_info_plus: 115f4ad11e0698c8c1c5d8a689390df880f47e85
path_provider_foundation: 3784922295ac71e43754bd15e0653ccfd36a147c
permission_handler_apple: 9878588469a2b0d0fc1e048d9f43605f92e6cec2
PromisesObjC: f5707f49cb48b9636751c5b2e7d227e43fba9f47
ReachabilitySwift: 985039c6f7b23a1da463388634119492ff86c825
SDWebImage: fc8f2d48bbfd72ef39d70e981bd24a3f3be53fec
shared_preferences_foundation: b4c3b4cddf1c21f02770737f147a3f5da9d39695
SwiftyGif: 93a1cc87bf3a51916001cf8f3d63835fb64c819f
url_launcher_ios: 6116280ddcfe98ab8820085d8d76ae7449447586
PODFILE CHECKSUM: 819463e6a0290f5a72f145ba7cde16e8b6ef0796
COCOAPODS: 1.14.3

View File

@ -0,0 +1,746 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 54;
objects = {
/* Begin PBXBuildFile section */
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
2E6EDD3503F56BBC18E29AE5 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42A0FFBD9311DFABE551C1DD /* Pods_Runner.framework */; };
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
5E887394FA7296FF7E1790D3 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 61A80A23B8D24FBD66189010 /* Pods_RunnerTests.framework */; };
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
892D0EC1E0642CCDE5DBB509 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 5DACAED4E4E1A395C7DE55B3 /* GoogleService-Info.plist */; };
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 97C146E61CF9000F007C117D /* Project object */;
proxyType = 1;
remoteGlobalIDString = 97C146ED1CF9000F007C117D;
remoteInfo = Runner;
};
/* End PBXContainerItemProxy section */
/* Begin PBXCopyFilesBuildPhase section */
9705A1C41CF9048500538489 /* Embed Frameworks */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
);
name = "Embed Frameworks";
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; };
331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
42A0FFBD9311DFABE551C1DD /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
59A6FECA91A8312990853C92 /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = "<group>"; };
5DACAED4E4E1A395C7DE55B3 /* GoogleService-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = "GoogleService-Info.plist"; path = "Runner/GoogleService-Info.plist"; sourceTree = "<group>"; };
61A80A23B8D24FBD66189010 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
7689ECC10F213BC222F3DAA0 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = "<group>"; };
792DE524DAAD929EC71162BB /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; };
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
95A44E988A2339A5132DB1B4 /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = "<group>"; };
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
994FE13D553E464AF091ABCF /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = "<group>"; };
A1D25746DA9CC242678A7D36 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
55E01B7D5275D67438CCF3E9 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
5E887394FA7296FF7E1790D3 /* Pods_RunnerTests.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
97C146EB1CF9000F007C117D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
2E6EDD3503F56BBC18E29AE5 /* Pods_Runner.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
331C8082294A63A400263BE5 /* RunnerTests */ = {
isa = PBXGroup;
children = (
331C807B294A618700263BE5 /* RunnerTests.swift */,
);
path = RunnerTests;
sourceTree = "<group>";
};
9740EEB11CF90186004384FC /* Flutter */ = {
isa = PBXGroup;
children = (
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
9740EEB21CF90195004384FC /* Debug.xcconfig */,
7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
9740EEB31CF90195004384FC /* Generated.xcconfig */,
);
name = Flutter;
sourceTree = "<group>";
};
97C146E51CF9000F007C117D = {
isa = PBXGroup;
children = (
9740EEB11CF90186004384FC /* Flutter */,
97C146F01CF9000F007C117D /* Runner */,
97C146EF1CF9000F007C117D /* Products */,
331C8082294A63A400263BE5 /* RunnerTests */,
CCEF15E9A905FB0234502CC2 /* Pods */,
E06F768C4F7E41FD441933E3 /* Frameworks */,
5DACAED4E4E1A395C7DE55B3 /* GoogleService-Info.plist */,
);
sourceTree = "<group>";
};
97C146EF1CF9000F007C117D /* Products */ = {
isa = PBXGroup;
children = (
97C146EE1CF9000F007C117D /* Runner.app */,
331C8081294A63A400263BE5 /* RunnerTests.xctest */,
);
name = Products;
sourceTree = "<group>";
};
97C146F01CF9000F007C117D /* Runner */ = {
isa = PBXGroup;
children = (
97C146FA1CF9000F007C117D /* Main.storyboard */,
97C146FD1CF9000F007C117D /* Assets.xcassets */,
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
97C147021CF9000F007C117D /* Info.plist */,
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
);
path = Runner;
sourceTree = "<group>";
};
CCEF15E9A905FB0234502CC2 /* Pods */ = {
isa = PBXGroup;
children = (
A1D25746DA9CC242678A7D36 /* Pods-Runner.debug.xcconfig */,
792DE524DAAD929EC71162BB /* Pods-Runner.release.xcconfig */,
7689ECC10F213BC222F3DAA0 /* Pods-Runner.profile.xcconfig */,
994FE13D553E464AF091ABCF /* Pods-RunnerTests.debug.xcconfig */,
59A6FECA91A8312990853C92 /* Pods-RunnerTests.release.xcconfig */,
95A44E988A2339A5132DB1B4 /* Pods-RunnerTests.profile.xcconfig */,
);
path = Pods;
sourceTree = "<group>";
};
E06F768C4F7E41FD441933E3 /* Frameworks */ = {
isa = PBXGroup;
children = (
42A0FFBD9311DFABE551C1DD /* Pods_Runner.framework */,
61A80A23B8D24FBD66189010 /* Pods_RunnerTests.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
331C8080294A63A400263BE5 /* RunnerTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
buildPhases = (
4F72F2672C32C56AD76F80FE /* [CP] Check Pods Manifest.lock */,
331C807D294A63A400263BE5 /* Sources */,
331C807F294A63A400263BE5 /* Resources */,
55E01B7D5275D67438CCF3E9 /* Frameworks */,
);
buildRules = (
);
dependencies = (
331C8086294A63A400263BE5 /* PBXTargetDependency */,
);
name = RunnerTests;
productName = RunnerTests;
productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
97C146ED1CF9000F007C117D /* Runner */ = {
isa = PBXNativeTarget;
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
buildPhases = (
6714818FB604C690CAE74317 /* [CP] Check Pods Manifest.lock */,
9740EEB61CF901F6004384FC /* Run Script */,
97C146EA1CF9000F007C117D /* Sources */,
97C146EB1CF9000F007C117D /* Frameworks */,
97C146EC1CF9000F007C117D /* Resources */,
9705A1C41CF9048500538489 /* Embed Frameworks */,
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
E29A359D9EC66FA990F849EF /* [CP] Embed Pods Frameworks */,
5EDEA40D71FAEAB0D172BCF1 /* [CP] Copy Pods Resources */,
);
buildRules = (
);
dependencies = (
);
name = Runner;
productName = Runner;
productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
97C146E61CF9000F007C117D /* Project object */ = {
isa = PBXProject;
attributes = {
BuildIndependentTargetsInParallel = YES;
LastUpgradeCheck = 1510;
ORGANIZATIONNAME = "";
TargetAttributes = {
331C8080294A63A400263BE5 = {
CreatedOnToolsVersion = 14.0;
TestTargetID = 97C146ED1CF9000F007C117D;
};
97C146ED1CF9000F007C117D = {
CreatedOnToolsVersion = 7.3.1;
LastSwiftMigration = 1100;
};
};
};
buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
compatibilityVersion = "Xcode 9.3";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = 97C146E51CF9000F007C117D;
productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
97C146ED1CF9000F007C117D /* Runner */,
331C8080294A63A400263BE5 /* RunnerTests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
331C807F294A63A400263BE5 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
97C146EC1CF9000F007C117D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
892D0EC1E0642CCDE5DBB509 /* GoogleService-Info.plist in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
isa = PBXShellScriptBuildPhase;
alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
);
name = "Thin Binary";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
};
4F72F2672C32C56AD76F80FE /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
);
inputPaths = (
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
"${PODS_ROOT}/Manifest.lock",
);
name = "[CP] Check Pods Manifest.lock";
outputFileListPaths = (
);
outputPaths = (
"$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
5EDEA40D71FAEAB0D172BCF1 /* [CP] Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources-${CONFIGURATION}-input-files.xcfilelist",
);
name = "[CP] Copy Pods Resources";
outputFileListPaths = (
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources-${CONFIGURATION}-output-files.xcfilelist",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources.sh\"\n";
showEnvVarsInLog = 0;
};
6714818FB604C690CAE74317 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
);
inputPaths = (
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
"${PODS_ROOT}/Manifest.lock",
);
name = "[CP] Check Pods Manifest.lock";
outputFileListPaths = (
);
outputPaths = (
"$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
9740EEB61CF901F6004384FC /* Run Script */ = {
isa = PBXShellScriptBuildPhase;
alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Run Script";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
};
E29A359D9EC66FA990F849EF /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
);
name = "[CP] Embed Pods Frameworks";
outputFileListPaths = (
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
331C807D294A63A400263BE5 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
97C146EA1CF9000F007C117D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
331C8086294A63A400263BE5 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 97C146ED1CF9000F007C117D /* Runner */;
targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXVariantGroup section */
97C146FA1CF9000F007C117D /* Main.storyboard */ = {
isa = PBXVariantGroup;
children = (
97C146FB1CF9000F007C117D /* Base */,
);
name = Main.storyboard;
sourceTree = "<group>";
};
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
isa = PBXVariantGroup;
children = (
97C147001CF9000F007C117D /* Base */,
);
name = LaunchScreen.storyboard;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
249021D3217E4FDB00AE95B9 /* Profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SUPPORTED_PLATFORMS = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
name = Profile;
};
249021D4217E4FDB00AE95B9 /* Profile */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
DEVELOPMENT_TEAM = 69ERN967NS;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.konectarEvents;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
};
name = Profile;
};
331C8088294A63A400263BE5 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 994FE13D553E464AF091ABCF /* Pods-RunnerTests.debug.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
GENERATE_INFOPLIST_FILE = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.example.konectarEvents.RunnerTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
};
name = Debug;
};
331C8089294A63A400263BE5 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 59A6FECA91A8312990853C92 /* Pods-RunnerTests.release.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
GENERATE_INFOPLIST_FILE = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.example.konectarEvents.RunnerTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
};
name = Release;
};
331C808A294A63A400263BE5 /* Profile */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 95A44E988A2339A5132DB1B4 /* Pods-RunnerTests.profile.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
GENERATE_INFOPLIST_FILE = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.example.konectarEvents.RunnerTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
};
name = Profile;
};
97C147031CF9000F007C117D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
97C147041CF9000F007C117D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SUPPORTED_PLATFORMS = iphoneos;
SWIFT_COMPILATION_MODE = wholemodule;
SWIFT_OPTIMIZATION_LEVEL = "-O";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
name = Release;
};
97C147061CF9000F007C117D /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
DEVELOPMENT_TEAM = 69ERN967NS;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.konectarEvents;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
};
name = Debug;
};
97C147071CF9000F007C117D /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
DEVELOPMENT_TEAM = 69ERN967NS;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.konectarEvents;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
331C8088294A63A400263BE5 /* Debug */,
331C8089294A63A400263BE5 /* Release */,
331C808A294A63A400263BE5 /* Profile */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
isa = XCConfigurationList;
buildConfigurations = (
97C147031CF9000F007C117D /* Debug */,
97C147041CF9000F007C117D /* Release */,
249021D3217E4FDB00AE95B9 /* Profile */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
isa = XCConfigurationList;
buildConfigurations = (
97C147061CF9000F007C117D /* Debug */,
97C147071CF9000F007C117D /* Release */,
249021D4217E4FDB00AE95B9 /* Profile */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 97C146E61CF9000F007C117D /* Project object */;
}

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
<FileRef
location = "self:">
</FileRef>
</Workspace>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PreviewsEnabled</key>
<false/>
</dict>
</plist>

View File

@ -0,0 +1,98 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1510"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES">
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</MacroExpansion>
<Testables>
<TestableReference
skipped = "NO"
parallelizable = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "331C8080294A63A400263BE5"
BuildableName = "RunnerTests.xctest"
BlueprintName = "RunnerTests"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</TestableReference>
</Testables>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</LaunchAction>
<ProfileAction
buildConfiguration = "Profile"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
<FileRef
location = "group:Runner.xcodeproj">
</FileRef>
<FileRef
location = "group:Pods/Pods.xcodeproj">
</FileRef>
</Workspace>

Some files were not shown because too many files have changed in this diff Show More