| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450 |
- {
- "Messages": [
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "02/25/17 03:53:05 AM (509716385)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "AE3OFE9F-D334-4D1B-9BA3-055AC300A9A5"
- },
- {
- "Message": "result??"
- },
- {
- "Time": "02/25/17 07:10:18 AM (509728218)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "077D685D-4245-430D-85DB-04DB1A6A90AF"
- },
- {
- "Message": "He says scope too narrow"
- },
- {
- "Time": "02/25/17 07:10:45 AM (509728245)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "lAC7A4A0-47BB-4B91-AA6C-D349F2378817"
- },
- {
- "Message": "5 hours"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "02/25/17 07:11:09 AM (509728269)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "COCE484D-1CB9-4732-A203-B840AA06750E"
- },
- {
- "Message": "i thought larry wanted narrow, encryption health info"
- },
- {
- "Time": "02/25/17 07:11:22 AM (509728282)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "63ACFD9F-EBEE-4C09-9546-642FD70B19B1"
- },
- {
- "Message": "I told him that E on"
- },
- {
- "Sender": "-"
- },
- {
- "Time": "02/25/17 07:12:00 AM (509728320)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "3634E28B-EFCB-41E9-A32F-23C601B09600"
- },
- {
- "Message": "I think I know how to write it"
- },
- {
- "Time": "02/25/17 07:13:22 AM (509728402)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "08CCB72E-5F83-4AAB-A58F-8B976D4D3609"
- },
- {
- "Message": "Issurs in domestic health to include .... Issues in medicine include"
- },
- {
- "Time": "02/25/17 07:14:23 AM (509728463)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "615CF55A-24B9-40BE-AD88-CDAB7022148D"
- },
- {
- "Message": "Was super fun"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "02/25/17 07:14:51 AM (509728491)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "3F270AF2-552B-40D3-B4AA-E6B8FECC1677"
- },
- {
- "Message": "great"
- },
- {
- "Time": "02/25/17 07:15:33 AM (509728533)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "12454001-06BD-4ACF-A4CB-BOEA46980243"
- },
- {
- "Message": "Beyond"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "02/25/17 08:07:01 AM (509731621)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "ED342670-51AE-4F6B-88A7-CC221725F3FC"
- },
- {
- "Message": "im glad\\"
- },
- {
- "Time": "02/25/17 08:12:17 AM (509731937)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "D2E3E028-7F66-4688-BB63-40F387FABD69"
- },
- {
- "Message": "If you are free in about 15m will Call you"
- },
- {
- "Time": "02/25/17 08:23:05 AM (509732585)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "OD4F034E-457E-45A5-B4A8-7C65F09D9DD7"
- },
- {
- "Message": "Free"
- },
- {
- "Time": "02/25/17 08:23:07 AM (509732587)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "E2910499-9738-4AAD-9786-9571108FE26A"
- },
- {
- "Message": "?"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "02/25/17 08:23:33 AM (509732613)"
- },
- {
- "Flags": "1150981"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "44FB4935-9A4C-4A24-B579-BAD4181B725B"
- },
- {
- "Message": "yes 212 772 9416"
- },
- {
- "Time": "02/25/17 08:41:51 AM (509733711)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "039591FF-DAB8-4842-8DBB-DE88E8E4AD73"
- },
- {
- "Message": "Thank you"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "02/25/17 08:50:12 AM (509734212)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "BFA4A436-5DC7-45AB-8D0A-4B4499C1C054"
- },
- {
- "Message": "Of course"
- },
- {
- "Time": "02/25/17 08:55:05 AM (509734505)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "20947AAE-8F5D-43FB-8678-DADA86249F84"
- },
- {
- "Message": "He needs help His advisory are not what he deserves"
- },
- {
- "Time": "02/25/17 08:55:31 AM (509734531)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "D9FCB6AB-F195-4927-BC8C-6E8E7450FA23"
- },
- {
- "Message": "I'm not strong enough to fight them"
- },
- {
- "Time": "02/25/17 09:13:46 AM (509735626)"
- },
- {
- "Flags": "1126401"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "266FBEF7-17DB-4358-9DEA-5522F9667DD9"
- },
- {
- "Message": "http://medcitynews.com/2017/02/himss17-observation/?utm content=bufferlf2de&utm medium=social&utm source=twitter.com&utm_campaign=buffer"
- },
- {
- "Time": "02/25/17 09:13:46 AM (509735626)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "82E0AD28-A17A-4931-BF07-BEDC661E9A95"
- },
- {
- "Message": "From HIMSS and this author John Halamka seems super smart"
- },
- {
- "Time": "02/25/17 05:29:21 PM (509765361)"
- },
- {
- "Flags": "1126401"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "5B8D8745-01B5-472C-8711-CB8F7D4C14B4"
- },
- {
- "Message": "Are you in NYC the 2nd in the afternoon"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "02/25/17 05:39:17 PM (509765957)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "F9EB1BDA-05A7-4EBF-AD09-943ABA3DB257"
- },
- {
- "Message": "nope"
- },
- {
- "Time": "02/26/17 04:45:55 PM (509849155)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "925911D2-B717-4408-9F5B-66E76520CAE1"
- },
- {
- "Message": "Hi Feeling a little trapped between Larry and bill"
- },
- {
- "Time": "02/26/17 04:46:12 PM (509849172)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "285639CE-546E-4EAD-9212-478B0EAF2DDB"
- },
- {
- "Message": "How can I get ahead? I have six months can't waste time with games"
- },
- {
- "Sender": "-F__________________"
- },
- {
- "Time": "02/26/17 04:47:18 PM (509849238)"
- },
- {
- "Flags": "1126401"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "FBDCBA31-D877-4346-B663-00B7OAC1A272"
- },
- {
- "Message": "I'm gonna need a pep talk Tuesday morning probably"
- },
- {
- "Sender": "d"
- },
- {
- "Time": "02/26/17 05:58:17 PM (509853497)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "5E3BBB32-750C-45DD-9A21-8C73EDA0C22B"
- },
- {
- "Message": "JUST SENT UPDATED TOR What do you think?"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "02/26/17 06:05:02 PM (509853902)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "CF253599-04A1-4F76-AFEE-CE1065DAFC34"
- },
- {
- "Message": "No problem"
- },
- {
- "Time": "02/26/17 06:08:00 PM (509854080)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "6F50739D-3138-4C81-AA1C-CA61D5BFB734"
- },
- {
- "Message": "Check email?"
- },
- {
- "Time": "02/26/17 06:08:16 PM (509854096)"
- },
- {
- "Flags": "1126401"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "BlA28042-1B7E-4DB8-AD97-AB243600C1C7"
- },
- {
- "Message": "I want to try to send to bg tonight so I can send to Larry as soon as I hear back"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "02/26/17 06:09:02 PM (509854142)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "DD8D4CCO-E9DE-4C21-82FE-654ABBBF578E"
- },
- {
- "Message": "Ok with me but not sure if Larry and bill on same psge"
- },
- {
- "Time": "02/26/17 06:09:51 PM (509854191)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "9333C100-8507-4647-9A40-EA94E952EE62"
- },
- {
- "Message": "What do I do?"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "02/26/17 06:11:15 PM (509854275)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "OF6A7C14-69C2-405A-8F84-64ADBD2A458E"
- },
- {
- "Message": "Send"
- },
- {
- "Time": "02/26/17 06:11:38 PM (509854298)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "BF2BD17C-645B-49D3-B157-1E624CED079D"
- },
- {
- "Message": "Did you read and it is broad enough yet still useful for me?"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "02/26/17 06:11:46 PM (509854306)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "ElF9A041-ECD5-4760-8053-AA35F25A46CC"
- },
- {
- "Message": "Yes"
- },
- {
- "Time": "02/26/17 06:12:20 PM (509854340)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "15BA845E-7920-471B-A648-D4780A2F8F9A"
- },
- {
- "Message": "Ok"
- },
- {
- "Time": "02/26/17 06:15:40 PM (509854540)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "AAF53680-71BA-4F90-8CB7-F62B2C117C12"
- },
- {
- "Message": "sent."
- },
- {
- "Time": "02/26/17 06:16:03 PM (509854563)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "4CBEEF3D-CF9E-4519-ABB5-5F4F3E2D15B1"
- },
- {
- "Message": "Thank you"
- },
- {
- "Time": "02/26/17 06:16:39 PM (509854599)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "999AC4C7-682D-4129-A6F6-8D06329439B7"
- },
- {
- "Message": "You are about the only person on earth who could possibly understand this. It's almost surrreal"
- },
- {
- "Time": "02/27/17 08:42:37 AM (509906557)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "361EAE88-47D7-449F-9CB1-9210F204A750"
- },
- {
- "Message": "\"Can't you just do everything for me?\""
- },
- {
- "Sender": "+"
- },
- {
- "Time": "02/27/17 08:43:42 AM (509906622)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "42AB11A2-7D4A-4467-8563-DODAC9DC25DB"
- },
- {
- "Message": "That's not a ToR... I'm starting to realize he just wants to be around someone he enjoys spending time with. Even if it kills that person ... (=me)."
- },
- {
- "Time": "02/27/17 08:45:01 AM (509906701)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "AAB2A9BB-2D81-4DB1-887C-5109F0C27857"
- },
- {
- "Message": "Let's talk tmr ok?"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "02/27/17 08:45:09 AM (509906709)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "FA12176F-16BA-4CAA-9B44-F79C707633FD"
- },
- {
- "Message": "ok"
- },
- {
- "Time": "02/27/17 10:28:19 AM (509912899)"
- },
- {
- "Flags": "1126401"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "0624D005-D6CD-4E34-8D7A-F3AF680023EE"
- },
- {
- "Message": "https://news.google.cominews/amp?caurl=https%3A%2F%2Fwww.washingtonpost.com%2Famphtml%2Fpowerpost% 2Ftrump-to-propose-10-percent-spike-in-defense-spending-massive-cuts-to-other-agencies%2F2017%2F02%2F27% 2F867f9690-fcf2-11e6-99b4-9e613afeb09f story.html#pt0- 153337"
- },
- {
- "Sender": "-"
- },
- {
- "Time": "02/27/17 10:28:19 AM (509912899)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "771D7088-05D7-47C1-9B1A-5BECC28CC1E3"
- },
- {
- "Message": "Looks like development budgets will be cut / BG and foundation and UN and USAID and WORLD BANK. That's good news for America"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/01/17 04:26:16 AM (510063976)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "8BCAD10E-8A5A-41DB-8AEl-ED72B26190D5"
- },
- {
- "Message": "are we set?"
- },
- {
- "Time": "03/01/17 04:27:48 AM (510064068)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "5AA1C7C9-41DC-467E-8F13-8A97270D4E2E"
- },
- {
- "Message": "Not yet Sender"
- },
- {
- "Time": "03/01/17 04:28:01 AM (510064081)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "699297CE-195E-4004-8707-55C88CB9D3BC"
- },
- {
- "Message": "This week though"
- },
- {
- "Time": "03/01/17 04:28:11 AM (510064091)"
- },
- {
- "Flags": "1126401"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "B31B8427-6D95-45A2-90FD-58C593615FOF"
- },
- {
- "Message": "Larry made me talk to 2 more ppl One yesterday and one tmr"
- },
- {
- "Time": "03/01/17 04:43:59 AM (510065039)"
- },
- {
- "Flags": "1126401"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "11D4B926-F0A9-4671-9D10-1ED8CC3215B6"
- },
- {
- "Message": "But did do separation w foundation yesterday last day April 15"
- },
- {
- "Time": "03/01/17 04:44:10 AM (510065050)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "DOABF5F5-C9F2-4784-953E-289927389BAE"
- },
- {
- "Message": "All super nice"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/01/17 04:44:44 AM (510065084)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "401F3CF4-8889-42BE-82D8-5821B lADD7A4"
- },
- {
- "Message": "ok"
- },
- {
- "Time": "03/01/17 04:44:52 AM (510065092)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "FC242489-5F16-4A64-B2E9-F5737F96804A"
- },
- {
- "Message": "Fndn ppl love idea of cyberhealth and asking if there is a way to start there but use that same privacy and identity to extend to other social services"
- },
- {
- "Sender": "-"
- },
- {
- "Time": "03/01/17 04:45:09 AM (510065109)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "57CC610D-09F0-4FBF-B454-FDC5DC4EE17C"
- },
- {
- "Message": "I think absolutely Like a new and evolved SSN crypto"
- },
- {
- "Time": "03/01/17 04:45:15 AM (510065115)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "D795C5CB-2EC2-4082-BC5D-23939C85878B"
- },
- {
- "Message": "So they will rally"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/01/17 05:10:11 AM (510066611)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "C84121CF-45C6-483D-B6B4-085595A43BC5"
- },
- {
- "Message": "HSN health security number"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/01/17 05:13:24 AM (510066804)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "315CC679-0793-4DA2-A3EE-FB1AD7EB1E61"
- },
- {
- "Message": "in fact embed the social number in the new encrypted personal health seciurty number think of how outdated a social security number is for\" security\" , that a fun idea"
- },
- {
- "Time": "03/01/17 06:30:00 AM (510071400)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "24FC9CAD-9BE1-42B7-A7C4-CE8F79DDD8A9"
- },
- {
- "Message": "Yes"
- },
- {
- "Time": "03/01/17 06:30:03 AM (510071403)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "FA11432F-2EEB-4884-9B34-EAF54D1C6680"
- },
- {
- "Message": "Start w health"
- },
- {
- "Sender": "-"
- },
- {
- "Time": "03/01/17 06:33:58 AM (510071638)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "2A4530E0-A455-4025-9F00-0D358355C834"
- },
- {
- "Message": "The magic is to make all the systems communicate"
- },
- {
- "Time": "03/01/1_______________/ 06:38:2 / AM (510071907)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "3BDF675B-05F2-4A00-B15C-A3DA53B8BB06"
- },
- {
- "Message": "Think of welfare payments"
- },
- {
- "Sender": "_________________"
- },
- {
- "Time": "03/01/17 08:34:58 AM (510078898)"
- },
- {
- "Flags": "1126401"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "B55CEA68-4BF3-46B2-B377-5D46AFBAD58A"
- },
- {
- "Message": "https://www.researchgate.net/profile/Tolga_Soyata/publication/257920722 Medical Data_Analytics in the cloud using Homomorphic Encryption/links/00463534e elb5ae5 e4000000/Medical-Data-Analytics-in-the-cloud-using- Homomorphic-Encryption.pdf"
- },
- {
- "Time": "03/01/17 08:35:00 AM (510078900)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "676CAA3A-F8D1-426B-BEDC-3BFD574CEB90"
- },
- {
- "Message": "I really like this Homomorphic Encryption"
- },
- {
- "Time": "OW.. AM (510171072)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "C3A6A2A6-33E2-497F-B568-2F6C3C89D8E0"
- },
- {
- "Message": "What now"
- },
- {
- "Sender": "-"
- },
- {
- "Time": "03/02/17 10:12:02 AM (510171122)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "6EC89FE3-736F-4CCO-9545-5E9067E0B573"
- },
- {
- "Message": "He's basically saying that all the stuff bill told me to say is already being done by others and that health care has an advocacy strategy (without this) etc etc"
- },
- {
- "Time": "03/02/17 10:12:45 AM (510171165)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "AD50A373-E7FD-46BC-BF4D-A1D0F8DAE410"
- },
- {
- "Message": "Should I reply Larry only and copy bill and say great looking forward to the conversation or just have a bunch more conversations or what? It's getting ridiculous"
- },
- {
- "Sender": "-_________________"
- },
- {
- "Time": "03/02/17 10:13:41 AM (510171221)"
- },
- {
- "Flags": "1126401"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "944AA352-1C7C-4FB8-ADOC-CCD89F343302"
- },
- {
- "Message": "And --- arianna huffington just stated a new org called THRIVE with money from folks like jack ma etc. She's a great advocate and supporter of women and could be a good place for me to consider in some capacity right after bgc3 I will see her Monday"
- },
- {
- "Time": "03/02/17 03:24:47 PM (510189887)"
- },
- {
- "Flags": "1126401"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "A3 944239-C8D5-47EB-BCCF-B6048E050D89"
- },
- {
- "Message": "http://mobile.the-scientist.comiarticle/48690/trump-signals-support-for-women-in-stem"
- },
- {
- "Time": "03/02/17 03:24:47 PM (510189887)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "2BF766A5-BBB2-4A95-9FEF-02360E750267"
- },
- {
- "Message": "This is a good thing"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/03/17 08:18:11 AM (510250691)"
- },
- {
- "Flags": "1150981"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "B31E0D1B-4721-4A09-87D1-C1DAD65B1527"
- },
- {
- "Message": "seeing medical team tomorrow"
- },
- {
- "Sender": "________________"
- },
- {
- "Time": "03/03/17 08:22:36 AM (510250956)"
- },
- {
- "Flags": "1126401"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "5D8D66B6-BEA6-4930-B6B2-67C8BOD388E3"
- },
- {
- "Message": "Hey great! Am in NYC Monday for a few hours are you there"
- },
- {
- "Time": "03/03/17 08:22:53 AM (510250973)"
- },
- {
- "Flags": "1126401"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "A2347152-4ECE-4A7B-A004-3344DCD550D0"
- },
- {
- "Message": "If you want to talk this evening or over wknd = YAY"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/03/17 08:23:07 AM (510250987)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "AD9435D1-1E1A-4A80-BB09-B5894ADDDA44"
- },
- {
- "Message": "not until following week , I will get the scoop"
- },
- {
- "Sender": "-_________________"
- },
- {
- "Time": "03/03/17 08:23:24 AM (510251004)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "026E7754-2E40-4582-8806-64CC4E817131"
- },
- {
- "Message": "Roger that Larry is still playing games and bill is still squeezing me"
- },
- {
- "Time": "03/03/17 08:23:30 AM (510251010)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "BF6C137D-ACAC-4108-A5ED-780BACC012E3"
- },
- {
- "Message": "Lord have mercy"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/03/17 08:24:08 AM (510251048)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "5A074E5A-04F4-4D6B-9FB8-3EBD2D49F04E"
- },
- {
- "Message": "not sure why you don't just appease larry. as he is the bottleneck, it is silly. you continue to be jerks around"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/03/17 08:24:31 AM (510251071)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "00F5EB19-8B99-4081-BC95-9B7EF9018E80"
- },
- {
- "Message": "what you put on paper is ONLY to get in, stop wasting time."
- },
- {
- "Time": "03/03/17 08:24:41 AM (510251081)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "F7F7AB9F-4ECB-4180-8082-175B872304D1"
- },
- {
- "Message": "That's what I told bill"
- },
- {
- "Sender": "-"
- },
- {
- "Time": "03/03/17 08:24:46 AM (510251086)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "DD9BBF55-27B8-45F7-83A0-D48D038EB3E1"
- },
- {
- "Message": "Yes you are right"
- },
- {
- "Time": "03/03/17 08:24:54 AM (510251094)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "649D9F9D-7D2F-4F83-A495-213C869A0624"
- },
- {
- "Message": "7"
- },
- {
- "Time": "03/03/17 08:25:01 AM (510251101)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "735D2137-9CCA-45A9-AF37-47B34BBDD8EB"
- },
- {
- "Message": "Usually always you are right Sender"
- },
- {
- "Time": "03/03/17 08:25:06 AM (510251106)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "D6BE3672-F6E3-46E3-BBA8-B2F6A6BDA651"
- },
- {
- "Message": "Ok always"
- },
- {
- "Time": "03/03/17 02:40:56 PM (510273656)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "E425A8F2-8656-481F-BA7F-A6DADA9C1A21"
- },
- {
- "Message": "Larry keeps sending me these vicious text messages"
- },
- {
- "Time": "03/03/17 02:41:42 PM (510273702)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "63F4D04C-844A-4EF7-8EB3-F4671F68E004"
- },
- {
- "Message": "Time to just keep him and bill on the same email. No games. At least, no games from me."
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/03/17 02:43:32 PM (510273812)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "CBO1FB54-4FF8-4F6A-88B0-548730849EE7"
- },
- {
- "Message": "yup"
- },
- {
- "Time": "03/03/17 02:51:02 PM (510274262)"
- },
- {
- "Flags": "1126401"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "9C2E8F09-FB21-456D-9E7B-CBB6D0017FB5"
- },
- {
- "Message": "https://www.cs.rochester.edu/u/muthuv/ccsna14-he.pdf"
- },
- {
- "Time": "03/03/17 02:51:03 PM (510274263)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "5DDB6F81-F544-4B96-Al2B-3364AB2E17D7"
- },
- {
- "Message": "Neat"
- },
- {
- "Time": "03/04/17 08:56:20 AM (510339380)"
- },
- {
- "Flags": "1126401"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "4312B74A-161A-49C9-82A9-C711CFC3B48F"
- },
- {
- "Message": "http://www.economist.com/news/business/21717990-telemedicine-predictive-diagnostics-wearable-sensors-and-host-new- apps-will-transform-how?frsc=dg%7Cc"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/04/17 03:32:51 PM (510363171)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "CA28A874-1679-4DAE-AD39-E8254B7D3503"
- },
- {
- "Message": "Funding NIH grants ?"
- },
- {
- "Time": "03/04/17 03:36:40 PM (510363400)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "D95832E0-E6FD-4008-888A-E273C4B4D897"
- },
- {
- "Message": "That is built around peer review and the incumbent networks of power in each field"
- },
- {
- "Time": "03/04/17 03:37:12 PM (510363432)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "499C41BB-01A3-40F0-B24F-562BBF710CF7"
- },
- {
- "Message": "That's also why smart ppl and ideas are now chasing VC and private equity instead of grants"
- },
- {
- "Time": "03/04/17 03:39:12 PM (510363552)"
- },
- {
- "Flags": "1126401"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "8CF7D2A3-9AC3-4238-AB4C-8681D9E5F1E6"
- },
- {
- "Message": "Have you seen arianna Huffington's new effort? Media driven platform For health and wellness - money from jack Ma and Jeff Bezos w connections into Amazon and Alibaba She wants to talk to me Monday and I will be in NYC Might be another path to surgeon general in the sense of being the consumer facing health and wellness guru - like a more evolved dr oz or Oprah but linked to products Interesting concept"
- },
- {
- "Time": "03/04/17 03:41:56 PM (510363716)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "41F070C3-CD47-45B3-A332-36CDF984499A"
- },
- {
- "Message": "She's got reputation and money and the whole thing dedicated to health and wellness / being on her leadership team and the head doc is cool - jack says I could do Alibaba pop up shops on anything health wellness and sell a zillion products of whatever kind and also as a doc present the evidence. Bezos could do something similar on Amazon. Both are outside bill space but he likes them Also - is profitable and builds credibility towards Americas doctor / Presenting best evidence on products and also education on certain topics (like headaches or sleep or obesity or whatever) Of course I'm still going to work w bill a few months. But maybe start w her right after OR SOONER"
- },
- {
- "Time": "03/04/17 03:42:06 PM (510363726)"
- },
- {
- "Flags": "1126401"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "7EA3F264-AC7B-49DC-9296-7C33E5228E8C"
- },
- {
- "Message": "More Monday afternoon"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/04/17 04:12:38 PM (510365558)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "3595679E-A81A-41EE-8079-F97A5C92FBAB"
- },
- {
- "Message": "Just left medical advisory. Lots to do . I have zero interest"
- },
- {
- "Time": "03/04/17 04:17:13 PM (510365833)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "A683869A-0056-4D10-A7DC-19688332D78B"
- },
- {
- "Message": "Zero interest in medical advisory? Oh no!"
- },
- {
- "Time": "03/04/17 04:17:47 PM (510365867)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "6EF681DD-8201-4AEB-9F1F-3E22AD4F8122"
- },
- {
- "Message": "Well bill says he has zero interest in doing anything helpful on health or tech for US until trump stands up on international development and aid"
- },
- {
- "Time": "03/04/17 04:18:27 PM (510365907)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "FFF4179F-A435-4261-A808-480532E3F26C"
- },
- {
- "Message": "Will keep pushing but he says his #1 priority is ODA (overseas development aid)"
- },
- {
- "Time": "03/04/17 04:19:40 PM (510365980)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "F69E02FB-DB41-46BA-A81C-52AC66278B79"
- },
- {
- "Message": "I told him the tech play is one that he can pull off where everyone wins and I can help get that started and he says that his \"policy package\" will depend on what trump does for him ...."
- },
- {
- "Time": "03/04/17 04:21:17 PM (510366077)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "3E1033B1-CF04-43AA-83A3-DC2E34C9940C"
- },
- {
- "Message": "What did you learn from medical consortium ??? Call me!"
- },
- {
- "Time": "03/04/17 04:27:14 PM (510366434)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "97A61A8B-45CA-4E45-A818-E7E19EE2FC52"
- },
- {
- "Message": "Bill also says (just spoke to him) that he wants me to do a learning session for him in the middle East on a their health and health tech"
- },
- {
- "Time": "03/04/17 04:29:42 PM (510366582)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "2E 148688-39A3-4E8B-ACAE-9069228B6BAA"
- },
- {
- "Message": "Also a lobbyist from k&1 gates wants to speak w me next week about surgeon general role - he told me that Geoff Ling (darpa) and Raj Shah (USAID and gates now Rockefeller) Both recommended me and he would like to spend some time w me."
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/04/17 04:33:47 PM (510366827)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "D11BOFBB- 82AD-4DB3-8535-B3DE29A9BC30"
- },
- {
- "Message": "Head of MGh, Cleveland clinic, Hopkins , mayo all working together. I told them about you"
- },
- {
- "Time": "03/04/17 04:35:42 PM (510366942)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "F70B2E75-5910-4510-8FDE-48865082E7BD"
- },
- {
- "Message": "Thank you Well glad they are all great institutions and working together"
- },
- {
- "Time": "014 lF7 Oz.:36:03 PM (510366963)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "C061EBA4-65B9-446B-BAC8-9A15FE08C800"
- },
- {
- "Message": "Wish BG could get his head around the needs of our country as opposed to development aid"
- },
- {
- "Sender": "_________________"
- },
- {
- "Time": "03/04/17 04:36:45 PM (510367005)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "7FE3CDDB-FED9-453D-B207-96C3786COAAC"
- },
- {
- "Message": "Did you learn anything concrete ? Are they doing digital idea already?"
- },
- {
- "Time": "03/04/17 04:36:54 PM (510367014)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "CFD2F95C-ODD4-4DC6-B761-38E31725583A"
- },
- {
- "Message": "Do they have a lead or a strategy?"
- },
- {
- "Time": "03/04/17 04:39:50 PM (510367190)"
- },
- {
- "Flags": "1126401"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "A5AC6A82-A3E1-484C-9949-935E9F217713"
- },
- {
- "Message": "http://m.klgates.comidaniel-f-ritter/"
- },
- {
- "Sender": "-"
- },
- {
- "Time": "03/04/1____________/ 04:39:M PM (510367191)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "ED4099E2-8ACD-4OFF-AEE4-380CE018366B"
- },
- {
- "Message": "This guy next week"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/04/17 04:43:21 PM (510367401)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "8611EE6C-08E3-48BD-BADB-9A85057B437B"
- },
- {
- "Message": "They think everyone should have med records in their phone . Defense dept records different system than VA. Hate intl aid vs US NEEDS . NIH , techno transfer goofy, Grant s too difficult. Drugs too addicting etc"
- },
- {
- "Sender": "_________________"
- },
- {
- "Time": "03/04/17 04:45:42 PM (510367542)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "9FBCE866-D13B-402E-9A65-4EFOFB827427"
- },
- {
- "Message": "Med records should be in cloud w homomorphic encryption ability To get what is needed without putting data at risk but yes ppl should own their own medical records"
- },
- {
- "Time": "03/04/17 04:46:02 PM (510367562)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "9F8D1F98-9D1B-4C1D-B3C3-211E7F93E2EF"
- },
- {
- "Message": "Ok got it let's talk next week"
- },
- {
- "Sender": "I"
- },
- {
- "Time": "03/04/17 04:46:07 PM (510367567)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "5B2F64C2-6EE9-4505-B04D-801FE47367DE"
- },
- {
- "Message": "Or whenever"
- },
- {
- "Time": "03/04/17 04:46:33 PM (510367593)"
- },
- {
- "Flags": "1126401"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "63BB69C1-2A39-4811-A7B8-F942D45AB6F6"
- },
- {
- "Message": "Bg meets w trump march 20/21 (tbc)"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/05/17 03:54:25 AM (510407665)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "E01D625B-8A97-4881-AC24-819848A2D9DB"
- },
- {
- "Message": "a waste of time. he should meet with barrack Sender"
- },
- {
- "Time": "0=7=2 AM (510432242)"
- },
- {
- "Flags": "1126401"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "67475AFA-BAE7-4B90-8231-3C42C89769D3"
- },
- {
- "Message": "https://www.linkedin.com/in/jonah-goldman-b4b16a6"
- },
- {
- "Time": "03/05/17 10:44:02 AM (510432242)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "49341B90-C929-4469-B27D-859882DD7180"
- },
- {
- "Message": "Bg senior political adviser"
- },
- {
- "Time": "03/05/17 08:14:13 PM (510466453)"
- },
- {
- "Flags": "1126401"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "CB35C3BE-61E8-4A07-9806-B45928CD2AED"
- },
- {
- "Message": "https://www.va.gov/directory/guide/manager.asp?pnum=30251"
- },
- {
- "Time": "03/05/17 08:14:13 PM (510466453)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "9B237953-42E4-4D35-9EC5-45459717B96E"
- },
- {
- "Message": "She's super nice by the way. My friend. If your guys need smart no drama women --"
- },
- {
- "Sender": "________________"
- },
- {
- "Time": "03/06/17 09:40:56 AM (510514856)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "60A89EC4-CDC2-4826-AA70-69A8A6C90B5A"
- },
- {
- "Message": "Are you in NYC"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/06/17 09:43:26 AM (510515006)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "6EDB350B-5252-4668-A861-9246FC2C9916"
- },
- {
- "Message": "Sat"
- },
- {
- "Sender": "___________________"
- },
- {
- "Time": "03/06/17 10:08:10 AM (510516490)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "004A6AA1-EAE8-46DA-B4C2-56CF4FF33136"
- },
- {
- "Message": "Bg very interested in Middle East right now"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/06/17 10:09:04 AM (510516544)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "EDO1C225-7C95-40AF-A003-A58356DBOB11"
- },
- {
- "Message": "Dubai / Saudi ? Qatar all very very good buds"
- },
- {
- "Time": "03/06/17 10:09:20 AM (510516560)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "037B3D4A-4762-4CAA-BC2C-2E3AF7376ED7"
- },
- {
- "Message": "Israel plus emirates and sort of Saudi"
- },
- {
- "Time": "03/06/17 10:09:25 AM (510516565)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "4D1C7834-6379-49B1-B669-8A871AE83D19"
- },
- {
- "Message": "Qatar too"
- },
- {
- "Sender": "_________________"
- },
- {
- "Time": "03/06/17 10:09:45 AM (510516585)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "C82AE472-1264-44D3-8542-06A262F2D028"
- },
- {
- "Message": "He wants me to arrange a learning trip on TECHNOLOGIES emerging from the region"
- },
- {
- "Time": "03/06/17 10:09:53 AM (510516593)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "151E99C2-CDD2-40F5-91EC-6C1E566C5530"
- },
- {
- "Message": "I think Israel a whole separate thing"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/06/17 10:10:00 AM (510516600)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "CB63E7DA-EF31-4DC7-8507-02AE88458224"
- },
- {
- "Message": "Israel - tell bill Paris week of 21"
- },
- {
- "Sender": "_________________"
- },
- {
- "Time": "03/06/17 10:10:04 AM (510516604)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "7D7578C4-A3BF-49A8-93EB-F6B49BA4E3FE"
- },
- {
- "Message": "Health technologies specifically"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/06/17 10:10:08 AM (510516608)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "022C550E-01AE-4F06-B2A4-F63CF9C00192"
- },
- {
- "Message": "All hands Sender"
- },
- {
- "Time": "03/06/17 10:10:47 AM (510516647)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "66A5344B-5D45-4C05-88D0-EBB8C1956F1E"
- },
- {
- "Message": "Peace mtg? W Jared and Tony Blair and all those folks? Not sure bg interested in peace process mostly technologies"
- },
- {
- "Time": "03/06/17 10:10:59 AM (510516659)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "73FF6A52-3B5F-4305-8C5E-3BF78047C052"
- },
- {
- "Message": "He says he speaks to Jared a lot"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/06/17 10:11:39 AM (510516699)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "C422C58F-196E-4636-90A8-BDAF2092E311"
- },
- {
- "Message": "No peace boring and not happening. GROW UP"
- },
- {
- "Time": "03/06/17 10:12:10 AM (510516730)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "AF5781B0-1718-4257-A4E5-AF5136535DA4"
- },
- {
- "Message": "Oh lord. 21st then what to discuss"
- },
- {
- "Time": "03/06/17 10:12:12 AM (510516732)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "E673E869-3127-4E18-A37E-4DOFFA515F1F"
- },
- {
- "Message": "More war"
- },
- {
- "Time": "0 AM (510516746)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "B52016E3-7DFF-45E6-A365-727ADEF2AC6C"
- },
- {
- "Message": "Bg in D.C. W trump 20/21"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/06/17 10:12:36 AM (510516756)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "05FC3E16-929F-4B9A-8ED1-C6FOCD23DF32"
- },
- {
- "Message": "Cyber"
- },
- {
- "Time": "03/06/17 10:12:57 AM (510516777)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "C08938EE-8D58-42AE-B3A1-56B1C7C9A2F5"
- },
- {
- "Message": "Agreed that is a better approach! Israel best at that"
- },
- {
- "Time": "03/06/17 :: AM (510516783)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "373C5C08-1163-4E2C-B4AA-714A6C187AAE"
- },
- {
- "Message": "Not sure bg invited"
- },
- {
- "Time": "03/06/17 10:13:06 AM (510516786)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "8AB3F4EC-A575-47BD-A630-A84D646F474A"
- },
- {
- "Message": "Or me"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/06/17 10:13:31 AM (510516811)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "BAD192DD-E91E-4224-B58E-1FA76D88245D"
- },
- {
- "Message": "In all forms . Money surveillance, offense . It's at my house so I would know"
- },
- {
- "Sender": "__________________"
- },
- {
- "Time": "03/06/17 10:13:44 AM (510516824)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "AA748192-1E95-4A33-BF07-229F3B75268B"
- },
- {
- "Message": "Omg INVITE ME"
- },
- {
- "Time": "03/06/17 10:14:37 AM (510516877)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "1DF41909-BEFE-4CO2-810E-5344F2DAA721"
- },
- {
- "Message": "Can try to invite bg depending on guest list etc - Larry told him he couldn't have contact w you so would have to manage that carefully"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/06/17 10:17:30 AM (510517050)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "D71DE6C6-DOAA-4DBE-9DD4-2FE37C3B347D"
- },
- {
- "Message": "Not a problem for me . I like bill . He gets more from me than I get from him. He should grow some balls and start to love"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/06/17 10:17:33 AM (510517053)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "D1022D4A-BCC9-47A3-8371-1E7A7899D327"
- },
- {
- "Message": "Live"
- },
- {
- "Sender": "___________________"
- },
- {
- "Time": "03/06/17 10:19:05 AM (510517145)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "CCOO5ADB-18ED-4AF2-ACFO-C11E4251D516"
- },
- {
- "Message": "Love and live both Well I have a few months to try to encourage him but it is sad for me to stand there and watch Larry boss him around. Not same bill I knew forever ago."
- },
- {
- "Sender": "-__________________"
- },
- {
- "Time": "03/06/17 10:19:22 AM (510517162)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "1A8E5857-EEF6-4280-9AD6-052C3348E27F"
- },
- {
- "Message": "I have an idea What if I bring Larry to Paris."
- },
- {
- "Time": "03/06/17 10:19:27 AM (510517167)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "3DF856C1-0276-4B6A-88BB-47F705190F6D"
- },
- {
- "Message": "Olive branch"
- },
- {
- "Time": "03/06/17 10:19:37 AM (510517177)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "5B4F06BC-712E-4B3D-AB75-27047DA90917"
- },
- {
- "Message": "And snuggles"
- },
- {
- "Time": "03/06/17 10:20:11 AM (510517211)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "2B485782-46AB-44CB-906E-611B25AC94C6"
- },
- {
- "Message": "Think about it. Would be a hard sell but maybe he or someone close to bg and me could go and hold hands"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/06/17 10:36:17 AM (510518177)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "80D2815C-BFD8-4476-AEC9-E46AD946B132"
- },
- {
- "Message": "no, i don't trust him"
- },
- {
- "Time": "03/06/17 12:26:37 PM (510524797)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "AD43C6A9-EA6D-4659-97EC-82FCB8348239"
- },
- {
- "Message": "Me neither but he is the only way to bg right now"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/06/17 12:27:24 PM (510524844)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "1C5199A1-6905-41B7-8A8F-3C17CFECF14A"
- },
- {
- "Message": "then i have no interest"
- },
- {
- "Sender": "___________________"
- },
- {
- "Time": "03/06/17 12:40:51 PM (510525651)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "1786098A-6E35-4A89-873C-9910B14733A9"
- },
- {
- "Message": "Fair enough Need to see how far I can get in terms of a sanity and reality check for bg"
- },
- {
- "Time": "03/09/17 04:08:42 PM (510797322)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "BC22180C-DFE5-49A5-9B0B-F6521345B028"
- },
- {
- "Message": "How are you"
- },
- {
- "Time": "03/09/17 04:26:12 PM (510798372)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "AE5DE9A9-ECFA-4F06-B160-194D5EE43EFD"
- },
- {
- "Message": "Jack Ma got in touch w me. Very interesting opportunity. Let's talk next week. November time frame"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/09/17 05:14:04 PM (510801244)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "6AA294C1-39DE-47F9-97F5-3F99852389EB"
- },
- {
- "Message": "Ok"
- },
- {
- "Time": "03/11/17 10:18:39 AM (510949119)"
- },
- {
- "Flags": "1126401"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "0814B35E-2F42-469E-8134-1FBA0B8AC516"
- },
- {
- "Message": "http://www.theverge.com/2017/3/10/14880094/deepmind-health-uk-data-blockchain-audit"
- },
- {
- "Sender": "________________"
- },
- {
- "Time": "03/15/17 07:31:40 AM (511281100)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "78D02A64-531B-4DD2-BA52-FDC44996B2F3"
- },
- {
- "Message": "Are you in NYC 23/24?"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/15/17 07:31:47 AM (511281107)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "2ED14B8C-3AFA-4227-932F-99FFED040C83"
- },
- {
- "Message": "unlikely"
- },
- {
- "Sender": "__________________"
- },
- {
- "Time": "03/15/17 07:33:09 AM (511281189)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "24260EB3-6DOE-40E5-849F-AFBA62D02E22"
- },
- {
- "Message": "Any news / anything interesting BG in D.C. 20/21"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/15/17 07:33:40 AM (511281220)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "7DBCA855-1B53-49C9-A773-0CDOCFF1F006"
- },
- {
- "Message": "he should meet with torn barrack, if he wants traction"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/15/17 07:34:17 AM (511281257)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "2A978A2E-91DE-44F9-937B-4AAEBAD5DED6"
- },
- {
- "Message": "what happened to the jack ma deal"
- },
- {
- "Time": "03/15/17 07:35:39 AM (511281339)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "39C3350D-9B7B-4417-8110-5B454D268F54"
- },
- {
- "Message": "I have told him that. He believes his team are better connected and that Jared and ivanka are his interlocutors"
- },
- {
- "Sender": "__________________"
- },
- {
- "Time": "03/15/17 07:38:13 AM (511281493)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "E78FBE7F-3FA9-4711-B8B2-764DFEA861BE"
- },
- {
- "Message": "Jack wants me to help arianna huffington - he invested in her company thrive (so did Bezos) Her company does half corporate wellness and half ecommerce but she hasn't built out ecommerce Jack believes there is big opportunity for what he calls a \"category\" in the wellbeing ecommerce space. He says I have tech skills and doctor skills and wellness sense to help her build that part of the business - basically a JV w Alibaba. Bezos is hoping for the same thing"
- },
- {
- "Sender": "__________________"
- },
- {
- "Time": "03/15/17 07:38:42 AM (511281522)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "B3EBE449-473B-4F9C-88E0-6760E16AADOA"
- },
- {
- "Message": "Alibaba and Amazon are biggest marketplaces and super interesting opportunity both commercially and intellectually"
- },
- {
- "Sender": "e:jeeitunes@gmail.com"
- },
- {
- "Time": "03/15/17 07:38:45 AM (511281525)"
- },
- {
- "Flags": "1085445"
- },
- {
- "Is Read": "No"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "F644D75E-CE28-4C0E-BOB3-AD33BBDOA6C7"
- },
- {
- "Message": "not my thing , i can add nothing"
- },
- {
- "Time": "03/15/17 07:39:02 AM (511281542)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "E1472690-0321-453F-8AAE-325909D49FAA"
- },
- {
- "Message": "Bezos wants build out \"local\" and link to licensed docs"
- },
- {
- "Time": "03/15/17 07:39:13 AM (511281553)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "97E248C9-9151-4DBO-A455-E8E9B67C6B8B"
- },
- {
- "Message": "(Eventually robot services)"
- },
- {
- "Time": "03/15/17 07:39:32 AM (511281572)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "705499FD-18AA-4AE5-A58B-7D1986C767E1"
- },
- {
- "Message": "It is a real and credible opportunity for sure."
- },
- {
- "Time": "03/15/17 07:39:45 AM (511281585)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "1B714857-FD5A-4E0E-BC1A-51D0F5D03E94"
- },
- {
- "Message": "Chief Medical Officer"
- },
- {
- "Time": "03/15/17 07:40:03 AM (511281603)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "54FF12AD-0257-4596-87AC-4F28732834D3"
- },
- {
- "Message": "Equity/salary and the boss of the JVs w Alibaba and Amazon Sender_________________"
- },
- {
- "Time": "03/15/17 07:40:32 AM (511281632)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "0A145244-705B-4EE5-A2C2-7771D3C13313"
- },
- {
- "Message": "Jack says too hard to build these innovations from within Alibaba and has to come from JV"
- },
- {
- "Time": "03/15/17 07:40:43 AM (511281643)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "50ED469A-0F7B-44DA-B052-AF7B2277D64B"
- },
- {
- "Message": "Nice that he thought of me Sender"
- },
- {
- "Time": "03/15/17 07:41:52 AM (511281712)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "707DE7AD-4A53-4233-ADFB-EAB005E7A526"
- },
- {
- "Message": "BG world is so backwards. Makes me sad. Wish there was a better space but for now will keep working on the bgc3 and next steps."
- },
- {
- "Time": "03/15/17 07:42:11 AM (511281731)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "816AA228-62FC-468F-BDAF-BC95A86F060D"
- },
- {
- "Message": "Thanks for your support always"
- },
- {
- "Time": "03/15/17 07:43:20 AM (511281800)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "A48F0315-C7CF-493F-A77D-89331B073A45"
- },
- {
- "Message": "Should I try to join Boris over time? He's venturing into brain space"
- },
- {
- "Sender": "___________________"
- },
- {
- "Time": "03/15/17 07:43:25 AM (511281805)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "FF5E48E1-6F78-41EB-B99A-CC8D6D72F975"
- },
- {
- "Message": "Pretty deeply"
- },
- {
- "Time": "03/15/17 07:43:43 AM (511281823)"
- },
- {
- "Flags": "1060865"
- },
- {
- "Is Read": "Yes"
- },
- {
- "Is Invitation": "No"
- },
- {
- "GUID": "A4ABlAB3-8346-42A8-8C71-209DE8ED5389"
- },
- {
- "Message": "Not sure he wants more ppl or thinks I add value"
- }
- ],
- "Source Entry": "H\\Macintosh HD\\root\\Users\\jee\\Library\\Messages\\Archive\\2017-03-15\\ E- 2017-02-25 at 06.53.05.ichat",
- "Service": "iMessage",
- "Start Time": "02/25/17 03:53:05 AM (509716385)",
- "End Time": "03/15/17 07:43:43 AM (511281823)",
- "Last Message ID": "2243",
- "Chat Room": "",
- "Participants": "jee, E+",
- "Presentity IDs": "e:jeeitunes@gmail.com,"
- }
|