texts
sequence
meta
dict
scores
sequence
avg_score
float64
0
0.36
num_sents
int64
5
5
tagged_pii_results
list
[ "Timing, it would appear, sometimes gets in the way of progress for Apple. ", "The company experienced failure with its personal digital assistant Newton in the early 1990s, only to find overwhelming success with the iPad in 2010.", "\n\nAnd now, recently unearthed concept art by Hartmut Esslinger — whose design firm frog helped conceptualize many successful Apple products — proves this observation true again. ", "It appears that Apple was dreaming of an iPhone way back in 1983 — meaning it took 24 years for the company to figure out the right timing for its flagship mobile device.", "\n\nOSXDaily, an Apple-focused blog, shared the photos from the concept art from Esslinger’s 1983 iPhone, which were published in an article on fudder.de, a German news site.", "\n\nThe concept art for the ’83 iPhone actually looks like an iPad crossed with a car phone. ", "It includes a stylus and shows off Apple’s vision for electronic banking, with a hand signing an electronic check.", "\n\nSo given that Apple first thought of the iPhone in 1980s and the iPad in the 1990s, its next breakthrough device has likely long been in the pipeline as well. ", "The question is, how long will we have to wait to actually hold it?" ]
{ "pile_set_name": "Pile-CC" }
[ 0.013513513513513514, 0.006622516556291391, 0.0056179775280898875, 0.0058823529411764705, 0.011627906976744186, 0.01098901098901099, 0.008771929824561403, 0.018633540372670808, 0 ]
0.009073
5
[ { "analysis_explanation": null, "end": 167, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 152 }, { "analysis_explanation": null, "end": 224, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220 }, { "analysis_explanation": null, "end": 286, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269 }, { "analysis_explanation": null, "end": 466, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 462 }, { "analysis_explanation": null, "end": 493, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 485 }, { "analysis_explanation": null, "end": 666, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 662 }, { "analysis_explanation": null, "end": 732, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 726 }, { "analysis_explanation": null, "end": 1004, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 999 }, { "analysis_explanation": null, "end": 1030, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1021 }, { "analysis_explanation": null, "end": 722, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 713 } ]
[ "Q:\n\nTYPO3 sys_language_mode = content_fallback not working as expected\n\nHere is a little follow-up question to this question of mine: Language switching in Typo3 v6.", "\nThis is my current setup:\nconfig {\n tx_realurl_enable = 1\n simulateStaticDocuments = 0\n sys_language_uid = 1\n language = de\n locale_all = de_DE\n htmlTag_langKey = de\n linkVars := addToList(L)\n uniqueLinkVars = 1\n sys_language_mode = content_fallback\n sys_language_overlay = 1\n}\n\n[globalVar = GP:L = 1]\nconfig.sys_language_uid = 1\nconfig.language = de\nconfig.locale_all = de_DE\nconfig.htmlTag_langKey = de\n[global]\n\n[globalVar = GP:L = 2]\nconfig.sys_language_uid = 2\nconfig.language = en\nconfig.locale_all = en_EN\nconfig.htmlTag_langKey = en\n[global]\n\nIn the backend, German has the ID 1 and English the ID 2. ", "Up to now, everything worked fine. ", "But now there is a site where some German content has no direct translated element in the English content. ", "In other words: I need an element only to appear on the German version.", "\nUp to now, the German content sat in the \"default\" column and the English content was added in the \"english\" column. ", "So I thought all I have to do is add a german translation to the site and add the element there. ", "But it is not working as expected:\n\nThis is the content I added. ", "The left column (marked green) is the default content. ", "The middle column (pink) is the German content. ", "The right column (blue) is the English content.", "\nBut in the frontend, on the English site the blue (English) content is show and on the German site, the green (default) content is shown, not the pink (German) content, as I would have expected and desired.", "\nWhere did I go wrong?", "\nI already confirmed that L=1 by messing around with the htmlTag_langKey. ", "It definitely is set by the first conditional block. ", "So why is sys_language_uid = not displaying the German content. ", "Is any additional configuration needed?", "\n\nA:\n\nYou are adding a german translation to a german text. ", "This can't go well.", "\nIf your main language is german, it should stay the default language. ", "You can rename the label via TSCONFIG in the Backend for editor's convenience. ", "\nmod.", "SHARED{\n defaultLanguageFlag = de.gif\n defaultLanguageLabel = Deutsch\n}\n\nThe default language has the ID 0, so you can call index.php without a language parameter. ", "So you just have to add the foreign languages on page 0, default is already there\nI think you will run into problems if you try to force another localisation to be the default language, so you might want to go back to 2 languages quickly. ", "\nBy the way, I find the most logical setup for TYPO3 language fallback to be:\nIn TS:\nconfig.sys_language_overlay =1\n// don't set sys_language_mode\n\nIn TSCONFIG:\nmod.web_layout.defLangBinding = 1\n\nwhich will bind each article with it's translations\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0.0016129032258064516, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0058823529411764705, 0, 0.008032128514056224 ]
0.000621
5
[ { "analysis_explanation": null, "end": 250, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 223 }, { "analysis_explanation": null, "end": 306, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 296 }, { "analysis_explanation": null, "end": 749, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 743 }, { "analysis_explanation": null, "end": 861, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 855 }, { "analysis_explanation": null, "end": 989, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 983 }, { "analysis_explanation": null, "end": 1020, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1014 }, { "analysis_explanation": null, "end": 1161, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1155 }, { "analysis_explanation": null, "end": 1371, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1365 }, { "analysis_explanation": null, "end": 1464, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1457 }, { "analysis_explanation": null, "end": 1522, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1516 }, { "analysis_explanation": null, "end": 1587, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1581 }, { "analysis_explanation": null, "end": 1838, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1832 }, { "analysis_explanation": null, "end": 1915, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1909 }, { "analysis_explanation": null, "end": 1939, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1933 }, { "analysis_explanation": null, "end": 1997, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1991 }, { "analysis_explanation": null, "end": 2195, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2188 }, { "analysis_explanation": null, "end": 487, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 478 }, { "analysis_explanation": null, "end": 515, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 506 }, { "analysis_explanation": null, "end": 562, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 553 }, { "analysis_explanation": null, "end": 623, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 614 }, { "analysis_explanation": null, "end": 651, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 642 }, { "analysis_explanation": null, "end": 698, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 689 }, { "analysis_explanation": null, "end": 2159, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2154 }, { "analysis_explanation": null, "end": 2258, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2250 }, { "analysis_explanation": null, "end": 2622, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2613 }, { "analysis_explanation": null, "end": 2706, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2697 } ]
[ "AutoGuide.com\n\nAudi is previewing more than its design future at the 2015 Geneva Motor Show.", "\n\nThe German automaker has spilled the details on its new Prologue Avant concept, which will make its official debut in Switzerland early next week. ", "Featuring a high-performance hybrid powertrain with 455 hp and 553 lb-ft of torque, Audi claims that the technology is “close to series production” and hints at the potential of what is already powering current Audi models. ", "The plug-in hybrid drive actually comes from the existing Q7 e-tron quattro, albeit with more power, using a 3.0-liter diesel engine with an electric motor to blast the concept to 62 MPH (100 km/h) in 5.1 seconds. ", "The concept also has an all-electric range of 33.6 miles.", "\n\nThe Prologue Avant concept measures in at 16.8 feet long and 6.5 feet wide while riding on a 10-foot wheelbase. ", "All in all, it’s a little larger than the two-door Prologue concept that debuted at the 2014 LA Auto Show but sports four individual seats, four doors and a large tailgate.", "\n\n2015 Geneva Motor Show Preview\n\nAudi is also previewing future technologies inside the concept with a full width front dashboard that is designed as a display surface that integrates three touch displays. ", "Aluminum frames the two driver-faced displays flanking the steering wheel with the left display controlling the assist functions and the right display for multimedia management. ", "Even in the rear, Audi is incorporating flexible OLED displays that can bend to adapt its angle to the rear seat backrests’ angle of inclination.", "\n\n“With our show car for Geneva, we now translate the design language of the Audi prologue into a new, dynamic and stretched form. ", "We are merging it with a concept of high variability,” Audi product development boss Ulrich Hackenberg said. “", "The Audi prologue Avant is progressive, emotion-filled and versatile, it reflects Audi’s technological competence and quality claim perfectly.”", "\n\nDiscuss this story at our Audi forum" ]
{ "pile_set_name": "OpenWebText2" }
[ 0.010869565217391304, 0.006711409395973154, 0.008928571428571428, 0.009345794392523364, 0, 0.008771929824561403, 0.005813953488372093, 0, 0, 0.006896551724137931, 0.007633587786259542, 0.01818181818181818, 0.02097902097902098, 0.02631578947368421 ]
0.009318
5
[ { "analysis_explanation": null, "end": 73, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69 }, { "analysis_explanation": null, "end": 103, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97 }, { "analysis_explanation": null, "end": 222, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 211 }, { "analysis_explanation": null, "end": 238, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 223 }, { "analysis_explanation": null, "end": 676, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 665 }, { "analysis_explanation": null, "end": 940, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 936 }, { "analysis_explanation": null, "end": 1025, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1021 }, { "analysis_explanation": null, "end": 1579, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1573 }, { "analysis_explanation": null, "end": 1781, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1764 }, { "analysis_explanation": null, "end": 13, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 0 }, { "analysis_explanation": null, "end": 524, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 522 } ]
[ "Running a successful Education Technology Project\n\nThat well-known expression applies as much to running an ed tech project successfully as to anything else. ", "In other words, for an ed tech project to succeed, you need to think about more than just the technology, or even the pedagogy. ", "You have to think about management as well.", "\n\nNext week at the Reform Symposium Conference I’ll be giving a presentation on this very topic. ", "How’s that for a coincidence?! ", "I’ll be looking at 14 factors that ought to be considered if a major project is to succeed.", "\n\nGet ready to be inspired! ", "Now? ", "Now! ", "by James Vauhn http://www.flickr.com/photos/x-ray_delta_one/" ]
{ "pile_set_name": "Pile-CC" }
[ 0.012658227848101266, 0, 0, 0, 0, 0, 0, 0, 0, 0.03333333333333333 ]
0.004599
5
[ { "analysis_explanation": null, "end": 339, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 330 }, { "analysis_explanation": null, "end": 598, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 587 }, { "analysis_explanation": null, "end": 644, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 599 } ]
[ "The response to stress in Brazilian children and adolescents with attention deficit hyperactivity disorder.", "\nThis study assessed the function of the hypothalamic-pituitary-adrenal (HPA) axis, during response to stress, through the measurement of salivary cortisol in 38 children with attention deficit hyperactivity disorder (ADHD) and its subtypes, who were matched to 38 healthy control subjects. ", "These measures were made at four time intervals: 15 min before exposing the subjects to a stressor - the Continuous Performance Test (CPT) - and 20, 40, and 60 min after such exposure. ", "The baseline cortisol levels were statistically similar in both groups. ", "The mean values of cortisol at the four time intervals were not statistically different between the three subtypes of ADHD (inattentive, hyperactive-impulsive and combined); thus, the ADHD group was treated as a single group. ", "Following the stressor test, the ADHD group had significantly higher levels of salivary cortisol than the control group at time intervals of 20 and 40 min, whereas in this latter group exposure to the CPT did not induce an increase of cortisol. ", "These results suggest that the increased cortisol levels in the ADHD group could be due to the lack of comorbidities. ", "In addition, these patients, when facing a computerized test, might have responded with a motivational pathway with an increase of cortisol." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0.003436426116838488, 0.005405405405405406, 0, 0, 0.004081632653061225, 0, 0 ]
0.001615
5
[ { "analysis_explanation": null, "end": 35, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26 }, { "analysis_explanation": null, "end": 453, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 447 }, { "analysis_explanation": null, "end": 549, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 547 }, { "analysis_explanation": null, "end": 561, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 555 }, { "analysis_explanation": null, "end": 1035, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1022 } ]
[ "Cardiovascular magnetic resonance: myocardial perfusion.", "\nThere is growing evidence that the noninvasive assessment of myocardial perfusion with cardiovascular magnetic resonance is a valid and accurate tool for the assessment of ischemic heart disease and its introduction into routine clinical evaluation of patients is rapidly expected. ", "Magnetic resonance measurements allow the evaluation of reversible and irreversible myocardial ischemia, the assessment of acute myocardial infarction, as well as the recognition and detection of viable myocardium. ", "Magnetic resonance perfusion measurements are mainly performed with T1-shortening contrast agents such as gadolinium-DTPA either by visual analysis or based on the analyses of signal intensity time curves. ", "For the detection of myocardial ischemia the first pass kinetics of a gadolinium-DTPA bolus and for the detection of myocardial necrosis and the definition of viable myocardium steady state distribution kinetics are assessed. ", "Quantitative analysis of myocardial perfusion can be performed but requires complex modeling due to the characteristics of gadolinium-DTPA. ", "Thus, semi-quantitative parameters are preferred. ", "There is accumulating evidence in the literature that magnetic resonance imaging can be used for the detection of coronary artery stenosis with high diagnostic accuracy both with semi-quantitative or visual analysis. ", "Myocardial infarction can be reliably detected and the infarcted area determined. ", "Non-reperfused infarcted myocardium can be differentiated from reperfused myocardium by different enhancement patterns that correlates with viability. ", "Cardiac magnetic resonance is a promising technique that can combine different functional studies during one examination, such as the assessment of wall motion and perfusion at rest and stress. ", "With further improvements in analysis software magnetic resonance perfusion measurement may rapidly become a routine tool for the assessment of patients with coronary artery disease." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.005154639175257732, 0 ]
0.00043
5
[ { "analysis_explanation": null, "end": 624, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 622 } ]
[ "Q:\n\nWhy Kalki Avatar will come at the end of the yuga not in between like all other Avatars of Vishnu?", "\n\nAs there are 4 Yugas. ", "\nHow many Avatars in each yuga? ", "Why different in number of Avatars?", "\nWhy only one avatar in Kali Yug? ", "\nLike lord Rama and lord Krishna have come in between of those Yugas. ", "But why Kalki Avatar will come at the end?", "\nIt is said that whenever Papa increases then an Avatar comes to restore the Dharma. ", "And now also in Kali Yug many Papa are done by many Ravana and Kansas from each family. ", "In Ramayan there was only one Sita was abducted by one Ravan, in Kali Yug also many Sita are there who are abducted by many Ravans.", "\nso Is it not the time for Vishnu to take an Avatar to restore the Dharma? ", "\nIf Kalki Avatar comes at the end of Kali Yug and start of Satya Yug and no people of Kali Yug will have experience with this Avatar, then can we say Kalki is not an Avatar of Kali Yug but of Satya Yug And no Avatars in Kaliyuga?", "\n\nA:\n\nHow many Avatars in each yuga? ", "Why different in number of Avatars?", "\nAs Lord's incarnations are infinite, so hard to say but if you believe only in 24 or 10 incarnations then this can be answered. ", "Number of Avataras depends on incidents, in previous Yugas, Dharma was more but mighter Asuras were also more.", "\nThis is partially answered in What is chronological timeline (in Manvantara and Mahayuga) of Lord Vishnu incarnations?", "\nWhy only one avatar in Kali Yug?", "\nBuddha avatar already happened in Kali Yuga and Kalki is yet to be happened.", "\nLike lord Rama and lord Krishna have come in between of those Yugas. ", "But why Kalki Avatar will come at the end?", "\nWrong, Lord Krishna incarnated at the end of 28th Dwapara Yuga or in the conjunction time of Dwapara and Kali Yuga to be more correct.", "\nKaliyuga started from king Parikshit who was next king after Yudhisthira. - ", "as per Bhagvata Purana\nSo Is it not the time for Vishnu to take an Avatar to restore the Dharma?", "\nOpinion based question. ", "May be the pot of sins yet to be filled. ", "\nThis is partially answered in What is the apex of Adharma and When will the Kalki avatar be born?.", "\nIf Kalki Avatar comes at the end of Kali Yug and start of Satya Yug and no people of Kali Yug will have experience with this Avatar, then can we say Kalki is not an Avatar of Kali Yug but of Satya Yug And no Avatars in Kaliyuga?", "\nOne avatar (Budhdha) has already incarnated. ", "And if you believe in this theory then you should consider Lord Krishna as an avatara of Kali Yuga.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.00980392156862745, 0, 0.03125, 0.02857142857142857, 0.029411764705882353, 0.014285714285714285, 0.023809523809523808, 0.023529411764705882, 0.011363636363636364, 0.015267175572519083, 0.02666666666666667, 0.039301310043668124, 0, 0.02857142857142857, 0, 0.01818181818181818, 0.008403361344537815, 0.030303030303030304, 0.025974025974025976, 0.014285714285714285, 0.023809523809523808, 0.022222222222222223, 0, 0.03125, 0, 0, 0.010101010101010102, 0.039301310043668124, 0.021739130434782608, 0.020202020202020204, 0 ]
0.017665
5
[ { "analysis_explanation": null, "end": 20, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8 }, { "analysis_explanation": null, "end": 223, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 215 }, { "analysis_explanation": null, "end": 239, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 235 }, { "analysis_explanation": null, "end": 256, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249 }, { "analysis_explanation": null, "end": 292, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 287 }, { "analysis_explanation": null, "end": 314, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 302 }, { "analysis_explanation": null, "end": 445, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 437 }, { "analysis_explanation": null, "end": 479, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 473 }, { "analysis_explanation": null, "end": 490, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 484 }, { "analysis_explanation": null, "end": 519, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 512 }, { "analysis_explanation": null, "end": 569, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 560 }, { "analysis_explanation": null, "end": 582, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 574 }, { "analysis_explanation": null, "end": 639, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 633 }, { "analysis_explanation": null, "end": 730, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 718 }, { "analysis_explanation": null, "end": 759, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 751 }, { "analysis_explanation": null, "end": 782, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 773 }, { "analysis_explanation": null, "end": 808, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 800 }, { "analysis_explanation": null, "end": 869, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 864 }, { "analysis_explanation": null, "end": 898, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 890 }, { "analysis_explanation": null, "end": 915, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 906 }, { "analysis_explanation": null, "end": 942, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 934 }, { "analysis_explanation": null, "end": 1329, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1319 }, { "analysis_explanation": null, "end": 1342, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1334 }, { "analysis_explanation": null, "end": 1358, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1352 }, { "analysis_explanation": null, "end": 1404, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1396 }, { "analysis_explanation": null, "end": 1412, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1406 }, { "analysis_explanation": null, "end": 1449, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1440 }, { "analysis_explanation": null, "end": 1459, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1454 }, { "analysis_explanation": null, "end": 1497, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1493 }, { "analysis_explanation": null, "end": 1514, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1507 }, { "analysis_explanation": null, "end": 1550, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1545 }, { "analysis_explanation": null, "end": 1572, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1560 }, { "analysis_explanation": null, "end": 1614, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1607 }, { "analysis_explanation": null, "end": 1644, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1629 }, { "analysis_explanation": null, "end": 1709, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1700 }, { "analysis_explanation": null, "end": 1738, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1730 }, { "analysis_explanation": null, "end": 1766, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1757 }, { "analysis_explanation": null, "end": 1802, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1791 }, { "analysis_explanation": null, "end": 1930, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1927 }, { "analysis_explanation": null, "end": 2025, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2018 }, { "analysis_explanation": null, "end": 2082, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2070 }, { "analysis_explanation": null, "end": 2111, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2103 }, { "analysis_explanation": null, "end": 2134, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2125 }, { "analysis_explanation": null, "end": 2160, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2152 }, { "analysis_explanation": null, "end": 2221, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2216 }, { "analysis_explanation": null, "end": 2250, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2242 }, { "analysis_explanation": null, "end": 2267, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2258 }, { "analysis_explanation": null, "end": 2294, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2286 }, { "analysis_explanation": null, "end": 2412, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2405 }, { "analysis_explanation": null, "end": 2439, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2430 } ]
[ "Back to the Satoshi Nakamoto Bitcoin affair Rory Cellan-Jones\n\nTechnology correspondent\n\n@BBCRoryCJon Twitter Published duration 20 June 2016\n\nimage caption Craig Wright failed to deliver on his promise of \"extraordinary proof\" that we was Bitcoin's inventor\n\nAt the beginning of May, it seemed that a great mystery had been solved.", "\n\nAn Australian academic and entrepreneur, Craig Wright, identified himself as Satoshi Nakamoto, the creator of the crypto-currency Bitcoin.", "\n\nBut, over the following days, the proof he offered was torn apart, not just by angry people on the Bitcoin forums but by a number of authorities on cryptography.", "\n\nAfter first promising more evidence, Dr Wright then wrote a blog saying he did not have the strength to continue and retired from public view.", "\n\nNakamoto's true identity appeared as opaque as ever - the Australian had not proved his case, but nor had it been disproved.", "\n\nNow, though, we have a whole new collection of evidence, in the form of a 35,000-word article about the Nakamoto affair in the London Review of Books\n\nThe author is the journalist and novelist Andrew O'Hagan, whose work includes a fascinating and hilarious account of his time trying to be the ghost writer of Julian Assange's autobiography.", "\n\nIt seems Mr O'Hagan has an appetite for driven and difficult high-performing geeky types, because he spent six months with Craig Wright.", "\n\nimage copyright Getty Images image caption The value of Bitcoin has strengthened against \"real\" currencies since Dr Wright disappeared from view\n\nThat meant he was there right through the period when Dr Wright was first outed as a potential Nakamoto last December, then dismissed as a fraud, and later through his own \"self-outing\" and the aftermath.", "\n\nIt is a gripping and beautifully written tale, more a short novel than a magazine article.", "\n\nWe learn all sorts of new details about Dr Wright's career, his claims about his involvement in the creation of Bitcoin, and his reasons for choosing to identify himself as Nakamoto seven years after the currency was created.", "\n\nTo me, the key revelation is about this motivation.", "\n\nHe had told the BBC that he had not wanted to come out into the spotlight but needed to dispel damaging rumours affecting his family, friends and colleagues.", "\n\nBut O'Hagan shows us something rather different - a man under intense pressure from business associates who stood to profit from him if he could be shown to be Nakamoto.", "\n\nThese people had signed a deal with Dr Wright in June last year, which saw them pay off his debts, including legal fees incurred in a battle with the Australian tax authorities.", "\n\nThen, they had a plan for him.", "\n\n\"They would bring Wright to London and set up a research and development centre for him, with around 30 staff working under him,\" O'Hagan writes.", "\n\n\"They would complete the work on his inventions and patent applications - he appeared to have hundreds of them - and the whole lot would be sold as the work of Satoshi Nakamoto, who would be unmasked as part of the project.\"", "\n\nThe intellectual property, which he had already created and would now augment, would be worth as much as $1bn (£700m) with the Nakamoto name attached, so they would all end up very rich indeed.", "\n\nThat may sound fanciful, but Dr Wright's research was into the block chain, the technology underlying Bitcoin, and the world's big banks are rushing to invest in exploring its potential.", "\n\nNow, they may have had dollar signs in their eyes, but Dr Wright's backers certainly seemed to believe he was Nakamoto, and O'Hagan outlines some new evidence that supports that view.", "\n\nHe spends days talking to Dr Wright about his relationship with Dave Kleiman, an American who died in 2013 and is thought by many to have played a big part in the creation of Bitcoin.", "\n\nWith some reluctance, Dr Wright eventually supplies some emails that seem to suggest the two worked together on the 2008 Nakamoto white paper explaining the idea of the \"peer-to-peer electronic cash system\".", "\n\nimage caption Dr Wright gave interviews to only the BBC, the Economist and GQ magazine, in addition to speaking to Mr O'Hagan\n\nO'Hagan goes to meet Dr Wright's ex-wife, who stands up a story about the two men meeting at a conference in Orlando in 2009 - because she came along too.", "\n\nShe gives a detailed account of their meeting and the way Dr Wright hero-worshipped Mr Kleiman, which rings true coming from someone who has no reason to lie.", "\n\nThere is a document about a trust fund set up by Dr Wright to hold some bitcoins for Mr Kleiman, along with a promise not to reveal the identity behind Nakamoto's email address.", "\n\nAnd there are minutes of a meeting between the Australian tax authorities and Dr Wright's business, where his advisor appears to suggest that he possessed 1.1m bitcoins - worth nearly £600m at the current exchange rate.", "\n\nThere is also an intriguing tale about a meeting between Dr Wright and Ross Ulbricht, the man now serving a life sentence in the United States for setting up the Silk Road, the bitcoin-fuelled drug and gun trading site.", "\n\nAnd, then, we get a behind-the-scenes account of what happened when this brilliant, difficult, angry man - described by one colleague as \"like Steve Jobs but only worse\" - went public, in separate meetings with the BBC, the Economist and GQ, and the days afterwards, when everything fell apart.", "\n\nAs someone who played a part in that saga - and still asks himself whether he should have asked better questions of Dr Wright - I was just a little disappointed with this climax to the story.", "\n\nThe author seems more removed from the action at this point than in the months before the denouement.", "\n\nHere is an example: on the Wednesday after the big reveal on Monday 2 May, Dr Wright agreed to undertake a much simpler proof of his identity than he had offered before.", "\n\nHe asked me, and the two Bitcoin experts who had verified his story - Jon Matonis and Gavin Andresen - to send a small amount of bitcoins to an address known to be linked to Nakamoto.", "\n\nHe would then send it back, proving his claims to the identity.", "\n\nimage copyright Blockchain.info image caption Others have also transferred small amounts of bitcoins to Nakamoto's address without them being returned\n\nThe money was sent but never returned.", "\n\nWhat was going on in the hours between us being invited to take part in this proof and the moment when we were told it was \"on hold\"?", "\n\nThe only reason we get for Dr Wright's bizarre behaviour , which sabotaged everything he had worked for, comes in the form of an email to O'Hagan.", "\n\nHe sends the writer a news story that suggests the father of Bitcoin might be arrested for helping to facilitate terrorism by allowing people to buy weapons anonymously.", "\n\nDr Wright, it seems, decided he would prefer to be called a fraud than risk spending years in jail.", "\n\nThis seems unconvincing.", "\n\nAfter all, he had been planning to out himself for months - albeit under pressure from his backers - so why this sudden fear of the consequences now?", "\n\nThe other question left hanging is why the backers who had invested so much in their Nakamoto had not demanded more proof from him at an earlier stage.", "\n\nIn the end, we are left uncertain about Dr Wright's true role in the creation of Bitcoin.", "\n\nIt seems very likely he was involved, perhaps as part of a team that included Dave Kleiman and Hal Finney, the recipient of the first transaction with the currency.", "\n\nHe may have exaggerated his contribution, he may have constructed a very elaborate fantasy - or this fragile personality may have lost his nerve as he realised that his life would never be the same again once he was Craig \"Nakamoto\" Wright.", "\n\nIf you are expecting O'Hagan to reveal the truth behind Bitcoin's creation myth, you will be left disappointed.", "\n\nBut if you enjoy a ripping yarn - with some piercing insights into geek culture - then you will find the Satoshi Affair an engrossing way to spend a couple of hours." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.018072289156626505, 0.014285714285714285, 0, 0.006944444444444444, 0.007936507936507936, 0.011661807580174927, 0.014492753623188406, 0.005681818181818182, 0, 0.004405286343612335, 0, 0.006289308176100629, 0.005847953216374269, 0.00558659217877095, 0, 0.013605442176870748, 0.004424778761061947, 0, 0.010638297872340425, 0.010810810810810811, 0.010810810810810811, 0.009569377990430622, 0.02120141342756184, 0.0125, 0.0111731843575419, 0.004524886877828055, 0.00904977375565611, 0.010135135135135136, 0.0051813471502590676, 0, 0.005847953216374269, 0.005405405405405406, 0, 0, 0, 0.013513513513513514, 0, 0.009900990099009901, 0, 0, 0, 0.01098901098901099, 0.012048192771084338, 0.004132231404958678, 0.017699115044247787, 0 ]
0.006834
5
[ { "analysis_explanation": null, "end": 61, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44 }, { "analysis_explanation": null, "end": 141, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 129 }, { "analysis_explanation": null, "end": 169, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 157 }, { "analysis_explanation": null, "end": 283, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263 }, { "analysis_explanation": null, "end": 346, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 336 }, { "analysis_explanation": null, "end": 386, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 374 }, { "analysis_explanation": null, "end": 426, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 410 }, { "analysis_explanation": null, "end": 500, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 482 }, { "analysis_explanation": null, "end": 680, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 674 }, { "analysis_explanation": null, "end": 785, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 777 }, { "analysis_explanation": null, "end": 845, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 835 }, { "analysis_explanation": null, "end": 1014, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1006 }, { "analysis_explanation": null, "end": 1109, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1095 }, { "analysis_explanation": null, "end": 1228, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1212 }, { "analysis_explanation": null, "end": 1263, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1256 }, { "analysis_explanation": null, "end": 1361, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1351 }, { "analysis_explanation": null, "end": 1379, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1367 }, { "analysis_explanation": null, "end": 1503, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1497 }, { "analysis_explanation": null, "end": 1590, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1584 }, { "analysis_explanation": null, "end": 1630, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1622 }, { "analysis_explanation": null, "end": 1644, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1631 }, { "analysis_explanation": null, "end": 1872, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1866 }, { "analysis_explanation": null, "end": 2004, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1996 }, { "analysis_explanation": null, "end": 2016, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2005 }, { "analysis_explanation": null, "end": 2270, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2263 }, { "analysis_explanation": null, "end": 2427, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2419 }, { "analysis_explanation": null, "end": 2474, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2468 }, { "analysis_explanation": null, "end": 2492, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2478 }, { "analysis_explanation": null, "end": 2589, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2579 }, { "analysis_explanation": null, "end": 2662, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2656 }, { "analysis_explanation": null, "end": 2672, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2666 }, { "analysis_explanation": null, "end": 2775, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2768 }, { "analysis_explanation": null, "end": 2960, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2944 }, { "analysis_explanation": null, "end": 3144, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3136 }, { "analysis_explanation": null, "end": 3241, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3235 }, { "analysis_explanation": null, "end": 3454, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3448 }, { "analysis_explanation": null, "end": 3508, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3500 }, { "analysis_explanation": null, "end": 3521, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3514 }, { "analysis_explanation": null, "end": 3588, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3584 }, { "analysis_explanation": null, "end": 3609, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3603 }, { "analysis_explanation": null, "end": 3650, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3638 }, { "analysis_explanation": null, "end": 3663, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3655 }, { "analysis_explanation": null, "end": 3680, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3676 }, { "analysis_explanation": null, "end": 3789, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3783 }, { "analysis_explanation": null, "end": 3878, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3874 }, { "analysis_explanation": null, "end": 3989, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3983 }, { "analysis_explanation": null, "end": 4100, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4084 }, { "analysis_explanation": null, "end": 4123, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4117 }, { "analysis_explanation": null, "end": 4209, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4202 }, { "analysis_explanation": null, "end": 4217, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4213 }, { "analysis_explanation": null, "end": 4315, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4309 }, { "analysis_explanation": null, "end": 4342, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4335 }, { "analysis_explanation": null, "end": 4465, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4459 }, { "analysis_explanation": null, "end": 4502, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4495 }, { "analysis_explanation": null, "end": 4567, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4559 }, { "analysis_explanation": null, "end": 4642, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4632 }, { "analysis_explanation": null, "end": 4672, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4666 }, { "analysis_explanation": null, "end": 4871, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4865 }, { "analysis_explanation": null, "end": 4889, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4876 }, { "analysis_explanation": null, "end": 4947, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4930 }, { "analysis_explanation": null, "end": 5178, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5168 }, { "analysis_explanation": null, "end": 5290, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5271 }, { "analysis_explanation": null, "end": 5445, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5439 }, { "analysis_explanation": null, "end": 5590, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5580 }, { "analysis_explanation": null, "end": 5650, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5637 }, { "analysis_explanation": null, "end": 5687, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5675 }, { "analysis_explanation": null, "end": 5698, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5692 }, { "analysis_explanation": null, "end": 5865, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5854 }, { "analysis_explanation": null, "end": 5884, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5870 }, { "analysis_explanation": null, "end": 5966, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5958 }, { "analysis_explanation": null, "end": 6063, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6048 }, { "analysis_explanation": null, "end": 6144, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6136 }, { "analysis_explanation": null, "end": 6253, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6244 }, { "analysis_explanation": null, "end": 6393, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6387 }, { "analysis_explanation": null, "end": 6502, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6495 }, { "analysis_explanation": null, "end": 6683, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6677 }, { "analysis_explanation": null, "end": 6764, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6759 }, { "analysis_explanation": null, "end": 6865, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6850 }, { "analysis_explanation": null, "end": 7042, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7034 }, { "analysis_explanation": null, "end": 7150, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7144 }, { "analysis_explanation": null, "end": 7281, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7269 }, { "analysis_explanation": null, "end": 7296, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7286 }, { "analysis_explanation": null, "end": 7577, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7572 }, { "analysis_explanation": null, "end": 7595, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7589 }, { "analysis_explanation": null, "end": 7625, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7618 }, { "analysis_explanation": null, "end": 7873, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7856 }, { "analysis_explanation": null, "end": 6061, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 6048 } ]
[ "Q:\n\nAlternate definition of singular homology.", "\n\nInstead of defining the spaces $\\Delta^n=\\{(x_0,...x_{n}) \\in \\mathbb R^{n+1}:\\Sigma_i x_i=1 \\ \\text{&} \\ x_m \\geq0\\ \\forall m\\}$ define $s\\Delta^n =\\{(x_0,...x_{n}) \\in \\mathbb R^{n+1}:\\Sigma_i x_i=1\\}$ with the face maps given by $d_i:(x_0,..x_n) \\mapsto (x_0,...x_{i-1},0,x_i...,x_n)$. Does this define an isomorphic version of homology? ", "As in if X is a space, do the two definitions coincide. ", "Not necessarily naturally.", "\nI've been struggling with this problem for over two weeks now. ", "I could elaborate on methods I have tried but none have been succesful so I don't see the point. ", "I really only need the result for open subsets of $\\mathbb R^n$ so make any assumptions you want about the space X. Thank you in advance!", "\n\nA:\n\nYes, this is naturally isomorphic to singular homology. ", " To prove it, first construct a sequence of retractions $r_n:s\\Delta^n\n\\to\\Delta^n$ which are compatible with the face maps. ", " For instance, $r_1$ will take the line $s\\Delta^1$ and contract the ends of it down to just the bounded interval $\\Delta^1$. Then $r_2$ will contract the plane $s\\Delta^2$ down to the triangle $\\Delta^2$, contracting each line bounding the triangle down to the edge of the triangle according to $r_1$. In general, having constructed $r_i$ for $i<n$, the existence of such an $r_n$ follows from the Tietze extension theorem (or more geometrically, from obstruction theory, if you triangulate $s\\Delta^n$ such that each of the faces are subcomplexes).", "\nThese maps $r_n$ will induce a map of chain complexes $r^*:C_*(X)\\to sC_*(X)$ where $C_*(X)$ is the ordinary singular chain complex and $sC_*(X)$ is the singular chain complex using $s\\Delta^n$ instead of $\\Delta^n$. There is also a map $i^*:sC_*(X)\\to C_*(X)$ given simply by restricting from $s\\Delta^n$ to $\\Delta^n$, and $i^*r^*=1$. To prove that $i^*$ induces isomorphisms on homology, it thus suffices to show that $r^*i^*:sC_*(X)\\to sC_*(X)$ is chain-homotopic to the identity.", "\nTo construct the chain homotopy, we just extend the $r_n$'s to a sort of deformation retraction. ", " Specifically, let $P^n$ be the space obtained by gluing together $n$ copies of $s\\Delta^n$ the same way that $n$ copies of $\\Delta^n$ are glued together to form the standard triangulation of $\\Delta^n\\times[0,1]$. In particular, $P^n$ has two \"start and end\" faces which correspond to the faces $\\Delta^n\\times\\{0\\}$ and $\\Delta^n \\times\\{1\\}$ of $\\Delta^n\\times[0,1]$, and \"side\" copies of $P^{n-1}$ which correspond to $F\\times[0,1]$ for each face $F$ of $\\Delta^n$. We can now construct a sequence of maps $h_n:P^{n+1}\\to s\\Delta^n$ such that $h_n$ is given by $h_{n-1}$ on each side face (mapping to the corresponding face of $s\\Delta^n$), is given by the identity on the bottom face, and is given by $r_n$ on the top face. ", " Indeed, given $h_i$ for each $i<n$, the existence of $h_n$ with the required properties follows from the Tietze extension theorem.", "\nThese maps $h_n$ then induce maps $h_n^*:sC_n(X)\\to sC_{n+1}(X)$, sending each simplex to the alternating sum of the $n+1$ simplices of $P^{n+1}$ which are mapped into $X$ by composing with $h_n$. Since $h_n$ is given by $h_{n-1}$ on the side faces, these maps $h_n^*$ will define a chain homotopy between what the $h_n$'s do on the bottom and top faces, i.e. between the identity and $r^*i^*$.\n\nMore generally, similar arguments show that if you replace the simplices $\\Delta^n$ with any sufficiently nice levelwise contractible cosimplicial space, the homology you get will be naturally isomorphic to singular homology (or more strongly, the \"singular set\" you get by mapping out of your cosimplicial space will be naturally weak equivalent to the usual singular set). ", " Here \"sufficiently nice\" turns out to mean \"Reedy cofibrant\"; more generally, if I'm not mistaken, then the following is true:\n\nLet $C$ be a model category and $A$ be a fibrant object in $C$. ", " Define $h_A:C^{\\Delta}\\to(\\mathtt{Set}^{\\Delta^{op}})^{op}$ by $h_A(X)_n=\\operatorname{Hom}(X_n,A)$. Then $h_A$ is a left Quillen functor for the Reedy model structure on $C^{\\Delta}$, and in particular it preserves weak equivalences between Reedy cofibrant objects.", "\n\nIn other words, working very generally in a model category, you could define a \"singular homology\" theory using maps out of a cosimplicial object, and then the singular homology theories given by weak equivalent Reedy cofibrant cosimplicial objects agree on fibrant objects.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0.014577259475218658, 0, 0, 0, 0, 0, 0, 0, 0.0018115942028985507, 0, 0, 0, 0.007633587786259542, 0, 0.0051813471502590676, 0.007462686567164179, 0.0036231884057971015, 0 ]
0.002121
5
[ { "analysis_explanation": null, "end": 152, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 134 }, { "analysis_explanation": null, "end": 250, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 242 }, { "analysis_explanation": null, "end": 528, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 514 }, { "analysis_explanation": null, "end": 1359, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1353 }, { "analysis_explanation": null, "end": 2490, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2482 }, { "analysis_explanation": null, "end": 2838, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2834 }, { "analysis_explanation": null, "end": 2930, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2924 }, { "analysis_explanation": null, "end": 3095, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3087 }, { "analysis_explanation": null, "end": 3771, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3766 }, { "analysis_explanation": null, "end": 4014, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4010 }, { "analysis_explanation": null, "end": 4066, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4061 }, { "analysis_explanation": null, "end": 4162, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4157 }, { "analysis_explanation": null, "end": 4399, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4394 } ]
[ "Q:\n\nProgrammatically fireEvent in TextField - JavaFX\n\nLet's say a have a TextField\nTextField tf = new TextField();\n\nand I want to simulate the user pressing a key. ", "\nKeyEvent ke = new KeyEvent(KeyEvent.", "KEY_RELEASED, \n KeyCode.", "A.toString(), KeyCode.", "A.toString(), \n KeyCode.", "A, false, false, false, false);\ntf.fireEvent(ke);\n\nif I examine the text contents of tf, I will see this state hold true\ntf.getText() == \"\"\n\nWhat happened to my KeyEvent and why didn't the text equal \"a\"? ", "I have tried this with KEY_RELEASED, KEY_PRESSED, and KEY_TYPED\nContained Example:\nimport org.junit.", "Assert;\nimport org.junit.", "Rule;\nimport org.junit.", "Test;\n\nimport javafx.scene.control.", "TextField;\nimport javafx.scene.input.", "KeyCode;\nimport javafx.scene.input.", "KeyEvent;\n\nimport java.util.concurrent.", "CountDownLatch;\n\nimport javax.swing.", "SwingUtilities;\n\nimport javafx.application.", "Platform;\nimport javafx.embed.swing.", "JFXPanel;\n\nimport org.junit.rules.", "TestRule;\nimport org.junit.runner.", "Description;\nimport org.junit.runners.model.", "Statement;\n\npublic class TextFieldExample {\n\n @Rule public JavaFXThreadingRule javafxRule = new JavaFXThreadingRule();\n @Test\n public void onlyAcceptValidInputs() {\n TextField tf = new TextField();\n KeyEvent ke = new KeyEvent(KeyEvent.", "KEY_RELEASED, \n KeyCode.", "A.toString(), KeyCode.", "A.toString(), \n KeyCode.", "A, false, false, false, false);\n tf.fireEvent(ke);\n Assert.assertEquals(\"A\", tf.getText());\n }\n}\n\nclass JavaFXThreadingRule implements TestRule { \n /**\n * Flag for setting up the JavaFX, we only need to do this once for all tests.", "\n */\n private static boolean jfxIsSetup;\n\n @Override\n public Statement apply(Statement statement, Description description) {\n\n return new OnJFXThreadStatement(statement);\n }\n\n private static class OnJFXThreadStatement extends Statement {\n\n private final Statement statement;\n\n private OnJFXThreadStatement(Statement aStatement) {\n statement = aStatement;\n }\n\n private Throwable rethrownException = null;\n\n @Override\n public void evaluate() throws Throwable {\n\n if(!jfxIsSetup) {\n setupJavaFX();\n\n jfxIsSetup = true;\n }\n\n final CountDownLatch countDownLatch = new CountDownLatch(1);\n\n Platform.runLater(new Runnable() {\n @Override\n public void run() {\n try {\n statement.evaluate();\n } catch (Throwable e) {\n rethrownException = e;\n }\n countDownLatch.countDown();\n }});\n\n countDownLatch.await();\n\n // if an exception was thrown by the statement during evaluation,\n // then re-throw it to fail the test\n if(rethrownException !", "= null) {\n throw rethrownException;\n }\n }\n\n protected void setupJavaFX() throws InterruptedException {\n final CountDownLatch latch = new CountDownLatch(1); \n SwingUtilities.invokeLater(new Runnable() {\n public void run() {\n // initializes JavaFX environment\n new JFXPanel(); \n latch.countDown();\n }\n });\n\n latch.await();\n }\n\n }\n}\n\nA:\n\nIt seems the text field is listening for KEY_TYPED events. ", "Note that for KEY_TYPED events, the text should be the empty string, and the code should be KeyCode.", "UNDEFINED.", "\nNote also that in your test case, the text field is never added to a live scene. ", "Because of this, it doesn't install its skin, which contains the logic for actually processing events. ", "So you need to force the installation of the skin by calling setSkin(...), passing in the result of the protected method createDefaultSkin():\nimport javafx.application.", "Application;\nimport javafx.geometry.", "Pos;\nimport javafx.scene.", "Scene;\nimport javafx.scene.control.", "Button;\nimport javafx.scene.control.", "TextField;\nimport javafx.scene.input.", "KeyCode;\nimport javafx.scene.input.", "KeyEvent;\nimport javafx.scene.layout.", "VBox;\nimport javafx.stage.", "Stage;\n\npublic class TextFieldFireEvent extends Application {\n\n @Override\n public void start(Stage primaryStage) {\n TextField tf = new TextField() {\n {\n setSkin(createDefaultSkin());\n }\n };\n\n Button button = new Button(\"A\");\n button.setOnAction(e -> {\n KeyEvent ke = new KeyEvent(KeyEvent.", "KEY_TYPED, \n \"a\", \"\", \n KeyCode.", "UNDEFINED, false, false, false, false);\n tf.fireEvent(ke);\n System.out.println(tf.getText());\n });\n VBox root =new VBox(10, /*tf,*/ button);\n\n root.setAlignment(Pos.", "CENTER);\n primaryStage.setScene(new Scene(root, 400, 400));\n primaryStage.show();\n }\n\n public static void main(String[] args) {\n launch(args);\n }\n}\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.018292682926829267, 0, 0, 0.045454545454545456, 0.037037037037037035, 0.004878048780487805, 0.02, 0.04, 0, 0, 0.02702702702702703, 0.02857142857142857, 0.02564102564102564, 0, 0, 0.027777777777777776, 0, 0.029411764705882353, 0.022727272727272728, 0.015503875968992248, 0.02564102564102564, 0.045454545454545456, 0.02564102564102564, 0.007782101167315175, 0.005439005439005439, 0.003305785123966942, 0.02, 0.1, 0, 0, 0.005952380952380952, 0, 0, 0, 0, 0.02702702702702703, 0.02857142857142857, 0.02702702702702703, 0, 0.008086253369272238, 0.014285714285714285, 0.004629629629629629, 0 ]
0.016074
5
[ { "analysis_explanation": null, "end": 947, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 939 }, { "analysis_explanation": null, "end": 1111, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1081 }, { "analysis_explanation": null, "end": 1137, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1118 }, { "analysis_explanation": null, "end": 1252, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1241 }, { "analysis_explanation": null, "end": 1541, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1533 }, { "analysis_explanation": null, "end": 2331, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2302 }, { "analysis_explanation": null, "end": 2400, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2370 }, { "analysis_explanation": null, "end": 2628, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2607 }, { "analysis_explanation": null, "end": 3191, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3183 }, { "analysis_explanation": null, "end": 4612, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4601 }, { "analysis_explanation": null, "end": 4884, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4877 }, { "analysis_explanation": null, "end": 233, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 229 }, { "analysis_explanation": null, "end": 256, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 252 }, { "analysis_explanation": null, "end": 317, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 312 }, { "analysis_explanation": null, "end": 406, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 401 }, { "analysis_explanation": null, "end": 665, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 650 }, { "analysis_explanation": null, "end": 705, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 690 }, { "analysis_explanation": null, "end": 741, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 726 }, { "analysis_explanation": null, "end": 776, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 764 }, { "analysis_explanation": null, "end": 934, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 922 }, { "analysis_explanation": null, "end": 968, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 956 }, { "analysis_explanation": null, "end": 1014, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 994 }, { "analysis_explanation": null, "end": 1322, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1318 }, { "analysis_explanation": null, "end": 1345, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1341 }, { "analysis_explanation": null, "end": 1426, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1421 }, { "analysis_explanation": null, "end": 1456, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1447 }, { "analysis_explanation": null, "end": 1477, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1472 }, { "analysis_explanation": null, "end": 2381, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2370 }, { "analysis_explanation": null, "end": 2689, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2672 }, { "analysis_explanation": null, "end": 2751, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2734 }, { "analysis_explanation": null, "end": 3169, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3152 }, { "analysis_explanation": null, "end": 3370, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3362 }, { "analysis_explanation": null, "end": 3436, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3428 }, { "analysis_explanation": null, "end": 4020, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 4011 }, { "analysis_explanation": null, "end": 4049, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 4040 }, { "analysis_explanation": null, "end": 4083, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 4068 }, { "analysis_explanation": null, "end": 4120, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 4105 }, { "analysis_explanation": null, "end": 4160, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 4145 }, { "analysis_explanation": null, "end": 4196, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 4181 }, { "analysis_explanation": null, "end": 4233, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 4218 }, { "analysis_explanation": null, "end": 4261, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 4252 }, { "analysis_explanation": null, "end": 4572, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 4563 }, { "analysis_explanation": null, "end": 4770, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 4765 }, { "analysis_explanation": null, "end": 4812, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 4799 }, { "analysis_explanation": null, "end": 4823, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 4818 }, { "analysis_explanation": null, "end": 4910, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 4903 }, { "analysis_explanation": null, "end": 4958, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 4943 }, { "analysis_explanation": null, "end": 5016, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 5001 } ]
[ "INTRODUCTION {#SEC1}\n============\n\nA wide spectrum of functionally different mRNAs and protein isoforms can be obtained from a single primary transcript by way of alternative pre-mRNA splicing, an active process in the majority of human genes ([@B1]). ", "Intron excision is performed by the spliceosome ([@B2]), which precisely recognizes the exon--intron borders guided by a multitude of *cis*-acting sequence motifs and *trans*-acting factors like regulatory proteins---altogether termed the 'splicing code' ([@B3],[@B4]). ", "In particular, splice site selection is equally controlled both by the proper 5′ and 3′ splice sites (5′ss and 3′ss) and by nearby activating or repressing splicing regulatory elements (SREs) ([@B5],[@B6]).", "\n\nDisease-associated aberrant splicing can e.g. be caused by mutations as well in splice sites as in SREs, which often are 6--8-nucleotide long binding sites for SR-proteins (exonic splicing enhancers) or hnRNP-proteins (intronic splicing enhancers). ", "These SREs have signature positional distributions ([@B7]) and their enhancing or silencing effects on splice site usage depend on their localization with respect to the splice site ([@B8]). ", "In addition, weaker splice sites can be compensated by stronger neighboring splicing enhancers, thus avoiding aberrant splicing ([@B8]).", "\n\nComputational identification of SREs is highly important e.g. in human genetics, and several current bioinformatics algorithms for SRE identification provide sets of hexamers ([@B9]) as binding sites for splicing regulatory proteins. ", "Aggregating SREs across available algorithms currently yields 979 exonic splicing enhancers (ESE) motifs and 496 exonic splicing silencer (ESS) motifs ([@B16]), as well as recently described position-dependent enrichment of multivalent tetramer motifs ([@B17]). ", "In a systematic experimental evaluation, Ke *et al.* ", "inserted all 4096 hexamers at five positions in two different internal exons of a 3-exon minigene, obtaining 1182 ESE and 1090 ESS motifs ([@B15]). ", "Thus, in genomic sequences SRE searches frequently detect entire arrays of motif 'hits', and most mutations in the vicinity of a splice site alter at least one putative SRE, which renders mutation assessment difficult ([@B18]). ", "Recently, a machine learning approach using a random forest algorithm yielded a mutation classifier using a variety of SNP-, exon- and gene-based features, which takes into account mutational changes both in splice site and SRE sequences ([@B16]). ", "While this approach attempts to unify the effects of intrinsic splice site properties and of neighboring regulatory elements and thus presents a step toward a 'functional splice site score', it also includes highly non-local information like evolutionary conservation and properties of the entire gene. ", "In contrast, it is our goal to derive a scoring for SREs that only uses properties of the splice site neighborhood.", "\n\nWe selected the HIV-1 genome as a model system for several reasons: (i) it is ∼10 000 nt small and its splicing patterns during early and late phases of the replication cycle are well characterized, (ii) it contains highly regulated splice sites dependent on many known SREs ([@B19]) and (iii) HIV-1 splicing is easily experimentally accessible both in subgenomic splicing reporter constructs and in replication competent virus.", "\n\nWithin HIV-1-infected cells, more than 40 different viral mRNAs are spliced from a single primary RNA transcript. ", "Depending on introns retained, these RNAs can be separated into three distinct classes: intronless (2 kb), intron-containing (4 kb) and unspliced (9 kb) viral mRNAs ([@B40],[@B41]). ", "The sophisticated splicing pattern is derived from alternatively used subsets of at least four viral 5′ss and eight 3′ss. ", "Splice site selection is controlled by SREs, which can either activate or repress functional recognition of a nearby splice site ([@B40]). ", "Disruption of only one of these viral SREs can severely interfere with the viral splicing balance, which has to be maintained for proper replication ([@B19],[@B20]). ", "For instance, exon 3 splicing is repressed by the *vpr* exonic splicing silencer ESSV ([@B19],[@B21]), and inactivation of vpr exonic splicing silencer (ESSV) results in dramatically increased levels of exon 3 inclusion, abolishing unspliced viral mRNAs and thus suppressing virus particle production ([@B19],[@B21]).", "\n\nIn this study, we defined and validated a 'HEXplorer score' for every nucleotide in a genomic sequence, based on all overlapping hexamers rather than only on dedicated SRE motifs. ", "We hypothesize this HEXplorer score to capture the splice enhancing and silencing properties of genomic regions in the vicinity of splice sites. ", "Using the HIV-1 pre-mRNA as a model system highly dependent on SREs, we found an excellent correlation in 29 mutations between splicing activity and HEXplorer score. ", "We successfully predicted and confirmed five novel ESEs and optimized mutations inactivating the known silencer ESSV. ", "The HEXplorer score ([www.uni-duesseldorf.de/rna](http://www.uni-duesseldorf.de/rna)) allows landscaping of splicing regulatory regions, provides a quantitative measure of mutation effects on splice enhancing and silencing properties, and permits calculation of the mutationally most effective nucleotide.", "\n\nMATERIALS AND METHODS {#SEC2}\n=====================\n\nOligonucleotides {#SEC2-1}\n----------------\n\nOligonucleotides were obtained from Metabion GmbH (Martinsried, Germany).", "\n\nPrimers used for site-directed mutagenesis (see Supplementary Tables S1 and S2).", "\n\nPrimers used for semi-quantitative reverse transcriptase-polymerase chain reaction (RT-PCR) analyses (see Supplementary Table S3).", "\n\nHIV-1-based subgenomic splicing reporter {#SEC2-2}\n----------------------------------------\n\nThe LTR ex2 ex3 minigenes were generated as described previously ([@B20],[@B23]). ", "Exon 3 mutants were constructed by PCR mutagenesis. ", "For construction, the *Alw*NI/*Spe*I fragment of LTR ex2 ex3 was replaced by the respective PCR products using the appropriate forward PCR primer (see Supplementary Table S1) and \\#2588 as a reverse PCR primer containing *Alw*NI and *Spe*I restriction sites. ", "After cloning, all PCR amplicons were validated by sequencing.", "\n\nSV-*env* ([@B24]) derived splicing reporters (see Supplementary Table S2) were constructed by replacing the *Eco*RI/*Sac*I fragment with respective PCR products: exon 3 and exon 3 ESSV^−^ (\\#1906/\\#1907) or linkers: part I (\\#1958/\\#1959), part II (\\#1960/\\#1961), part II ESSV^−^ (\\#1962/\\#1963) and part III (\\#1964/\\#1965).", "\n\nSV-*env/eGFP* reporters ([@B42]) were generated by substitution of the *Eco*RI/*Nde*I fragment with respective PCR products using the appropriate forward PCR primer (see Supplementary Table S2) and \\#640 as a reverse primer. ", "SV-SD4-*env*/*eGFP* reporters (corresponding to SV-*env*/*eGFP* with HIV-1 D4 sequence instead of D1) were cloned by replacing the *EcoR*I/*Sac*I fragment with the indicated linker sequences.", "\n\nProviral HIV-1 plasmids {#SEC2-3}\n-----------------------\n\npNL4-3 mutants were constructed by replacing the region between *Pfl*MI and *Eco*RI with mutated LTR ex2 ex3 fragments as described previously ([@B20]).", "\n\nCell culture and RT-PCR analysis {#SEC2-4}\n--------------------------------\n\nHeLa and HEK 293T cells were maintained in Dulbecco\\'s high glucose-modified Eagle\\'s medium (Invitrogen) supplemented with 10% fetal calf serum and 50 μg/ml of each penicillin and streptomycin (Invitrogen). ", "Transfections were done in 6-well plates with 2.5 × 10^5^ cells per plate using TransIT®-LT1 reagent (Mirus) according to the manufacturer\\'s instructions. ", "Total RNA samples were collected 48 h after transfection from either HeLa or HEK 293T cells transfected with subgenomic or proviral constructs and pXGH1 to control transfection efficiency. ", "For reverse transcription, 4 μg of RNA were subjected to DNA digestion with 10 U of DNase I (Roche). ", "DNase I was heat-inactivated at 70°C for 5 min and cDNA synthesis occurred for 1 h at 50°C and 15 min at 72°C by using 200 U Superscript III RNAse H^−^ Reverse Transcriptase (Invitrogen), 7.5-pmol oligo(dT)~12--18~ (Invitrogen) as primer, 20 U of RNAsin (Promega) and 10 mM of each deoxynucleoside triphosphate (Qiagen). ", "For semi-quantitative analysis of LTR ex2 ex3 minigene mRNAs, cDNA was used as a template for a PCR reaction with forward primer \\#1544 and reverse primer \\#2588 (see Supplementary Table S3). ", "For semi-quantitative analysis of SV-*env/eGFP*-derived reporter mRNAs, cDNA was used as a template for a PCR reaction with forward primer \\#3210 and reverse primer \\#3211. ", "For transfection control, PCR was performed with primers \\#1224 and \\#1225 to specifically detect GH1 mRNA. ", "For analysis of exon 3 inclusion in viral *tat* mRNAs and *vpr* mRNA splicing, a PCR reaction was carried out using primers \\#1544 (E1) and \\#3632 (E4). ", "For the analysis of intronless 1.8-kb HIV-1 mRNAs, PCR reaction was carried out with forward primer \\#1544 (E1) and reverse primer \\#3392 (E7). ", "Finally, intron containing 4.0-kb HIV-1 mRNAs were detected with primers \\#1544 (E1) and \\#640 (I4). ", "PCR products were separated on 8% non-denaturing polyacrylamide gels and stained with ethidium bromide for visualization.", "\n\nAntibodies {#SEC2-5}\n----------\n\nThe following primary antibodies were used for immunoblot analysis: mouse antibody against α-actin (A2228) was obtained from Sigma-Aldrich. ", "Sheep antibody against HIV-1 p24 was purchased from Biochrom AG. ", "For detection, we used a horseradish peroxidase (HRP)-conjugated anti-mouse antibody (NA931) from GE Healthcare and an HRP-conjugated anti-sheep antibody from Jackson Immunoresearch Laboratories Inc.\n\nProtein analysis {#SEC2-6}\n----------------\n\nTransfected cells were lysed in radio immunoprecipitation assay (RIPA) buffer (25-mM Tris·HCl pH 7.6, 150-mM NaCl, 1% NP-40, 1% sodium deoxycholate, 0.1% sodium dodecyl sulfate (SDS), protease inhibitor cocktail (Roche)). ", "Proteins were separated by SDS polyacrylamide gel electrophoresis, transferred on a nitrocellulose membrane and subjected to immunoblotting procedure. ", "Membranes were probed with the respective primary and secondary antibodies and developed with ECL chemiluminescence reagents (GE Healthcare).", "\n\nHexamer score calculation {#SEC2-7}\n-------------------------\n\nFollowing the RESCUE concept ([@B9]), hexamer frequencies were determined in the four data sets of up to 100-nt long exonic and intronic sequences up- and downstream of 10 359 weak and 10 407 strong constitutive canonical 5′ splice sites, respectively. ", "All 11 nucleotides (three exonic, eight intronic) of the 5′ splice site consensus sequence were excluded from the analysis to avoid hexamer count bias from splice site motif conservation. ", "Weak and strong 5′ss were selected as lower (HBS ≤ 13.5) and upper (HBS \\> 17.0) quartiles of the HBond score (HBS) distribution ([@B43]).", "\n\nTo compare the relative occurrences in both data sets of a given hexamer that occurred *f~E~* times in the exonic and *f~I~* times in the intronic sequence data set, the normal distributed z-score *Z*~EI~ was calculated as $\\documentclass[12pt]{minimal}\n\\usepackage{amsmath}\n\\usepackage{wasysym} \n\\usepackage{amsfonts} \n\\usepackage{amssymb} \n\\usepackage{amsbsy}\n\\usepackage{upgreek}\n\\usepackage{mathrsfs}\n\\setlength{\\oddsidemargin}{-69pt}\n\\begin{document}\n}{}$Z_{{\\rm EI}} = (f_{\\rm E} - f_{\\rm I} )/\\sqrt {(1/N_{\\rm E} + {\\rm 1}/N_{\\rm I}{\\rm {\\rm }} ) \\cdot g \\cdot (1 - g)}$\\end{document}$.\n\nHere, *N*~E~ and *N*~I~ denote the total numbers of exonic and intronic positions in the respective data sets, and $\\documentclass[12pt]{minimal}\n\\usepackage{amsmath}\n\\usepackage{wasysym} \n\\usepackage{amsfonts} \n\\usepackage{amssymb} \n\\usepackage{amsbsy}\n\\usepackage{upgreek}\n\\usepackage{mathrsfs}\n\\setlength{\\oddsidemargin}{-69pt}\n\\begin{document}\n}{}$g = (N_{\\rm E} \\cdot f_{\\rm E} + N_{\\rm I} \\cdot f_{\\rm I} )/(N_{\\rm E} + N_{\\rm I} )$\\end{document}$ is the weighted average frequency. ", "The 'weak--strong' Z-score *Z*~WS~ was calculated accordingly, using hexamer frequencies *f*~W~ and *f*~S~ in exons upstream weak and strong 5′ splice sites, respectively.", "\n\nDetection of SREs by other available algorithms {#SEC2-8}\n-----------------------------------------------\n\nThe comparison of the novel HEXplorer score with other available algorithms for the identification of SREs was performed on 50 nucleotides upstream of each 5′ss in the HIV-1 genome. ", "These sequences were screened for enhancer and silencer motifs, using web resources for the following available algorithms ([@B9]): ESEfinder 3.0 (<http://rulai.cshl.edu/cgi-bin/tools/ESE3/esefinder.cgi?process=home>), RESCUE-ESE (<http://genes.mit.edu/burgelab/rescue-ese/>), FAS-ESS-hex3 (<http://genes.mit.edu/fas-ess/>), PESX (<http://cubweb.biology.columbia.edu/pesx/>) and ESRsearch (<http://esrsearch.tau.ac.il/>). ", "Where appropriate, the respective default settings for SRE detection were applied.", "\n\nFrom all these algorithms, motifs were identified in reference and mutated sequences, and a weight of +1 or −1 was assigned to a sequence for each predicted enhancer or silencer motif that overlapped with a mutated nucleotide. ", "From the change in the number of ESE- and ESS-motifs induced by these mutations, we calculated an overall 'exonic splicing motif difference' (ESMD) similar to Ke *et al.* ([", "@B44]), capturing the summary effect of ESR gain and loss predicted by the various algorithms.", "\n\nSystematic comparison of HEXplorer score and ESRseq score was performed by extracting hexamer weights for 1182 ESS and 1090 ESS hexamer motifs provided by Ke *et al.* ([", "@B15]). ", "Using these hexamer weights instead of the weights obtained from our data set, we calculated the average ESRseq score of all hexamers overlapping with any index nucleotide in a genomic sequence. ", "In this way, we obtained a metric based on the ESRseq score that permitted a direct comparison to the HEXplorer score.", "\n\nRESULTS {#SEC3}\n=======\n\nDerivation of HEXplorer score---an *in silico* approach for SREs {#SEC3-1}\n----------------------------------------------------------------\n\nThe HEXplorer score presented in this work was based on hexamer weights calculated by a RESCUE-type approach ([@B9]). ", "Splice site recognition depends more strongly on the presence of SREs for weak than for strong 5′ss ([@B8]). ", "Therefore, hexamers associated with ESEs are generally assumed to be over-represented in exonic sequences upstream of weak 5′ss compared to sequences upstream of strong 5′ss, as well as in exonic versus intronic sequences. ", "Here, RESCUE-type hexamer weights were derived from hexamer frequencies in four sets of exonic and intronic sequences taken from the human 5′ splice site data set described in ([@B45]). ", "This data set contained 43 464 constitutively spliced internal human exons with canonical 5′ss collected from the ENSEMBL database (chromosomes 6, 7, 9, 10, 13, 14, 20, 22, X). ", "Intrinsic strength of 5′ splice sites was assessed by the HBS describing 5′ss complementarity with all 11 nucleotides of the free 5′ end of U1 snRNA ([@B43]). ", "In the whole set of 43 464 constitutive canonical 5′ splice sites, the HBS was approximately Gaussian distributed with mean 15.0 and standard deviation (SD) 2.59 (range 1.80--23.8; Figure [1A](#F1){ref-type=\"fig\"}). ", "Weak and strong 5′ss were selected as upper and lower quartiles of the HBS distribution, resulting in 10 359 weak 5′ss with HBS ≤ 13.5 and 10 407 strong 5′ss with HBS \\> 17.0. ", "Subsequently, hexamer frequencies were counted in 100-nt long exonic and intronic sequences up- and downstream of these weak and strong 5′ss, respectively. ", "Each 5′ss could maximally contribute 179 different hexamer positions, and a total of 1 728 912 exonic and 1 835 932 intronic hexamer occurrences were counted in these four sequence data sets.", "\n\n![(**", "A, B**) HBond score distribution and relative hexamer abundance in human 5′ss neighborhoods. (", "A) HBond score distribution in 43 464 canonical 5′ss of constitutively spliced internal human exons. ", "Vertical red lines denote lower and upper quartile boundaries at HBS = 13.5 and HBS = 17.0, respectively. (", "B) Scatterplot of hexamer overabundance Z-scores comparing exons with introns (*Z*~EI~) and exons of weak (10 359 5′ss with HBS ≤ 13.5) with strong (10 407 5′ss with HBS \\> 17.0) 5′ss (*Z*~WS~). ", "Each dot represents one of the 4096 hexamers at coordinates (*Z*~EI~, *Z*~WS~). ", "Hexamers e.g. in the top right hand corner were significantly over-represented in exons versus introns and in exons of weak versus strong 5′ss, and were potential RESCUE-ESE candidates. (**", "C, D**) HEXplorer score: sliding window average of *Z*~EI~-score. (", "C) Schematic of HEXplorer score calculation for an exemplary region from HIV-1 exon 3. ", "For the index nucleotide T (denoted in red), the HEXplorer score HZ~EI~ was calculated as average *Z*~EI~ score of all six overlapping hexamers. ", "These six individual hexamers and their respective *Z*~EI~ scores are given in the rows below. ", "The last row contains the HEXplorer score as average of the six *Z*~EI~. (D) Exemplary HZ~EI~ plot of HIV-1 exon 3. ", "The arrow indicates the position of the index nucleotide from (A). ", "Prominent HZ~EI~ positive and negative regions with exonic splice enhancing or silencing properties are indicated by curly braces.](gku736fig1){#F1}\n\nFollowing the RESCUE concept, two normalized Z-scores were subsequently determined for all 4096 hexamers ([@B9]). ", "Each score reflects the difference in hexamer occurrence between two sets of 5′ss neighborhoods: for each hexamer, its exon--intron Z-score *Z*~EI~ is the scaled difference of hexamer frequency between 100-nt long sequences up- and downstream of 5′ss, while its weak--strong Z-score *Z*~WS~ measures the difference in hexamer occurrence between exons upstream of weak and strong 5′ss, respectively. ", "Figure [1](#F1){ref-type=\"fig\"} B shows the scatterplot of *Z*~WS~ versus *Z*~EI~ for all individual 4096 hexamers. ", "Hexamers plotted e.g. in the upper right hand corner were found more frequently in exons compared to introns, and more often in exons of weak than of strong splice sites. ", "Within the RESCUE framework, such hexamers are considered as candidate sequences for exonic splicing enhancers. ", "Both hexamer scores *Z*~EI~ and *Z*~WS~ were significantly correlated, having Pearson\\'s *r* = 0.70 (*P* \\< 0.0001), as suggested by the elongated shape of the scatterplot cloud. ", "However, hexamer frequencies differed more widely between exons and introns than between exons of weak and strong 5′ss. ", "This was quantitatively reflected in the different hexamer score ranges: across all 4096 hexamers, *Z*~EI~ had a range of −73.3--34.4 (mean of 0.746, SD 8.76, median 1.92), while *Z*~WS~ had a six times smaller range of −7.34--10.5 (mean of −0.167, SD 2.50, median −0.25).", "\n\nDistinct sets of splicing regulatory proteins have been found to support U1 snRNP binding in a strictly position-dependent manner. ", "In particular, exonic or intronic enhancer sequences frequently act as silencers in their respective position opposite the 5′ss---they have a signature positional distribution around the splice site ([@B7],[@B8]). ", "Therefore, sequences acting as exonic splicing silencers that are statistically depleted upstream of functional 5′ss are at the same time enriched downstream as intronic enhancers. ", "Thus, we assumed the exon--intron hexamer score *Z*~EI~ to also capture enhancer/silencer sequence properties beyond general exon--intron differences, and selected *Z*~EI~ for our further studies. ", "Furthermore, we expected *Z*~EI~ to have higher discriminatory power due to its larger range of values across hexamers.", "\n\nAiming at developing a RESCUE-concept-based score for each nucleotide position in a given sequence, we next calculated the HEXplorer score HZ~EI~ for every index nucleotide as the average hexamer score of all six hexamers overlapping with the index nucleotide. ", "Beyond the index nucleotide, this HEXplorer score HZ~EI~ depends on 5 nt to both sides (up- and downstream). ", "In the exemplary sequence GTGAA**[T]{.ul}**ATCAA, e.g. the index nucleotide **[T]{.ul}** (HZ~EI~ = −1.93) is located at the last position in hexamer GTGAA**[T]{.ul}** (*Z*~EI~ = −1.93), at the fourth position in hexamer GAA**[T]{.ul}**AT (*Z*~EI~ = −0.69) and at the first position in **[T]{.ul}**ATCAA (*Z*~EI~ = 2.62). ", "A schematic representation of HZ~EI~ calculation from all six hexamers containing the index nucleotide **[T]{.ul}** in this exemplary sequence is depicted in Figure [1C](#F1){ref-type=\"fig\"}. ", "By its construction as a moving average, the HEXplorer score varies more slowly along the sequence than the individual contributing hexamer scores *Z*~EI~, similar to the effect of a low-pass filter.", "\n\nHEXplorer score values were graphically represented by a bar graph along a sequence (Figure [1D](#F1){ref-type=\"fig\"}). ", "In this picture, HZ~EI~-positive areas above the horizontal axis indicated regions with exonic enhancer properties, while areas below the axis corresponded to sequences with exonic silencer properties. ", "Upstream of 5′ss, HZ~EI~-positive sequence stretches that contained more nucleotides and/or had higher HEXplorer scores were expected to possess stronger exonic enhancing property and more efficiently support splicing.", "\n\nIt is important to note that within this framework we associated 'exonic splice enhancing' with being a property of an entire sequence 'region' rather than that of a single hexamer. ", "Correspondingly, the HEXplorer score was constructed to take into account 'all' hexamer frequencies in any given sequence rather than just a small subset of 'Z-extreme' hexamers indicating specific protein binding sites. ", "Quantitatively, the splice enhancing property of a region in the context of a given splice site was measured by the area under the HZ~EI~ graph in this region.", "\n\nHEXplorer score plots provide distinct exonic enhancer/silencer profiles for all HIV exons {#SEC3-2}\n------------------------------------------------------------------------------------------\n\nIn order to validate the HEXplorer score, we systematically examined HZ~EI~ in all exons of the entire HIV-1 genome, which is known to contain a large number of SREs ([@B40]). ", "Figure [2](#F2){ref-type=\"fig\"} presents an overview of the HIV-1 genome with all known exonic splicing regulatory motifs marked by green (enhancer) or red (silencer) boxes.", "\n\n![", "Schematic drawing of known and HEXplorer-predicted splicing regulatory elements (SREs) in the HIV-1 genome. ", "Top: open reading frames are indicated by open boxes. ", "The long terminal repeats (LTRs) are located at both ends of the provirus. ", "Center: all HIV-1 proteins are encoded by a single primary RNA. ", "Alternative splicing leads to more than 40 different mRNA transcripts enabling efficient translation of all open reading frames within the host cell. ", "Intrinsic strength of the 5′ss (D1--D4) and 3′ss (A1--A7) is indicated in the parentheses (5′ss: HBond Score, <http://www.uni-duesseldorf.de/rna>; 3′ss: MaxEntScore, <http://genes.mit.edu/burgelab/maxent/Xmaxentscan_scoreseq_acc.html>). ", "Bottom: positions of the SREs within the HIV-1 pre-mRNA: known splicing enhancers (green) and silencers (red) are indicated together with HEXplorer-predicted enhancers (dashed green). ", "\\[ESE-Ld2 ([@B25]); ESE-Vif ([@B27]); ESEM ([@B26]); guanosine (G)-rich silencer G4 ([@B27]); G~I2~--1 ([@B23]); ESSV ([@B19],[@B21]); ESE*~vpr~* ([@B20]); ESS2p ([@B28]); ESE2 ([@B29],[@B30]); ESS2 ([@B31]); guanosine-adenosine-rich (GAR) ESE ([@B24],[@B34],[@B46]); E42 fragment ([@B34]); ISS ([@B35]); ESE3 ([@B36]); ESS3 ([@B36]) (adapted to ([@B34],[@B39])\\].](gku736fig2){#F2}\n\nWe then calculated and plotted HZ~EI~ HEXplorer profiles for splicing relevant sequences in HIV-1 exons 1, 2, 2b, 3, 4, 5 and 7 (Figure [3](#F3){ref-type=\"fig\"}). ", "The examined exonic sequences were between 50-nucleotides (for exon 2) and 97 nucleotides (for exon 7) long. ", "In all seven HIV-1 exons, HZ~EI~ graphs slowly varied between peak values of −11 and 33 and contained both HZ~EI~-positive and -negative sequence stretches. ", "In six out of seven exons, HZ~EI~ graphs were mostly dominated by large positive areas, and only exon 3 contained a long HZ~EI~-negative sequence stretch corresponding to the known silencer ESSV. ", "In all seven exons, known exonic enhancers and silencers correlated well with HZ~EI~-positive and -negative sequence stretches, respectively.", "\n\n![", "HEXplorer score profiles of HIV-1 exons. ", "HZ~EI~-score plots of HIV-1 exonic sequences derived from the molecular clone NL4--3. ", "Nucleotides are plotted along the horizontal axis and HEXplorer score values HZ~EI~ on the vertical axis. ", "Location of the plotted subgenomic region is schematically shown as an open box on the left-hand side. ", "Known exonic SREs are indicated by curly braces and green (enhancer) or red (silencer) rectangles. ", "Five HEXplorer-predicted enhancers are indicated by dashed green rectangles.](gku736fig3){#F3}\n\nIn particular, the exonic splicing silencers G~I2~--1 (exon 2b), ESSV (exon 3), ESS2p and ESS2 (exon 4) as well as ESS3 (exon 7) mostly lie in HZ~EI~-negative regions, whereas the exonic splicing enhancers ESE-Ld2 (exon 1), ESE-Vif, ESEM1 and ESEM2 (exon 2), ESE2 (exon 4), GAR (exon 5), as well as ESE3 (exon 7) lie in HEXplorer score positive regions (Figure [3](#F3){ref-type=\"fig\"}).", "\n\nFrom a helicopter view, these findings confirmed the general qualitative association of HEXplorer score positive and negative sequence stretches with all known HIV-1 exonic enhancers and silencers, respectively. ", "To examine this association in more detail, we studied HIV-1 exon 3 containing both the well-known splicing silencer ESSV ([@B19]) and the recently found enhancer ESE*~vpr~* ([@B20]).", "\n\nSplice enhancing and silencing properties of exon 3 fragments correlate with HEXplorer score {#SEC3-3}\n--------------------------------------------------------------------------------------------\n\nThe HZ~EI~-plot along the pNLA1-derived HIV-1 exon 3 sequence ([@B47]) clearly depicted HZ~EI~-positive and -negative regions (Figure [4A](#F4){ref-type=\"fig\"}). ", "For a closer examination, exon 3 was partitioned into three consecutive parts (I--III) of equal sequence length. ", "With respect to the HEXplorer score, these three parts corresponded to (I) a HZ~EI~ heterogeneous region, (II) a predominantly HZ~EI~-negative region and (III) a mainly HZ~EI~-positive region. ", "The entire exon 3 sequence and the three individual parts I--III were tested in the context of the HIV-1-based splicing reporter (SV-*env*; Figure [4B](#F4){ref-type=\"fig\"}). ", "SV-*env* is a single intron splicing reporter that contains an enhanced green fluorescent protein (eGFP) coding region downstream of the splice acceptor, permitting fluorescence monitoring and western blot analysis of HIV-1 glycoprotein expression depending on U1 snRNA binding to 5′ss D4. ", "In addition, a proximal enhancer is required for binding of the U1 snRNP to the splicing reporter\\'s 5′ss D4. ", "Moreover, only in the presence of the HIV-1 regulatory protein Rev, U1 snRNP binding at the reporter\\'s 5′ss D4 correlates with the expression of viral glycoprotein gp160 and gp120 ([@B24],[@B43],[@B46]).", "\n\n![", "Splice enhancing and silencing properties of exon 3 fragments correlate with HEXplorer score. (**", "A**) HZ~EI~-score plot of the HIV-1 exon 3 sequence partitioned into three consecutive fragments (parts I--III) of equal sequence length. ", "HZ~EI~-positive and -negative regions are indicated in green and red, respectively. (**", "B**) Schematic of the SV-*env* expression plasmid carrying the *env* open reading frame (ORF). ", "HIV-1 exon 3-derived sequences that were inserted upstream of the splicing enhancer dependent 5′ss D4 are enlarged below. ", "ESSV^−^ is known to disrupt the silencer ESSV. ", "Either single part I, part II, part II ESSV^−^ or part III was inserted, but no combinations. (**", "C**) Western blot analysis of cell lysates from HeLa cells transiently transfected with 1 μg of each of the constructs together with 1-μg SVcrev and 1 μg of pGL3 (Promega) to control for equal transfection efficiencies. ", "Forty-eight hours post transfection proteins were extracted and separated by 7% sodium dodecyl sulfate-polyacrylamide gel electrophoresis (SDS-PAGE). ", "Samples were normalized for equal protein and luciferase amounts as described previously ([@B46]). ", "After transfer to a nitrocellulose membrane, samples were probed with a mouse monoclonal antibody specifically detecting splicing-dependent gp120 expression within the transfected cells (87--133/026; kindly provided by Dade Behring). (", "SV40: simian virus 40 early promoter; RRE: Rev responsive element.)](gku736fig4){#F4}\n\nWhile the wild-type exon 3 sequence failed to enhance glycoprotein expression, inactivation of the repressing ESSV activity as described previously ([@B21]) led to considerable expression of gp160 (and the proteolytic cleavage product gp120) within the cells (Figure [4C](#F4){ref-type=\"fig\"}, upper panel, cf. ", "lanes 1 and 2). ", "The HZ~EI~-heterogeneous part I alone slightly enhanced glycoprotein expression (Figure [4C](#F4){ref-type=\"fig\"}, upper panel, lane 3) consistent with its weak enhancing property predicted by HZ~EI~. Similarly, both in the presence and absence of an intact ESSV, the HZ~EI~-negative part II did not support glycoprotein expression (Figure [4C](#F4){ref-type=\"fig\"}, upper panel, lanes 4 and 5). ", "In contrast, the HZ~EI~-positive part III expected to support U1 snRNP binding strongly increased the levels of gp160 and gp120, confirming ESE*~vpr~* activity ([@B20]). ", "RT-PCR analysis showed the same pattern for the spliced message (Figure [4C](#F4){ref-type=\"fig\"}, lower panel). ", "However, a high amplification had to be chosen in order to detect even low levels of the spliced message (cf., ", "e.g. Figure [4C](#F4){ref-type=\"fig\"}, lower panel, lane 5), leading to an overamplification of the unspliced message in the nonlinear range.", "\n\nFor each part, the HEXplorer score-based prediction of exonic enhancer/silencer property correlated well with glycoprotein expression as surrogate marker of U1 snRNP binding. ", "Therefore, the HEXplorer score may be a valuable screening tool for narrowing down regions with enhancer or silencer property as candidates for more detailed analysis by mutagenesis.", "\n\nHIV-1 exon 3 inclusion correlates well with HEXplorer score change in ESE*~vpr~* mutation analysis {#SEC3-4}\n--------------------------------------------------------------------------------------------------\n\nIn order to examine HEXplorer predictions of mutation effects on splice site usage, we systematically introduced single- and double-point mutations in the recently described Tra2α-/Tra2β-dependent ESE*~vpr~* ([@B20]). ", "We used a subgenomic pNLA1-derived four exon splicing reporter (Figure [5A](#F5){ref-type=\"fig\"}) with an inactivated ESSV resulting in an intermediate exon 3 splicing phenotype (Figure [5E](#F5){ref-type=\"fig\"}, cf. ", "lanes 1 and 2). ", "This reporter permitted determining positive and negative effects on the degree of exon 3 inclusion. ", "All 16 mutants tested in the ESE*~vpr~* region are given in Figure [5B](#F5){ref-type=\"fig\"} and their positions are denoted by arrows in the HEXplorer graph shown in Figure [5C](#F5){ref-type=\"fig\"}. ", "Semi-quantitative RT-PCR of RNA isolated from transiently transfected HeLa cells was carried out to measure the level of exon 3 splicing for each mutated minigene.", "\n\n![", "Detailed HEXplorer-guided mutational analysis of ESE*~vpr~*. (**", "A**) Schematic of the HIV-1-based LTR ex2 ex3 splicing reporter. ", "Positions of the RT-PCR primers (\\#1544/\\#2588) are indicated by arrows. (**", "B**) ESE*~vpr~* reference (pNLA1) and mutant sequences. ", "Nucleotide residues are denoted by their position relative to the GT-dinucleotide. ", "Exon--intron border of exon 3 is denoted by '/' and 5′ss D3 sequence is underlined. (**", "C**) HEXplorer score profile plotted along the 3' end of exon 3 containing ESE*~vpr~* (green bar). ", "Positions of mutated nucleotides are indicated by arrows. (**", "D**) HEXplorer score profiles for reference ESE*~vpr~* (gray) and exemplary point mutation −17A\\>T (red, indicated by arrow) plotted along the same sequence as in (C). (**", "E**) RT-PCR of RNA from HeLa cells transfected with mutants described in (B). ", "HEXplorer score difference ΔHZ~EI~ between mutant and reference (ESE*~vpr~* (ESSV^−^) lane 2) as well as exon 3 inclusion (upper band Tat3 \\[1/3/4\\]) level is given below each lane. ", "Mean inclusion level and standard deviation (±SD) were calculated from triplicates. ", "GH1 (growth hormone) serves as control for transfection efficiency. ", "2.5 × 10^5^ HeLa cells were transiently transfected with 1 μg of each of the constructs together with 0.2 μg of SVctat and 1 μg of pXGH5. ", "Thirty hours after transfection RNA was isolated from the cells and subjected to RT-PCR analysis using primer pairs \\#1544/\\#2588 and \\#1224/\\#1225 (GH1). ", "PCR products were separated by 8% non-denaturating polyacrylamide gel electrophoresis and stained with ethidium bromide.](gku736fig5){#F5}\n\nIn order to assess the point mutations' effects on the enhancer property of the ESE*~vpr~* region, we calculated the difference between the two HEXplorer score areas of mutant and reference (intact ESE*~vpr~* with ESSV^−^) sequences in a sufficiently long window upstream of 5′ss D3. ", "We provide the HEXplorer score algorithm in an Excel file as Supplementary material (cf. ", "Supplementary XLSM-file) and for download at [www.uni-duesseldorf.de/rna](http://www.uni-duesseldorf.de/rna). ", "Any such point mutation affected only the HEXplorer scores of 11 nucleotides centered on the point mutation itself (5 nt up- and downstream; Figure [5D](#F5){ref-type=\"fig\"}). ", "A HEXplorer score difference of zero thus corresponded to comparable enhancer property levels in mutant and reference, which in this case exhibited partial exon inclusion. ", "Figure [5E](#F5){ref-type=\"fig\"} shows the exon 3 inclusion ratio and HEXplorer score difference ΔHZ~EI~ for wild type, reference (intact ESE*~vpr~* with ESSV^−^) and all 16 mutants.", "\n\nObserved changes both for higher and lower levels of exon 3 inclusion were mostly consistent with the HEXplorer score differences ΔHZ~EI~ mutant--reference. ", "A large positive or slightly negative HEXplorer score difference was found, if the mutant sequence had a stronger enhancer property than the reference (intact ESE*~vpr~* with ESSV^−^), and such mutants were associated with a higher degree of ESE*~vpr~*-dependent exon inclusion (e.g. Figure [5E](#F5){ref-type=\"fig\"}, lanes 12--18). ", "Correspondingly, negative HEXplorer score differences were mostly found in mutant sequences with considerably weaker splice enhancing property than the reference (e.g. Figure [5E](#F5){ref-type=\"fig\"}, lanes 3--5 and 9, 10). ", "Thus, mutants with large negative ΔHZ~EI~ were prone to disrupt the enhancer ESE*~vpr~*.", "\n\nThese experiments showed a good semi-quantitative correlation between inclusion ratio and HEXplorer score difference in a series of mutations in the splicing enhancer ESE*~vpr~*. ", "In the next step, we applied the HEXplorer score to ESSV mutation optimization.", "\n\nHEXplorer pre-screening identifies minimal point mutations disrupting ESSV {#SEC3-5}\n--------------------------------------------------------------------------\n\nUsing the HEXplorer score-based mutation assessment, automatic screening of entire sequence regions for point mutations with maximal effects became possible. ", "To this end, every single nucleotide in the region was systematically replaced with each of the three other possible nucleotides by the HEXplorer algorithm. ", "From the 3·N alternative sequences obtained from an N nucleotide long sequence, point mutations with similar HEXplorer score differences were suspected to alter the sequence\\'s enhancing/silencing property to a comparable degree.", "\n\nWe tested this procedure on the splicing silencer ESSV. ", "Starting from the known mutation ESSV^−^ (pNEU), which inactivates ESSV by substituting 7 nucleotides ([@B19]) (Figure [6A](#F6){ref-type=\"fig\"}), we searched for a functionally equivalent but smaller set of point mutations. ", "The known mutation ESSV^−^ (pNEU) had a higher HEXplorer score compared to the reference sequence pNL4-3 (ΔHZ~EI~ = 144.0). ", "From a thorough scrutiny of the HEXplorer score table we identified the double mutation −29G\\>C and −36A\\>C that together increased the pNL4-3 HEXplorer score in a similar order of magnitude (ΔHZ~EI~ = 157.9). ", "From Figure [6B](#F6){ref-type=\"fig\"} it is evident that this double mutation ESSV^−^ (dm) changed the shape of the HEXplorer graph in a similar way as ESSV^−^ (pNEU). ", "In comparison, each single-point mutation had a smaller effect on the HEXplorer score: ΔHZ~EI~ = 92.8 for −29G\\>C and 65.0 for −36A\\>C, respectively.", "\n\n![", "HEXplorer screening identifies minimal point mutations disrupting ESSV. (**", "A**) pNL4-3-derived wild-type and mutated HIV-1 exon 3 sequences. ", "Nucleotide coordinates refer to the 3' end of exon 3. (", "dm) refers to the double mutation −29G\\>C and -36A\\>C. (**B**) HZ~EI~ score profiles of HIV exon 3 reference pNL4--3 (gray) versus mutant sequences ESSV^−^ (pNEU), ESSV^−^ −29G\\>C, ESSV^−^ −36A\\>C and ESSV^−^ (dm) (red). ", "HEXplorer score differences are given below the profile graphs, and point mutations are indicated by black arrows and corresponding positions. (**", "C**) RT-PCR analysis of splicing patterns for different classes of viral RNAs. ", "2.5 × 10^5^ HEK 293T cells were transiently transfected with 1 μg of each of the proviral DNAs. ", "Thirty hours after transfection, total RNA was isolated from the cells and subjected to RT-PCR analyses with different sets of primer pairs covering intronless and intron-containing mRNA classes described elsewhere ([@B20]). ", "RT-PCR products were separated by 8% non-denaturing polyacrylamide gel electrophoresis and visualized using ethidium bromide staining. ", "HIV-1 mRNA isoforms are indicated on the right and correspond to the nomenclature published previously ([@B41]). ", "HZ~EI~-score differences (ΔHZ~EI~) with respect to the reference pNL4-3 are given below the gel. (**", "D**) Western blot analysis of Gag expressed by reference and mutant proviruses. ", "2.5 × 10^5^ HEK 293T cells were transiently transfected with 1 μg of each of the proviral DNAs. ", "Forty-eight hours post transfection viral supernatants were collected, layered onto 20% sucrose solution and centrifuged at 28 000 rpm for 1.30 h at 4°C to pellet the released viral particles. ", "In addition, cells were harvested and resuspended in lysis buffer. ", "Supernatants and cellular lysates were resolved in 12% SDS-PAGE and electroblotted on nitrocellulose membranes. ", "To determine virus particle production and the expression of viral proteins, samples were probed with a primary antibody against HIV-1 p24 (Biochrom AG). ", "Equal amounts of cell lysates were controlled by the detection of α-actin (Sigma-Aldrich, A2228).](gku736fig6){#F6}\n\nThese mutations were now experimentally analyzed for their ability to disrupt the ESSV activity within the infectious molecular clone NL4-3 (GenBank Accession No. ", "M19921). ", "Following transfection of HEK 293T cells with pNL4-3 or the ESSV mutants, the HIV-1 splicing pattern was determined by semi-quantitative RT-PCR using primer pairs spanning intronless or intron-containing HIV-1 mRNA classes (Figure [6C](#F6){ref-type=\"fig\"}). ", "In NL4-3, only low levels of exon 3-including viral mRNA species could be detected (Figure [6C](#F6){ref-type=\"fig\"}, lane 2, e.g. Tat3 or Nef4) due to the silencing activity of ESSV. ", "As expected from preceding studies ([@B19],[@B20]) and in consistence with the higher HEXplorer score (ΔHZ~EI~ = 144.0) relative to pNL4-3, the ESSV^−^ (pNEU) mutation led to an almost complete exon 3 inclusion (Figure [6C](#F6){ref-type=\"fig\"}, cf. ", "lanes 2 and 3, e.g. Tat3 or Nef4) obviously at the expense of the respective exon 3-lacking isoforms (Figure [6C](#F6){ref-type=\"fig\"}, cf. ", "lanes 2 and 3, e.g. Tat1 or Nef2). ", "In agreement with their increased HEXplorer scores (ΔHZ~EI~ = 92.8 for −29G\\>C and 65.0 for −36A\\>C), each of the HEXplorer-identified single-point mutations was already capable to substantially increase the levels of exon 3 inclusion (Figure [6C](#F6){ref-type=\"fig\"}, lanes 4 and 5, e.g. Tat3 or Nef4). ", "However, both point mutations still retained some mRNAs lacking exon 3 (Figure [6C](#F6){ref-type=\"fig\"}, cf. ", "lanes 4 and 5, e.g. Tat1 or Nef2), and were thus less efficient in including exon 3 than ESSV^−^ (pNEU). ", "The same observations were made within the 4-kb class mRNAs (Figure [6C](#F6){ref-type=\"fig\"}; 4-kb mRNAs). ", "Both in 2-kb and 4-kb mRNA classes, the double-mutation ESSV^−^ (dm) was as efficient in promoting exon 3 inclusion as ESSV^−^ (pNEU) (Figure [6C](#F6){ref-type=\"fig\"}, cf. ", "lanes 3 and 6), which was consistent with a HEXplorer score difference ΔHZ~EI~ = 157.9 similar to ESSV^−^ (pNEU), but clearly exceeding the single-point mutations' ΔHZ~EI~.\n\nTransfection experiments were complemented by western blot analyses of intracellular Gag protein levels (Figure [6D](#F6){ref-type=\"fig\"}). ", "To evaluate the importance of ESSV for virus particle production, cell-free supernatants were harvested from HEK 293T cells transfected with proviral DNAs, and viral release for each sample was detected via p24 levels. ", "Western blot results revealed that ESSV^−^ (pNEU) led to low amounts of intracellular Gag protein (Figure [6D](#F6){ref-type=\"fig\"}, cf. ", "lanes 2 and 3), as expected from excessive exon 3 splicing causing a replication defect ([@B19]). ", "While the single-point mutations ESSV^−^ (−29G\\>C) and ESSV^−^ (−36A\\>C) partially inactivated ESSV leading to slight replication defects as seen in Gag protein and virus particle production (Figure [6D](#F6){ref-type=\"fig\"}, cf. ", "lanes 2, 4 and 5), the double mutation ESSV^−^ (dm) showed Gag protein levels not exceeding those detected in ESSV^−^ (pNEU) both within cells and supernatants (Figure [6D](#F6){ref-type=\"fig\"}, cf. ", "lanes 3 and 6).", "\n\nIn these experiments, we have exemplified the HEXplorer-score-guided mutagenesis inactivating the exonic splicing silencer ESSV with just two point mutations, obtaining an efficiency comparable to the known 7-nucleotide mutation ESSV^−^ (pNEU).", "\n\nA HEXplorer-based screening of the HIV-1 genome uncovers novel SREs {#SEC3-6}\n-------------------------------------------------------------------\n\nIn the next step, we aimed at discovering novel ESEs guided by the HEXplorer profiles of all HIV-1 exons shown in Figure [3](#F3){ref-type=\"fig\"}. ", "To this end, we first identified exonic sequences with uninterrupted positive HEXplorer scores flanked by valley regions with lower positive or negative HEXplorer scores. ", "In these typically 20-40-nucleotide long regions with supposed exonic enhancer property we searched for point mutations that disrupted the putative enhancer sequences. ", "The mutation positions were selected inside the HEXplorer positive regions, and the substituted nucleotide was chosen to maximize the HEXplorer score difference ΔHZ~EI~.\n\nBoth the putative ESE containing reference and mutated sequences were tested in the context of the ESE-dependent SV-*env* splicing reporter (([@B8],[@B46]); Figure [4B](#F4){ref-type=\"fig\"}). ", "The exonic splicing enhancer SRSF7 binding site and the splicing neutral sequence were used for calibration of ESE strength ([@B8],[@B48]). ", "Since this analysis covers different exons, we denote mutated positions with a single coordinate counting from the start of the NL4-3 genome.", "\n\nIn exon 1, we narrowed down the recently published enhancer region upstream of the major 5′ss D1 ([@B25]) by identifying the double mutation 708G\\>T, 718C\\>G that effectively suppressed splice site usage in a degree comparable to the neutral sequence (Figure [7A](#F7){ref-type=\"fig\"}, cf. ", "lanes 2--4).", "\n\n![", "HEXplorer screening identifies novel SREs within the HIV-1 genome. ", "Novel exonic splicing enhancers were identified by HEXplorer screening of HIV-1 exons 1 (**A**), 2 (**B**), 2b (**C**), 4 (**D**), and were experimentally confirmed by HEXplorer-predicted mutations within the SV-*env* reporter construct described in Figure [4B](#F4){ref-type=\"fig\"}. ", "For each HIV-1 exon, experimentally tested reference and mutated sequences are given below a schematic representation of their location (green bars). ", "All positions in HEXplorer-predicted enhancer and mutant sequences are counted from the start of the HIV-1 NL4-3 genome. ", "HEXplorer profiles span the entire experimentally tested sequences. ", "HEXplorer score differences are given below the profile graphs, and mutated nucleotides are indicated by arrows and corresponding positions (dm: double mutation; tm: triple mutation). ", "2.5 × 10^5^ HeLa cells were transiently transfected with 1 μg of each of the splicing reporters and 1 μg of pXHG5 for normalization. ", "Thirty hours post transfection, RNA was extracted and reverse transcribed using the resultant cDNA in a PCR reaction with primer pair \\#3210/\\#3211. ", "To control for equal transfection efficiency, we also performed a separate PCR reaction with primer pair \\#1224/\\#1225 detecting constitutively spliced GH1 mRNA. ", "RT-PCR products were resolved on 8% non-denaturing polyacrylamide gels and stained with ethidium bromide.](gku736fig7){#F7}\n\nIn exon 2, we discovered a novel enhancer between ESEM1 and ESEM2 ([@B26]) that was inactivated by the double mutation 4942C\\>T, 4947A\\>T. This novel enhancer was weaker than the SRSF7 binding site, but was still functional as part of an array of consecutive enhancer motifs possibly compensating for its lack of strength (ESE-Vif, ESEM1, ESEM2; Figure [7B](#F7){ref-type=\"fig\"}, cf. ", "lanes 1--4).", "\n\nBy mutation of the G-run splicing silencer G~I2~--1, usage of alternative 5′ss D2b can be significantly increased ([@B23]). ", "In this exon 2b, we discovered the novel enhancer ESE^5005--5032^ upstream of G~I2~--1, which was almost completely inactivated by the point mutation 5015A\\>T, and fully disabled by the double mutation 5015A\\>T, 5025A\\>T (Figure [7C](#F7){ref-type=\"fig\"}, cf. ", "lanes 1--6). ", "The different degree of ESE^5005--5032^ inactivation was reflected by a larger HEXplorer score difference ΔHZ~EI~ = −267.4 for the double mutation compared to ΔHZ~EI~ = −178.4 for 5015A\\>T or ΔHZ~EI~ = −89.0 for 5025A\\>T.\n\nA particularly interesting example was discovered in exon 4: the HEXplorer score profile indicated an exonic region with strong enhancing property wedged between the known silencer ESS2p and the known enhancer ESE2 (Figure [3](#F3){ref-type=\"fig\"}). ", "The enhancing property of this region was confirmed by the two single-point mutations 5816G\\>T (ΔHZ~EI~ = −79.1) and 5827G\\>T (ΔHZ~EI~ = −119.4), and the corresponding double mutation (ΔHZ~EI~ = −198.6) that reduced D4 splice site usage to a similar degree as the neutral sequence (Figure [7D](#F7){ref-type=\"fig\"}, cf. ", "lanes 2 and 6). ", "The single-point mutations achieved only an intermediate reduction of D4 usage in line with the respective HEXplorer score differences (Figure [7D](#F7){ref-type=\"fig\"}, cf. ", "lanes 3--5). ", "Furthermore, the additional third mutation 5821G\\>T (ΔHZ~EI~ = −263.1) slightly reduced both D4 usage and HEXplorer score below the levels of the double mutation. ", "By analyzing the same RNA samples with primer pairs also detecting the unspliced messages, we additionally confirmed that the reduced amount of spliced messages was indeed due to mutation of an SRE (Supplementary Figure S1).", "\n\nTaken together, HEXplorer score profiling permitted us to firstly identify novel putative splice enhancing regions in HIV-1 exons 1, 2, 2b and 4 and to secondly find specific enhancer inactivating mutations inside these regions, which can serve to identify enhancer binding proteins. ", "In all cases, splicing reporter experiments qualitatively confirmed the HEXplorer predicted effects of enhancer mutations.", "\n\nHEXplorer score difference quantitatively correlates with HIV-1 splicing activity {#SEC3-7}\n---------------------------------------------------------------------------------\n\nIn order to quantitatively compare HEXplorer score differences with changes in exon recognition or splice site usage even across different reporter systems, we plotted splicing activity versus HEXplorer score difference ΔHZ~EI~ between pairs of mutated and reference sequences. ", "In experiments using the 4-exon splicing reporter we measured splicing activity by exon inclusion rate defined as inclusion/(inclusion + exclusion), while in the single-intron splicing reporter experiments we used the ratio of 5′ splice site usage/GH1 transfection control instead. ", "To account for different reference splicing activity levels across different exons and reporter systems, we separately normalized reference splicing activity to 100% in each reporter. ", "In Figure [8](#F8){ref-type=\"fig\"}, all 16 point mutations examined in the 4-exon splicing reporter (Figure [5](#F5){ref-type=\"fig\"}) are represented by red squares, while data from four point mutations within ESSV^−^ (pNEU) (Figure [6](#F6){ref-type=\"fig\"}, and one additional mutation not shown) and nine point mutations obtained from exons 1, 2, 2b and 4 (Figure [7](#F7){ref-type=\"fig\"}) are denoted by individual symbols. ", "Across all these experiments, we obtained an excellent correlation of *r* = 0.85 (*P* \\< 0.001) between splicing activity and HEXplorer score difference. ", "These promising results suggest that the HEXplorer score can be effectively used to (i) determine the splice enhancing or silencing property of an entire region and (ii) predict the effects of point mutations on splice site usage.", "\n\n![", "HEXplorer score difference quantitatively correlates with HIV-1 splicing activity. ", "In the calibration experiment (Figure [5](#F5){ref-type=\"fig\"}), exon 3 inclusion ratio was determined in triplicate for 16 single or double mutations in the ESE*~vpr~* region upstream 5'ss D3. ", "The exon 3 inclusion ratio showed a linear correlation of *r* = 0.75 with changes in hexamer score HZ~EI~ (red squares). ", "Adding 13 mutations from a series of control experiments involving HIV exons 1--4 (colored circles and triangles denote exons; cf. ", "Figure [7](#F7){ref-type=\"fig\"}) even improved the correlation for the entire data set (*r* = 0.85, 16 + 13 mutations; error bars denote standard deviations from triplicates; *N* denotes the number of mutations per exon).](gku736fig8){#F8}\n\nHEXplorer score difference correlates well with various available SRE algorithms {#SEC3-8}\n--------------------------------------------------------------------------------\n\nWe additionally applied two different approaches to compare the HEXplorer score with other available algorithms for the identification of SREs, using the data set of 29 experimentally tested mutations.", "\n\nFirst, for each of the 29 mutations shown in Figure [8](#F8){ref-type=\"fig\"}, we determined all ESR motifs predicted to be overlapping with the mutated positions by the ESEfinder ([@B10],[@B12]), RESCUE-ESE ([@B9],[@B49]), FAS-ESS-hex3 ([@B13]), PESX ([@B11]) or ESRsearch ([@B14]) algorithms. ", "We aggregated the results of the different ESR-identifying algorithms by assigning +1 for each ESE and −1 for each ESS motif, similar to the approach chosen in ([@B44]). ", "Totaling these ±1-weights for every pair of reference and mutant sequences, we obtained the 'mutant--reference' ESMD, an integer number measuring the overall net gain and loss of ESE and ESS. ", "For all 29 mutations, we obtained an excellent correlation of *r* = 0.93 (*P* \\< 0.001) between ESMD and HEXplorer score difference (see Supplementary Figure S2).", "\n\nSecond, we compared the individual exon--intron and weak--strong hexamer scores (*Z*~EI~ and *Z*~WS~) to the ESRseq score available for all 1182 ESE and 1090 ESS hexamers identified as exonic SREs in ([@B15]). ", "From the scatterplots in Supplementary Figure S3 we obtained a good correlation of *r* = 0.72 with both *Z*~EI~ and *Z*~WS~. Finally, for all 29 mutations shown in Figure [8](#F8){ref-type=\"fig\"}, we calculated the ESRseq difference between mutant and reference sequences, using the same averaging approach as in the HEXplorer score definition, but with the ESRscore hexamer weights instead of *Z*~EI~. We again found an excellent correlation of *r* = 0.93 between the ESRseq difference and HEXplorer score difference (mutant--reference) as shown in Supplementary Figure S4.", "\n\nAlthough predictions of individual currently available ESR-identifying algorithms are not necessarily consistent with each other, our results indicate that there is a considerable agreement between the HEXplorer score prediction of SREs---in particular mutation effects---and the average of all other algorithms for ESR motif identification examined in this context.", "\n\nDISCUSSION {#SEC4}\n==========\n\nHexamer over-representation between different data sets of exonic and intronic sequences has been successfully used as a basis for the identification of exonic SREs ([@B9],[@B11]). ", "In the present study, we extended this approach by incorporating all hexamer frequencies of an entire sequence region into a novel HEXplorer score HZ~EI~ that was calculated as the average exon--intron hexamer *Z*~EI~-score of all six hexamers overlapping with any given index nucleotide. ", "Capturing the overall hexamer content of an entire sequence region, HEXplorer score profiles plotted along exonic sequences exhibited a continuous spectrum of exonic enhancing and silencing properties in the context of a given splice site, rather than the presence or absence of individual predicted SRE hexamer binding sites.", "\n\nGenome wide analyses ([@B7],[@B17],[@B50]) as well as systematic splicing reporter experiments ([@B8]) have confirmed that SREs act in a position-dependent manner: classical splice enhancing SR-proteins bind upstream of a 5′ss, but inhibit splicing from an intronic position. ", "In a similar way, the typical exonic splice silencing hnRNP H/F proteins act as enhancers from intronic positions. ", "Based upon the respective different exonic and intronic hexamer distributions, the HEXplorer score HZ~EI~ presumably captures these position-dependent splicing regulatory sequence properties in the context of any given splice site.", "\n\nFor accurate splicing, nearby splice regulatory elements often modulate proper splice site motif recognition, and they may be evolutionarily adapted to particular splice site properties (e.g. intrinsic strength). ", "Therefore, splice enhancing or silencing sequence properties must always be rated in the context of the actual splice site, and this rating can be different in the vicinity of weak splice sites than near strong ones. ", "Thus, while HEXplorer score 'differences' upstream of a given 5′ss have proven quantitatively valid in mutation analyses, the comparative validity of 'absolute' HEXplorer area size was limited to its 5′ss context, and care must be taken in comparing different splice sites. ", "It is therefore natural that the absolute HEXplorer score area size should be most meaningful together with the intrinsic 5′ss strength, measured e.g. by its maxent or HBS. ", "A systematic examination of the interplay between intrinsic splice site strength and neighboring HEXplorer score profile and their merging into a 'functional splice site score' could further the understanding of normal and pathological splice site usage.", "\n\nUsing the HIV-1 genome heavily relying on SREs ([@B40]) as a model system, we experimentally examined whether the HEXplorer score faithfully represented the respective enhancing or silencing properties of genomic regions. ", "In a helicopter view, we first generated HEXplorer score profiles of each HIV-1 exon exhibiting specific HEXplorer score positive and negative regions that generally coincided with known exonic enhancers or silencers.", "\n\nIn a set of systematic point mutations of the exemplarily chosen exonic enhancer ESE*~vpr~*, the HEXplorer score correlated well with exon inclusion in a four-exon splicing reporter. ", "Outside this splicing reporter, ESE*~vpr~* was previously examined in a proviral context. ", "In the absence of the repressing ESSV, strong exon 3 splice site activation led to reduced levels of unspliced viral mRNA and a deficiency in virus particle production ([@B19]), while the release of virus particles into the supernatant could be rescued by an ESE*~vpr~* double mutation that was originally suggested by the HEXplorer algorithm ([@B20]). ", "These experiments confirmed that the four-exon splicing reporter reliably captured HIV-1 splice site usage.", "\n\nBased on HEXplorer profile prediction, we discovered five novel splicing enhancers in HIV-1 exons and experimentally confirmed all of them by mutagenesis. ", "Furthermore, we were able to design a novel, reduced set of point mutations disrupting the splicing silencer ESSV to a similar degree as the established ESSV^−^ (pNEU). ", "Based on the relative occurrences of all hexamers, the HEXplorer score permitted optimizing mutagenesis by *a priori* determining the point mutation(s) with the largest effects on the exonic enhancing or silencing property of a given sequence. ", "Moreover, using HEXplorer score predictions of point mutation effects on splicing now opens the perspective to design silent mutations interfering with splice site usage while not altering the amino acid sequence of the encoded protein.", "\n\nThe HEXplorer score definition was derived from a specific set of exonic and intronic sequences extracted from the ENSEMBL database, and it is therefore based on pooled sequences expressed in different human tissues. ", "Hexamer weights derived in this way cannot take into account tissue-specific protein expression and possibly fail to detect SRE motifs bound by splicing regulatory proteins that are not ubiquitously expressed ([@B54]). ", "On the contrary, HEXplorer score predictions of regulatory properties may be invalid for a specific tissue not expressing a required splicing regulatory protein. ", "This principal deficiency, however, holds for all algorithms identifying SREs from pooled sequence data. ", "Future applications may overcome these limitations by deriving hexamer weights from cell-type-specific transcriptome data sets obtained from RNA deep sequencing.", "\n\nIn the HEXplorer score definition, the choice of exonic/intronic neighborhoods entering into the RESCUE-like hexamer weight calculation was somewhat arbitrary. ", "Since the median size of a middle exon in human genes is 123 nucleotides ([@B58]), we chose 100-nt wide regions (or the entire exon if it was shorter). ", "These sets of exonic and intronic sequences were sufficiently large that all hexamers were multiply represented, but shorter than the sequences used in the original work ([@B9]). ", "Experimentally, most splice enhancers and silencers can be expected to lie within a 100-nucleotide splice site neighborhood. ", "We comparatively evaluated an even smaller neighborhood size of only 30 nucleotides (data not shown) and found an excellent correlation of *r* = 0.96 between the respective exon--intron scores of all 4096 hexamers. ", "Thus, within the range of values covered, the size of the splice site neighborhoods used for the HEXplorer score definition has only limited impact on the HEXplorer score values obtained.", "\n\nWe chose to derive the HEXplorer score from exon--intron hexamer scores *Z*~EI~ based on heuristic arguments that splicing enhancing or silencing properties differ more widely between exonic and intronic splice site neighborhoods than between exons of strong and weak splice sites. ", "To examine the validity of this choice, we also calculated analogous *Z*~WS~-based HEXplorer score differences for all 29 mutations shown in Figure [8](#F8){ref-type=\"fig\"}. ", "From these *Z*~WS~-based HEXplorer scores, we obtained a weaker correlation of *r* = 0.75 with experimentally determined splicing activity than from ΔHZ~EI~, which was consistent with our assumption.", "\n\nThe novel computational HEXplorer score profiles provide a global landscaping of splicing regulatory regions, as well as a quantitative measure of mutation effects on their splice enhancing and silencing properties in the vicinity of a given splice site. ", "In particular, HEXplorer score calculation may significantly alleviate mutational analyses by reliably predicting possibly silent point mutations most effectively disrupting or even creating SREs. ", "This is especially helpful for the identification of proteins binding to regulatory elements. ", "HEXplorer score analyses may also further the computational prediction of pathogenic mutation effects in human genetics.", "\n\nSUPPLEMENTARY DATA {#SEC5}\n==================\n\n[Supplementary Data](http://nar.oxfordjournals.org/lookup/suppl/doi:10.1093/nar/gku736/-/DC1) are available at NAR Online.", "\n\n###### SUPPLEMENTARY DATA\n\nWe thank Björn Wefers, Sarah Otten and Sebastian Wittich for excellent technical assistance.", "\n\nFUNDING {#SEC6}\n=======\n\nDeutsche Forschungsgemeinschaft (DFG) \\[SCHA 909/3-1\\]; Stiftung für AIDS-Forschung, Düsseldorf \\[to H.S.\\]; Jürgen Manchot Stiftung \\[to M.W., J.O.P. and H.S.\\].", "\n\n*Conflict of interest statement*. ", "None declared.", "\n\n[^1]: The authors wish it to be known that, in their opinion, the first two authors should be regarded as Joint First Authors.", "\n" ]
{ "pile_set_name": "PubMed Central" }
[ 0.003968253968253968, 0.014814814814814815, 0.009708737864077669, 0, 0.010471204188481676, 0.007352941176470588, 0.00847457627118644, 0.011450381679389313, 0.018867924528301886, 0.006756756756756757, 0.013157894736842105, 0.012096774193548387, 0, 0, 0.002325581395348837, 0.008620689655172414, 0.01098901098901099, 0, 0.007194244604316547, 0.012048192771084338, 0.01892744479495268, 0, 0, 0, 0, 0.009836065573770493, 0, 0.012195121951219513, 0.015151515151515152, 0.01694915254237288, 0.019230769230769232, 0.019305019305019305, 0.016129032258064516, 0.018292682926829267, 0.01762114537444934, 0.005235602094240838, 0.009389671361502348, 0.017421602787456445, 0.00641025641025641, 0.005291005291005291, 0.0297029702970297, 0.012461059190031152, 0.015625, 0.005780346820809248, 0.018518518518518517, 0.006535947712418301, 0.013888888888888888, 0, 0.008264462809917356, 0.017142857142857144, 0.015384615384615385, 0.008547008547008548, 0.006622516556291391, 0.014184397163120567, 0.0031446540880503146, 0, 0.014492753623188406, 0.0009208103130755065, 0, 0, 0.02132701421800948, 0, 0, 0, 0.010638297872340425, 0.005847953216374269, 0.125, 0, 0.00847457627118644, 0.01048951048951049, 0.009174311926605505, 0.004484304932735426, 0.005376344086021506, 0.005649717514124294, 0.012578616352201259, 0.009259259259259259, 0.005681818181818182, 0, 0, 0, 0, 0, 0.018691588785046728, 0, 0.0125, 0.005291005291005291, 0, 0, 0.006896551724137931, 0, 0.008620689655172414, 0, 0.007575757575757576, 0, 0, 0, 0.008928571428571428, 0, 0, 0, 0, 0.009345794392523364, 0, 0, 0, 0.0076045627376425855, 0.009174311926605505, 0, 0, 0.005025125628140704, 0, 0.0049504950495049506, 0, 0, 0.004524886877828055, 0, 0.005390835579514825, 0, 0, 0, 0, 0, 0.015625, 0, 0.016877637130801686, 0, 0.04570383912248629, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.010351966873706004, 0, 0.01092896174863388, 0.002770083102493075, 0, 0.015544041450777202, 0, 0, 0, 0.014705882352941176, 0, 0, 0, 0, 0, 0, 0, 0.010309278350515464, 0.004545454545454545, 0.006666666666666667, 0.010101010101010102, 0.00425531914893617, 0.005025125628140704, 0, 0.0025252525252525255, 0.011764705882352941, 0.008849557522123894, 0, 0, 0.005649717514124294, 0.005494505494505495, 0.002331002331002331, 0, 0, 0, 0.004975124378109453, 0.012269938650306749, 0, 0, 0.015384615384615385, 0, 0, 0, 0, 0, 0, 0, 0.02564102564102564, 0.005494505494505495, 0, 0, 0, 0.012903225806451613, 0.0023584905660377358, 0.02247191011235955, 0.01818181818181818, 0.005681818181818182, 0, 0.005494505494505495, 0.012578616352201259, 0, 0, 0.011363636363636364, 0, 0, 0.006230529595015576, 0.006369426751592357, 0.004366812227074236, 0.017241379310344827, 0.0044444444444444444, 0.008064516129032258, 0.004761904761904762, 0, 0.013422818791946308, 0, 0.013333333333333334, 0, 0, 0.004524886877828055, 0, 0.012658227848101266, 0, 0.013333333333333334, 0.007407407407407408, 0.008849557522123894, 0, 0.0125, 0, 0, 0, 0, 0.006493506493506494, 0.007142857142857143, 0, 0.007722007722007722, 0.010869565217391304, 0.012, 0.007142857142857143, 0, 0.009836065573770493, 0, 0, 0, 0, 0.006369426751592357, 0, 0.0072992700729927005, 0.01020408163265306, 0, 0, 0, 0.0040650406504065045, 0.006756756756756757, 0, 0, 0.013774104683195593, 0.02857142857142857, 0, 0.00684931506849315, 0, 0, 0, 0.0035211267605633804, 0, 0, 0.014705882352941176, 0, 0, 0.013422818791946308, 0.006172839506172839, 0.009823182711198428, 0, 0.007936507936507936, 0, 0, 0.008456659619450317, 0.009375, 0, 0, 0, 0.006134969325153374, 0.008928571428571428, 0, 0.00819672131147541, 0.002197802197802198, 0, 0, 0, 0.006493506493506494, 0.004347826086956522, 0, 0, 0, 0, 0, 0.0016260162601626016, 0.033783783783783786, 0.011764705882352941, 0.010416666666666666, 0.012345679012345678, 0.0047169811320754715, 0.003484320557491289, 0.005434782608695652, 0.014018691588785047, 0, 0.003067484662576687, 0.014388489208633094, 0, 0.008658008658008658, 0, 0, 0, 0.005780346820809248, 0, 0.008928571428571428, 0, 0.005405405405405406, 0, 0.0113314447592068, 0, 0, 0, 0.004098360655737705, 0, 0.0091324200913242, 0.0136986301369863, 0, 0, 0.006211180124223602, 0.012345679012345678, 0.006578947368421052, 0.00558659217877095, 0, 0, 0.0106951871657754, 0.0035211267605633804, 0, 0.005025125628140704, 0, 0, 0, 0, 0.011695906432748537, 0.024793388429752067, 0.021164021164021163, 0, 0, 0.0078125, 0 ]
0.005665
5
[ { "analysis_explanation": null, "end": 1845, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1843 }, { "analysis_explanation": null, "end": 5443, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5432 }, { "analysis_explanation": null, "end": 5452, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5445 }, { "analysis_explanation": null, "end": 7191, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7189 }, { "analysis_explanation": null, "end": 7301, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7292 }, { "analysis_explanation": null, "end": 7949, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7944 }, { "analysis_explanation": null, "end": 8004, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7998 }, { "analysis_explanation": null, "end": 9785, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9780 }, { "analysis_explanation": null, "end": 11385, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11382 }, { "analysis_explanation": null, "end": 13297, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13295 }, { "analysis_explanation": null, "end": 13562, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13560 }, { "analysis_explanation": null, "end": 14847, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14846 }, { "analysis_explanation": null, "end": 14850, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14849 }, { "analysis_explanation": null, "end": 14854, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14852 }, { "analysis_explanation": null, "end": 14858, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14856 }, { "analysis_explanation": null, "end": 14862, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14860 }, { "analysis_explanation": null, "end": 14866, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14864 }, { "analysis_explanation": null, "end": 14870, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14868 }, { "analysis_explanation": null, "end": 15018, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15016 }, { "analysis_explanation": null, "end": 15136, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15128 }, { "analysis_explanation": null, "end": 18837, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18835 }, { "analysis_explanation": null, "end": 21765, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21763 }, { "analysis_explanation": null, "end": 23386, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23382 }, { "analysis_explanation": null, "end": 23408, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23404 }, { "analysis_explanation": null, "end": 23519, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23515 }, { "analysis_explanation": null, "end": 23702, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23701 }, { "analysis_explanation": null, "end": 23709, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23708 }, { "analysis_explanation": null, "end": 23712, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23711 }, { "analysis_explanation": null, "end": 23715, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23714 }, { "analysis_explanation": null, "end": 23721, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23720 }, { "analysis_explanation": null, "end": 24052, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24050 }, { "analysis_explanation": null, "end": 24989, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24985 }, { "analysis_explanation": null, "end": 25014, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25010 }, { "analysis_explanation": null, "end": 25158, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25154 }, { "analysis_explanation": null, "end": 25198, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25194 }, { "analysis_explanation": null, "end": 26322, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26320 }, { "analysis_explanation": null, "end": 26782, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26780 }, { "analysis_explanation": null, "end": 26807, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26800 }, { "analysis_explanation": null, "end": 26875, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26873 }, { "analysis_explanation": null, "end": 27647, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27640 }, { "analysis_explanation": null, "end": 27675, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27668 }, { "analysis_explanation": null, "end": 28050, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28033 }, { "analysis_explanation": null, "end": 28513, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28501 }, { "analysis_explanation": null, "end": 29392, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29390 }, { "analysis_explanation": null, "end": 30023, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30021 }, { "analysis_explanation": null, "end": 31500, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31498 }, { "analysis_explanation": null, "end": 32680, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32668 }, { "analysis_explanation": null, "end": 32751, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32749 }, { "analysis_explanation": null, "end": 34685, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34684 }, { "analysis_explanation": null, "end": 35528, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35525 }, { "analysis_explanation": null, "end": 36520, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36513 }, { "analysis_explanation": null, "end": 37035, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37028 }, { "analysis_explanation": null, "end": 37088, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37081 }, { "analysis_explanation": null, "end": 37435, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37423 }, { "analysis_explanation": null, "end": 38030, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38027 }, { "analysis_explanation": null, "end": 38190, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38173 }, { "analysis_explanation": null, "end": 38318, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38312 }, { "analysis_explanation": null, "end": 38445, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38433 }, { "analysis_explanation": null, "end": 39834, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39833 }, { "analysis_explanation": null, "end": 40284, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40283 }, { "analysis_explanation": null, "end": 40367, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40360 }, { "analysis_explanation": null, "end": 40610, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40603 }, { "analysis_explanation": null, "end": 40762, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40755 }, { "analysis_explanation": null, "end": 41232, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41225 }, { "analysis_explanation": null, "end": 41279, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41276 }, { "analysis_explanation": null, "end": 41487, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41480 }, { "analysis_explanation": null, "end": 41665, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41664 }, { "analysis_explanation": null, "end": 41772, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41765 }, { "analysis_explanation": null, "end": 42106, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42099 }, { "analysis_explanation": null, "end": 42940, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42937 }, { "analysis_explanation": null, "end": 43145, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43140 }, { "analysis_explanation": null, "end": 43384, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43362 }, { "analysis_explanation": null, "end": 43693, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43689 }, { "analysis_explanation": null, "end": 44718, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44706 }, { "analysis_explanation": null, "end": 45326, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45321 }, { "analysis_explanation": null, "end": 45536, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45532 }, { "analysis_explanation": null, "end": 45728, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45713 }, { "analysis_explanation": null, "end": 45933, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45929 }, { "analysis_explanation": null, "end": 45975, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45960 }, { "analysis_explanation": null, "end": 46058, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46052 }, { "analysis_explanation": null, "end": 46157, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46148 }, { "analysis_explanation": null, "end": 46373, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46369 }, { "analysis_explanation": null, "end": 46552, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46546 }, { "analysis_explanation": null, "end": 46627, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46625 }, { "analysis_explanation": null, "end": 47454, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47453 }, { "analysis_explanation": null, "end": 48863, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48856 }, { "analysis_explanation": null, "end": 48993, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48992 }, { "analysis_explanation": null, "end": 49940, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49936 }, { "analysis_explanation": null, "end": 50998, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50995 }, { "analysis_explanation": null, "end": 52001, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51993 }, { "analysis_explanation": null, "end": 56649, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56642 }, { "analysis_explanation": null, "end": 60564, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60552 }, { "analysis_explanation": null, "end": 60577, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60566 }, { "analysis_explanation": null, "end": 60599, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60582 }, { "analysis_explanation": null, "end": 60756, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60746 }, { "analysis_explanation": null, "end": 60793, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60770 }, { "analysis_explanation": null, "end": 60803, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60794 }, { "analysis_explanation": null, "end": 60811, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60805 }, { "analysis_explanation": null, "end": 305, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 303 }, { "analysis_explanation": null, "end": 512, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 510 }, { "analysis_explanation": null, "end": 518, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 516 }, { "analysis_explanation": null, "end": 719, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 717 }, { "analysis_explanation": null, "end": 725, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 723 }, { "analysis_explanation": null, "end": 1165, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 1163 }, { "analysis_explanation": null, "end": 1302, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 1300 }, { "analysis_explanation": null, "end": 1486, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 1484 }, { "analysis_explanation": null, "end": 1697, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 1694 }, { "analysis_explanation": null, "end": 2475, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 2472 }, { "analysis_explanation": null, "end": 3179, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 3176 }, { "analysis_explanation": null, "end": 3612, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 3609 }, { "analysis_explanation": null, "end": 3619, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 3616 }, { "analysis_explanation": null, "end": 3880, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 3877 }, { "analysis_explanation": null, "end": 4039, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 4036 }, { "analysis_explanation": null, "end": 4046, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 4043 }, { "analysis_explanation": null, "end": 4142, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 4139 }, { "analysis_explanation": null, "end": 4149, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 4146 }, { "analysis_explanation": null, "end": 6231, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 6228 }, { "analysis_explanation": null, "end": 6288, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 6286 }, { "analysis_explanation": null, "end": 14695, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 14692 }, { "analysis_explanation": null, "end": 18837, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 18835 }, { "analysis_explanation": null, "end": 19097, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 19095 }, { "analysis_explanation": null, "end": 19103, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 19101 }, { "analysis_explanation": null, "end": 24944, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 24942 }, { "analysis_explanation": null, "end": 25623, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 25620 }, { "analysis_explanation": null, "end": 26499, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 26497 }, { "analysis_explanation": null, "end": 26917, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 26915 }, { "analysis_explanation": null, "end": 27647, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 27645 }, { "analysis_explanation": null, "end": 29578, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 29576 }, { "analysis_explanation": null, "end": 29742, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 29740 }, { "analysis_explanation": null, "end": 30728, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 30726 }, { "analysis_explanation": null, "end": 30843, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 30841 }, { "analysis_explanation": null, "end": 41421, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 41418 }, { "analysis_explanation": null, "end": 43065, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 43063 }, { "analysis_explanation": null, "end": 43072, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 43069 }, { "analysis_explanation": null, "end": 43091, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 43089 }, { "analysis_explanation": null, "end": 45586, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 45584 }, { "analysis_explanation": null, "end": 48663, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 48661 }, { "analysis_explanation": null, "end": 48761, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 48759 }, { "analysis_explanation": null, "end": 49589, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 49587 }, { "analysis_explanation": null, "end": 50228, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 50226 }, { "analysis_explanation": null, "end": 52778, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 52776 }, { "analysis_explanation": null, "end": 52785, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 52782 }, { "analysis_explanation": null, "end": 53505, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 53503 }, { "analysis_explanation": null, "end": 57571, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.6499999999999999, "start": 57568 }, { "analysis_explanation": null, "end": 5060, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 5027 }, { "analysis_explanation": null, "end": 12619, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 12552 }, { "analysis_explanation": null, "end": 12677, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 12636 }, { "analysis_explanation": null, "end": 12725, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 12696 }, { "analysis_explanation": null, "end": 12776, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 12736 }, { "analysis_explanation": null, "end": 12822, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 12795 }, { "analysis_explanation": null, "end": 22933, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 22900 }, { "analysis_explanation": null, "end": 23022, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 22956 }, { "analysis_explanation": null, "end": 33443, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 33410 }, { "analysis_explanation": null, "end": 60485, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 60414 }, { "analysis_explanation": null, "end": 5026, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 4999 }, { "analysis_explanation": null, "end": 33409, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 33382 }, { "analysis_explanation": null, "end": 12, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 0 }, { "analysis_explanation": null, "end": 248, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 246 }, { "analysis_explanation": null, "end": 1034, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 1032 }, { "analysis_explanation": null, "end": 1798, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 1795 }, { "analysis_explanation": null, "end": 1999, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 1996 }, { "analysis_explanation": null, "end": 2227, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 2224 }, { "analysis_explanation": null, "end": 4357, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 4354 }, { "analysis_explanation": null, "end": 4364, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 4361 }, { "analysis_explanation": null, "end": 5526, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 5524 }, { "analysis_explanation": null, "end": 5533, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 5531 }, { "analysis_explanation": null, "end": 5664, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 5662 }, { "analysis_explanation": null, "end": 5831, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 5828 }, { "analysis_explanation": null, "end": 5838, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 5835 }, { "analysis_explanation": null, "end": 6067, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 6065 }, { "analysis_explanation": null, "end": 6573, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 6570 }, { "analysis_explanation": null, "end": 6735, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 6733 }, { "analysis_explanation": null, "end": 6845, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 6843 }, { "analysis_explanation": null, "end": 6868, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 6866 }, { "analysis_explanation": null, "end": 7168, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 7165 }, { "analysis_explanation": null, "end": 8413, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 8411 }, { "analysis_explanation": null, "end": 8831, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 8829 }, { "analysis_explanation": null, "end": 8847, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 8845 }, { "analysis_explanation": null, "end": 8960, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 8958 }, { "analysis_explanation": null, "end": 8991, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 8989 }, { "analysis_explanation": null, "end": 9077, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 9075 }, { "analysis_explanation": null, "end": 9092, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 9090 }, { "analysis_explanation": null, "end": 9355, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 9350 }, { "analysis_explanation": null, "end": 9546, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 9541 }, { "analysis_explanation": null, "end": 10313, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 10311 }, { "analysis_explanation": null, "end": 10855, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 10852 }, { "analysis_explanation": null, "end": 12532, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 12530 }, { "analysis_explanation": null, "end": 13314, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 13311 }, { "analysis_explanation": null, "end": 13579, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 13576 }, { "analysis_explanation": null, "end": 14177, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 14175 }, { "analysis_explanation": null, "end": 14286, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 14284 }, { "analysis_explanation": null, "end": 15018, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 15016 }, { "analysis_explanation": null, "end": 15031, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 15028 }, { "analysis_explanation": null, "end": 15231, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 15229 }, { "analysis_explanation": null, "end": 17275, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 17273 }, { "analysis_explanation": null, "end": 17388, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 17386 }, { "analysis_explanation": null, "end": 17805, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 17803 }, { "analysis_explanation": null, "end": 20469, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 20467 }, { "analysis_explanation": null, "end": 20788, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 20786 }, { "analysis_explanation": null, "end": 22157, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 22154 }, { "analysis_explanation": null, "end": 22175, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 22173 }, { "analysis_explanation": null, "end": 22823, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 22821 }, { "analysis_explanation": null, "end": 22827, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 22825 }, { "analysis_explanation": null, "end": 22841, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 22839 }, { "analysis_explanation": null, "end": 22845, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 22843 }, { "analysis_explanation": null, "end": 23226, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23223 }, { "analysis_explanation": null, "end": 23244, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23241 }, { "analysis_explanation": null, "end": 23259, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23256 }, { "analysis_explanation": null, "end": 23293, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23291 }, { "analysis_explanation": null, "end": 23300, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23297 }, { "analysis_explanation": null, "end": 23308, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23306 }, { "analysis_explanation": null, "end": 23319, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23316 }, { "analysis_explanation": null, "end": 23334, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23331 }, { "analysis_explanation": null, "end": 23341, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23338 }, { "analysis_explanation": null, "end": 23362, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23359 }, { "analysis_explanation": null, "end": 23378, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23375 }, { "analysis_explanation": null, "end": 23393, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23390 }, { "analysis_explanation": null, "end": 23400, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23397 }, { "analysis_explanation": null, "end": 23415, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23412 }, { "analysis_explanation": null, "end": 23460, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23457 }, { "analysis_explanation": null, "end": 23467, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23464 }, { "analysis_explanation": null, "end": 23474, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23471 }, { "analysis_explanation": null, "end": 23481, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23478 }, { "analysis_explanation": null, "end": 23497, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23494 }, { "analysis_explanation": null, "end": 23511, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23508 }, { "analysis_explanation": null, "end": 23526, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23523 }, { "analysis_explanation": null, "end": 23541, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23538 }, { "analysis_explanation": null, "end": 23562, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23559 }, { "analysis_explanation": null, "end": 23569, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23566 }, { "analysis_explanation": null, "end": 23591, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23589 }, { "analysis_explanation": null, "end": 23737, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 23735 }, { "analysis_explanation": null, "end": 24892, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 24890 }, { "analysis_explanation": null, "end": 25263, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 25261 }, { "analysis_explanation": null, "end": 25675, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 25672 }, { "analysis_explanation": null, "end": 25944, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 25941 }, { "analysis_explanation": null, "end": 26018, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 26016 }, { "analysis_explanation": null, "end": 26782, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 26780 }, { "analysis_explanation": null, "end": 26807, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 26805 }, { "analysis_explanation": null, "end": 26875, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 26873 }, { "analysis_explanation": null, "end": 26989, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 26987 }, { "analysis_explanation": null, "end": 27030, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 27028 }, { "analysis_explanation": null, "end": 27106, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 27103 }, { "analysis_explanation": null, "end": 27113, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 27110 }, { "analysis_explanation": null, "end": 27120, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 27117 }, { "analysis_explanation": null, "end": 28278, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 28275 }, { "analysis_explanation": null, "end": 28602, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 28600 }, { "analysis_explanation": null, "end": 28759, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 28756 }, { "analysis_explanation": null, "end": 28880, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 28878 }, { "analysis_explanation": null, "end": 29028, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 29026 }, { "analysis_explanation": null, "end": 29280, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 29278 }, { "analysis_explanation": null, "end": 29392, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 29390 }, { "analysis_explanation": null, "end": 29494, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 29491 }, { "analysis_explanation": null, "end": 30023, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 30021 }, { "analysis_explanation": null, "end": 30645, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 30642 }, { "analysis_explanation": null, "end": 31058, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 31056 }, { "analysis_explanation": null, "end": 31165, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 31163 }, { "analysis_explanation": null, "end": 31756, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 31754 }, { "analysis_explanation": null, "end": 32960, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 32958 }, { "analysis_explanation": null, "end": 33245, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 33243 }, { "analysis_explanation": null, "end": 33602, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 33600 }, { "analysis_explanation": null, "end": 33809, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 33807 }, { "analysis_explanation": null, "end": 34433, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 34431 }, { "analysis_explanation": null, "end": 34650, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 34648 }, { "analysis_explanation": null, "end": 35910, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 35907 }, { "analysis_explanation": null, "end": 35929, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 35927 }, { "analysis_explanation": null, "end": 36381, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 36379 }, { "analysis_explanation": null, "end": 37644, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 37641 }, { "analysis_explanation": null, "end": 37892, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 37889 }, { "analysis_explanation": null, "end": 38794, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 38789 }, { "analysis_explanation": null, "end": 38813, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 38811 }, { "analysis_explanation": null, "end": 38985, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 38979 }, { "analysis_explanation": null, "end": 39227, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 39225 }, { "analysis_explanation": null, "end": 39346, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 39344 }, { "analysis_explanation": null, "end": 39472, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 39469 }, { "analysis_explanation": null, "end": 39479, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 39476 }, { "analysis_explanation": null, "end": 39658, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 39656 }, { "analysis_explanation": null, "end": 39798, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 39796 }, { "analysis_explanation": null, "end": 40107, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 40105 }, { "analysis_explanation": null, "end": 40248, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 40246 }, { "analysis_explanation": null, "end": 40452, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 40450 }, { "analysis_explanation": null, "end": 40634, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 40632 }, { "analysis_explanation": null, "end": 40951, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 40949 }, { "analysis_explanation": null, "end": 41304, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 41302 }, { "analysis_explanation": null, "end": 41632, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 41630 }, { "analysis_explanation": null, "end": 41831, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 41829 }, { "analysis_explanation": null, "end": 42390, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 42388 }, { "analysis_explanation": null, "end": 43240, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 43238 }, { "analysis_explanation": null, "end": 43247, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 43244 }, { "analysis_explanation": null, "end": 43489, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 43487 }, { "analysis_explanation": null, "end": 43496, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 43493 }, { "analysis_explanation": null, "end": 43660, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 43658 }, { "analysis_explanation": null, "end": 44031, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 44029 }, { "analysis_explanation": null, "end": 45139, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 45137 }, { "analysis_explanation": null, "end": 45214, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 45211 }, { "analysis_explanation": null, "end": 45503, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 45501 }, { "analysis_explanation": null, "end": 45659, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 45656 }, { "analysis_explanation": null, "end": 45745, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 45743 }, { "analysis_explanation": null, "end": 45900, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 45898 }, { "analysis_explanation": null, "end": 46389, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 46387 }, { "analysis_explanation": null, "end": 46627, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 46625 }, { "analysis_explanation": null, "end": 46706, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 46704 }, { "analysis_explanation": null, "end": 46817, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 46815 }, { "analysis_explanation": null, "end": 46896, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 46894 }, { "analysis_explanation": null, "end": 47027, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 47025 }, { "analysis_explanation": null, "end": 47317, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 47315 }, { "analysis_explanation": null, "end": 48886, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 48884 }, { "analysis_explanation": null, "end": 49019, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 49017 }, { "analysis_explanation": null, "end": 49736, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 49734 }, { "analysis_explanation": null, "end": 50004, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 50002 }, { "analysis_explanation": null, "end": 50665, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 50663 }, { "analysis_explanation": null, "end": 50791, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 50788 }, { "analysis_explanation": null, "end": 50798, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 50795 }, { "analysis_explanation": null, "end": 50818, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 50816 }, { "analysis_explanation": null, "end": 50825, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 50822 }, { "analysis_explanation": null, "end": 50848, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 50845 }, { "analysis_explanation": null, "end": 50863, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 50860 }, { "analysis_explanation": null, "end": 50885, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 50882 }, { "analysis_explanation": null, "end": 51066, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 51063 }, { "analysis_explanation": null, "end": 51422, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 51420 }, { "analysis_explanation": null, "end": 51631, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 51628 }, { "analysis_explanation": null, "end": 51683, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 51681 }, { "analysis_explanation": null, "end": 51813, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 51811 }, { "analysis_explanation": null, "end": 52208, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 52206 }, { "analysis_explanation": null, "end": 53431, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 53429 }, { "analysis_explanation": null, "end": 53438, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 53435 }, { "analysis_explanation": null, "end": 53445, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 53442 }, { "analysis_explanation": null, "end": 55213, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 55210 }, { "analysis_explanation": null, "end": 56047, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 56044 }, { "analysis_explanation": null, "end": 56222, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 56219 }, { "analysis_explanation": null, "end": 58243, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 58240 }, { "analysis_explanation": null, "end": 58491, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 58489 }, { "analysis_explanation": null, "end": 59460, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 59458 } ]
[ "Nettles anger at Bergerac repeats ban: Actor criticises BBC for refusing to show re-runs because show featured children's home linked to Jimmy Savile\n\nSeries used Haut de la Garenne on Jersey as a police HQ\n\nThe building has since been dubbed the Jersey House of Horrors\n\nIt f ollows alleg ations that child abuse to ok place there\n\nSavile visited the home and it is feared he abused youngsters there\n\nActor John Nettles has criticised the BBC for cancelling re-runs of Bergerac\n\nJohn Nettles criticised the BBC yesterday for cancelling re-runs of Bergerac – because they feature a children's home linked to Jimmy Savile.", "\n\nThe 1980s detective series used Haut de la Garenne – dubbed the Jersey House of Horrors – as police HQ.", "\n\nA child abuse investigation found that former residents had been molested. ", "Savile visited the home and it is feared he abused youngsters there.", "\n\nBBC2 said it had postponed re-runs of the show because of 'the sensitive nature of the public hearing into incidents at Haut de la Garenne'.", "\n\nNettles fumed: 'It seems to be a little bizarre that exterior Haut de la Garenne shots can't be used. ", "It means you can't photograph or film anywhere where there is a suspicion that a crime has been committed.", "\n\n'It just shows how far the BBC is bending over backwards to apologise for the Jimmy Savile scandal.", "\n\n'How it can be connected by viewers with Jimmy Savile and the Yewtree inquiry is beyond belief. ", "It's just unfortunate that viewers have to suffer for it.'", "\n\nThe Haut de la Garenne home, which was unoccupied at the time, featured as a police station in six of the show's nine series.", "\n\nBBC2 bosses had planned to re-run the entire back catalogue of Bergerac, which ran from 1981 to 1991 and made Nestles, who played Jim Bergerac, a household name.", "\n\nBut after running the first three series, corporation chiefs have 'postponed' the remaining six, which all feature Haut de la Garenne as the fictional HQ.", "\n\nA fresh inquiry looking at allegations of abuse in children's homes and fostering services in Jersey from 1960 to the present day is due to start this year.", "\n\nThe former Haut de la Garenne children's home in Jersey has been the subject of a major child abuse investigation. ", "It was used as a police HQ in Bergerac\n\nA spokesman for the BBC said: 'Due to the sensitive nature of the public hearing into incidents at Haut de la Garenne and out of respect for the victims, the BBC has decided, for the moment, to postpone episodes of Bergerac.'", "\n\nHaut de la Garenne began in 1867 as an industrial school for 'young people of the lower classes of society and neglected children'.", "\n\nIt closed in 1986 and was the centre of a huge police inquiry in 2008 which revealed numerous instances of child abuse against past residents." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.01610305958132045, 0.01904761904761905, 0, 0.014705882352941176, 0, 0.019230769230769232, 0, 0.019801980198019802, 0.01020408163265306, 0, 0, 0.012269938650306749, 0.00641025641025641, 0, 0, 0.007547169811320755, 0, 0 ]
0.006962
5
[ { "analysis_explanation": null, "end": 25, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17 }, { "analysis_explanation": null, "end": 157, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 137 }, { "analysis_explanation": null, "end": 191, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 185 }, { "analysis_explanation": null, "end": 420, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 408 }, { "analysis_explanation": null, "end": 521, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 512 }, { "analysis_explanation": null, "end": 556, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 548 }, { "analysis_explanation": null, "end": 620, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 608 }, { "analysis_explanation": null, "end": 631, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 626 }, { "analysis_explanation": null, "end": 1373, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1361 }, { "analysis_explanation": null, "end": 1693, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1689 }, { "analysis_explanation": null, "end": 1701, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1697 }, { "analysis_explanation": null, "end": 1743, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1731 }, { "analysis_explanation": null, "end": 2018, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2012 }, { "analysis_explanation": null, "end": 2028, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2024 }, { "analysis_explanation": null, "end": 2047, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2032 }, { "analysis_explanation": null, "end": 2073, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2064 }, { "analysis_explanation": null, "end": 2130, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2124 }, { "analysis_explanation": null, "end": 2488, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2484 }, { "analysis_explanation": null, "end": 2605, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2601 }, { "analysis_explanation": null, "end": 2657, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2653 } ]
[ "916 F.2d 1239\nDorothy A. WILSON and Louis P. Wilson, Plaintiffs-Appellees,v.HUMPHREYS (CAYMAN) LIMITED, a corporation, and Holiday Inns,Inc., a corporation, Defendants-Appellants.", "\nNos. ", "88-2495, 88-2496.", "\nUnited States Court of Appeals,Seventh Circuit.", "\nArgued Oct. 31, 1989.Decided Oct. 24, 1990.Rehearing Denied Nov. 21, 1990.", "\n\nRobert L. Gibson, Alfred H. Kreckman, Jr., Massey, Anderson & Gibson, Paris, Ill., Phillip A. Terry, McHale, Cook & Welch, Indianapolis, Ind., for plaintiffs-appellees.", "\nJames A. McDermott, Jan M. Carroll, Barnes & Thornburg, Indianapolis, Ind., Theodore J. Nowacki, Bose, McKinney & Evans, Indianapolis, Ind., for defendants-appellants.", "\nBefore BAUER, Chief Judge, and RIPPLE, Circuit Judge, and WILL, Senior District Judge.*", "\nRIPPLE, Circuit Judge.", "\n\n\n1\nDorothy and Louis Wilson initiated this diversity action in 1986. ", " The Wilsons asserted that the two defendants involved in this appeal, together with a third defendant, were liable to them for damages in connection with a serious injury suffered by Mrs. Wilson while staying as a guest in appellant Humphreys' hotel.1 Humphreys and Holiday Inns moved to dismiss the complaint due to lack of subject matter and personal jurisdiction, and asserted that the forum selected by the plaintiffs violated the doctrine of forum non conveniens. ", " The district court denied these motions. ", " Upon application by the appellants, the district court certified the questions of jurisdiction and forum non conveniens to this court on May 25, 1988 (for Humphreys), and July 7, 1988 (for Holiday Inns). ", " This court accepted the appeal on July 13, 1988. ", " We now affirm the judgment of the district court in part and remand for further consideration.", "\n\n\n2\n* BACKGROUND\n\n\n3\nHumphreys (Cayman) Limited is incorporated under the laws of the Cayman Islands. ", " Humphreys is a licensee of appellant Holiday Inns, Inc. and operates a hotel in the Cayman Islands under authority of that license. ", " Humphreys maintains a corporate office in Memphis, Tennessee and has operated a reservations office in Miami, Florida. ", " Holiday Inns, Inc. is a Tennessee corporation and is registered to do business in Indiana. ", " The record does not reveal the nature or extent of its activities within the state.", "\n\n\n4\nSince 1976, Humphreys has participated in a continuing commercial relationship with American Trans Air (American) to provide accommodations for tours run by American to the Cayman Islands. ", " As part of this relationship, Humphreys sent officers to Indianapolis on at least one occasion to meet with representatives of American. ", " During a trip to Indiana in the summer of 1981, Humphreys' representatives negotiated a long-term contract with American by which a certain number of rooms at Humphreys' hotel would be guaranteed at a reduced rate for American-run tours, with American tour leaders receiving free accommodations. ", " American frequently has listed trips to the Cayman Islands in its regular advertising brochures and has included specific references to Humphreys' hotel. ", " In addition, Humphreys advertises extensively in national magazines directed both at travel agents and potential travellers. ", " Humphreys printed rate cards and brochures that it sent for further distribution to American in Indiana and to various travel agents around the country.", "\n\n\n5\nDorothy and Louis Wilson participated in a tour organized by American that left Indianapolis International Airport on October 28, 1984. ", " The group stayed at Humphreys' hotel in the Cayman Islands. ", " According to Mrs. Wilson's affidavit, arrangements for the trip were made as a result of advertisements for the tour that appeared in American's travel bulletin. ", " Arrangements were made with American's tour subsidiary, Ambassadair, and payment was made to Ambassadair in Indianapolis, Indiana.", "\n\n\n6\nOn October 30, 1984, Mrs. Wilson was assaulted by an intruder in her hotel room. ", " The intruder attempted to rob and rape Mrs. Wilson, and she suffered serious injuries. ", " She spent a week in a hospital on the Cayman Islands and then returned to Indianapolis to be treated at Methodist Hospital.", "\n\n\n7\nThe complaint contains thirteen counts against the two appellants in this case. ", " The counts charge the appellants with negligence, breach of express and implied warranties, breach of contract, and negligent infliction of emotional distress. ", " The appellants moved to dismiss the complaint on the grounds of lack of subject matter or personal jurisdiction, and forum non conveniens. ", " The district court denied these motions, but subsequently certified them for interlocutory appeal pursuant to 28 U.S.C. Sec. ", "1292(b). ", " We accepted the appeal and now consider each issue in turn.", "\n\nII\nANALYSIS\nA. Subject Matter Jurisdiction\n\n8\nDiversity jurisdiction in this suit is based on 28 U.S.C. Sec. ", "1332(a)(3), which provides for jurisdiction when the suit is between \"citizens of different States and in which citizens or subjects of a foreign state are additional parties.\" ", " Humphreys argues that the district court cannot exercise subject matter jurisdiction over it because it is a company incorporated in the Cayman Islands, and the Cayman Islands is not a \"foreign state.\" ", " Humphreys reaches this conclusion by noting that the Cayman Islands is a dependency of Great Britain and that the United States does not regard the Cayman Islands as an independent sovereign. ", " See The World Factbook 1989 at 56.", "\n\n\n9\nThe power to exercise jurisdiction over a foreign citizen under 28 U.S.C. Sec. ", "1332 has been referred to as \"alienage jurisdiction.\" ", " Sadat v. Mertes, 615 F.2d 1176, 1182 (7th Cir.1980). ", " This type of jurisdiction \"was intended to provide the federal courts with a form of protective jurisdiction over matters implicating international relations where the national interest was paramount.\" ", " Id.\n\n\n10\n\"The dominant considerations which prompted the provision for such jurisdiction appear to have been:\n\n\n11\n(1) Failure on the part of individual states to give protection to foreigners under treaties; ... [and]\n\n\n12\n(2) Apprehension of entanglements with other sovereigns that might ensue from failure to treat the legal controversies of aliens on a national level.\"", "\n\n\n13\nId. (quoting Blair Holdings Corp. v. Rubinstein, 133 F.Supp. ", "496, 500 (S.D.N.Y.1955)).", "\n\n\n14\nOur inquiry therefore must be whether the policies supporting alienage jurisdiction permit a United States District Court to assume jurisdiction over a citizen of the Cayman Islands.2 The Cayman Islands is a British Dependent Territory.3 A citizen of a British Dependent Territory is a \"citizen of the United Kingdom and Colonies.\" ", " British Nationality Act 1981 Sec. ", "51(3)(a)(ii). ", " According to an affidavit of a Cayman Islands attorney submitted by Humphreys, the court system in the Cayman Islands is patterned after that of Great Britain. ", " In addition, \"[t]he Common Law of England ... is recognised and applied by the Courts in all cases where there has not been a specific local enactment.\" ", " Humphreys' App. ", "at 66. ", " The Cayman Islands is administered by a governor who is appointed by the British monarch. ", " The United Kingdom represents Caymanian diplomatic interests and is responsible for its military defense. ", " The World Factbook 1989 at 56.", "\n\n\n15\nSeveral federal courts have determined, although generally without discussion, that subject matter jurisdiction existed in suits between citizens of the United States and Cayman Island corporations. ", " See Bally Export Corp. v. Balicar, Ltd., 804 F.2d 398, 399-400 (7th Cir.1986); Philan Ins. ", "Ltd. v. Frank B. Hall & Co., Inc., 712 F.Supp. ", "339, 345 (S.D.N.Y.1989); Rolls Royce (Canada) Ltd. v. Cayman Airways, Ltd., 617 F.Supp. ", "17, 18 (S.D.Fla.1985). ", " In addition, the Second Circuit concluded that alienage jurisdiction existed over a company incorporated in Bermuda, also a British Dependent Territory. ", " Netherlands Shipmortgage Corp. v. Madias, 717 F.2d 731, 735 (2d Cir.1983); see also British Nationality Act 1981, 31 Halsbury's Statutes 172 (4th ed. ", "1987) (Bermuda identified as a British Dependent Territory).", "\n\n\n16\nHumphreys relies on one unpublished district court decision for support of its assertion that alienage jurisdiction does not apply to this case. ", " St. Germain v. West Bay Leasing, Ltd., CV-81-3945, order (E.D.N.Y.1982). ", " That court in fact did conclude that subject matter jurisdiction was lacking when one of the parties was a Cayman Islands corporation. ", " The court relied in part on an earlier decision denying diversity jurisdiction over a business incorporated in Hong Kong, a British colony. ", " Windert Watch Co. v. Remex Elecs. ", " Ltd., 468 F.Supp. ", "1242 (S.D.N.Y.1979). ", " However, the force of the Windert decision has been eroded by a more recent case from the same court. ", " In Tetra Finance (HK) Ltd. v. Shaheen, 584 F.Supp. ", "847 (S.D.N.Y.1984), the court noted that corporations should not be denied access to American courts simply because of the status of the country in which they are incorporated. ", " \"It would seem hypertechnical to preclude Hong Kong corporations from asserting claims in our courts simply because Hong Kong has not been formally recognized by the United States as a foreign sovereign in its own right.\" ", " Id. at 848.4\n\n\n17\nWe agree with the district court that subject matter jurisdiction under section 1332 is present. ", " We see no reason to depart from the weight of authority. ", " Certainly, the exercise of American judicial authority over the citizens of a British Dependent Territory implicates this country's relationship with the United Kingdom--precisely the raison d'etre for applying alienage jurisdiction. ", " Not applying alienage jurisdiction in this case would allow \"form rather than substance\" to govern. ", " Murarka v. Bachrack Bros., 215 F.2d 547, 552 (2d Cir.1954) (Harlan, J.).5\n\nB. Personal Jurisdiction\n\n18\nIn a diversity case, a federal district court has personal jurisdiction over a nonresident defendant \"only if a court of the state in which it sits would have such jurisdiction.\" ", " Turnock v. Cope, 816 F.2d 332, 334 (7th Cir.1987). ", " Therefore, review of decisions regarding jurisdiction of a federal court in a diversity suit requires a two-part inquiry: (1) whether the state statute allows jurisdiction, and (2) whether the assertion of jurisdiction complies with constitutional due process standards. ", " See Heritage House Restaurants, Inc. v. Continental Funding Group, Inc., 906 F.2d 276, 279 (7th Cir.1990); John Walker & Sons, Ltd. v. DeMert & Dougherty, Inc., 821 F.2d 399, 401-02 (7th Cir.1987) (Illinois long-arm statute); 4 C. Wright & A. Miller, Federal Practice and Procedure Sec. ", "1069 at 347 (1987). ", " In this case, these twin inquiries collapse into one, because, as this court has noted, Indiana's long-arm statute extends personal jurisdiction to the limit allowed under the due process clause of the fourteenth amendment. ", " Wallace v. Herron, 778 F.2d 391, 393 (7th Cir.1985) (and cases cited therein), cert. ", "denied, 475 U.S. 1122, 106 S.Ct. ", "1642, 90 L.Ed.2d 187 (1986). ", " Accordingly, we shall focus on whether assertion of jurisdiction in this case violates due process.", "\n\n\n19\nDue process requires that the defendant have \"minimum contacts with [the forum] such that the maintenance of the suit does not offend 'traditional notions of fair play and substantial justice.' \" ", " International Shoe Co. v. Washington, 326 U.S. 310, 316, 66 S.Ct. ", "154, 158, 90 L.Ed. ", "95 (1945) (quoting Milliken v. Meyer, 311 U.S. 457, 463, 61 S.Ct. ", "339, 342, 85 L.Ed. ", "278 (1940)); FMC Corp. v. Varonos, 892 F.2d 1308, 1313 (7th Cir.1990). ", " The minimum contacts must be established by the purposeful acts of the defendant. ", " Burger King Corp. v. Rudzewicz, 471 U.S. 462, 475, 105 S.Ct. ", "2174, 2183, 85 L.Ed.2d 528 (1985). ", " Examples of acts that, depending on the circumstances, might support a determination of jurisdiction include \"designing the product for the market in the forum State, advertising in the forum State, establishing channels for providing regular advice to customers in the forum State, or marketing the product through a distributor who has agreed to serve as the sales agent in the forum State.\" ", " Asahi Metal Indus. ", "Co. v. Superior Court, 480 U.S. 102, 112, 107 S.Ct. ", "1026, 1033, 94 L.Ed.2d 92 (1987).", "\n\n\n20\nThere are two types of jurisdiction that can be exercised over an out-of-state defendant--specific and general. ", " When the defendant's activities in the state with respect to the transaction underlying the litigation serve as the basis for jurisdiction, the assertion of jurisdiction is said to be \"specific.\" ", " See Helicopteros Nacionales de Columbia v. Hall, 466 U.S. 408, 414 n. 8, 104 S.Ct. ", "1868, 1872 n. 8, 80 L.Ed.2d 404 (1984); Giotis v. Apollo of the Ozarks, Inc., 800 F.2d 660, 666 n. 3 (7th Cir.1986) (discussing difference between general and specific jurisdiction), cert. ", "denied, 479 U.S. 1092, 107 S.Ct. ", "1303, 94 L.Ed.2d 158 (1987); Wallace, 778 F.2d at 393 (same). ", " By contrast, when the defendant's overall activity in the state, not simply its actions with respect to the underlying transaction, are the basis, the jurisdiction is said to be \"general.\" ", " See Helicopteros Nacionales de Colombia, 466 U.S. at 414 n. 9, 104 S.Ct. ", "at 1872 n. 9.", "\n\n1. ", "specific jurisdiction over Humphreys\n\n21\nConsidering Humphreys first, we shall examine whether the contacts it had with the state satisfy the assertion of specific jurisdiction.6 Jurisdiction based on such contacts comports with due process only if Humphreys reasonably should have anticipated being haled into court in Indiana. ", " See Burger King Corp. v. Rudzewicz, 471 U.S. 462, 474, 105 S.Ct. ", "2174, 2183, 85 L.Ed.2d 528 (1985); World-Wide Volkswagen Corp. v. Woodson, 444 U.S. 286, 297, 100 S.Ct. ", "559, 567, 62 L.Ed.2d 490 (1980); FMC Corp. v. Varonos, 892 F.2d 1308, 1313 (7th Cir.1990); Wallace, 778 F.2d at 393-94. ", " Humphreys must purposefully have availed itself of the \" 'privilege of conducting activities' \" in Indiana. ", " Burger King, 471 U.S. at 475, 105 S.Ct. ", "at 2183 (quoting Hanson v. Denckla, 357 U.S. 235, 253, 78 S.Ct. ", "1228, 1239, 2 L.Ed.2d 1283 (1958)); see also Giotis, 800 F.2d at 666; Wallace, 778 F.2d at 395.", "\n\n\n22\n\"Specific jurisdiction turns on a particularized assessment of the 'relationship among the defendant, the forum, and the litigation.' \" ", " Saylor v. Dyniewski, 836 F.2d 341, 344 (7th Cir.1988) (quoting Shaffer v. Heitner, 433 U.S. 186, 204, 97 S.Ct. ", "2569, 2579, 53 L.Ed.2d 683 (1977)). ", " The conduct engaged in by Humphreys in Indiana is certainly sufficient to satisfy specific jurisdiction. ", " Humphreys advertised in the state of Indiana, entered into a long-term arrangement with an Indiana corporation to provide a guaranteed number of rooms to be used in connection with tour packages that departed from Indiana, and sent representatives to Indiana to negotiate the contract. ", " In short, Humphreys established a continuing commercial relationship with an Indiana tour company with the expectation that its service (providing accommodation) would be purchased by residents of Indiana (and other states). ", " These contacts convince us that the district court correctly determined that Humphreys is subject to personal jurisdiction in Indiana. ", " Humphreys, by its own business conduct, had purposefully availed itself \"of the privilege of conducting activities within the forum State, thus invoking the benefits and protections of its laws.\" ", " Hanson v. Denckla, 357 U.S. 235, 253, 78 S.Ct. ", "1228, 1240, 2 L.Ed.2d 1283 (1958). ", " It should have \"reasonably anticipate[d] being haled into court there.\" ", " World-Wide Volkswagen v. Woodson, 444 U.S. at 297, 100 S.Ct. ", "at 567; see Shute v. Carnival Cruise Lines, 897 F.2d 377, 380, 386 (9th Cir.1990) (in plaintiff's personal injury suit, specific jurisdiction over corporation was found where corporation advertised in forum, sent brochures to forum, solicited business in forum, and sold tickets on a commission basis through travel agents in forum) (as amended and refiled); Rainbow Travel Serv., ", "Inc. v. Hilton Hotels Corp., 896 F.2d 1233, 1238 (10th Cir.1990) (contacts sufficient to meet due process requirements when hotel solicited business in forum state, carried out negotiations there, and sent contracts there for execution); Neiman v. Rudolf Wolff & Co., 619 F.2d 1189, 1193 (7th Cir.) ", " (personal jurisdiction established where employee of defendant [an English company] came to forum for a lunch meeting, and meeting constituted bulk of negotiations that led to formation of contract; \"A defendant's participation in the state in substantial preliminary negotiations leading to the contract in issue has been held a sufficient basis for long-arm jurisdiction.\"), ", "cert. ", "denied, 449 U.S. 920, 101 S.Ct. ", "319, 66 L.Ed.2d 148 (1980).7\n\n2. ", "general jurisdiction over Holiday Inns\n\n23\nOn this record, personal jurisdiction over Holiday Inns must be based, if at all, on general jurisdiction, because the only connection Holiday Inns had with the injury was its franchise arrangement with Humphreys. ", " Jurisdiction based on a party's generally affiliating nexus with the state, as previously noted, does not offend due process when there are \"continuous and systematic general business contacts\" of the defendant in the state. ", " Helicopteros Nacionales de Columbia, 466 U.S. at 416, 104 S.Ct. ", "at 1873. ", " \"This is a fairly high standard in practice.\" ", " Fields v. Sedgwick Associated Risks Ltd., 796 F.2d 299, 301 (9th Cir.1986); see Shute, 897 F.2d at 380-81 (collecting cases). ", " The Wilsons argue that the Indiana registration act, Indiana Code 23-1-11-6,8 is sufficient to support general jurisdiction. ", " Registering to do business is a necessary precursor to engaging in business activities in the forum state. ", " However, it cannot satisfy ... standing alone ... the demands of due process. ", " Such an interpretation of the Indiana registration statute would render it constitutionally suspect and, accordingly, we decline to give it such a reading. ", " Cf. ", "NLRB v. Catholic Bishops of Chicago, 440 U.S. 490, 500, 99 S.Ct. ", "1313, 1318, 59 L.Ed.2d 533 (1979).", "\n\n\n24\nOn this record, we cannot determine whether Holiday Inns had a sufficient level of conduct and activity in Indiana to justify the characterization \"continuous and systematic.\" ", " Helicopteros Nacionales de Colombia, 466 U.S. at 416, 104 S.Ct. ", "at 1873. ", " Accordingly, we remand this aspect of the case to the district court for a more plenary inquiry into the contacts and conduct of Holiday Inns in Indiana.", "\n\nC. Forum Non Conveniens\n\n25\nWe review under an abuse of discretion standard the district court's decision to deny a motion to dismiss for forum non conveniens. ", " Piper Aircraft Co. v. Reyno, 454 U.S. 235, 257, 102 S.Ct. ", "252, 266, 70 L.Ed.2d 419 (1981); FMC Corp. v. Varonos, 892 F.2d 1308, 1314 (7th Cir.1990). ", " As the Supreme Court has instructed,\n\n\n26\n[W]here the court has considered all relevant public and private interest factors, and where its balancing of these factors is reasonable, its decision deserves substantial deference.", "\n\n\n27\nPiper Aircraft Co., 454 U.S. at 257, 102 S.Ct. ", "at 266. ", " Furthermore, the district court is granted \"substantial flexibility\" in deciding a forum non conveniens argument. ", " Van Cauwenberghe v. Biard, 486 U.S. 517, 529, 108 S.Ct. ", "1945, 1953, 100 L.Ed.2d 517 (1988).", "\n\n\n28\n\"There is ordinarily a strong presumption in favor of the plaintiff's choice of forum, which may be overcome only when the private and public interest factors clearly point towards trial in the alternative forum.\" ", " Macedo v. Boeing Co., 693 F.2d 683, 688 (7th Cir.1982); see Piper Aircraft Co., 454 U.S. at 255, 102 S.Ct. ", "at 265; Koster v. (American) Lumbermens Mutual Casualty, 330 U.S. 518, 524, 67 S.Ct. ", "828, 831, 91 L.Ed. ", "1067 (1947); Gulf Oil v. Gilbert, 330 U.S. 501, 508, 67 S.Ct. ", "839, 843, 91 L.Ed. ", "1055 (1947). ", " \"Courts routinely give less weight to a foreign plaintiff's choice of forum. ", " Citizens or residents deserve somewhat more deference than foreign plaintiffs.\" ", " Macedo, 693 F.2d at 688; see Piper Aircraft, 454 U.S. at 256, 102 S.Ct. ", "at 266. ", " Nevertheless, the district court must be able to police misuse, such as actions brought in a particular forum to harass a party. ", " There is no rigid test upon which a district court must focus when analyzing a forum non conveniens argument; instead, as articulated by the Supreme Court in Gulf Oil Corp. v. Gilbert, there are several public and private interest factors that may be considered.9 Private interests include\n\n\n29\nthe relative ease of access to sources of proof; availability of compulsory process for attendance of unwilling, and the cost of obtaining attendance of willing, witnesses; possibility of view of premises, if view would be appropriate to the action; and all other practical problems that make trial of a case easy, expeditious and inexpensive. ", " There may also be questions as to the enforceability of a judgment if one is obtained. ", " The court will weigh relative advantages and obstacles to fair trial.", "\n\n\n30\n330 U.S. at 508, 67 S.Ct. ", "at 843. ", " Public interests include judicial administration, trying cases in a forum that has a relation to the litigation, and having matters of state law decided by a court sitting in that state. ", " Id. at 508-09, 67 S.Ct. ", "at 843.", "\n\n\n31\nIn this case, the district court relied exclusively on the reasoning found in Lehman v. Humphrey Cayman, Ltd., 713 F.2d 339 (8th Cir.1983), cert. ", "denied, 464 U.S. 1042, 104 S.Ct. ", "708, 79 L.Ed.2d 172 (1984). ", " We recognize, as did the district court, the substantial similarity between the forum-related factors present in this suit and those present in the Lehman suit. ", " As is apparent from the case name, Lehman involves the same Cayman Islands hotel as is involved here. ", " Similarly, the injury occurred on the Cayman Islands to a United States resident who responded to a Humphreys' advertisement in the United States. ", " The Eighth Circuit evaluated many of the Gilbert factors. ", " The court first determined that the location of witnesses in the Cayman Islands did not militate strongly for applying forum non conveniens, because many of the witnesses were Holiday Inns employees (thus enabling Humphreys to obtain their cooperation in travelling to testify), and other modes of obtaining the evidence--such as admissions and depositions--could be used. ", " Lehman, 713 F.2d at 343. ", " The court also concluded that Iowa and the United States had an interest in the suit because the injured party was an Iowa resident and had made the travel arrangements in Iowa. ", " Id. at 344. ", " The Eighth Circuit placed some weight on the fact that the procedures for litigating in the Cayman Islands would disadvantage the plaintiff. ", " Attorneys there do not accept work for contingent fee arrangements; it is likely that the plaintiff could not receive a jury trial for her injury action; and she would have been required to post a $1,000 bond with the court because she was a foreigner. ", " Id. at 345-46. ", " Accordingly, the Eighth Circuit determined that the district court abused its discretion in dismissing the action on the ground of forum non conveniens. ", " Id. at 347.", "\n\n\n32\nWe cannot say that the district court abused its discretion in declining to dismiss the suit. ", " Great weight must be given the Wilsons' choice of forum. ", " The inconvenience for Humphreys of litigating the case in Indiana must be balanced against the disadvantageous procedures available in the Cayman Islands for the Wilsons,10 the interest of Indiana in providing a remedy for an injury stemming from a tour booked in Indiana for a group that left from Indiana, and the hardships that the Wilsons would encounter in litigating a case at such a great distance from their home. ", " For these reasons, we conclude that the district court did not abuse its discretion in denying the forum non conveniens motion.", "\n\nConclusion\n\n33\nFor the foregoing reasons, we affirm the orders of the district court regarding Humphreys, but remand to the district court for further consideration on whether Holiday Inns has subjected itself to general jurisdiction in Indiana.", "\n\n\n34\nAFFIRMED IN PART AND REMANDED.", "\n\n\n35\nWILL, Senior District Judge, concurring in part and dissenting in part.", "\n\n\n36\nI concur in the remand as to Holiday Inns. ", " I dissent, however, from the assertion of \"specific\" jurisdiction over Humphreys and from the majority's affirmance that Indiana is a proper forum.", "\n\n\n37\nThe Wilsons are residents of Illinois. ", " Their trip to the Caymans was a gift from their son. ", " He planned it and paid for it. ", " Neither the son nor the Wilsons had any contacts with Humphreys, in Indiana or anywhere else in the United States. ", " He booked the trip through American, and there is no evidence that he was influenced in any way by anything Humphreys said or did, that he selected Humphreys or even knew that it was to be the hotel. ", " In fact, the record is clear, as the majority recognizes, that \"arrangements for the trip were made as a result of advertisements for the tour that appeared in American's travel bulletin. ", " Arrangements were made with American's tour subsidiary, Ambassadair, and payment was made to Ambassadair....\" Majority op. ", "at 1241.", "\n\nI. Personal Jurisdiction\n\n38\nJurisdiction over an unwilling, non-resident defendant conforms to the requirements of due process only if the \"defendant's conduct and connection with the forum State are such that he should reasonably anticipate being haled into court there.\" ", " World-Wide Volkswagen Corp. v. Woodson, 444 U.S. 286, 297, 100 S.Ct. ", "559, 567, 62 L.Ed.2d 490 (1980). ", " A defendant who has \"purposefully established 'minimum contacts' in the forum State\" has impliedly submitted to jurisdiction in the forum. ", " Burger King Corp. v. Rudzewicz, 471 U.S. 462, 474, 105 S.Ct. ", "2174, 2183, 85 L.Ed.2d 528 (1985). ", " But merely \" 'random,' 'fortuitous,' or 'attenuated' \" contacts with a forum are not enough. ", " Id. at 475, 105 S.Ct. ", "at 2183. ", " Further, any \"assertion of personal jurisdiction [must] comport with 'fair play and substantial justice.' \" ", " Id. at 476, 105 S.Ct. ", "at 2184, quoting International Shoe Co. v. Washington, 326 U.S. 310, 66 S.Ct. ", "154, 90 L.Ed. ", "95 (1945). ", " And, finally, in the special case of \"specific\" jurisdiction, a defendant's contacts with the forum serve as a basis for personal jurisdiction only for suits \"arising out of or related to\" those contacts. ", " Helicopteros Nacionales de Colombia v. Hall, 466 U.S. 408, 414 n. 8, 104 S.Ct. ", "1868, 1872 n. 8, 80 L.Ed.2d 404 (1984).", "\n\n\n39\nHumphreys here had no purposeful contacts with the plaintiffs or with Indiana related to this suit, which arises from acts and events that took place entirely in the Cayman Islands. ", " Humphreys could not reasonably have anticipated being haled into court in Indiana, and forcing Humphreys to defend this case in an Indiana courtroom is far from fair or substantially just.", "\n\n\n40\nAny and all contacts with the Wilsons' son in Indiana related to this lawsuit were American's, not Humphreys', and American admittedly did not act as Humphreys' agent. ", " American had no authority to confirm reservations and bind Humphreys and it did not purport to do so. ", " American had to submit all reservations to Humphreys for confirmation.1\n\n\n41\nI can understand how Humphreys could reasonably have expected to be haled into an Indiana court, state or federal, to resolve a dispute arising from its contract with American Trans Air, which contract was negotiated in Indiana, or if it had sold products in Indiana. ", " But this case arises from a dispute between Humphreys and the Wilsons, not Humphreys and American. ", " Humphreys did not sell products in Indiana, and Humphreys had no contacts whatsoever with the Wilsons in Indiana or anywhere else in the United States.", "\n\n\n42\nThe majority's suggestion that Indiana courts have jurisdiction here because \"Humphreys established a continuing commercial relationship with an Indiana tour company with the expectations that its services would be purchased by residents of Indiana (and other states),\" majority op. ", "at 1244, and \"Humphreys reasonably should have anticipated being haled into court in Indiana,\" id. at 1244, strikes me as wholly inconsistent with the facts as well as the requirements of due process.", "\n\n\n43\nHumphreys undoubtedly serves hundreds or even thousands of U.S. tourist guests each year as the result of reservations made by American and other U.S. tour operators and travel agencies. ", " Every U.S. tour organizer or travel agency has innumerable foreign hotels, bus lines, guide services, etc., ", "with which it maintains continuing commercial arrangements. ", " It would be surprising, however, if Humphreys or any other foreign service provider anticipated that, merely as a result of its contacts with U.S. travel agents and without more, it might wind up defending lawsuits brought by its U.S. guests in U.S. courts.", "\n\n\n44\nTo hold, as the majority does today, that Indiana courts may properly exercise in personam jurisdiction over Humphreys is to hold that any foreign hotel, restaurant, museum or other facility or service provider, which confirms reservations for U.S. travel agents and tour operators and compensates those travel agents and tour operators for arranging reservations (a frequent and typical practice), is subject to the jurisdiction of U.S. courts and should expect to be haled into them to defend tort suits or any other claims brought by U.S. guests. ", " This, notwithstanding that the hotel or other service provider has had no dealings with the guest in any U.S. forum, that there was no principal/agent relationship between it and the travel agent or tour operator with whom the guest solely dealt, and even though all the acts and events alleged in the guest's complaint occurred in Timbuktu, Bali, Japan, Australia, Majorca, Tahiti or where-have-you, where, in addition, all the witnesses and relevant records are located.", "\n\n\n45\nThe kind of global long-arm jurisdiction which the majority endorses, in my opinion, both fails the minimum contacts test and is at odds with the fundamental due process requirement that jurisdiction comport with \"fair play and substantial justice.\" ", " I believe that compelling Humphreys to litigate in Indiana is unanticipated, unfair and beyond the bounds of due process. ", " Cf. ", "Asahi Metal Indus. ", "Co. v. Superior Court, 480 U.S. 102, 114, 107 S.Ct. ", "1026, 1034, 94 L.Ed.2d 92 (1987) (\"The unique burdens placed upon one who must defend oneself in a foreign legal system should have significant weight in assessing the reasonableness of stretching the long arm of personal jurisdiction over national borders.", "\").II. ", "Forum Non Conveniens\n\n\n46\nIn addition to holding that Indiana's long-arm statute reaches Humphreys, the majority also finds, as did the Eighth Circuit, in Lehman v. Humphrey Cayman, Ltd., 713 F.2d 339 (8th Cir.1983), that the fact that the hotel and all the witnesses are located in the Cayman Islands, where all the events giving rise to this case took place, is outweighed by other considerations such as the allegedly limited availability of contingent fee arrangements and jury trials in the Cayman Islands, the necessity of a bond, the plaintiffs' prerogative to choose their forum, and the hardship for the plaintiffs of litigating in the Cayman Islands (where their alleged cause of action arose). ", " I respectfully disagree.", "\n\n\n47\nThere are a number of serious problems with trying this case in Indiana. ", " First, the site of the alleged tort, the defendant, all the witnesses other than the plaintiffs and all the records are in the Cayman Islands. ", " The inconvenience to Humphreys far outweighs any inconvenience to the Wilsons to try the case where it arose.", "\n\n\n48\nSecond, Indiana citizens undoubtedly have an interest in a convenient home forum. ", " And, if due process permits, Indiana may have an interest in providing such a forum for its citizens who choose to litigate there. ", " But it is difficult to conceive of what real interest either Indiana or its citizens have in this case. ", " The Wilsons are citizens of Illinois. ", " In Lehman, by contrast, the plaintiffs were, at least, citizens of the forum state.", "\n\n\n49\nThird, while it would undoubtedly be to the Wilsons' advantage to try this case under Indiana law (and before an Indiana jury)--which is, presumably, why they chose to file it there--the differences the parties have identified between Indiana law and the law of the Cayman Islands are not in themselves a justification either for Indiana courts to assert due process long-arm jurisdiction or for finding that the balance of inconvenience in this case favors an Indiana trial. ", " Both the majority and the district court have given too much weight to these differences. ", " \"The possibility of a change in substantive law should ordinarily not be given conclusive or even substantial weight in the forum non conveniens inquiry.\" ", " Piper Aircraft Co. v. Reyno, 454 U.S. 235, 247, 102 S.Ct. ", "252, 261, 70 L.Ed.2d 419 (1981) (availability of strict liability in Pennsylvania but not in Scotland did not, by itself, bar dismissal for forum non conveniens ). ", " See also id. at 252 n. 19, 102 S.Ct. ", "at 264 n. 19.", "\n\n\n50\nI would note, in addition, that although the Wilsons have apparently been assuming that in Indiana, local law would apply, that may or may not be true. ", " Although the majority does not discuss the issue, it is an important conflict of laws question, and possibly a difficult one, whether Cayman Islands or Indiana law should govern at trial. ", " See Piper Aircraft, 454 U.S. at 251, 102 S.Ct. ", "at 263 (\"The doctrine of forum non conveniens ... is designed in part to help courts avoid conducting complex exercises in comparative law.\"). ", " The answer to that question, which depends on Indiana's choice-of-law rules, may determine not only the applicable law of liability and the right to a jury but also Mr. Wilson's right to sue. ", " If the majority is holding, as it seems to suggest by referring to trial by jury, not only that Indiana courts have jurisdiction but also that Indiana substantive law applies, then I believe the opinion ought not to assume it, but should say so and explain why.", "\n\n\n51\nA fourth problem with allowing this case to proceed in Indiana is that it is likewise unclear and troubling to me how an Indiana judgment against Humphreys, should that be the outcome, would be enforced--an issue which, again, the majority's opinion overlooks. ", " I would certainly hope that Humphreys, desiring to continue to attract U.S. tourists, would recognize and respond to any judgment that might be entered against it. ", " But asserting jurisdiction over and entering judgments against foreign entities, many of whom have no assets in the United States, is at best a speculative practice.", "\n\nIII. ", "Conclusion\n\n52\nIt is worth noting the probable consequences of the majority's decision. ", " Many Americans are frequent foreign travelers. ", " If U.S. courts have jurisdiction every time an American tourist has a dispute with a foreign service provider which has an ongoing contact with an American tour organizer or travel agent, we are going to see a lot more lawsuits such as this one, and foreign service providers will likely protect themselves from their increased exposure by charging higher rates and/or insisting on exculpatory provisions in their contracts with Americans.", "\n\n\n53\nI recognize that finding no U.S. jurisdiction in cases like this might require American travelers like Mrs. Wilson to return to places where they have had traumatic experiences in order to pursue remedies for alleged wrongs. ", " Those are not considerations, however, that are relevant to jurisdiction, which can only be stretched so far as due process allows and has, I believe, been stretched far too far in this case.", "\n\n\n54\nIt is undisputed that U.S. tourists traveling voluntarily in foreign countries are subject to the laws and jurisdiction of the courts of those countries. ", " Consistent with that principle, the long-arm jurisdiction of the fifty states cannot be applied globally so as to give U.S. courts specific jurisdiction over foreign defendants in tort cases arising from events that took place entirely on foreign soil and are unrelated to the defendants' contacts with any U.S. forum.", "\n\n\n55\nBelieving that the bounds of due process have been far exceeded in this case, I would reverse the finding of jurisdiction as to Humphreys. ", " I believe, in addition, that denying Humphreys' motion for a dismissal for forum non conveniens constituted an abuse of discretion and would also reverse on that basis, even if Humphreys' contacts with Indiana satisfied due process. ", " I concur, however, with the majority's conclusions as to Holiday Inns.", "\n\n\n\n*\n The Honorable Hubert L. Will of the United States District Court for the Northern District of Illinois, Eastern Division, is sitting by designation\n\n\n1\n One of the original defendants, American Trans Air, Inc., moved for summary judgment, which was granted by the district court on April 6, 1988. ", " The district court entered final judgment pursuant to Rule 54(b) of the Federal Rules of Civil Procedure and that portion of the case was appealed immediately. ", " This court affirmed the district court's judgment regarding the air carrier in Wilson v. American Trans Air, Inc., 874 F.2d 386 (7th Cir.1989)\n\n\n2\n Corporations are considered citizens of the country in which they are incorporated. ", " National Steamship Co. v. Tugman, 106 U.S. (16 Otto) 118, 120-21, 27 L.Ed. ", "87 (1882); Panalpina Welttransport GMBH v. Geosource, Inc., 764 F.2d 352, 354 (5th Cir.1985)\n\n\n3\n British Nationality Act 1981, 31 Halsbury's Statutes 172 (4th ed.1987)\n\n\n4\n Windert also was rejected by Judge Kocoras in Creative Distributors, Ltd. v. Sari Niketan, Inc., Mem. ", "op., ", "1989 WL 105210, 1989 U.S. Dist. ", "LEXIS 10436 at (N.D. Ill.1989) (finding the reasoning of Tetra Finance persuasive), and Judge Luongo in Timco Eng'g, Inc. v. Rex & Co., 603 F.Supp. ", "925, 930 n. 8 (E.D.Pa.1985) (same)\n\n\n5\n In Murarka v. Backrack Bros., Inc., 215 F.2d 547 (2d Cir.1954), the plaintiff was a citizen of India who filed his suit while India was still a British colony. ", " The defendant claimed that, because India was not a sovereign nation when the complaint was filed, the court did not have alienage jurisdiction. ", " Then-Judge Harlan determined that the district court did have jurisdiction, because the United States had granted de facto recognition of India by accepting an ambassador from that country. ", " Id. at 552\n\n\n6\n It is not argued that Humphreys' business in Indiana constitutes \"the kind of continuous and systematic general business contacts,\" Helicopteros Nacionales de Colombia v. Hall, 466 U.S. 408, 416, 104 S.Ct. ", "1868, 1873, 80 L.Ed.2d 404 (1984), necessary for general jurisdiction\n\n\n7\n The Neiman court also noted that convenience for the parties is a factor that is often considered as part of a due process minimum contacts analysis. ", " In that case, the fact that the defendant was an English company and that litigation in Illinois might have been inconvenient was not dispositive, for \"it would also be inconvenient for plaintiff to sue overseas.\" ", " 619 F.2d at 1195 n. 8. ", " Because of the \"purposeful acts\" in the forum, the inconvenience did not amount to denial of due process. ", " Id\n\n\n8\n This section was repealed in 1986 and superceded by the foreign corporations chapter of the Indiana Code, sections 23-1-49-1 to -10\n\n\n9\n The Supreme Court never has ruled whether the criteria governing the forum non conveniens decision are governed by federal or state law under the rule of Erie R.R. Co. v. Tompkins, 304 U.S. 64, 58 S.Ct. ", "817, 82 L.Ed. ", "1188 (1938). ", " See Piper Aircraft Co. v. Reyno, 454 U.S. 235, 248 n. 13, 102 S.Ct. ", "252, 262, 70 L.Ed.2d 419 (1981). ", " Because the parties appear to agree that federal and Indiana criteria are the same, we need not decide the matter. ", " Humphreys' Br. ", "at 24\n\n\n10\n We recognize that, to the extent these disadvantages are grounded in differences in the substantive law of the Cayman Islands, they may be given some, but not substantial or conclusive, weight. ", " See Piper Aircraft Co. v. Reyno, 454 U.S. 235, 247, 102 S.Ct. ", "252, 261, 70 L.Ed.2d 419 (1981); Macedo v. Boeing Co., 693 F.2d 683, 688 (7th Cir.1982)\n\n\n1\n See Fordyce v. Round Hill Developments, Ltd., 585 F.2d 30 (2d Cir.1978) (Jamaican hotel did not subject itself to jurisdiction of New York courts by contracting with a travel agent, where the travel agent was an independent contractor which leased rooms from the hotel at its own risk); Kopolowitz v. Deepdene Hotel & Tennis Club, 464 F.Supp. ", "677 (S.D.N.Y.1979) (Bermuda hotel did not submit to jurisdiction of New York courts by engaging a sales representative to promote the hotel and handle inquiries and requests for reservations, in New York and elsewhere in the United States, where the sales representative did not have the power to confirm reservations). ", " Compare Gelfand v. Tanner Motors Tours, Ltd., 385 F.2d 116 (2d Cir.1967) (involving a nonforum defendant whose agent in New York had power to confirm reservations)\n\n\n" ]
{ "pile_set_name": "FreeLaw" }
[ 0.027932960893854747, 0.16666666666666666, 0, 0.041666666666666664, 0, 0.03529411764705882, 0.02976190476190476, 0.022727272727272728, 0.043478260869565216, 0.014084507042253521, 0.01059322033898305, 0, 0.00975609756097561, 0, 0, 0.019417475728155338, 0.007518796992481203, 0, 0, 0, 0.010309278350515464, 0.007246376811594203, 0.006734006734006734, 0.0064516129032258064, 0.007936507936507936, 0, 0.0070921985815602835, 0.01639344262295082, 0.012269938650306749, 0.015267175572519083, 0.011627906976744186, 0.011363636363636364, 0.008064516129032258, 0, 0, 0, 0, 0, 0, 0, 0, 0.004878048780487805, 0.005128205128205128, 0.02857142857142857, 0, 0, 0.03571428571428571, 0, 0, 0.014925373134328358, 0.04, 0, 0, 0, 0.006211180124223602, 0, 0, 0, 0, 0, 0.03225806451612903, 0, 0.010752688172043012, 0.02127659574468085, 0.011235955056179775, 0.043478260869565216, 0.012987012987012988, 0.013157894736842105, 0.016666666666666666, 0, 0.013513513513513514, 0, 0, 0.02857142857142857, 0, 0, 0.009708737864077669, 0.038461538461538464, 0.005649717514124294, 0, 0, 0, 0, 0, 0.014084507042253521, 0.03773584905660377, 0, 0.024054982817869417, 0, 0, 0.022988505747126436, 0, 0, 0, 0, 0.014492753623188406, 0, 0.015151515151515152, 0, 0.027777777777777776, 0, 0.016129032258064516, 0, 0.010126582278481013, 0.045454545454545456, 0.019230769230769232, 0, 0, 0, 0.023255813953488372, 0.005263157894736842, 0, 0, 0, 0.02631578947368421, 0, 0, 0.00906344410876133, 0.015151515151515152, 0, 0.02459016393442623, 0, 0.023809523809523808, 0.015625, 0.010309278350515464, 0, 0.017543859649122806, 0, 0.009433962264150943, 0, 0.004424778761061947, 0.007352941176470588, 0.005076142131979695, 0.04, 0, 0, 0.015625, 0.0026109660574412533, 0.01, 0, 0, 0, 0, 0.019455252918287938, 0, 0.015384615384615385, 0, 0, 0.015384615384615385, 0.007936507936507936, 0, 0, 0, 0, 0.015384615384615385, 0, 0.005494505494505495, 0.029850746268656716, 0, 0.00641025641025641, 0, 0.01694915254237288, 0.021739130434782608, 0.004424778761061947, 0.018867924528301886, 0, 0, 0.017543859649122806, 0, 0, 0.02702702702702703, 0.022988505747126436, 0, 0, 0, 0, 0, 0, 0.013157894736842105, 0, 0, 0.0046439628482972135, 0, 0, 0, 0, 0, 0, 0, 0.013157894736842105, 0.030303030303030304, 0, 0.006172839506172839, 0.009708737864077669, 0.006756756756756757, 0.03389830508474576, 0.0053475935828877, 0.038461538461538464, 0, 0, 0.006944444444444444, 0, 0, 0.00641025641025641, 0, 0, 0.017241379310344827, 0.004728132387706856, 0, 0.008097165991902834, 0.027777777777777776, 0, 0.02040816326530612, 0.006756756756756757, 0.022222222222222223, 0, 0, 0.017241379310344827, 0.009950248756218905, 0.005291005291005291, 0.016, 0, 0, 0.013888888888888888, 0, 0.007142857142857143, 0.016129032258064516, 0, 0, 0, 0, 0, 0, 0.01282051282051282, 0, 0, 0, 0.025, 0, 0, 0.005291005291005291, 0.022988505747126436, 0.009708737864077669, 0.008670520231213872, 0.02, 0.013157894736842105, 0, 0, 0, 0, 0, 0.003875968992248062, 0.0017985611510791368, 0.0021141649048625794, 0, 0.008, 0, 0.05263157894736842, 0.019230769230769232, 0, 0, 0.005673758865248227, 0, 0, 0, 0.01818181818181818, 0, 0, 0, 0, 0.011627906976744186, 0.004149377593360996, 0, 0, 0.01639344262295082, 0, 0, 0, 0.006329113924050633, 0.005291005291005291, 0, 0, 0.0051813471502590676, 0, 0.003745318352059925, 0.006060606060606061, 0, 0, 0, 0, 0, 0.004329004329004329, 0, 0, 0, 0.006896551724137931, 0.008547008547008548, 0.014084507042253521, 0.006578947368421052, 0.012422360248447204, 0.008583690987124463, 0.012987012987012988, 0.02888086642599278, 0, 0, 0.02702702702702703, 0.01, 0, 0.005235602094240838, 0.017937219730941704, 0.0044444444444444444, 0, 0, 0, 0.0057306590257879654, 0, 0, 0, 0, 0, 0, 0, 0, 0.0091324200913242, 0, 0 ]
0.007788
5
[ { "analysis_explanation": null, "end": 31, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14 }, { "analysis_explanation": null, "end": 51, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36 }, { "analysis_explanation": null, "end": 265, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 258 }, { "analysis_explanation": null, "end": 287, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267 }, { "analysis_explanation": null, "end": 324, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 311 }, { "analysis_explanation": null, "end": 342, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 326 }, { "analysis_explanation": null, "end": 362, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 344 }, { "analysis_explanation": null, "end": 401, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 396 }, { "analysis_explanation": null, "end": 407, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 403 }, { "analysis_explanation": null, "end": 425, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 409 }, { "analysis_explanation": null, "end": 461, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 449 }, { "analysis_explanation": null, "end": 467, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 463 }, { "analysis_explanation": null, "end": 513, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 495 }, { "analysis_explanation": null, "end": 529, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 515 }, { "analysis_explanation": null, "end": 563, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 551 }, { "analysis_explanation": null, "end": 569, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 565 }, { "analysis_explanation": null, "end": 590, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 571 }, { "analysis_explanation": null, "end": 628, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 616 }, { "analysis_explanation": null, "end": 634, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 630 }, { "analysis_explanation": null, "end": 783, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 774 }, { "analysis_explanation": null, "end": 800, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 788 }, { "analysis_explanation": null, "end": 840, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 836 }, { "analysis_explanation": null, "end": 1036, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1030 }, { "analysis_explanation": null, "end": 1084, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1075 }, { "analysis_explanation": null, "end": 1105, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1096 }, { "analysis_explanation": null, "end": 1503, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1491 }, { "analysis_explanation": null, "end": 1518, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1509 }, { "analysis_explanation": null, "end": 1537, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1525 }, { "analysis_explanation": null, "end": 1605, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1592 }, { "analysis_explanation": null, "end": 1730, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1721 }, { "analysis_explanation": null, "end": 1800, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1782 }, { "analysis_explanation": null, "end": 1811, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1802 }, { "analysis_explanation": null, "end": 1900, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1882 }, { "analysis_explanation": null, "end": 1983, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1976 }, { "analysis_explanation": null, "end": 1994, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1985 }, { "analysis_explanation": null, "end": 2042, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2037 }, { "analysis_explanation": null, "end": 2051, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2044 }, { "analysis_explanation": null, "end": 2086, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2077 }, { "analysis_explanation": null, "end": 2142, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2135 }, { "analysis_explanation": null, "end": 2240, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2236 }, { "analysis_explanation": null, "end": 2251, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2242 }, { "analysis_explanation": null, "end": 2342, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2334 }, { "analysis_explanation": null, "end": 2395, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2387 }, { "analysis_explanation": null, "end": 2417, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2399 }, { "analysis_explanation": null, "end": 2458, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2449 }, { "analysis_explanation": null, "end": 2488, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2476 }, { "analysis_explanation": null, "end": 2554, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2546 }, { "analysis_explanation": null, "end": 2580, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2573 }, { "analysis_explanation": null, "end": 2602, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2584 }, { "analysis_explanation": null, "end": 2676, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2668 }, { "analysis_explanation": null, "end": 2782, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2774 }, { "analysis_explanation": null, "end": 2807, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2799 }, { "analysis_explanation": null, "end": 2860, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2852 }, { "analysis_explanation": null, "end": 2910, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2892 }, { "analysis_explanation": null, "end": 2997, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2988 }, { "analysis_explanation": null, "end": 3140, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3131 }, { "analysis_explanation": null, "end": 3223, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3215 }, { "analysis_explanation": null, "end": 3234, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3227 }, { "analysis_explanation": null, "end": 3293, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3284 }, { "analysis_explanation": null, "end": 3310, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3298 }, { "analysis_explanation": null, "end": 3355, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3347 }, { "analysis_explanation": null, "end": 3420, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3404 }, { "analysis_explanation": null, "end": 3480, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3462 }, { "analysis_explanation": null, "end": 3506, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3500 }, { "analysis_explanation": null, "end": 3764, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3752 }, { "analysis_explanation": null, "end": 3773, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3766 }, { "analysis_explanation": null, "end": 3796, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3780 }, { "analysis_explanation": null, "end": 3809, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3803 }, { "analysis_explanation": null, "end": 3908, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3902 }, { "analysis_explanation": null, "end": 3961, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3955 }, { "analysis_explanation": null, "end": 3997, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3979 }, { "analysis_explanation": null, "end": 4031, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4019 }, { "analysis_explanation": null, "end": 4581, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4575 }, { "analysis_explanation": null, "end": 4851, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4845 }, { "analysis_explanation": null, "end": 4939, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4930 }, { "analysis_explanation": null, "end": 5081, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5063 }, { "analysis_explanation": null, "end": 5105, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5087 }, { "analysis_explanation": null, "end": 5141, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5132 }, { "analysis_explanation": null, "end": 5199, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5181 }, { "analysis_explanation": null, "end": 5232, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5219 }, { "analysis_explanation": null, "end": 5259, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5242 }, { "analysis_explanation": null, "end": 5294, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5276 }, { "analysis_explanation": null, "end": 5499, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5494 }, { "analysis_explanation": null, "end": 5544, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5536 }, { "analysis_explanation": null, "end": 6176, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6163 }, { "analysis_explanation": null, "end": 6325, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6312 }, { "analysis_explanation": null, "end": 6392, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6386 }, { "analysis_explanation": null, "end": 6423, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6405 }, { "analysis_explanation": null, "end": 6436, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6429 }, { "analysis_explanation": null, "end": 6483, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6476 }, { "analysis_explanation": null, "end": 6539, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6521 }, { "analysis_explanation": null, "end": 6552, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6544 }, { "analysis_explanation": null, "end": 6648, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6634 }, { "analysis_explanation": null, "end": 6720, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6702 }, { "analysis_explanation": null, "end": 6761, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6748 }, { "analysis_explanation": null, "end": 6937, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6935 }, { "analysis_explanation": null, "end": 6957, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6939 }, { "analysis_explanation": null, "end": 7019, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7012 }, { "analysis_explanation": null, "end": 7047, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7029 }, { "analysis_explanation": null, "end": 7068, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7059 }, { "analysis_explanation": null, "end": 7335, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7318 }, { "analysis_explanation": null, "end": 7353, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7340 }, { "analysis_explanation": null, "end": 7464, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7448 }, { "analysis_explanation": null, "end": 7544, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7533 }, { "analysis_explanation": null, "end": 7598, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7596 }, { "analysis_explanation": null, "end": 7602, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7600 }, { "analysis_explanation": null, "end": 7734, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7727 }, { "analysis_explanation": null, "end": 7750, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7743 }, { "analysis_explanation": null, "end": 7927, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7923 }, { "analysis_explanation": null, "end": 7937, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7930 }, { "analysis_explanation": null, "end": 7961, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7954 }, { "analysis_explanation": null, "end": 8326, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8312 }, { "analysis_explanation": null, "end": 8460, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8451 }, { "analysis_explanation": null, "end": 8471, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8464 }, { "analysis_explanation": null, "end": 8512, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8501 }, { "analysis_explanation": null, "end": 8692, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8685 }, { "analysis_explanation": null, "end": 8799, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8791 }, { "analysis_explanation": null, "end": 8934, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8925 }, { "analysis_explanation": null, "end": 9008, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8999 }, { "analysis_explanation": null, "end": 9062, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9045 }, { "analysis_explanation": null, "end": 9312, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9304 }, { "analysis_explanation": null, "end": 9362, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9355 }, { "analysis_explanation": null, "end": 9445, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9427 }, { "analysis_explanation": null, "end": 9618, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9611 }, { "analysis_explanation": null, "end": 9677, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9671 }, { "analysis_explanation": null, "end": 10399, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10393 }, { "analysis_explanation": null, "end": 10424, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10416 }, { "analysis_explanation": null, "end": 10468, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10459 }, { "analysis_explanation": null, "end": 10510, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10506 }, { "analysis_explanation": null, "end": 10523, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10519 }, { "analysis_explanation": null, "end": 10621, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10614 }, { "analysis_explanation": null, "end": 10757, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10750 }, { "analysis_explanation": null, "end": 10894, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10890 }, { "analysis_explanation": null, "end": 11232, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11222 }, { "analysis_explanation": null, "end": 11242, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11238 }, { "analysis_explanation": null, "end": 11308, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11300 }, { "analysis_explanation": null, "end": 11327, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11323 }, { "analysis_explanation": null, "end": 11375, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11371 }, { "analysis_explanation": null, "end": 11400, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11393 }, { "analysis_explanation": null, "end": 11591, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11587 }, { "analysis_explanation": null, "end": 11613, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11609 }, { "analysis_explanation": null, "end": 12112, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12108 }, { "analysis_explanation": null, "end": 12519, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12509 }, { "analysis_explanation": null, "end": 12546, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12542 }, { "analysis_explanation": null, "end": 12556, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12550 }, { "analysis_explanation": null, "end": 12715, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12711 }, { "analysis_explanation": null, "end": 12720, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12716 }, { "analysis_explanation": null, "end": 12736, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12732 }, { "analysis_explanation": null, "end": 12758, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12754 }, { "analysis_explanation": null, "end": 12769, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12762 }, { "analysis_explanation": null, "end": 13033, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13029 }, { "analysis_explanation": null, "end": 13064, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13060 }, { "analysis_explanation": null, "end": 13136, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13127 }, { "analysis_explanation": null, "end": 13334, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13325 }, { "analysis_explanation": null, "end": 13403, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13396 }, { "analysis_explanation": null, "end": 13480, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13476 }, { "analysis_explanation": null, "end": 13502, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13498 }, { "analysis_explanation": null, "end": 13544, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13537 }, { "analysis_explanation": null, "end": 13605, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13601 }, { "analysis_explanation": null, "end": 13629, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13622 }, { "analysis_explanation": null, "end": 13675, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13668 }, { "analysis_explanation": null, "end": 13706, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13697 }, { "analysis_explanation": null, "end": 13803, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13796 }, { "analysis_explanation": null, "end": 13826, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13822 }, { "analysis_explanation": null, "end": 13868, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13862 }, { "analysis_explanation": null, "end": 13889, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13885 }, { "analysis_explanation": null, "end": 13919, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13909 }, { "analysis_explanation": null, "end": 13941, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13937 }, { "analysis_explanation": null, "end": 13961, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13955 }, { "analysis_explanation": null, "end": 13988, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13981 }, { "analysis_explanation": null, "end": 14216, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14209 }, { "analysis_explanation": null, "end": 14227, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14220 }, { "analysis_explanation": null, "end": 14237, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14233 }, { "analysis_explanation": null, "end": 14289, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14285 }, { "analysis_explanation": null, "end": 14328, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14319 }, { "analysis_explanation": null, "end": 14339, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14332 }, { "analysis_explanation": null, "end": 14407, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14398 }, { "analysis_explanation": null, "end": 14442, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14435 }, { "analysis_explanation": null, "end": 14496, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14489 }, { "analysis_explanation": null, "end": 14619, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14612 }, { "analysis_explanation": null, "end": 14656, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14649 }, { "analysis_explanation": null, "end": 14703, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14694 }, { "analysis_explanation": null, "end": 14768, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14761 }, { "analysis_explanation": null, "end": 14888, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14881 }, { "analysis_explanation": null, "end": 14995, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14986 }, { "analysis_explanation": null, "end": 15042, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15035 }, { "analysis_explanation": null, "end": 15053, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15044 }, { "analysis_explanation": null, "end": 15246, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15240 }, { "analysis_explanation": null, "end": 15267, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15263 }, { "analysis_explanation": null, "end": 15291, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15287 }, { "analysis_explanation": null, "end": 15319, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15315 }, { "analysis_explanation": null, "end": 15426, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15419 }, { "analysis_explanation": null, "end": 15436, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15432 }, { "analysis_explanation": null, "end": 16126, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16116 }, { "analysis_explanation": null, "end": 16212, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16205 }, { "analysis_explanation": null, "end": 16538, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16534 }, { "analysis_explanation": null, "end": 17114, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17110 }, { "analysis_explanation": null, "end": 17140, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17136 }, { "analysis_explanation": null, "end": 17194, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17188 }, { "analysis_explanation": null, "end": 17349, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17342 }, { "analysis_explanation": null, "end": 17662, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17655 }, { "analysis_explanation": null, "end": 17860, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17856 }, { "analysis_explanation": null, "end": 17882, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17878 }, { "analysis_explanation": null, "end": 18002, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17995 }, { "analysis_explanation": null, "end": 18109, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18105 }, { "analysis_explanation": null, "end": 18135, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18131 }, { "analysis_explanation": null, "end": 18289, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18282 }, { "analysis_explanation": null, "end": 18478, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18473 }, { "analysis_explanation": null, "end": 18488, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18484 }, { "analysis_explanation": null, "end": 18539, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18535 }, { "analysis_explanation": null, "end": 18563, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18556 }, { "analysis_explanation": null, "end": 18858, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18854 }, { "analysis_explanation": null, "end": 19015, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18999 }, { "analysis_explanation": null, "end": 19024, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19019 }, { "analysis_explanation": null, "end": 19060, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19055 }, { "analysis_explanation": null, "end": 19065, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19061 }, { "analysis_explanation": null, "end": 19088, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19084 }, { "analysis_explanation": null, "end": 19314, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19308 }, { "analysis_explanation": null, "end": 19397, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19393 }, { "analysis_explanation": null, "end": 19431, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19425 }, { "analysis_explanation": null, "end": 19445, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19437 }, { "analysis_explanation": null, "end": 19483, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19479 }, { "analysis_explanation": null, "end": 19532, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19528 }, { "analysis_explanation": null, "end": 19555, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19548 }, { "analysis_explanation": null, "end": 19614, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19604 }, { "analysis_explanation": null, "end": 19780, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19774 }, { "analysis_explanation": null, "end": 19828, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19824 }, { "analysis_explanation": null, "end": 20168, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20161 }, { "analysis_explanation": null, "end": 20797, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20793 }, { "analysis_explanation": null, "end": 21154, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21133 }, { "analysis_explanation": null, "end": 21249, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21245 }, { "analysis_explanation": null, "end": 21487, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21473 }, { "analysis_explanation": null, "end": 21567, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21549 }, { "analysis_explanation": null, "end": 21586, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21573 }, { "analysis_explanation": null, "end": 21624, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21615 }, { "analysis_explanation": null, "end": 21660, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21643 }, { "analysis_explanation": null, "end": 21710, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21703 }, { "analysis_explanation": null, "end": 21799, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21781 }, { "analysis_explanation": null, "end": 21943, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21934 }, { "analysis_explanation": null, "end": 22152, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22148 }, { "analysis_explanation": null, "end": 22174, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22157 }, { "analysis_explanation": null, "end": 22240, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22236 }, { "analysis_explanation": null, "end": 22294, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22290 }, { "analysis_explanation": null, "end": 22414, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22396 }, { "analysis_explanation": null, "end": 23069, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23060 }, { "analysis_explanation": null, "end": 23103, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23096 }, { "analysis_explanation": null, "end": 23191, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23173 }, { "analysis_explanation": null, "end": 23234, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23227 }, { "analysis_explanation": null, "end": 23309, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23302 }, { "analysis_explanation": null, "end": 23344, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23337 }, { "analysis_explanation": null, "end": 23692, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23683 }, { "analysis_explanation": null, "end": 23832, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23825 }, { "analysis_explanation": null, "end": 24069, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24060 }, { "analysis_explanation": null, "end": 24117, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24110 }, { "analysis_explanation": null, "end": 24177, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24169 }, { "analysis_explanation": null, "end": 24204, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24197 }, { "analysis_explanation": null, "end": 24326, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24317 }, { "analysis_explanation": null, "end": 24338, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24331 }, { "analysis_explanation": null, "end": 24376, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24359 }, { "analysis_explanation": null, "end": 24413, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24405 }, { "analysis_explanation": null, "end": 24495, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24486 }, { "analysis_explanation": null, "end": 24535, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24526 }, { "analysis_explanation": null, "end": 25211, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25204 }, { "analysis_explanation": null, "end": 25272, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25268 }, { "analysis_explanation": null, "end": 25485, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25481 }, { "analysis_explanation": null, "end": 25507, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25503 }, { "analysis_explanation": null, "end": 25817, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25807 }, { "analysis_explanation": null, "end": 25827, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25823 }, { "analysis_explanation": null, "end": 26115, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26111 }, { "analysis_explanation": null, "end": 26161, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26151 }, { "analysis_explanation": null, "end": 26188, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26184 }, { "analysis_explanation": null, "end": 26203, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26194 }, { "analysis_explanation": null, "end": 26271, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26264 }, { "analysis_explanation": null, "end": 26374, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26356 }, { "analysis_explanation": null, "end": 26385, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26376 }, { "analysis_explanation": null, "end": 26457, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26450 }, { "analysis_explanation": null, "end": 26480, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26471 }, { "analysis_explanation": null, "end": 26514, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26507 }, { "analysis_explanation": null, "end": 26621, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26614 }, { "analysis_explanation": null, "end": 26676, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26667 }, { "analysis_explanation": null, "end": 26691, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26683 }, { "analysis_explanation": null, "end": 26727, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26718 }, { "analysis_explanation": null, "end": 26804, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26795 }, { "analysis_explanation": null, "end": 26846, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26838 }, { "analysis_explanation": null, "end": 26890, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26881 }, { "analysis_explanation": null, "end": 26945, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26936 }, { "analysis_explanation": null, "end": 27004, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26997 }, { "analysis_explanation": null, "end": 27142, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27135 }, { "analysis_explanation": null, "end": 27181, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27174 }, { "analysis_explanation": null, "end": 27267, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27258 }, { "analysis_explanation": null, "end": 27280, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27272 }, { "analysis_explanation": null, "end": 27291, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27282 }, { "analysis_explanation": null, "end": 27324, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27317 }, { "analysis_explanation": null, "end": 27339, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27330 }, { "analysis_explanation": null, "end": 27394, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27387 }, { "analysis_explanation": null, "end": 27432, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27415 }, { "analysis_explanation": null, "end": 27475, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27468 }, { "analysis_explanation": null, "end": 27524, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27515 }, { "analysis_explanation": null, "end": 27589, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27582 }, { "analysis_explanation": null, "end": 27685, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27678 }, { "analysis_explanation": null, "end": 27743, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27734 }, { "analysis_explanation": null, "end": 27812, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27805 }, { "analysis_explanation": null, "end": 27987, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27983 }, { "analysis_explanation": null, "end": 28012, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28003 }, { "analysis_explanation": null, "end": 28059, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28051 }, { "analysis_explanation": null, "end": 28074, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28070 }, { "analysis_explanation": null, "end": 28121, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28117 }, { "analysis_explanation": null, "end": 28324, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28315 }, { "analysis_explanation": null, "end": 28425, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28421 }, { "analysis_explanation": null, "end": 28513, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28509 }, { "analysis_explanation": null, "end": 28528, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28524 }, { "analysis_explanation": null, "end": 28575, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28570 }, { "analysis_explanation": null, "end": 28589, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28582 }, { "analysis_explanation": null, "end": 28658, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28649 }, { "analysis_explanation": null, "end": 28788, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28784 }, { "analysis_explanation": null, "end": 28977, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28973 }, { "analysis_explanation": null, "end": 29081, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29077 }, { "analysis_explanation": null, "end": 29199, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29195 }, { "analysis_explanation": null, "end": 29430, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29422 }, { "analysis_explanation": null, "end": 29436, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29432 }, { "analysis_explanation": null, "end": 29443, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29438 }, { "analysis_explanation": null, "end": 29454, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29445 }, { "analysis_explanation": null, "end": 29463, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29456 }, { "analysis_explanation": null, "end": 29471, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29465 }, { "analysis_explanation": null, "end": 29851, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29842 }, { "analysis_explanation": null, "end": 29874, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29867 }, { "analysis_explanation": null, "end": 30023, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30019 }, { "analysis_explanation": null, "end": 30044, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30040 }, { "analysis_explanation": null, "end": 30339, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30332 }, { "analysis_explanation": null, "end": 30464, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30443 }, { "analysis_explanation": null, "end": 30579, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30561 }, { "analysis_explanation": null, "end": 30788, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30770 }, { "analysis_explanation": null, "end": 30937, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30919 }, { "analysis_explanation": null, "end": 31082, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31075 }, { "analysis_explanation": null, "end": 31225, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31207 }, { "analysis_explanation": null, "end": 31257, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31248 }, { "analysis_explanation": null, "end": 31340, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31337 }, { "analysis_explanation": null, "end": 31355, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31348 }, { "analysis_explanation": null, "end": 31458, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31451 }, { "analysis_explanation": null, "end": 31621, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31614 }, { "analysis_explanation": null, "end": 31693, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31685 }, { "analysis_explanation": null, "end": 31875, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31868 }, { "analysis_explanation": null, "end": 32024, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32017 }, { "analysis_explanation": null, "end": 32062, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32044 }, { "analysis_explanation": null, "end": 32119, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32112 }, { "analysis_explanation": null, "end": 32250, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32243 }, { "analysis_explanation": null, "end": 32530, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32525 }, { "analysis_explanation": null, "end": 32540, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32536 }, { "analysis_explanation": null, "end": 32591, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32587 }, { "analysis_explanation": null, "end": 32642, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32630 }, { "analysis_explanation": null, "end": 32662, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32654 }, { "analysis_explanation": null, "end": 32877, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32870 }, { "analysis_explanation": null, "end": 33079, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33065 }, { "analysis_explanation": null, "end": 33090, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33083 }, { "analysis_explanation": null, "end": 33147, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33143 }, { "analysis_explanation": null, "end": 33362, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33355 }, { "analysis_explanation": null, "end": 33484, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33478 }, { "analysis_explanation": null, "end": 33604, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33597 }, { "analysis_explanation": null, "end": 33651, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33644 }, { "analysis_explanation": null, "end": 33828, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33821 }, { "analysis_explanation": null, "end": 33894, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33887 }, { "analysis_explanation": null, "end": 34064, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34055 }, { "analysis_explanation": null, "end": 34102, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34098 }, { "analysis_explanation": null, "end": 34320, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34303 }, { "analysis_explanation": null, "end": 34464, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34455 }, { "analysis_explanation": null, "end": 34504, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34500 }, { "analysis_explanation": null, "end": 34552, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34544 }, { "analysis_explanation": null, "end": 34652, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34644 }, { "analysis_explanation": null, "end": 34935, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34926 }, { "analysis_explanation": null, "end": 34972, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34968 }, { "analysis_explanation": null, "end": 35027, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35019 }, { "analysis_explanation": null, "end": 35054, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35048 }, { "analysis_explanation": null, "end": 35386, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35382 }, { "analysis_explanation": null, "end": 35637, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35633 }, { "analysis_explanation": null, "end": 35825, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35821 }, { "analysis_explanation": null, "end": 35973, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35964 }, { "analysis_explanation": null, "end": 36021, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36012 }, { "analysis_explanation": null, "end": 36161, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36152 }, { "analysis_explanation": null, "end": 36184, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36177 }, { "analysis_explanation": null, "end": 36310, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36296 }, { "analysis_explanation": null, "end": 36331, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36314 }, { "analysis_explanation": null, "end": 36372, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36351 }, { "analysis_explanation": null, "end": 36577, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36564 }, { "analysis_explanation": null, "end": 37013, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37009 }, { "analysis_explanation": null, "end": 37049, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37047 }, { "analysis_explanation": null, "end": 37055, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37051 }, { "analysis_explanation": null, "end": 37087, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37059 }, { "analysis_explanation": null, "end": 37174, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37170 }, { "analysis_explanation": null, "end": 37215, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37208 }, { "analysis_explanation": null, "end": 37264, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37257 }, { "analysis_explanation": null, "end": 37317, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37299 }, { "analysis_explanation": null, "end": 37333, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37329 }, { "analysis_explanation": null, "end": 37359, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37350 }, { "analysis_explanation": null, "end": 37381, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37377 }, { "analysis_explanation": null, "end": 37461, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37455 }, { "analysis_explanation": null, "end": 37559, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37552 }, { "analysis_explanation": null, "end": 37649, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37644 }, { "analysis_explanation": null, "end": 37680, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37675 }, { "analysis_explanation": null, "end": 37700, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37693 }, { "analysis_explanation": null, "end": 37750, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37745 }, { "analysis_explanation": null, "end": 37871, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37865 }, { "analysis_explanation": null, "end": 37955, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37938 }, { "analysis_explanation": null, "end": 37997, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37992 }, { "analysis_explanation": null, "end": 38091, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38082 }, { "analysis_explanation": null, "end": 38112, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38105 }, { "analysis_explanation": null, "end": 38235, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38231 }, { "analysis_explanation": null, "end": 38276, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38266 }, { "analysis_explanation": null, "end": 38298, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38294 }, { "analysis_explanation": null, "end": 38547, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38540 }, { "analysis_explanation": null, "end": 38587, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38579 }, { "analysis_explanation": null, "end": 38875, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38871 }, { "analysis_explanation": null, "end": 39158, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39147 }, { "analysis_explanation": null, "end": 39168, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39164 }, { "analysis_explanation": null, "end": 39200, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39196 }, { "analysis_explanation": null, "end": 39206, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39202 }, { "analysis_explanation": null, "end": 39240, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39235 }, { "analysis_explanation": null, "end": 39250, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39246 }, { "analysis_explanation": null, "end": 39307, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39303 }, { "analysis_explanation": null, "end": 39370, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39363 }, { "analysis_explanation": null, "end": 39434, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39425 }, { "analysis_explanation": null, "end": 39577, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39559 }, { "analysis_explanation": null, "end": 39677, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39672 }, { "analysis_explanation": null, "end": 39687, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39683 }, { "analysis_explanation": null, "end": 39738, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39734 }, { "analysis_explanation": null, "end": 39748, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39742 }, { "analysis_explanation": null, "end": 39883, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39875 }, { "analysis_explanation": null, "end": 39940, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39932 }, { "analysis_explanation": null, "end": 40173, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40166 }, { "analysis_explanation": null, "end": 40222, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40214 }, { "analysis_explanation": null, "end": 40349, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40341 }, { "analysis_explanation": null, "end": 40384, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40367 }, { "analysis_explanation": null, "end": 40594, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40586 }, { "analysis_explanation": null, "end": 78, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 74 }, { "analysis_explanation": null, "end": 274, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 267 }, { "analysis_explanation": null, "end": 296, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 289 }, { "analysis_explanation": null, "end": 6186, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 6182 }, { "analysis_explanation": null, "end": 7503, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 7499 }, { "analysis_explanation": null, "end": 7592, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 7588 }, { "analysis_explanation": null, "end": 8528, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 8524 }, { "analysis_explanation": null, "end": 8702, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 8698 }, { "analysis_explanation": null, "end": 37505, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 37501 }, { "analysis_explanation": null, "end": 37530, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 37524 }, { "analysis_explanation": null, "end": 40142, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 40138 }, { "analysis_explanation": null, "end": 10872, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 10868 }, { "analysis_explanation": null, "end": 37343, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 37337 } ]
[ "Structure and function of the oxidoreductase DsbA1 from Neisseria meningitidis.", "\nNeisseria meningitidis encodes three DsbA oxidoreductases (NmDsbA1-NmDsbA3) that are vital for the oxidative folding of many membrane and secreted proteins, and these three enzymes are considered to exhibit different substrate specificities. ", "This has led to the suggestion that each N. meningitidis DsbA (NmDsbA) may play a specialized role in different stages of pathogenesis; however, the molecular and structural bases of the different roles of NmDsbAs are unclear. ", "With the aim of determining the molecular basis for substrate specificity and how this correlates to pathogenesis, we undertook a biochemical and structural characterization of the three NmDsbAs. ", "We report the 2.0-A-resolution crystal structure of the oxidized form of NmDsbA1, which adopted a canonical DsbA fold similar to that observed in the structures of NmDsbA3 and Escherichia coli DsbA (EcDsbA). ", "Structural comparisons revealed variations around the active site and candidate peptide-binding region. ", "Additionally, we demonstrate that all three NmDsbAs are strong oxidases with similar redox potentials; however, they differ from EcDsbA in their ability to be reoxidized by E. coli DsbB. Collectively, our studies suggest that the small structural differences between the NmDsbA enzymes and EcDsbA are functionally significant and are the likely determinants of substrate specificity." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0.004405286343612335, 0, 0.009615384615384616, 0, 0.0026109660574412533 ]
0.002376
5
[ { "analysis_explanation": null, "end": 383, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 363 }, { "analysis_explanation": null, "end": 1192, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1186 } ]
[ "Anniversary Guide\n\nOur Anniversary Guide can help you find that perfect piece of jewelry for your loved one.", "\n\nNeed Ideas for an Anniversary Gift?", "\n\nOur list contains both traditional and modern gifts for each year of your anniversary. ", "But it doesn't always have to be a special occasion to give the gift of jewelry. ", "Not sure what to get? ", "Ask our staff at J. Gowen Jewelry Artistes for some great gift ideas! ", "Contact us today." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0, 0, 0.014285714285714285, 0 ]
0.002041
5
[ { "analysis_explanation": null, "end": 230, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 201 }, { "analysis_explanation": null, "end": 421, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 416 } ]
[ "const fs = require('fs');\nconst tokensDirectory = './src/tokens';\nconst request = require('request');\n\nfunction checkTokenLogos() {\n let invalidImgArray = [];\n fs.readdirSync(tokensDirectory).forEach(folder => {\n fs.readdirSync(`${tokensDirectory}/${folder}`).forEach(file => {\n const fullPath = `${tokensDirectory}/${folder}/${file}`;\n const obj = JSON.parse(fs.readFileSync(fullPath, 'utf8'));\n\n if (obj.logo.src === '') {\n return;\n }\n\n request({method: 'HEAD', uri: obj.logo.src}, function(err, response) {\n if (err) {\n invalidImgArray.push(obj.logo.src);\n }\n\n if (!", "err && response.statusCode === 400) {\n invalidImgArray.push(obj.logo.src);\n }\n \n fs.writeFileSync('./invalidLogoSrc.js', JSON.stringify(invalidImgArray))\n })\n }) \n })\n}\n\ncheckTokenLogos();\n" ]
{ "pile_set_name": "Github" }
[ 0, 0.008771929824561403 ]
0.004386
5
[ { "analysis_explanation": null, "end": 167, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 162 }, { "analysis_explanation": null, "end": 223, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 218 }, { "analysis_explanation": null, "end": 371, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 364 }, { "analysis_explanation": null, "end": 380, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 375 }, { "analysis_explanation": null, "end": 433, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 422 }, { "analysis_explanation": null, "end": 517, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 506 }, { "analysis_explanation": null, "end": 608, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 597 }, { "analysis_explanation": null, "end": 655, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 644 }, { "analysis_explanation": null, "end": 717, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 706 }, { "analysis_explanation": null, "end": 795, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 788 } ]
[ "<?", "php // only copy if needed\n\n/**\n * Forces tax recalculation for Subscriptions renewal orders when created.", "\n *\n * NOTE THAT this snippet can ONLY be used when all Subscriptions gateways support payment total changes!", "\n * Without this, a change in the tax amount can cause your renewals to fail.", "\n */\n\n\n/**\n * Forces taxes to be recalculated on renewal orders from Subscriptions.", "\n *\n * @param \\WC_Order $renewal_order the newly-created renewal order\n * @param int|\\WC_Subscription $subscription Post ID of a 'shop_subscription' post, or instance of a WC_Subscription object\n * @return \\WC_Order updated renewal order\n */\nfunction sv_wc_avatax_recalculate_renewal_taxes( $renewal_order, $subscription ) {\n\n\tif ( function_exists( 'wc_avatax' ) ) {\n\n\t\twc_avatax()->get_order_handler()->calculate_order_tax( $renewal_order );\n\t}\n\n\treturn $renewal_order;\n}\nadd_filter( 'wcs_renewal_order_created', 'sv_wc_avatax_recalculate_renewal_taxes', 20, 2 );" ]
{ "pile_set_name": "Github" }
[ 0, 0, 0, 0, 0, 0.0070921985815602835 ]
0.001182
5
[]
[ "Q:\n\nShould we generalize this old build order question?", "\n\nToday I came across this question:\n\nIn Age of Empires 3, what is a good build order for the British?", "\n\nWhile this topic has been discussed before with a seeming end result of \"don't touch them\", I'm not entirely convinced we shouldn't touch this question.", "\nThe question displays very little effort, and could easily apply to any civilization in the game, and the accepted answer seems a bit shallow, only stating one way to play the British, and even that could be called simply a list of British strengths.", "\nIf I were to ask a series of nearly identical questions pertaining to every other civ in AoE3, would those questions be acceptable? ", " I rather doubt it, but I don't see what makes the British so special.", "\nShould we do anything here?", "\n\nA:\n\nQuite frankly, I'm not sure what the problem would be with a question about every other civ in AoE3? ", "Spamming bad questions to prove your point wouldn't be productive; after all, they'd be bad questions that don't reflect research effort or experience or an understanding of what concerns the question ought to address most likely, but that doesn't mean that we can't have lots of them. ", "Don't focus on how many variants of a question might exist (different divs, or build types or whatever). ", "Consider the fact that the answers would be so wildly different that they don't start from the same place.", "\nWhat problem exactly, are you trying to solve here? ", "What I see is a reasonably specific question with a number of answers with quite a bit of specific detail in their responses. ", "Are those responses appreciably similar to the answers you'd get for a question about playing AoE3 as the French or the Spanish or the Cree or the Iroquois? ", "I don't know. ", "I don't know enough about AoE 3 to make that judgment.", "\nI can certainly say though, that if you'd linked say... a question about a build order for playing as Protoss in SC2, and asked if we should broaden it to include Zerg and Terran, I'd laugh in your face. ", "If you'd linked a question about playing Civ 5 as the French, I'd probably argue to broaden it.", "\nWhat I'm getting at here is that my answer to the previous question holds. ", "Categorical statements are a bad idea:\n\nNow, Build questions in general are a bit thornier, but again, a blanket ban is not the appropriate solution. ", "Yes, a lot of character build questions are really bad questions; cf. ", "skyrim. ", "This does not make questions about character builds inherently bad. ", "The main thing is that the question needs to reflect some actual experience - a concrete problem faced by the player. \"", "I want a build that is totally cool and sneaky and uses big swords and magic lasers and stuff\" is not a good question. ", "It's unfocused, vague, and doesn't really provide any useful information for answerers to provide a good answer. ", "The thing that gets tricky here, is that the criteria that separates a good build question from a bad one is very often specific to the game in question. ", "A good build question for diablo-3 is generally going to specify a class, any skills that are 'mandatory' to the asker and must be built around, and a desired play style (tanky, hardcore, low-gear dependency magic-find, whatever). ", "A good build question for mass-effect-3 by contrast, can generally be a bit more vague, and will generally expect it's answers to be as much or more focused on play style as it is on skill selection. ", "Good build questions for skyrim tend to be either extremely specific (and focus on whether certain specific skills or spells are useful or synergize as they appear to), or very general and focused more on the meta-strategy of how to pick skills, rather than on particular skill choices. ", "Good build questions about an MMO like world-of-warcraft will tend to be fairly mathy and depend on optimal DPS/HPS/Threat/Effective Health numbers - however, even with these, there may be multiple answers as different builds will make different tradeoffs and a multiplicity of answers arguing for these many variations is a good thing.", "\n\nIs this question a bad question? ", "I don't know enough about AoE3 to say. ", "Do you? ", "If so, make the case that it's a bad question, and that it ought to be fixed by being made broader. ", "At the moment, you haven't done so at all - and the number and diversity of answers speaks to the fact that it probably shouldn't be, unless being made broader doesn't appreciably change those answers. ", "Keep the usual heuristic for whether a question is too broad. ", "Yes, some people like to, and are able to, write novels in response to questions. ", "But any answer to a question ought to be able to stand on it's own; questions which compel either an extensive, extremely long comprehensive answer, or a 'one-per-answer' situation often end up being problematic.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.018518518518518517, 0.00975609756097561, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.002967359050445104, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.000781
5
[ { "analysis_explanation": null, "end": 61, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56 }, { "analysis_explanation": null, "end": 155, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 148 }, { "analysis_explanation": null, "end": 493, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 486 }, { "analysis_explanation": null, "end": 549, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 542 }, { "analysis_explanation": null, "end": 750, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 743 }, { "analysis_explanation": null, "end": 1256, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1252 }, { "analysis_explanation": null, "end": 1684, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1678 }, { "analysis_explanation": null, "end": 1699, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1692 }, { "analysis_explanation": null, "end": 1711, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1707 }, { "analysis_explanation": null, "end": 1727, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1719 }, { "analysis_explanation": null, "end": 1914, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1911 }, { "analysis_explanation": null, "end": 1976, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1970 }, { "analysis_explanation": null, "end": 2062, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2056 }, { "analysis_explanation": null, "end": 2794, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2785 } ]
[ "Q:\n\nInsert element into stream\n\nis there a way to insert an element T into a Stream<T>?", "\n ArrayList<Foo> foos = new ArrayList<>();\n Foo foo = new Foo();\n\n Stream<Foo> stream = Stream.concat(foos.stream(), Stream.of(foo));\n\nIs there another way? ", "basically a kind of foo.stream().add(foo)... - of course add() doesn't exist. -", "\n\nA:\n\nNo, there's no other way to add elements to the given stream in standard Java Stream API. ", "Some third-party libraries including my StreamEx library provide additional convenient methods to do this:\nStream<Foo> stream = StreamEx.of(foos).append(foo);\n\nInternally it uses the same concat method.", "\nSimilar method is available in jOOL library:\nStream<Foo> stream = Seq.seq(foos).concat(foo);\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0.012048192771084338, 0, 0.010416666666666666, 0.0049504950495049506, 0 ]
0.004569
5
[ { "analysis_explanation": null, "end": 140, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 133 }, { "analysis_explanation": null, "end": 150, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 147 }, { "analysis_explanation": null, "end": 417, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 406 }, { "analysis_explanation": null, "end": 189, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 180 }, { "analysis_explanation": null, "end": 201, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 194 }, { "analysis_explanation": null, "end": 275, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 269 }, { "analysis_explanation": null, "end": 698, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 692 } ]
[ "{\n \"$schema\": \"https://dev.office.com/json-schemas/core-build/tslint.schema.json\",\n // Display errors as warnings\n \"displayAsWarning\": true,\n // The TSLint task may have been configured with several custom lint rules\n // before this config file is read (for example lint rules from the tslint-microsoft-contrib\n // project). ", "If true, this flag will deactivate any of these rules.", "\n \"removeExistingRules\": true,\n // When true, the TSLint task is configured with some default TSLint \"rules.\":", "\n \"useDefaultConfigAsBase\": false,\n // Since removeExistingRules=true and useDefaultConfigAsBase=false, there will be no lint rules\n // which are active, other than the list of rules below.", "\n \"lintConfig\": {\n // Opt-in to Lint rules which help to eliminate bugs in JavaScript\n \"rules\": {\n \"class-name\": false,\n \"export-name\": false,\n \"forin\": false,\n \"label-position\": false,\n \"member-access\": true,\n \"no-arg\": false,\n \"no-console\": false,\n \"no-construct\": false,\n \"no-duplicate-case\": true,\n \"no-duplicate-variable\": true,\n \"no-eval\": false,\n \"no-function-expression\": true,\n \"no-internal-module\": true,\n \"no-shadowed-variable\": true,\n \"no-switch-case-fall-through\": true,\n \"no-unnecessary-semicolons\": true,\n \"no-unused-expression\": true,\n \"no-use-before-declare\": true,\n \"no-with-statement\": true,\n \"semicolon\": true,\n \"trailing-comma\": false,\n \"typedef\": false,\n \"typedef-whitespace\": false,\n \"use-named-parameter\": true,\n \"valid-typeof\": true,\n \"variable-name\": false,\n \"whitespace\": false\n }\n }\n}" ]
{ "pile_set_name": "Github" }
[ 0.0030211480362537764, 0, 0, 0, 0.0010438413361169101 ]
0.000813
5
[ { "analysis_explanation": null, "end": 159, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 153 }, { "analysis_explanation": null, "end": 441, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 435 }, { "analysis_explanation": null, "end": 723, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 719 }, { "analysis_explanation": null, "end": 83, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 16 } ]
[ "WASHINGTON — By making federal appeals court Judge Brett Kavanaugh his Supreme Court pick, President Donald Trump selected someone who already once secured votes from GOP swing Sens. ", "Susan Collins, R-Maine, and Lisa Murkowski, R-Alaska (back in 2006). ", "What’s more, key Democratic red-state senators like Joe Donnelly, D-Ind., Heidi Heitkamp, D-N.D., and Joe Manchin, D-W.V., released statements Monday saying they’d keep an open mind about Kavanaugh.", "\n\nAdd it all up and it’s very possible that, in the current 51-49 Senate, Kavanaugh could match the 54-45 confirmation vote that Neil Gorsuch got in 2017.", "\n\nBut there’s one significant wild card to Trump picking Kavanaugh: the Mueller probe.", "\n\nAnd if there’s a big development in the investigation — we haven’t really had one since April, when the FBI raided Trump lawyer Michael Cohen’s offices — then Kavanaugh’s 2009 law review article could be an impediment to confirmation.", "\n\nIn the article, Kavanaugh argues that a sitting president shouldn’t be distracted by civil lawsuits or criminal investigations while in office. “", "Having seen first-hand how complex and difficult that job [of president] is, I believe it vital that the president be able to focus on his never-ending tasks with as few distractions as possible,” he wrote. “", "Looking back to the late 1990s, for example, the nation certainly would have been better off if President Clinton could have focused on Osama bin Laden without being distracted by the Paula Jones sexual harassment case and its criminal-investigation offshoots.” ", "And he called for Congress to consider passing a law to defer any civil lawsuit or criminal investigation against a president until after he leaves office.", "\n\nNotably, Kavanaugh doesn’t pass constitutional judgment on this matter. “", "The result the Supreme Court reached in Clinton v. Jones — that presidents are not constitutionally entitled to deferral of civil suits — may well have been entirely correct; that is beyond the scope of this inquiry.” ", "But he does make his personal opinion clear: “The indictment and trial of a sitting president, moreover, would cripple the federal government, rendering it unable to function with credibility in either the international or domestic arenas. ", "Such an outcome would ill serve the public interest, especially in times of financial or national security crisis.”", "\n\nWhat’s especially striking about Kavanaugh’s opinion in that 2009 law review article is that it contradicts his work for Ken Starr, who investigated President Bill Clinton in the Whitewater/Lewinsky probes.", "\n\nAs we wrote after Justice Anthony Kennedy announced his retirement late last month, what makes this Supreme Court fight different from the ones during the Bush or Obama years is the Mueller probe. ", "The president's 2016 campaign — and the president himself — is under investigation for its possible ties to Russian interests.", "\n\nAnd if there's a significant development in the next month (another indictment, guilty plea, or battle over a subpoena), Democrats could argue that the president shouldn't be able to appoint a justice to the court who will probably have to rule on some aspect of the Mueller probe. ", "And that becomes even more potentially explosive given Kavanaugh’s article in 2009.", "\n\nHere’s what the swing GOP and Democratic senators said about Kavanaugh’s nomination\n\nAs mentioned above, here are the statements that key GOP and Democratic senators released last night on Kavanaugh’s nomination, per NBC’s Frank Thorp, Garrett Haake and Rebecca Shabad:\n\nSusan Collins: “Judge Kavanaugh has impressive credentials and extensive experience, having served more than a decade on the D.C. Circuit Court of Appeals. ", "I will conduct a careful, thorough vetting of the President’s nominee to the Supreme Court, as I have done with the five previous Supreme Court Justices whom I have considered.”", "\n\nLisa Murkowski: “I intend to review Judge Kavanaugh’s decisions on the bench and writings off the bench, and pay careful attention to his responses to questions posed by my colleagues on the Senate Judiciary Committee.”", "\n\nJoe Donnelly: He said before the Kavanaugh pick that he declined an invitation to appear at last night’s White House announcement \"so that I can meet first with the nominee in a setting where we can discuss his or her experience and perspectives.\"", "\n\nHeidi Heitkamp (per a spokeswoman): “She has made clear — as she said to the president in person two weeks ago — that she considers fully vetting Supreme Court nominees one of the most important jobs of any U.S. senator, and she plans to fulfill that critical duty.”", "\n\nJoe Manchin: “I will evaluate Judge Kavanaugh’s record, legal qualifications, judicial philosophy and particularly, his views on healthcare. ", "The Supreme Court will ultimately decide if nearly 800,000 West Virginians with pre-existing conditions will lose their health care. ", "This decision will directly impact almost 40% of my state, so I’m very interested in his position on protecting West Virginians with pre-existing conditions.”", "\n\nInterest groups plan to spend millions on the confirmation fight\n\nNBC’s Leigh Ann Caldwell: “The Charles Koch-backed organization Americans for Prosperity announced Monday that it will spend \"seven figures\" on grassroots organizing, paid media and door-to-to door canvassing in the ten states that Democrats are trying to defend in November. ", "And other political interest groups are planning a barrage of campaign ads as well as on-the-ground grassroots activities. ", "Among those Democrats bearing the brunt will be Sens. ", "Joe Donnelly of Indiana, Heidi Heitkamp of North Dakota and Joe Manchin of West Virginia.”", "\n\nMore: “Before Monday's announcement, those [Democrats] were already the targets of at least $1.4 million worth of advertising from the conservative Judicial Crisis Network, an umbrella organization pushing for the confirmation of Trump’s nominee. ", "The ad says, ‘extremists will lie and attack the nominee. ", "But don’t be fooled.’”", "\n\nTrump continues to criticize NATO — in a harsher way than he’s ever criticized Vladimir Putin\n\nBefore embarking to Brussels, Belgium for the NATO conference, Trump fired off these tweets:\n\n“Getting ready to leave for Europe. ", "First meeting - NATO. ", "The U.S. is spending many times more than any other country in order to protect them. ", "Not fair to the U.S. taxpayer. ", "On top of that we lose $151 Billion on Trade with the European Union. ", "Charge us big Tariffs (& Barriers)!”", "\n\n“NATO countries must pay MORE, the United States must pay LESS. ", "Very Unfair!”", "\n\nThis NATO meeting has the potential to be a replay of that G-7 meeting in Canada — after which Trump criticized Canadian Prime Minister Justin Trudeau and refused to sign the joint communique.", "\n\n“In the past, Europe did not doubt that U.S. interests and values were fundamentally aligned with theirs,” Daniel M. Price, an international economic adviser to President George W. Bush, tells the New York Times. “", "Now they wonder whether they can count on us in times of crisis without our first checking to see if they are current on their rent or royalty payments. ", "The decline in confidence is palpable.”", "\n\nAnd European Council President Donald Tusk said this, per the AP: “Dear America, appreciate your allies, after all you don’t have all that many.”", "\n\nAnother secret recording jolts the Cagle-vs.-Kemp gubernatorial runoff in Georgia\n\n“Lt. ", "Gov. Casey Cagle's campaign was already rocked last month by the release of a secretly recorded conversation in which Cagle said he backed what he called ‘bad public policy’ for political gain. ", "Cagle's runoff opponent, Secretary of State Brian Kemp, released another snippet of that conversation Monday,” the AP writes. “", "In this 50-second piece, Cagle can be heard candidly discussing the GOP primary's sharp turn to the right, saying the five-man race came down to ‘who had the biggest gun, who had the biggest truck and who could be the craziest.’ ", "Kemp said in a statement to the AP on Monday that the newly released recording ‘exposes Cagle's real opinion of Republican voters in Georgia.’”", "\n\nThe runoff is on July 24, and the winner faces Democrat Stacey Abrams.", "\n\nLooking at the history of baseball’s All-Star Game in Washington D.C.\n\nFinally, next week brings us Major League Baseball’s All-Star Game, which takes place in D.C. And writing for NBC Washington, Frederic Frommer looks at the history of the All-Star Game in the nation’s capital. “", "On a hot sticky July day in Washington 81 years ago, President Franklin D. Roosevelt made his way to the tiny ballpark two miles northeast of the White House, escaping a political storm of his own making. ", "On his heels over his unpopular plan to ‘pack’ the U.S. Supreme Court with extra justices to overcome a court that had stymied some of his New Deal legislation, FDR found campaign-style adoration at the 1937 All-Star Game.”", "\n\n“That afternoon marked the first time Washington hosted the All-Star Game, and it would do so again in 1956, 1962, and 1969, with presidents playing a central role in three of the four games. ", "In July, the Midsummer Classic returns to DC for the first time in nearly a half-century. ", "The White House has not yet said whether President Trump will throw out the first pitch on July 17. ", "If so, he'd be continuing a summer tradition started by FDR, who died a year before Trump was born in 1946.”" ]
{ "pile_set_name": "OpenWebText2" }
[ 0.02185792349726776, 0.028985507246376812, 0.025252525252525252, 0.01948051948051948, 0.011627906976744186, 0.00847457627118644, 0.006802721088435374, 0, 0.011450381679389313, 0.0064516129032258064, 0, 0.009174311926605505, 0, 0, 0.019230769230769232, 0.02512562814070352, 0, 0.0035211267605633804, 0.012048192771084338, 0.02564102564102564, 0.011299435028248588, 0.013574660633484163, 0.012048192771084338, 0.007462686567164179, 0.013986013986013986, 0.007518796992481203, 0, 0.00872093023255814, 0, 0, 0.03333333333333333, 0.008032128514056224, 0, 0, 0.01762114537444934, 0, 0, 0, 0.014285714285714285, 0, 0.015151515151515152, 0, 0.020618556701030927, 0.013888888888888888, 0, 0, 0.02040816326530612, 0.011111111111111112, 0.010309278350515464, 0.031496062992125984, 0.008733624454148471, 0.02097902097902098, 0.013888888888888888, 0.017605633802816902, 0.00975609756097561, 0.013452914798206279, 0, 0.011111111111111112, 0.02, 0.027777777777777776 ]
0.010822
5
[ { "analysis_explanation": null, "end": 10, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 66, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51 }, { "analysis_explanation": null, "end": 113, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101 }, { "analysis_explanation": null, "end": 196, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 183 }, { "analysis_explanation": null, "end": 225, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 211 }, { "analysis_explanation": null, "end": 249, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 245 }, { "analysis_explanation": null, "end": 279, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269 }, { "analysis_explanation": null, "end": 316, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 304 }, { "analysis_explanation": null, "end": 324, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 318 }, { "analysis_explanation": null, "end": 340, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 326 }, { "analysis_explanation": null, "end": 348, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 342 }, { "analysis_explanation": null, "end": 365, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 354 }, { "analysis_explanation": null, "end": 401, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 395 }, { "analysis_explanation": null, "end": 590, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 578 }, { "analysis_explanation": null, "end": 602, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 598 }, { "analysis_explanation": null, "end": 650, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 645 }, { "analysis_explanation": null, "end": 782, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 777 }, { "analysis_explanation": null, "end": 830, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 817 }, { "analysis_explanation": null, "end": 864, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 860 }, { "analysis_explanation": null, "end": 949, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 940 }, { "analysis_explanation": null, "end": 1309, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1295 }, { "analysis_explanation": null, "end": 1392, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1385 }, { "analysis_explanation": null, "end": 1430, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1415 }, { "analysis_explanation": null, "end": 1474, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1463 }, { "analysis_explanation": null, "end": 1818, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1811 }, { "analysis_explanation": null, "end": 2410, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2406 }, { "analysis_explanation": null, "end": 2475, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2466 }, { "analysis_explanation": null, "end": 2516, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2504 }, { "analysis_explanation": null, "end": 2534, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2524 }, { "analysis_explanation": null, "end": 2543, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2535 }, { "analysis_explanation": null, "end": 2593, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2578 }, { "analysis_explanation": null, "end": 2634, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2619 }, { "analysis_explanation": null, "end": 2711, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2707 }, { "analysis_explanation": null, "end": 2720, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2715 }, { "analysis_explanation": null, "end": 2769, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2765 }, { "analysis_explanation": null, "end": 2864, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2857 }, { "analysis_explanation": null, "end": 2934, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2920 }, { "analysis_explanation": null, "end": 3006, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2997 }, { "analysis_explanation": null, "end": 3240, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3236 }, { "analysis_explanation": null, "end": 3282, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3272 }, { "analysis_explanation": null, "end": 3398, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3388 }, { "analysis_explanation": null, "end": 3427, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3417 }, { "analysis_explanation": null, "end": 3440, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3431 }, { "analysis_explanation": null, "end": 3476, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3465 }, { "analysis_explanation": null, "end": 3491, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3478 }, { "analysis_explanation": null, "end": 3510, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3496 }, { "analysis_explanation": null, "end": 3526, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3513 }, { "analysis_explanation": null, "end": 3544, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3535 }, { "analysis_explanation": null, "end": 3630, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3612 }, { "analysis_explanation": null, "end": 3861, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3847 }, { "analysis_explanation": null, "end": 3898, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3889 }, { "analysis_explanation": null, "end": 4079, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4067 }, { "analysis_explanation": null, "end": 4169, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4159 }, { "analysis_explanation": null, "end": 4329, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4315 }, { "analysis_explanation": null, "end": 4425, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4412 }, { "analysis_explanation": null, "end": 4526, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4522 }, { "analysis_explanation": null, "end": 4593, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4582 }, { "analysis_explanation": null, "end": 4627, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4618 }, { "analysis_explanation": null, "end": 4797, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4782 }, { "analysis_explanation": null, "end": 4983, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4968 }, { "analysis_explanation": null, "end": 5105, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5087 }, { "analysis_explanation": null, "end": 5124, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5112 }, { "analysis_explanation": null, "end": 5154, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5145 }, { "analysis_explanation": null, "end": 5186, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5180 }, { "analysis_explanation": null, "end": 5322, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5313 }, { "analysis_explanation": null, "end": 5355, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5347 }, { "analysis_explanation": null, "end": 5501, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5492 }, { "analysis_explanation": null, "end": 5546, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5534 }, { "analysis_explanation": null, "end": 5557, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5550 }, { "analysis_explanation": null, "end": 5573, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5559 }, { "analysis_explanation": null, "end": 5589, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5577 }, { "analysis_explanation": null, "end": 5605, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5594 }, { "analysis_explanation": null, "end": 5622, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5609 }, { "analysis_explanation": null, "end": 5645, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5639 }, { "analysis_explanation": null, "end": 5678, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5669 }, { "analysis_explanation": null, "end": 5958, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5953 }, { "analysis_explanation": null, "end": 6046, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6032 }, { "analysis_explanation": null, "end": 6076, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6068 }, { "analysis_explanation": null, "end": 6085, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6078 }, { "analysis_explanation": null, "end": 6176, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6170 }, { "analysis_explanation": null, "end": 6208, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6204 }, { "analysis_explanation": null, "end": 6306, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6302 }, { "analysis_explanation": null, "end": 6472, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6455 }, { "analysis_explanation": null, "end": 6582, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6576 }, { "analysis_explanation": null, "end": 6602, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6597 }, { "analysis_explanation": null, "end": 6622, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6614 }, { "analysis_explanation": null, "end": 6652, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6638 }, { "analysis_explanation": null, "end": 6715, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6709 }, { "analysis_explanation": null, "end": 6739, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6735 }, { "analysis_explanation": null, "end": 6817, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6802 }, { "analysis_explanation": null, "end": 6880, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6866 }, { "analysis_explanation": null, "end": 7145, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7134 }, { "analysis_explanation": null, "end": 7330, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7323 }, { "analysis_explanation": null, "end": 7355, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7342 }, { "analysis_explanation": null, "end": 7394, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7384 }, { "analysis_explanation": null, "end": 7460, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7455 }, { "analysis_explanation": null, "end": 7536, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7531 }, { "analysis_explanation": null, "end": 7585, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7575 }, { "analysis_explanation": null, "end": 7639, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7633 }, { "analysis_explanation": null, "end": 7676, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7667 }, { "analysis_explanation": null, "end": 7689, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7684 }, { "analysis_explanation": null, "end": 7892, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7888 }, { "analysis_explanation": null, "end": 7932, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7926 }, { "analysis_explanation": null, "end": 7981, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7976 }, { "analysis_explanation": null, "end": 8010, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8000 }, { "analysis_explanation": null, "end": 8028, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8021 }, { "analysis_explanation": null, "end": 8056, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8049 }, { "analysis_explanation": null, "end": 8087, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8079 }, { "analysis_explanation": null, "end": 8101, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8088 }, { "analysis_explanation": null, "end": 8181, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8157 }, { "analysis_explanation": null, "end": 8192, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8183 }, { "analysis_explanation": null, "end": 8267, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8263 }, { "analysis_explanation": null, "end": 8316, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8300 }, { "analysis_explanation": null, "end": 8410, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8402 }, { "analysis_explanation": null, "end": 8424, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8414 }, { "analysis_explanation": null, "end": 8437, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8425 }, { "analysis_explanation": null, "end": 8470, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8449 }, { "analysis_explanation": null, "end": 8755, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8752 }, { "analysis_explanation": null, "end": 8798, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8794 }, { "analysis_explanation": null, "end": 8830, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8816 }, { "analysis_explanation": null, "end": 8863, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8853 }, { "analysis_explanation": null, "end": 8922, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8918 }, { "analysis_explanation": null, "end": 8928, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8924 }, { "analysis_explanation": null, "end": 8938, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8934 }, { "analysis_explanation": null, "end": 9014, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9010 }, { "analysis_explanation": null, "end": 9051, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9049 }, { "analysis_explanation": null, "end": 9095, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9074 }, { "analysis_explanation": null, "end": 9153, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9148 }, { "analysis_explanation": null, "end": 9195, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9188 }, { "analysis_explanation": null, "end": 9231, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9225 }, { "analysis_explanation": null, "end": 9256, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9253 }, { "analysis_explanation": null, "end": 9273, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9267 }, { "analysis_explanation": null, "end": 9286, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9281 }, { "analysis_explanation": null, "end": 9303, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9299 } ]
[ "Most Trusted Professional Moving Company\n\nOur Services\n\nLong Distance\n\nLocal Moving\n\nCommercial\n\nStorage\n\nSelf storage 10020\n\nThis is the ultimate guide to find the most convenient Self storage 10020 based on instant quotes, an affordable price, excellent customer service, a prominent record of genuine five stars reviews, and located close to my area, street, neighborhood, ZIP, borough, city, or county. ", "In the next paragraphs, I will enumerate the most important attributes to select the best Self storage 10020.", "\n\nThe five characteristics of Self storage 10020 must have are: instant quotes, maximum of 5 minutes response time, and 100% response rate; affordable price based on an average of $130 per hour for local moves, and $4.90 per cubic foot in long-distance or interstate operations; excellent customer service with full support for disassembling, packing, storage, moving, unpacking, and reassembling furniture; positive feedback, reviews are a good source that provide details about the moving company; and, location, the area of operations is easily identifiable in the company’s website.", "\n\nThere are so many moving companies, some are better than others, and all of them are trying to appear as the right choice for you. ", "The first thing we have to check is which companies serve the area that our furniture is located for pick-up. ", "This will impact directly the amount of the estimate we will request. ", "For example, Self storage 10020 operate in almost every state in the US.", "\n\nMoving Estimates\n\nThe first thing we need from the Self storage 10020 is the Moving Estimate. ", "There is a misconception around this. ", "An estimate is not the same thing than a quote, let’s see the difference between one to another:\n\nAn Moving Estimate is an educated guess that is based on what the job may cost. ", "It includes our first thoughts on costs and can change drastically when you get further information, while a Quote or Quotation is an exact price for the offered job and cannot be changed. ", "Generally, a quote is issued after an on-site visit where you are confident that you have established what you need, in contrast to an estimate that is issued generally online. ", "In summary, an estimate is a rough idea of our move while a quote is a legally binding document.", "\n\nAffordable Price\n\nThe Moving Industry involves two kinds of operations: Local Moves, and Long Distance Moves. ", "Everyone has their characteristics. ", "Let’s check one by one.", "\n\nLocal Moves\n\nOn a Local Move, you can be expected to be asked to pay around $130 per hour. ", "To count a move as Local it has to be inside the tree-state area —New York, New Jersey, Connecticut. ", "A local move requires to hire three men with a truck. ", "The rate will be higher at the beginning and the end of the month and in summer because of the increased demand for this service. ", "Travel time is included as well, one hour is the average time required to go to your home. ", "Remember that the hourly rate is applied only to Local Moves, that means any relocation inside the three-state area.", "\n\nLong Distance Moves\n\nA Long Distance Relocation is any operation between the Three-State area and the rest of the US. ", "There are multiple expenses on a Long Distance move such as the size of your move, packing services, date of the move, storage, travel fees, among others. ", "Hiring a top-rated Moving Company brings multiple benefits such as consolidated shipping —a practice that consists in combine multiple shipments in one (multi-stop truckload) shipment. ", "Another factor to consider is the date of the move, this will impact directly in your final invoice. ", "Moving at the beginning, or the end of the month could be expensive; the same occurs in summer." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.005291005291005291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.005405405405405406, 0, 0 ]
0.000396
5
[ { "analysis_explanation": null, "end": 615, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 606 }, { "analysis_explanation": null, "end": 1484, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1482 }, { "analysis_explanation": null, "end": 2594, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2586 }, { "analysis_explanation": null, "end": 2606, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2596 }, { "analysis_explanation": null, "end": 2619, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2608 }, { "analysis_explanation": null, "end": 2740, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2720 }, { "analysis_explanation": null, "end": 2754, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2748 }, { "analysis_explanation": null, "end": 2846, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2838 }, { "analysis_explanation": null, "end": 2920, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2914 }, { "analysis_explanation": null, "end": 3129, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3127 }, { "analysis_explanation": null, "end": 3620, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3600 }, { "analysis_explanation": null, "end": 3666, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3660 } ]
[ "Kazagići (Kiseljak)\n\nKazagići is a village in the municipality of Kiseljak, in central Bosnia and Herzegovina.", "\n\nReferences\n\nCategory:Populated places in Kiseljak" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.02727272727272727, 0 ]
0.013636
5
[ { "analysis_explanation": null, "end": 8, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 18, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10 }, { "analysis_explanation": null, "end": 74, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66 }, { "analysis_explanation": null, "end": 93, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87 }, { "analysis_explanation": null, "end": 160, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 152 } ]
[ "Check out our new site Makeup Addiction\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\na link to a scientific article upvote to feel smart" ]
{ "pile_set_name": "OpenWebText2" }
[ 0.0029940119760479044 ]
0.002994
5
[]
[ "NEW ORLEANS – The NOPD is seeking the public’s assistance in identifying and locating a vehicle of interest in an armed robbery and shooting which occurred June 3 at the intersection of St. Charles Avenue and Lee Circle.", "\n\nThe male victim in this incident was in the area when he was approached by an unknown male suspect armed with a handgun. ", "The suspect demanded the victim's property. ", "The male victim refused and was shot.", "\n\nThe perpetrator in this incident is observed via video surveillance being dropped off at the location where the incident occurred.", "\n\nThe vehicle is described as gold in color pickup truck with a red stripe down the center. ", "A photo of the vehicle captured from surveillance video can be found below.", "\n\nAnyone with information regarding this vehicle or this incident is asked to contact the Eighth District Detective Unit at 504-658-6080.", "\n\nCitizens with information that can help solve a crime are asked to call Crimestoppers at 822-1111 or toll-free 1-877-903-STOP. ", "You could receive a cash reward of up to $2,500 for the information leading only to the arrest, except on homicides, where Crimestoppers will pay half of the reward upon the arrest and half on the indictment of the responsible person(s). ", "You do not have to give your name nor testify to receive the reward but you must contact Crimestoppers directly with your information. ", "Citizens can also submit an anonymous tip online to Crimestoppers at www.crimestoppersgno.org." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.013636363636363636, 0, 0, 0, 0, 0, 0, 0.014598540145985401, 0, 0.004201680672268907, 0.007407407407407408, 0.010638297872340425 ]
0.004207
5
[ { "analysis_explanation": null, "end": 11, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 162, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 156 }, { "analysis_explanation": null, "end": 219, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 209 }, { "analysis_explanation": null, "end": 1450, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1426 }, { "analysis_explanation": null, "end": 855, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 843 } ]
[ "Mitch McConnell recently attributed a major drop in unemployment and growth of the U.S. economy to \"the expectation of a Republican congress.\" ", "Oh, hell no, said Jon Stewart on Thursday evening's edition of \"The Daily Show.\"", "\n\n\"Oh, come on! ", "You've been in control of the Senate for two days!\" ", "Stewart said. \"", "Unless my calendar is broken, Senator, which is possible, since I bought it at a discount calendar factory, the general economic improvement trend started before the November elections.\"", "\n\nAdvertisement:\n\n\"Thankfully, the Republican Senate majority under Mitch McConnell came to our rescue and saved the economy retroactively,\" Stewart continued. \"", "It's easy to assume that Mitch McConnell is saying that people felt so inspired by the moment, he switched the nameplate on his office door, then he invented time travel and went back to 2009 and started spending and hiring again, but the truth is actually much simpler. ", "The truth is this, and it'll blow your minds: If you rub Mitch McConnell's shell, you will receive five years of business growth.\"" ]
{ "pile_set_name": "OpenWebText2" }
[ 0.013986013986013986, 0.0125, 0, 0.019230769230769232, 0.06666666666666667, 0, 0.018633540372670808, 0.0036900369003690036, 0.007692307692307693 ]
0.015822
5
[ { "analysis_explanation": null, "end": 15, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 87, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83 }, { "analysis_explanation": null, "end": 131, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 121 }, { "analysis_explanation": null, "end": 172, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 161 }, { "analysis_explanation": null, "end": 184, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 176 }, { "analysis_explanation": null, "end": 192, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 185 }, { "analysis_explanation": null, "end": 287, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279 }, { "analysis_explanation": null, "end": 297, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 290 }, { "analysis_explanation": null, "end": 480, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 472 }, { "analysis_explanation": null, "end": 536, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 526 }, { "analysis_explanation": null, "end": 574, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 559 }, { "analysis_explanation": null, "end": 639, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 632 }, { "analysis_explanation": null, "end": 693, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 678 }, { "analysis_explanation": null, "end": 844, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 840 }, { "analysis_explanation": null, "end": 998, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 981 }, { "analysis_explanation": null, "end": 1033, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1023 } ]
[ "If you never noticed that Alpha DSLR/T are more \"creative skills\" oriented than other competitors (I mean the opposite to techno-geek oriented), so it's you that you missed something. (", "Same things for the e-mount)\n\nThe questions here is: « Who is the idiot ?»", "Those who bought a DSLR and using it permanently in [Auto] mode, or what? ", "And maybe « Who's next?»" ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0.013513513513513514, 0 ]
0.003378
5
[]
[ "Q:\n\nFinding partial strings using str.find() then replace values from dictionary\n\nI need to replace the values from a column. ", "The values from the column need not to be exact match, so I use str.find(). ", "Once it scanned the string, it should replace the values from the dictionary.", "\nI achieved the desired result for one instance, but I need to do it multiple times.", "\nI tried creating a function but it didn't work. ", "It only worked for the last dictionary value. ", "\ndictionary = {\"AA\" : \"111\", \"BB\" : \"222\", \"CC\": \"333,444\"}\n\n#result = []\nfor k, v in dictionary.items():\n df[\"renamed\"] = np.nan\n df.loc[(df[\"combined_topic\"].str.find(k) !", "= -1), \"renamed\"] = v\n #result.extend(df[\"renamed\"].to_dict(orient=\"records\"))\n\nHow should I fix my code? ", "or can you suggest more efficient way to replace multiple values.", "\nExpected output:\ncombined_topic renamed\nAA, harvard 111\nDiliman, Technology, BB 222\nCat, Dog, CC, Bull 333, 444\n``\n\nA:\n\nUse Series.str.extract for get first matched value of dictionary and then Series.map by dict:\npat = '|'.join(dictionary)\ndf['renamed'] = df['combined_topic'].str.extract('('+ pat + ')', expand=False).map(dictionary)\nprint (df)\n combined_topic renamed\n0 AA, harvard 111\n1 Diliman, Technology, BB 222\n2 Cat, Dog, CC, Bull 333,444\n\nYour solution houl be used with Series.str.contains, but mainly remove df[\"renamed\"] = np.nan, because data are always overwritten in each loop:\nfor k, v in dictionary.items():\n df.loc[df[\"combined_topic\"].str.contains(k), \"renamed\"] = v\n\nOr:\nfor k, v in dictionary.items():\n df.loc[(df[\"combined_topic\"].str.find(k) !", "= -1), \"renamed\"] = v\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.007936507936507936, 0, 0, 0, 0, 0, 0.005555555555555556, 0.009174311926605505, 0, 0.00935672514619883, 0.043478260869565216 ]
0.006864
5
[ { "analysis_explanation": null, "end": 1149, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1108 }, { "analysis_explanation": null, "end": 40, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 34 }, { "analysis_explanation": null, "end": 196, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 190 }, { "analysis_explanation": null, "end": 557, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 544 }, { "analysis_explanation": null, "end": 589, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 584 }, { "analysis_explanation": null, "end": 630, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 623 }, { "analysis_explanation": null, "end": 984, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 975 }, { "analysis_explanation": null, "end": 1054, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1045 }, { "analysis_explanation": null, "end": 1388, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1375 }, { "analysis_explanation": null, "end": 1435, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1430 }, { "analysis_explanation": null, "end": 1513, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1500 }, { "analysis_explanation": null, "end": 1558, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1551 }, { "analysis_explanation": null, "end": 1614, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1601 }, { "analysis_explanation": null, "end": 1660, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1653 } ]
[ "Q:\n\nHow to find absolute index() with jQuery?", "\n\n<nav>\n <section>\n <aside>\n <div class=\"findthis\">111111</div>\n <div class=\"findthis\">222222</div>\n <div class=\"findthis\">333333</div> \n <div class=\"findthis\">444444</div>\n </aside>\n </section>\n</nav>\n\n$('.findthis').each( function(){\n var index = $(this).index()+1;\n $(this).append(\" ( this element = \"+index+\" )\")\n});\n\nthis is working! (", "http://jsfiddle.net/3c5TZ/)\nbut.... when i do/insert more HTML-tags like this...\n<nav>\n <section>\n <aside>\n <div class=\"findthis\">111111</div>\n <h2><h2>\n <div class=\"findthis\">222222</div>\n <span></span>\n <div class=\"findthis\">333333</div>\n <b></b> \n <div class=\"findthis\">444444</div>\n </aside>\n </section>\n</nav>\n\nit fails! (", "http://jsfiddle.net/3c5TZ/1/)\nAny ideas?", "\n\nA:\n\nThe index is passed to the .each() method you don't have to reinvent the wheel:\n$('.findthis').each( function(index){\n $(this).append(\" ( this element = \" + (index + 1) + \" )\")\n});\n\nUpdated fiddle.", "\n\nA:\n\nPlease consult the documentation of index(). ", "In your example, jQuery cannot really know what kind of index you are looking for, relative to what?", "\nOne way of doing this is providing the selector for .index():\n$('.findthis').each( function(){\n var index = $(this).index('.findthis')+1;\n $(this).append(\" ( this element = \"+index+\" )\")\n});\n\njsFiddle Demo\nAnother (in this case maybe more effective) way is to run index() on the whole collection, and pass the element as a parameter:\nvar $collection = $('.findthis');\n$collection.each( function(){\n var index = $collection.index(this)+1;\n $(this).append(\" ( this element = \"+index+\" )\")\n});\n\njsFiddle Demo\n\nA:\n\nYou have accidentally nested elements inside each other.", "\nChange this:\n<h2><h2>\n\nto this:\n<h2></h2>\n\nThen it works just fine. ", "Demo: http://jsfiddle.net/Guffa/3c5TZ/14/\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.022222222222222223, 0, 0.002398081534772182, 0.025, 0, 0, 0.01, 0.003401360544217687, 0, 0.023255813953488372 ]
0.008628
5
[ { "analysis_explanation": null, "end": 299, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 283 }, { "analysis_explanation": null, "end": 874, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 846 }, { "analysis_explanation": null, "end": 990, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 974 }, { "analysis_explanation": null, "end": 1323, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1307 }, { "analysis_explanation": null, "end": 454, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 428 }, { "analysis_explanation": null, "end": 874, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 846 }, { "analysis_explanation": null, "end": 1939, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 1904 }, { "analysis_explanation": null, "end": 1682, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1669 }, { "analysis_explanation": null, "end": 192, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 186 }, { "analysis_explanation": null, "end": 702, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 696 }, { "analysis_explanation": null, "end": 114, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 108 }, { "analysis_explanation": null, "end": 153, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 147 }, { "analysis_explanation": null, "end": 192, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 186 }, { "analysis_explanation": null, "end": 233, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 227 }, { "analysis_explanation": null, "end": 577, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 571 }, { "analysis_explanation": null, "end": 637, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 631 }, { "analysis_explanation": null, "end": 702, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 696 }, { "analysis_explanation": null, "end": 787, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 781 } ]
[ "# Aliases for symbols, used by symbol_request().", "\nalias symbol:nf_log_dump_packet_common nf_log_common\nalias symbol:nf_nat_l4proto_unique_tuple nf_nat\nalias symbol:nf_log_dump_udp_header nf_log_common\nalias symbol:nf_nat_ipv4_fn nf_nat_ipv4\nalias symbol:nf_nat_masquerade_ipv4_register_notifier nf_nat_ipv4\nalias symbol:nf_xfrm_me_harder nf_nat\nalias symbol:__nf_nat_l4proto_find nf_nat\nalias symbol:nf_nat_l4proto_unregister nf_nat\nalias symbol:nf_nat_follow_master nf_nat\nalias symbol:nf_nat_l3proto_ipv4_unregister_fn nf_nat_ipv4\nalias symbol:nf_nat_masquerade_ipv4_unregister_notifier nf_nat_ipv4\nalias symbol:nf_log_dump_sk_uid_gid nf_log_common\nalias symbol:nf_nat_used_tuple nf_nat\nalias symbol:nf_nat_setup_info nf_nat\nalias symbol:nf_ct_nat_ext_add nf_nat\nalias symbol:nf_nat_packet nf_nat\nalias symbol:nf_nat_l3proto_register nf_nat\nalias symbol:nf_log_l2packet nf_log_common\nalias symbol:nf_log_dump_tcp_header nf_log_common\nalias symbol:nf_nat_l3proto_unregister nf_nat\nalias symbol:nf_nat_register_fn nf_nat\nalias symbol:__nf_nat_mangle_tcp_packet nf_nat\nalias symbol:nf_nat_masquerade_ipv4 nf_nat_ipv4\nalias symbol:nf_nat_icmp_reply_translation nf_nat_ipv4\nalias symbol:nf_nat_unregister_fn nf_nat\nalias symbol:nf_nat_l4proto_in_range nf_nat\nalias symbol:nf_nat_l4proto_register nf_nat\nalias symbol:nf_nat_l3proto_ipv4_register_fn nf_nat_ipv4\nalias symbol:nf_nat_alloc_null_binding nf_nat\nalias symbol:nf_nat_l4proto_nlattr_to_range nf_nat\nalias symbol:nf_nat_mangle_udp_packet nf_nat\nalias symbol:nf_nat_inet_fn nf_nat\n" ]
{ "pile_set_name": "Github" }
[ 0, 0.0006734006734006734 ]
0.000337
5
[ { "analysis_explanation": null, "end": 687, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 663 } ]
[ "Quantification of regional ventilation-perfusion ratios with PET.", "\nThe topographic matching of alveolar ventilation (V(A)) and perfusion (Q) is the main determinant of gas exchange efficiency of the lung. ", "However, no pulmonary functional imaging technique has been shown to predict whole-lung gas exchange in health and disease. ", "This study aims to present a PET-based method to estimate regional alveolar ventilation-to-perfusion ratios (V(A)/Q) predictive of arterial blood gases. ", "The method is based on the regional tracer kinetics of (13)N-nitrogen ((13)NN) after an intravenous bolus injection during a breath-hold period and subsequent washout from the lungs with resumption of breathing. ", "The method takes into account the presence of inter- and intraregional nonuniformities at length scales smaller than the imaging spatial resolution. ", "An algorithm used regional tracer washout to classify regional V(A)Q/ uniformity. ", "Intraregional V(A)/Q mismatch in nonuniform regions was described with a 2-compartment model. ", "Regional V(A)/Q estimates were combined into a whole-lung distribution of V(A)/Q ratios and were used to compute global arterial blood gases. ", "The method was applied to 3-dimensional PET data from anesthetized and mechanically ventilated sheep before and after methacholine bronchoconstriction (n = 3) and pulmonary embolism (n = 3) and after saline lung lavage (n = 3). ", "PET images revealed regional changes in ventilation and perfusion consistent with the different disease models. ", "Quantification of the images using PET-derived V(A)Q/ distributions showed unimodal and narrow distributions in control conditions that became wider and unimodal after pulmonary embolism and saline lung lavage and bimodal after bronchoconstriction. ", "Images of regional gas exchange allowed for visualization of regional gas exchange. ", "Arterial blood gases estimated from the PET-based V(A)/Q distributions closely agreed with measured values (partial pressure of oxygen, arterial [PaO(2)]: r(2) = 0.97, P < 0.001; partial pressure of carbon dioxide, arterial [PaCO(2)]: r(2) = 0.96, P < 0.001). ", "Tracer kinetics analysis of PET images after an intravenous injection of (13)NN provides a quantitative assessment of regional V(A)/Q heterogeneity including that corresponding to length scales smaller than the spatial resolution of the imaging method. ", "Quantification of V(A)/Q mismatch obtained with the presented technique is directly related to severity of gas exchange impairment as determined by arterial blood gases." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.015384615384615385, 0, 0, 0.006535947712418301, 0, 0, 0, 0, 0, 0.0043859649122807015, 0.008928571428571428, 0.004016064257028112, 0, 0.007692307692307693, 0.003952569169960474, 0 ]
0.003181
5
[ { "analysis_explanation": null, "end": 779, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 750 } ]
[ "On the podium with U.S. national team head coach Jill Ellis at the World Cup final press conference on Saturday, Megan Rapinoe didn’t even want to wait for the question about the NWSL to be finished.", "\n\n\n\n“Shout-out to the Seattle Reign!” ", "she crowed, referencing Friday night’s Reign FC 1-0 victory over Cascadia rivals Portland Thorns FC. “", "Me and Allie (Long) were talking so much shit this morning, it was so good. ", "Very quiet from the Portland players, by the way.”", "\n\n\n\nIt was another delightful moment in the Rapinoe media availability show that’s been the theme through the last month in France, but it was also a reminder that the USWNT players are still deeply invested in the domestic results happening back home in the NWSL. ", "They’ve also been paying attention to all the news coming out of the league.", "\n\n\n\nOn Thursday, the league announced a 14-game television deal with ESPN, which will include the entire postseason being..." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.01507537688442211, 0.02631578947368421, 0.00980392156862745, 0.013157894736842105, 0, 0.011320754716981131, 0, 0.008064516129032258 ]
0.010467
5
[ { "analysis_explanation": null, "end": 23, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19 }, { "analysis_explanation": null, "end": 59, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49 }, { "analysis_explanation": null, "end": 111, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 103 }, { "analysis_explanation": null, "end": 126, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 113 }, { "analysis_explanation": null, "end": 264, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 258 }, { "analysis_explanation": null, "end": 270, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265 }, { "analysis_explanation": null, "end": 307, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299 }, { "analysis_explanation": null, "end": 349, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 344 }, { "analysis_explanation": null, "end": 395, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 383 }, { "analysis_explanation": null, "end": 441, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 433 }, { "analysis_explanation": null, "end": 580, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 566 }, { "analysis_explanation": null, "end": 590, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 584 }, { "analysis_explanation": null, "end": 813, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 805 } ]
[ "Hinduism, Buddhism, and Taoism - A History\n\nHinduism, Buddhism, and Taoism, the three most well-known Eastern religious traditions, share many historical roots and themes, just as Judaism, Christianity and Islam do in the West. ", "This article provides a brief overview of the relationship between these three influential traditions.", "\n\nHinduism is often called the world's oldest religion, because it is built upon the religion of the Vedic civilization of ancient India, of approximately 2000- 500 BCE. ", "The Vedas are a collection of Sanskrit texts from this period, the oldest sections dating from 1500 - 1000 BCE. ", "Later commentaries on these texts, along with the epic tales the Ramayana and Mahabarata, both written in the 4th or 5th century BCE and depicting the Hindu pantheon, form the foundation for Hinduism.", "\n\nHinduism isn't one tradition, but really a way of referring to a diverse set of philosophical and religious beliefs that share these common historical roots, but have developed in different ways. ", "The most well-known contemporary branch of Hinduism is probably yoga, which developed as a set of physical and meditation practices for achieving nirvana, or liberation, and was founded upon the Yoga Sutras of Patanjali believed to have been written between 150 and 100 BCE. ", "Most Hindu traditions share some common beliefs, such as a belief in karma, reincarnation, and liberation.", "\n\nAccording to Buddhist sutras, Buddha was born into an Indian royal family that probably practiced Brahminical Hinduism in the 5th or 6th century BCE. ", "In the traditional story of Buddha's life, he leaves home to study spiritually with several teachers, most of whom were teaching within various Hindu sects. ", "After his enlightenment, in his own teaching Buddha broke from Hinduism in several key ways, most notably by preaching against the caste system, declaring that anyone could achieve liberation through practice, and by disavowing the idea of a permanent self.", "\n\nSince the Buddha lived and taught in India, Buddhism initially was solely based there. ", "Within India, over time it mixed with existing practice traditions such as kundalini yoga and Tantra, forming new practice lineages. ", "Meanwhile, traveling monks and traders carrying written texts gradually spread Buddhism to neighboring domains, where it mixed with other native traditions, creating yet more new Buddhist traditions. ", "For example, in Tibet, it mixed with the native Bon religion, while in China it mixed with Taoism.", "\n\nTaoism is historically linked to Lao Tzu, a legendary figure believed to have lived in China in the 6th century BCE, although some believe he lived later, or that his legend is actually a combination of several historical figures. ", "In any case, he is credited with penning the Tao Te Ching, one of the most popular and widely translated texts in the world (by many accounts, rivaled only by the Bible in terms of translations.)", "\n\nAlthough like Hinduism and Buddhism, the term Taoism has evolved to encompass many diverse traditions, some philosophical and some more religious in nature, all Taoist traditions do share certain common beliefs. ", "The first is a belief in a balance of 'yin' (receiving, intuitive) and 'yang' (active, creative) energies in mind and body, and the second is the core tenet of wu wei or 'action through inaction'. ", "When Buddhism traveled to China, the merging of Taoism and Buddhism led to the development of Chan Buddhism, which then made its way to Japan and developed into Zen Buddhism.", "\n\nHinduism, Buddhism, and Taoism have continued to evolve as they have encountered new cultures. ", "In the West today, the influence of Hindu teachings is seen most notably in the popularity of yoga. ", "Taoist principles are at the heart of Traditional Chinese Medicine, which includes acupuncture, now widely practiced in the West. ", "And of course Buddhist teachers of many different lineages have traveled to the West, forming new practice centers and traditions.", "\n\nFor a thorough but concise history of Buddhism that provides more details on how new lineages developed as it spread through the world and mixed with other traditions, try:" ]
{ "pile_set_name": "Pile-CC" }
[ 0.008771929824561403, 0, 0, 0.008928571428571428, 0.02, 0, 0.0036363636363636364, 0, 0.019736842105263157, 0.006369426751592357, 0.0038910505836575876, 0.011235955056179775, 0.007518796992481203, 0, 0.01020408163265306, 0.008583690987124463, 0.005128205128205128, 0, 0.005076142131979695, 0.011494252873563218, 0, 0, 0.007692307692307693, 0, 0 ]
0.005531
5
[ { "analysis_explanation": null, "end": 8, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 201, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189 }, { "analysis_explanation": null, "end": 211, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 206 }, { "analysis_explanation": null, "end": 226, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 222 }, { "analysis_explanation": null, "end": 339, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 331 }, { "analysis_explanation": null, "end": 465, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 460 }, { "analysis_explanation": null, "end": 609, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 594 }, { "analysis_explanation": null, "end": 684, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 676 }, { "analysis_explanation": null, "end": 699, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 689 }, { "analysis_explanation": null, "end": 767, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 762 }, { "analysis_explanation": null, "end": 810, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 802 }, { "analysis_explanation": null, "end": 820, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 812 }, { "analysis_explanation": null, "end": 1059, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1051 }, { "analysis_explanation": null, "end": 1161, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1154 }, { "analysis_explanation": null, "end": 1227, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1218 }, { "analysis_explanation": null, "end": 1293, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1288 }, { "analysis_explanation": null, "end": 1411, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1403 }, { "analysis_explanation": null, "end": 1426, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1420 }, { "analysis_explanation": null, "end": 1450, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1444 }, { "analysis_explanation": null, "end": 1508, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1500 }, { "analysis_explanation": null, "end": 1538, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1512 }, { "analysis_explanation": null, "end": 1574, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1568 }, { "analysis_explanation": null, "end": 1689, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1684 }, { "analysis_explanation": null, "end": 1748, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1742 }, { "analysis_explanation": null, "end": 1768, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1760 }, { "analysis_explanation": null, "end": 1971, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1965 }, { "analysis_explanation": null, "end": 1997, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1992 }, { "analysis_explanation": null, "end": 2054, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2049 }, { "analysis_explanation": null, "end": 2362, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2354 }, { "analysis_explanation": null, "end": 2396, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2391 }, { "analysis_explanation": null, "end": 2451, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2446 }, { "analysis_explanation": null, "end": 2514, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2507 }, { "analysis_explanation": null, "end": 2566, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2561 }, { "analysis_explanation": null, "end": 2589, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2570 }, { "analysis_explanation": null, "end": 2923, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2915 }, { "analysis_explanation": null, "end": 3068, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3062 }, { "analysis_explanation": null, "end": 3279, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3273 }, { "analysis_explanation": null, "end": 3341, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3336 }, { "analysis_explanation": null, "end": 3451, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3446 }, { "analysis_explanation": null, "end": 3597, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3592 }, { "analysis_explanation": null, "end": 3621, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3616 }, { "analysis_explanation": null, "end": 3686, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3680 }, { "analysis_explanation": null, "end": 3832, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3824 }, { "analysis_explanation": null, "end": 3894, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3890 } ]
[ "“Behind many successful households there is a strong domestic worker,” said Altagracia Garcia to cheers. ", "She and others spoke out for domestic workers’ legal rights and protections today–National Domestic Workers’ Day–and they made a strong case.", "\n\nIntroduced by state assembly member Tom Ammiano in February, the bill would grant the basic rights afforded most other workers–paid overtime, workers’ compensation–to domestic workers. ", "Such workers, who are overwhelmingly immigrant women of color, have been consistently left out of labor laws, as their non-traditional positions don’t fit standard legislation.", "\n\nOn July 1, 2010 New York became the first state to ever enact such a bill, which guarantees paid time off, legal protection from discrimination and harassment and a minimum one day of rest per week, among other victories.", "\n\nThe passage of the California bill would also ensure that live-in domestic workers would have the right to sleep at least five hours each night and have access to employers’ kitchens to cook their own food. ", "Advocates say that because those rights are specific to live-in caregivers, they must be enshrined in domestic worker-specific law.", "\n\nLolita Andrada Lledo, associate director of the Pilipino Workers Center in Los Angeles, told Ms. that the ability to cook their own food is essential for caregivers–rather than being limited to what food that their elderly and ill patients are able to eat. “", "We want them to respect our culture, where we come from,” she says.", "\n\nOn the right to sleep, Lledo says in-home workers are often denied sleep entirely, especially when caring for stroke victims and elders with dementia or Alzheimer’s who have round-the-clock needs.", "\n\n“Stroke victims sleep, but you need to turn them over every two hours,” she says. “", "How can you expect someone to survive [without sleep]? ", "The patient will survive, but the one who’s taking care will not be able to survive,”\n\nShe told Ms. that when domestic workers have asked employers to hire a second caregiver (so each would work 12 hours, giving the other a chance to rest), employers have claimed they can’t afford a second employee.", "\n\n“If you don’t have money to pay you better find other ways,” she says. “", "It [shouldn't be] at our expense.”", "\n\nOther speakers at the rally stressed the need to pass this bill to ensure domestic workers have legal recourse for harassment and violence in the workplace.", "\n\nA 20-year veteran caregiver from Mexico spoke at the rally and said she was verbally and physically abused at her first job as a domestic worker. ", "She said her employer’s son hurled insults at her in English (which she came to understand as she learned the language) and frequently hit her with a wet towel or a golf club. ", "Finally, after an argument with his own mother, a restraining order was issued against him. ", "She is now retired and organizing with CHIRLA, the Coalition for Humane Immigrant Rights of Los Angeles, to ensure future generations of caregivers have basic human rights and legal protections.", "\n\nTo show your support for caregivers and the California Domestic Worker Bill of Rights, send a letter to Misa Yokoi-Shelton, legislative aide to assembly member Ammiano, at Misa.Yokoi-Shelton@asm.ca.gov by April 6th. ", "For more information check out the National Domestic Workers’ Alliance and CHIRLA’s website.", "\n\nComments\n\n“CALIFORNIA AB 889 IS DANGEROUS FOR JOBS & FAMILIES”\nIt may seem easy to dismiss arguments against AB 889 as merely more complaints from the rich.", "\n~Require 21 days notice prior to terminating a domestic employee. .", "\n~Require annual raises equal to the increase in the CPI. ", "This right to a raise exists regardless of merit, performance, the condition of the underlying economy or the level of the starting salary.", "\n~Dramatically change the overtime laws for live-in and overnight caregivers, effectively putting such services out of the reach of working families and elderly care recipients who would lose the benefit of being able to receive care for themselves or children in the comfort and stability of their own homes.", "\n~ Give State inspectors & investigators \"free access\" to a family's home to investigate & inspect the domestic employee's work place. ", "If access is refused, any allegation of an injury is sufficient to support issuance of a warrant by the court.", "\n~Allow reimbursement of attorney's fees in many contexts, creating a new business opportunity for enterprising lawyers targeting working families.", "\n\nWomen with families are the domestic workers who are being hurt by not having their basic human rights protected, equally, as with all other people. ", "It is unconstitutional to not have these rights ensured by the American Government.", "\n\nBenefits of the New Law:\n•The new law will give greater benefits to caregivers than to average workers.", "\n•The law will push more families to take the risk of hiring under the table since it will be easier to pay cash.", "\n•The law will help caregivers that prefer to work for cash so they can avoid paying taxes.", "\n•The law will increase the opportunities for undocumented workers that need to work for cash.", "\n•The rich will save money by hiring for cash and not withholding for taxes.", "\nDrawbacks of the New Law:\n•California will collect less in taxes while increasing spending to try to enforce the new law.", "\n•Caregivers that want to be paid legally and build up their social security will have to compete for fewer jobs.", "\nSee, the benefits out way the drawbacks. ", "How is that for Liberal thinking?", "\n\nThe authors are so disingenous that they have given an exception to the worst offenders: the home care and housekeeping companies that do not treat their workers as employees but pay wages without EDD, Medicare and social security contributions and then issue 1099s at the end of the year. ", "These companies were exempted because _ they have technically transferred employer responsibilities to the clients. ", "The client is intentionally kept ignorant of their liabilites and the company does not have to pay any workers compensation nor make payroll contributions.", "\n\nSo why did Ammiano and Perex give the Domestic Referral Agencies using 1099s a ride: bcecause the attorneys can not go after them for being in violation of any of the wage and order stipulations that AB889 puts forth.", "\n\nWhat does California lose: federal and state payroll tax deductions, EDD – unemployment income and lastly has to pick up the cost of state funded public assistance and MediCal because there are no social security and Medicare contributions made. ", "Additionally,Domestic Worker Rights are lost as more and more workers will be employed in “this underground” economy regardless of their legal/alien status. ", "This bill will force many small employer-employee businesses to shutter or go underground." ]
{ "pile_set_name": "Pile-CC" }
[ 0.009523809523809525, 0, 0.0053475935828877, 0, 0, 0, 0, 0.007692307692307693, 0, 0.005050505050505051, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.010309278350515464, 0.013761467889908258, 0.021739130434782608, 0.012658227848101266, 0, 0, 0, 0, 0, 0, 0, 0, 0.012048192771084338, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.00684931506849315, 0, 0, 0.0091324200913242, 0.008064516129032258, 0, 0 ]
0.002545
5
[ { "analysis_explanation": null, "end": 3209, "entity_type": "EMAIL_ADDRESS", "recognition_metadata": { "recognizer_identifier": "EmailRecognizer_140094861343664", "recognizer_name": "EmailRecognizer" }, "score": 1, "start": 3180 }, { "analysis_explanation": null, "end": 93, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76 }, { "analysis_explanation": null, "end": 186, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 181 }, { "analysis_explanation": null, "end": 294, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 283 }, { "analysis_explanation": null, "end": 306, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298 }, { "analysis_explanation": null, "end": 624, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 612 }, { "analysis_explanation": null, "end": 633, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 625 }, { "analysis_explanation": null, "end": 789, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 772 }, { "analysis_explanation": null, "end": 860, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 850 }, { "analysis_explanation": null, "end": 963, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 944 }, { "analysis_explanation": null, "end": 974, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 964 }, { "analysis_explanation": null, "end": 1190, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1170 }, { "analysis_explanation": null, "end": 1256, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1245 }, { "analysis_explanation": null, "end": 1763, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1748 }, { "analysis_explanation": null, "end": 2036, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2028 }, { "analysis_explanation": null, "end": 2408, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2401 }, { "analysis_explanation": null, "end": 2438, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2432 }, { "analysis_explanation": null, "end": 3130, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3112 }, { "analysis_explanation": null, "end": 3175, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3168 }, { "analysis_explanation": null, "end": 3222, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3213 }, { "analysis_explanation": null, "end": 3338, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3328 }, { "analysis_explanation": null, "end": 3490, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3483 }, { "analysis_explanation": null, "end": 3557, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3551 }, { "analysis_explanation": null, "end": 3803, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3794 }, { "analysis_explanation": null, "end": 5749, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5730 }, { "analysis_explanation": null, "end": 6041, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6034 }, { "analysis_explanation": null, "end": 6261, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6251 }, { "analysis_explanation": null, "end": 3209, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3199 }, { "analysis_explanation": null, "end": 6228, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 6223 } ]
[ "Awaso\n\nAwaso is a village near the district capital Tarkwa of Tarkwa-Nsuaem Municipal district, a district in the Western Region of Ghana. ", "Awaso has a bauxite mine operated by the Ghana Bauxite Company. ", "The mine is served by a rail branch line on the western Ghana rail system, however in 2007, much of the ore goes by road.", "\n\nSee also\nRailway stations in Ghana\n\nReferences\n\nExternal links\n\n Aluwatch\n\nCategory:Populated places in the Western Region (Ghana)\nCategory:Western Region (Ghana)" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0, 0.015625, 0, 0.012195121951219513 ]
0.006955
5
[ { "analysis_explanation": null, "end": 58, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52 }, { "analysis_explanation": null, "end": 128, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110 }, { "analysis_explanation": null, "end": 137, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 132 }, { "analysis_explanation": null, "end": 264, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 259 }, { "analysis_explanation": null, "end": 293, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 289 }, { "analysis_explanation": null, "end": 447, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 429 }, { "analysis_explanation": null, "end": 454, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 449 }, { "analysis_explanation": null, "end": 486, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 481 } ]
[ "It is billed as the largest ever gathering of climate change deniers, a convention that kicked off last night with a title suggesting global warming is a thing of the past, and a guest list that includes a hurricane forecaster, a retired astronaut and a sitting European president.", "\n\nEntitled Global Warming: Was It Ever Really a Crisis? ", "and featuring some of the most prominent naysayers in the climate change debate, this week's conference in New York sets out to escalate its confrontation with the scientific establishment, the vast majority of whose members subscribe to the view that humans are the principal cause of climate change.", "\n\nConference organisers were celebrating something of a coup in securing as a keynote speaker the Czech president, Václav Klaus, at a time when his country holds the rotating presidency of the EU. ", "Klaus, a Eurosceptic, believes that efforts to protect the world from the impact of climate change are an assault on freedom.", "\n\nIn his remarks last night, Klaus accused European governments of being \"alarmist\" on the subject of climate change and in thrall to radical environmentalists.", "\n\n\"They probably do not want to reveal their true plans and ambitions to stop economic development and return mankind several centuries back,\" he said.", "\n\nHe received a standing ovation. ", "But Klaus admitted that his position was a lonely one.", "\n\n\"It is evident that the climate change debate has not made any detectable progress,\" he said. \"", "It reminds me of the frustration people like me felt in the communist era.\"", "\n\nThis week's gathering by the Heartland Institute, a Chicago thinktank that shares the Czech president's free-market views, brings together some of the more vocal critics of the scientific consensus, which maintains that rising temperatures are now so dangerous to people's existence as to warrant urgent action.", "\n\nAmong more than 70 participants listed by the Heartland Institute is Jack Schmitt, a former astronaut, who now teaches engineering physics. ", "William Gray, who is regarded as a leading hurricane forecaster, is also listed, along with Fred Singer, the atmospheric physicist who argues that a melting Arctic would have some positive effects, including the formation of the long-sought north-west passage. ", "There is also a strong contingent of free marketeers and conservative commentators, including Christopher Booker and Christopher Monckton, both British.", "\n\nEnvironmentalists argue that climate change denial, although the view of a minority, has damaged efforts to introduce policies to address the changes.", "\n\nKert Davies, research director for Greenpeace, says the climate change deniers have been adept at adapting their views as the public grows more conscious of the dangers of global warming.", "\n\nThe deniers also have resources. ", "The Centre for Public Integrity said in a report last month that the lobby opposing climate change action gave work to 2,430 Washington lobbyists in 2008. ", "The report estimated that about 15% of Washington's lobbyists were now working to try to stop Congress from passing a law putting a cap on carbon.", "\n\n\"They are on the fringes - when you look at where the public is on this issue, where governments are on this issue, and where scientific organisations are on this issue,\" said Kevin Grandia, the manager of DeSmogBlog, which seeks to counter misinformation on global warming. \"", "The problem is when you take that fringe and add in the public relations ability to amplify that message. ", "They have ingrained their message so well ... it can easily be used as a tool to oppose legislation.\"", "\n\nOpinion polls show that about 58% of Americans believe human activity is causing climate change. ", "However, many do not see a need for urgent action. ", "A poll by the Pew Research Centre this year showed that climate change ranked last among topics of public concern to Americans.", "\n\nThe Heartland Institute was funded by Exxon Mobil until 2006. ", "It disavows such links for this conference, but lists 55 sponsors, some of which do receive funding from Exxon and rightwing thinktanks.", "\n\nHow we deal with climate change: denial\n\nAcademics meeting in Bristol at the weekend for Britain's first conference on the psychology of climate change argued that the greatest obstacles to action are not technical, economic or political - they are the denial strategies that we adopt to protect ourselves from unwelcome information. ", "Nearly 80% of people claim to be concerned about climate change, but many people have a tendency to define this concern in ways that keep it far away. ", "They describe climate change as a global problem (not a local one) and as a future problem (not one for their lifetimes). ", "And 60% of people believe that \"many scientific experts still question if humans are contributing to climate change\" while 30% believe climate change is \"largely down to natural causes\". ", "Seven per cent deny climate is changing at all.", "\n\nGeorge Marshall\n\n• George Marshall is founder of the Climate Outreach Information Network" ]
{ "pile_set_name": "OpenWebText2" }
[ 0, 0, 0, 0.01015228426395939, 0.008, 0.00625, 0, 0, 0.018518518518518517, 0, 0, 0.003194888178913738, 0.014084507042253521, 0.007662835249042145, 0.013157894736842105, 0, 0.010582010582010581, 0, 0.0064516129032258064, 0.00684931506849315, 0.0035971223021582736, 0, 0, 0, 0, 0.007874015748031496, 0.03125, 0.007352941176470588, 0.002976190476190476, 0, 0, 0, 0.02127659574468085, 0.03296703296703297 ]
0.006241
5
[ { "analysis_explanation": null, "end": 109, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99 }, { "analysis_explanation": null, "end": 270, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262 }, { "analysis_explanation": null, "end": 426, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 422 }, { "analysis_explanation": null, "end": 451, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 443 }, { "analysis_explanation": null, "end": 739, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 734 }, { "analysis_explanation": null, "end": 763, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 751 }, { "analysis_explanation": null, "end": 838, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 833 }, { "analysis_explanation": null, "end": 853, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 842 }, { "analysis_explanation": null, "end": 984, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 974 }, { "analysis_explanation": null, "end": 991, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 986 }, { "analysis_explanation": null, "end": 1008, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1000 }, { "analysis_explanation": null, "end": 1251, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1234 }, { "analysis_explanation": null, "end": 1309, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1304 }, { "analysis_explanation": null, "end": 1536, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1532 }, { "analysis_explanation": null, "end": 1586, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1579 }, { "analysis_explanation": null, "end": 1618, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1613 }, { "analysis_explanation": null, "end": 1920, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1908 }, { "analysis_explanation": null, "end": 1991, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1979 }, { "analysis_explanation": null, "end": 2082, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2071 }, { "analysis_explanation": null, "end": 2142, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2136 }, { "analysis_explanation": null, "end": 2352, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2334 }, { "analysis_explanation": null, "end": 2377, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2357 }, { "analysis_explanation": null, "end": 2391, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2384 }, { "analysis_explanation": null, "end": 2555, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2544 }, { "analysis_explanation": null, "end": 2824, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2814 }, { "analysis_explanation": null, "end": 2900, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2890 }, { "analysis_explanation": null, "end": 2918, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2914 }, { "analysis_explanation": null, "end": 2969, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2959 }, { "analysis_explanation": null, "end": 3256, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3243 }, { "analysis_explanation": null, "end": 3283, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3273 }, { "analysis_explanation": null, "end": 3598, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3589 }, { "analysis_explanation": null, "end": 3743, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3734 }, { "analysis_explanation": null, "end": 3826, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3817 }, { "analysis_explanation": null, "end": 3888, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3884 }, { "analysis_explanation": null, "end": 4096, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4089 }, { "analysis_explanation": null, "end": 4111, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4100 }, { "analysis_explanation": null, "end": 4123, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4116 }, { "analysis_explanation": null, "end": 4903, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4869 } ]
[ "Calyculin A causes sensitization to tumor necrosis factor-related apoptosis-inducing ligand (TRAIL)-induced apoptosis by ROS-mediated down-regulation of cellular FLICE-inhibiting protein (c-FLIP) and by enhancing death receptor 4 mRNA stabilization.", "\nCalyculin A (Cal A) is a serine/threonine phosphatase inhibitor that is capable of inducing apoptosis in cancer cells. ", "In this study, we examined whether Cal A could modulate TRAIL-induced apoptosis in human renal carcinoma-derived Caki cells. ", "Our results show that Cal A is capable of sensitizing Caki cells to TRAIL-induced apoptosis, as well as U2OS human osteosarcoma cells and A549 human lung adenocarcinoma epithelial cells. ", "Cal A increases intracellular ROS production and down-regulates c-FLIP(L) expression. ", "Interestingly, the down-regulation of protein phosphatase 1 (PP1) by PP1 siRNA also reduced c-FLIP(L) expression via reactive oxygen species production. ", "Furthermore, Cal A induced death receptor 4 (DR4) mRNA and protein expression by enhancing DR4 mRNA stability. ", "We also found that PP4 siRNA up-regulated DR4 mRNA and protein expression. ", "Collectively, our results suggest that Cal A could enhance TRAIL-mediated apoptosis via the down-regulation of c-FLIP(L) and the up-regulation of DR4 in human renal cell carcinoma cell line Caki." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.008032128514056224, 0.008333333333333333, 0, 0, 0, 0.006535947712418301, 0.009009009009009009, 0.013333333333333334, 0.010256410256410256 ]
0.006167
5
[ { "analysis_explanation": null, "end": 430, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 425 }, { "analysis_explanation": null, "end": 567, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 562 }, { "analysis_explanation": null, "end": 1170, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1165 }, { "analysis_explanation": null, "end": 636, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 632 } ]
[ "Like many of you, I am struggling to go about my daily work routine. ", "I am unfocussed and distracted. ", "I am supposed to write an editorial now and the deadline is approaching faster than originally planned. ", "We need more time with production, now that the workload and the amount of time-sensitive studies have increased. ", "Everyone\\'s day-to-day workflow has changed, and we are doing our best to adjust, manage, and to keep things going.", "\n\nAs an editor for a medical journal, it is my job to stay up-to-date with current knowledge. ", "So, of course, I read; I watch WHO\\'s press conferences and briefings; and I follow leaders in the fields of virology, infectious diseases, and epidemiology. ", "I still consider myself a scientist, although I quit the bench few years ago. ", "As a scientist, you ask questions, and do experiments and testing to collect data to find an answer. ", "We aim to create knowledge and gain understanding. ", "I learned to deal with problems with knowledge. ", "If you know how things work, then you can fix them. ", "This is my approach in life---for good or for bad. ", "During this world health crisis, knowledge is key. ", "We are getting briefed constantly by politicians, scientists, and public health-care workers during televised press conferences on how knowledge will help us through this situation.", "\n\nWe are seeing a high influx of manuscripts on the topic, describing cohorts, outcomes, case numbers, risk groups, and treatments. ", "As they come in, we read, screen, and evaluate. ", "We see the data every day, and now, new data arrive hourly. ", "I know who falls in the high-risk group. ", "I know what the death rates are, and about containment and mitigation. ", "I know, but I am still afraid. ", "I am afraid because I know. ", "I know that the median age of non-survivors is 69, 70% are male, 67% have comorbidities, 48% have high blood pressure, and 31% have diabetes. ", "I am afraid because I know that the infection rate of inpatients is higher.", "\n\nI have parents in the high-risk age range who live in Germany, while I am in the USA. ", "My mother takes immunosuppressants, and my father has high blood pressure and diabetes and is, overall, not very healthy. ", "He is currently in the hospital for necessary follow-up surgery due to complications from a recent surgery, done at a time when the situation was not as desperate as it is now. ", "I tried to advise them to make the right choices according to the best of my knowledge at that time. ", "Now, we don\\'t have a choice. ", "Now, he needs surgery. ", "The recovery time for his treatment is difficult to estimate, but is probably not less than 2 weeks. ", "He will need to stay in the hospital for the amount of time. ", "I am already hearing from the doctors that they have to clear the wards this week for incoming infected patients. ", "I inquired about room assignment and the answers were, \"whatever I say now, might be a lie in 2 h.\" The doctors are candid, which I appreciate, but it also makes the severity of the situation more real. ", "Yes, we are in a world health crisis, and, yes, it affects us.", "\n\nKnowledge always empowered me, reassured me. ", "Now, I am worried and afraid. ", "There is so much about the virus and its behaviour that we don\\'t know yet; why are children not as affected, how can we reliably stop spreading, when testing capacity is so limited; and why is testing so delayed and limited at this point? ", "As a journal, it is our responsibility to ensure that the published information is correct. ", "We, our authors, and our reviewers, do our best to get new information out quickly, so it becomes available to everyone. ", "I am trying to be positive, trying to convince myself that it will all be OK. ", "I am trying to put my situation into perspective; I am trying to imagine how my colleagues must feel with families and friends in Italy or China. ", "Or how my colleagues in China and their families must have suffered, and probably still do, during the first waves of the outbreak. ", "It\\'s hard to image, but it has become clear: we are all in this situation together, and I am sure we are all afraid. ", "This is a world health crisis and we should treat it as one. ", "Countries should learn from each other and understand that we must fight this globally. ", "After all, borders don\\'t stop a virus.", "\n\nI am clinging on to the hope that once this is over the world would have learned a lesson. ", "As one, we all must act kindly and respectfully, and with that we will all come out stronger; stronger together. ", "This situation affects all of us and only together as one world we can fight this effectively. ", "Until then, we should be conscious and aware. ", "Help each other and maybe pick up your phone to call your elderly neighbours; they are probably afraid too.", "\n\nClaudia, *Editor-in-Chief*, EClinicalMedicineGetty ImagesUnlabelled image\n" ]
{ "pile_set_name": "PubMed Central" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.00847457627118644, 0, 0, 0, 0, 0, 0, 0, 0, 0.013157894736842105 ]
0.000408
5
[ { "analysis_explanation": null, "end": 328, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 319 }, { "analysis_explanation": null, "end": 341, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 331 }, { "analysis_explanation": null, "end": 761, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 748 }, { "analysis_explanation": null, "end": 1502, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1493 }, { "analysis_explanation": null, "end": 1535, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1529 }, { "analysis_explanation": null, "end": 1757, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1755 }, { "analysis_explanation": null, "end": 1987, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1980 }, { "analysis_explanation": null, "end": 2010, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2007 }, { "analysis_explanation": null, "end": 2564, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2547 }, { "analysis_explanation": null, "end": 2708, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2699 }, { "analysis_explanation": null, "end": 3748, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3743 }, { "analysis_explanation": null, "end": 3757, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3752 }, { "analysis_explanation": null, "end": 3788, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3783 }, { "analysis_explanation": null, "end": 4658, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4651 } ]
[ "\n621 F.Supp.2d 1130 (2008)\nNeal BEIDLEMAN, Plaintiff,\nv.\nRANDOM HOUSE, INC., ", "Defendant.", "\nCivil Action No. ", "07cv01347-RPM-MJW.", "\nUnited States District Court, D. Colorado.", "\nDecember 22, 2008.", "\n*1131 Christopher Seidman, Maurice J. Harmon, Harmon & Seidman LLC, Grand Junction, CO, for Plaintiff.", "\nByeongsook Seo, Theresa Lynne Corrada, Isaacson Rosenbaum, P.C., Denver, CO, for Defendant.", "\n\n\n*1132 ORDER DENYING DEFENDANT'S MOTION FOR SUMMARY JUDGMENT\nRICHARD P. MATSCH, Senior District Judge.", "\nNeal Beidleman (\"Beidleman\" or \"the Plaintiff\") filed this civil action against Random House, Inc. (\"Random House\" or \"the Defendant\") on June 27, 2007, alleging one claim of copyright infringement and one claim of fraudulent concealment. ", "The Defendant moved for summary judgment of dismissal on January 17, 2008 [Doc. ", "16].", "\nFor purposes of this motion, the following facts are assumed to be supported by competent evidence:\nIn May 1996, Beidleman served as a guide for an expedition on Mt. Everest. ", "Eight climbers, including two of the leaders, died during that expedition. ", "Numerous books and magazine articles have been written about the ill-fated expedition.", "\nBeidleman took photographs, which he registered with the U.S. Copyright Office. ", "He retained a New York agency, Woodfin Camp & Associates, as his agent for licensing his Everest photographs. ", "Woodfin Camp III (\"Camp\") operates that small agency and has approximately 43 years of extensive experience licensing photographs to major publishing companies such as Random House, Houghton Mifflin, Harcourt, Simon & Schuster, and others.", "\nIn 1997, Random House (under its imprint Villard Books)[1] published a book entitled Into Thin Air: A Personal Account of the Mount Everest Disaster, by Jon Krakauer. ", "Into Thin Air became a # 1 New York Times bestseller and was honored as \"Book of the Year\" by Time Magazine. ", "Into Thin Air was a finalist for a 1997 National Book Critics Circle Award and was one of three finalists for the 1998 Pulitzer Prize in General Non-fiction.", "\nIn 1998, Random House decided to publish an illustrated edition of Into Thin Air. ", "In a letter to Camp dated August 7, 1998, a Random House editor identified the Beidleman photographs that Random House wanted to use in that publication and stated as follows:\n\nInto Thin Air: The Illustrated Edition will be printed in a modest run of 25,000 copies (a reprint would be very expensive and fairly unlikely) and will retail at $40. ", "It will be a 8 7/8 x 8 7/8 hardcover of approximately 400 pages. ", "We are gathering what we hope will be about 300 images for this book, so our art budget is fairly modest. ", "I hope we can come to an agreement that will be amenable to all parties concerned.", "\nCamp agreed and on November 20, 1998, sent an invoice to Random House as follows:\nOne Time Non-Exclusive Reproduction Rights\nFee for the one time non exclusive license to reproduce the following photographs in the first U.S. language edition only of INTO THIN AIR Illustrated Edition 1998 by Jon Krakauer, print run 25,000 copies.", "\nEx. ", "B to Am. ", "Compl. ", "The invoice itemized the photos and stated the total amount due.", "\nRandom House published Into Thin Air: The Illustrated Edition in November 1998, printing 85,642 copies of the book.", "\nOn or about February 8, 1999, Random House paid the invoice sent to it by Woodfin Camp & Associates.", "\nIn early 2006, Beidleman retained counsel to pursue an unrelated copyright infringement action against another publisher *1133 for exceeding a limited license for one of his Everest photographs. ", "This experience caused Beidleman to question whether Random House had complied with its license for his Everest photos. ", "Beidleman hired Michael Harmon to investigate Random House's use of Beidleman's photos.", "\nOn August 14, 2006, Harmon called Random House and left a voice mail explaining that he was auditing the use of Beidleman's photographs in Into Thin Air: The Illustrated Edition. ", "That call was returned two days later by Random House employee Deb Foley who told Harmon that he should contact Adam Korn, another Random House employee. ", "Foley provided Korn's telephone number and email address to Harmon. ", "Harmon left a voice mail for Korn on August 21, 2006. ", "Korn did not respond. ", "Harmon followed up with emails to Korn on September 15, 2006, and November 27, 2006. ", "Korn did not respond. ", "When Harmon sent another email on January 8, 2007, he received a notice that the delivery had failed. ", "Harmon then called Foley, who told him that Korn had left his employment at Random House \"a few months ago\" and that Harmon should contact Ryan Doherty.", "\nHarmon emailed Doherty on January 17, 2007, asking for the \"total number of copies you have made for all purposes\" of Beidleman's photographs. ", "Doherty responded on January 21, 2007, stating that Random House had sold 62,147 copies of Into Thin Air: The Illustrated Edition. ", "Harmon sent another email, explaining that the information he was seeking was the total number of books printed and the total number of times that Random House had used the photographic images in any manner. ", "On February 14, 2007, Doherty responded, stating that the total print number was 85,642.", "\nThe Plaintiff filed this suit on June 27, 2007.", "\nThe Defendant argues that the plaintiff's claim of copyright infringement is barred by the statute of limitations. ", "The Copyright Act provides, \"No civil action shall be maintained under the provisions of this title unless it is commenced within three years after the claim accrued.\" ", "17 U.S.C. § 507(b).", "\nThe Copyright Act does not address when a claim accrues. ", "Under the \"discovery rule,\" a claim for copyright infringement accrues when the plaintiff \"knows or has sufficient reason to know of the conduct upon which the claim is grounded.\" ", "Warren Freedenfeld Assocs. ", "v. McTigue, 531 F.3d 38, 44 (1st Cir.2008). ", "Some courts have applied the \"injury rule,\" holding that a claim for copyright infringement accrues when the injury occurred. ", "See Auscape Int'l v. Nat'l Geographic Soc'y, 409 F.Supp.2d 235, 244-48 (S.D.N.Y.2004).", "\nAdvocating application of the injury rule, the Defendant contends that the Plaintiff's claim accrued no later than April 2002—the date by which Into Thin Air: The Illustrated Edition was out of print. ", "In response, the Plaintiff argues that the discovery rule governs accrual, asserting that his claim did not accrue until January 2007, when he actually learned that Random House had exceeded the license.", "\nThe United States Supreme Court has not addressed whether the determination of accrual of a copyright claim is governed by the discovery rule or the injury rule. ", "The United States Courts of Appeals for the First, Fourth, Sixth, Eighth, and Ninth Circuits have applied the discovery rule to claims of copyright infringement. ", "See Warren Freedenfeld Assocs., ", "531 F.3d at 44-46; Roger Miller Music, Inc. v. Sony/ATV Publ'g, LLC, 477 F.3d 383, 390 (6th Cir.2007); Gaiman v. McFarlane, 360 F.3d 644, 653 (8th Cir.2004); Lyons P'ship v. Morris Costumes, Inc., 243 F.3d 789, *1134 796 (4th Cir.2001); Roley v. New World Pictures, Ltd., 19 F.3d 479, 481 (9th Cir. ", "1994); see also Calhoun v. Lillenas Publ'g, 298 F.3d 1228, 1236 (11th Cir.2002) (Birch, J., specially concurring) (\"The limitations period may be triggered when a plaintiff knows or, in the exercise of reasonable diligence, should have known of the infringement.\"). ", "The United States Court of Appeals for the Tenth Circuit has not ruled on the issue. ", "No circuit court has adopted the injury rule as the standard for determining accrual of a copyright claim.", "\nThe text of the Copyright Act does not compel application of the injury rule. ", "Determination of accrual in this case will be governed by the discovery rule. ", "The discovery rule \"reflects a sensible tradeoff—a policy decision that balances the important interests of repose against the substantial hardship that an inflexible statute of limitations might otherwise foster.\" ", "Warren Freedenfeld Associates, 531 F.3d at 46.", "\nThe Defendant contends that even if the discovery rule applies, the Plaintiff's claim is still untimely, arguing that the undisputed facts show that Plaintiff could have discovered the alleged infringement at any time by simply inquiring.", "\nDetermination of the accrual date according to the discovery rule requires consideration of \"when a reasonably prudent person in the plaintiff's shoes would have discovered (that is, would have acquired an awareness of) the putative infringement.\" ", "Warren Freedenfeld Associates, 531 F.3d at 44. ", "The Defendant bears the burden of proof on the question of when a reasonably prudent person would have discovered the alleged infringement. ", "This is a fact-intensive inquiry, not appropriate for determination on the Defendant's motion for summary judgment. ", "The amount of damages recoverable for the alleged infringement, if any, is also a matter to be determined at trial.", "\nThe Defendant argues that the Plaintiff's second claim for relief, for fraudulent concealment, is preempted. ", "The Copyright Act provides:\nOn and after January 1, 1978, all legal or equitable rights that are equivalent to any of the exclusive rights within the general scope of copyright as specified by Section 106 in works of authorship that are fixed in a tangible medium of expression and come within the subject matter of copyright as specified by sections 102 and 103, whether created before or after that date and whether published or unpublished, are governed exclusively by this title. ", "Thereafter, no person is entitled to any such right or equivalent right in any such work under the common law or statutes of any State.", "\n17 U.S.C. § 301(a). \"", "Under section 301, a state common law or statutory claim is preempted if: (1) the work is within the scope of the `subject matter of copyright' as specified in 17 U.S.C. §§ 102, 103; and (2) the rights granted under state law are equivalent to any exclusive rights within the scope of federal copyright as set out in 17 U.S.C. § 106.\" ", "Gates Rubber Co. v. Bando Chem. ", "Indus., ", "Ltd., 9 F.3d 823, 847 (10th Cir.1993) (quotations and citations omitted).", "\nThere is no dispute that works at issue (Beidleman's photographs) are within the scope of the subject matter of copyright. ", "The second part of the preemption test is the focus of this dispute.", "\nSection 106 of the Copyright Act grants to the copyright owner the exclusive rights to: (i) reproduce the copyrighted work; (ii) prepare derivative works based on the copyrighted work; (iii) distribute copies of the copyrighted work; *1135 (iv) perform the copyrighted work publicly; and (v) display the copyrighted work publicly. ", "Preemption analysis requires comparison of the exclusive rights protected by 17 U.S.C. § 106 to the elements of the asserted state claim. ", "Gates Rubber Co., 9 F.3d at 847. ", "Factual overlap between the federal copyright claim and the state law claim is not dispositive. ", "The label the plaintiff puts on the state law claim is not dispositive either. ", "The court must examine the nature of the particular state law claim alleged to determine whether it is qualitatively different from the claim of copyright infringement. \"[", "I]f a state cause of action requires an extra element, beyond mere copying, preparation of derivative works, performance, distribution or display, then the state cause of action is qualitatively different from, and not subsumed within, a copyright infringement claim and federal law will not preempt the state action.\" ", "Id., 9 F.3d at 847 (quotations and citations omitted).", "\nThe remedy sought by the plaintiff is relevant to this determination. ", "In Ehat v. Tanner, the United States Court of Appeals for the Tenth Circuit held that the plaintiff's state law claim of misappropriation of property was preempted and explained, \"[The plaintiff] did not allege a state law claim of conversion to recover for the physical deprivation of his notes. ", "Instead, he sought to recover for damage flowing from their reproduction and distribution.... Such reproduction interferes with an intangible literary or artistic property right equivalent to copyright.\" ", "Ehat v. Tanner, 780 F.2d 876, 878 (10th Cir. ", "1985) (citations omitted).", "\nThe fraudulent concealment claim as alleged by Beidleman includes more than the copyright infringement remedy. ", "He contends that the license fee charged for 25,000 copies was less than what Camp would have sought for the larger printing and that Random House fraudulently concealed its intention to print 85,642 copies of the book. ", "The August 7, 1998 letter is claimed to be a misrepresentation of intention which Camp relied on in granting permission for a limited use of the photographs at the price charged. ", "The damages for that asserted fraud are different under common law than those available under the Copyright Act. ", "There is no preemption of the second claim for relief.", "\nBased on the foregoing, it\nORDERED that the Defendant's motion for summary judgment is denied, and it is\nFURTHER ORDERED that the Plaintiff's Motion for Oral Argument [Doc. ", "28] is denied.", "\nNOTES\n[1] References to \"Random House\" include Villard Books.", "\n" ]
{ "pile_set_name": "FreeLaw" }
[ 0.03896103896103896, 0, 0, 0, 0, 0, 0.04854368932038835, 0.043478260869565216, 0.009615384615384616, 0.008333333333333333, 0, 0, 0.005681818181818182, 0, 0, 0.024691358024691357, 0.00909090909090909, 0.008368200836820083, 0.011904761904761904, 0.01834862385321101, 0, 0.012048192771084338, 0.008695652173913044, 0, 0, 0, 0.012084592145015106, 0, 0, 0, 0, 0, 0.019801980198019802, 0.00510204081632653, 0.016666666666666666, 0.04597701149425287, 0.016666666666666666, 0.032467532467532464, 0.04411764705882353, 0.018518518518518517, 0.045454545454545456, 0.011764705882352941, 0.045454545454545456, 0.00980392156862745, 0.03289473684210526, 0.006944444444444444, 0.007633587786259542, 0.009615384615384616, 0.011363636363636364, 0.020833333333333332, 0, 0, 0, 0, 0, 0.037037037037037035, 0, 0, 0.023255813953488372, 0.0049504950495049506, 0.009852216748768473, 0.006134969325153374, 0.006172839506172839, 0.03125, 0.023411371237458192, 0.011278195488721804, 0.023529411764705882, 0, 0, 0, 0, 0.043478260869565216, 0.008368200836820083, 0, 0.0425531914893617, 0, 0, 0.008695652173913044, 0.00909090909090909, 0, 0.007407407407407408, 0, 0, 0.0625, 0, 0, 0.008064516129032258, 0, 0, 0, 0.06060606060606061, 0, 0, 0, 0, 0, 0, 0.006734006734006734, 0, 0, 0, 0.008928571428571428, 0.004545454545454545, 0, 0, 0, 0.011494252873563218, 0, 0.015873015873015872, 0 ]
0.010329
5
[ { "analysis_explanation": null, "end": 24, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20 }, { "analysis_explanation": null, "end": 40, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26 }, { "analysis_explanation": null, "end": 164, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 153 }, { "analysis_explanation": null, "end": 183, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 166 }, { "analysis_explanation": null, "end": 190, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 186 }, { "analysis_explanation": null, "end": 210, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 191 }, { "analysis_explanation": null, "end": 229, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 212 }, { "analysis_explanation": null, "end": 267, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 253 }, { "analysis_explanation": null, "end": 302, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 288 }, { "analysis_explanation": null, "end": 325, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 304 }, { "analysis_explanation": null, "end": 345, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 327 }, { "analysis_explanation": null, "end": 351, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 347 }, { "analysis_explanation": null, "end": 359, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 353 }, { "analysis_explanation": null, "end": 457, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 440 }, { "analysis_explanation": null, "end": 496, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 482 }, { "analysis_explanation": null, "end": 508, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 499 }, { "analysis_explanation": null, "end": 633, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 620 }, { "analysis_explanation": null, "end": 794, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 778 }, { "analysis_explanation": null, "end": 917, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 909 }, { "analysis_explanation": null, "end": 928, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 919 }, { "analysis_explanation": null, "end": 979, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 968 }, { "analysis_explanation": null, "end": 1152, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1143 }, { "analysis_explanation": null, "end": 1245, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1237 }, { "analysis_explanation": null, "end": 1416, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1394 }, { "analysis_explanation": null, "end": 1531, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1515 }, { "analysis_explanation": null, "end": 1541, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1533 }, { "analysis_explanation": null, "end": 1580, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1576 }, { "analysis_explanation": null, "end": 1738, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1726 }, { "analysis_explanation": null, "end": 1888, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1884 }, { "analysis_explanation": null, "end": 1967, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1963 }, { "analysis_explanation": null, "end": 2014, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2010 }, { "analysis_explanation": null, "end": 2129, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2115 }, { "analysis_explanation": null, "end": 2177, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2168 }, { "analysis_explanation": null, "end": 2724, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2707 }, { "analysis_explanation": null, "end": 2912, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2908 }, { "analysis_explanation": null, "end": 2976, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2972 }, { "analysis_explanation": null, "end": 2992, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2980 }, { "analysis_explanation": null, "end": 3182, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3169 }, { "analysis_explanation": null, "end": 3248, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3226 }, { "analysis_explanation": null, "end": 3334, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3324 }, { "analysis_explanation": null, "end": 3345, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3336 }, { "analysis_explanation": null, "end": 3548, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3539 }, { "analysis_explanation": null, "end": 3627, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3620 }, { "analysis_explanation": null, "end": 3645, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3636 }, { "analysis_explanation": null, "end": 3666, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3652 }, { "analysis_explanation": null, "end": 3713, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3704 }, { "analysis_explanation": null, "end": 3742, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3727 }, { "analysis_explanation": null, "end": 3845, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3836 }, { "analysis_explanation": null, "end": 3940, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3926 }, { "analysis_explanation": null, "end": 3975, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3966 }, { "analysis_explanation": null, "end": 3991, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3985 }, { "analysis_explanation": null, "end": 4024, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4015 }, { "analysis_explanation": null, "end": 4062, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4057 }, { "analysis_explanation": null, "end": 4131, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4125 }, { "analysis_explanation": null, "end": 4158, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4154 }, { "analysis_explanation": null, "end": 4177, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4162 }, { "analysis_explanation": null, "end": 4183, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4179 }, { "analysis_explanation": null, "end": 4207, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4201 }, { "analysis_explanation": null, "end": 4239, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4235 }, { "analysis_explanation": null, "end": 4261, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4243 }, { "analysis_explanation": null, "end": 4284, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4267 }, { "analysis_explanation": null, "end": 4290, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4286 }, { "analysis_explanation": null, "end": 4319, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4313 }, { "analysis_explanation": null, "end": 4357, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4342 }, { "analysis_explanation": null, "end": 4416, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4410 }, { "analysis_explanation": null, "end": 4434, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4429 }, { "analysis_explanation": null, "end": 4458, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4454 }, { "analysis_explanation": null, "end": 4516, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4500 }, { "analysis_explanation": null, "end": 4533, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4527 }, { "analysis_explanation": null, "end": 4561, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4549 }, { "analysis_explanation": null, "end": 4605, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4589 }, { "analysis_explanation": null, "end": 4690, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4681 }, { "analysis_explanation": null, "end": 4743, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4727 }, { "analysis_explanation": null, "end": 4843, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4837 }, { "analysis_explanation": null, "end": 5065, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5048 }, { "analysis_explanation": null, "end": 5180, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5167 }, { "analysis_explanation": null, "end": 5438, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5427 }, { "analysis_explanation": null, "end": 5747, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5722 }, { "analysis_explanation": null, "end": 5772, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5770 }, { "analysis_explanation": null, "end": 5776, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5774 }, { "analysis_explanation": null, "end": 5790, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5782 }, { "analysis_explanation": null, "end": 5936, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5923 }, { "analysis_explanation": null, "end": 6126, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6121 }, { "analysis_explanation": null, "end": 6340, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6328 }, { "analysis_explanation": null, "end": 6645, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6639 }, { "analysis_explanation": null, "end": 6764, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6739 }, { "analysis_explanation": null, "end": 6930, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6925 }, { "analysis_explanation": null, "end": 6972, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6968 }, { "analysis_explanation": null, "end": 7009, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7004 }, { "analysis_explanation": null, "end": 7070, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7066 }, { "analysis_explanation": null, "end": 7089, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7082 }, { "analysis_explanation": null, "end": 7101, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7093 }, { "analysis_explanation": null, "end": 7123, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7119 }, { "analysis_explanation": null, "end": 7129, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7125 }, { "analysis_explanation": null, "end": 7940, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7938 }, { "analysis_explanation": null, "end": 8474, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8472 }, { "analysis_explanation": null, "end": 9013, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8998 }, { "analysis_explanation": null, "end": 10098, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10089 }, { "analysis_explanation": null, "end": 11540, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11536 }, { "analysis_explanation": null, "end": 11550, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11544 }, { "analysis_explanation": null, "end": 12038, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12034 }, { "analysis_explanation": null, "end": 12048, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12042 }, { "analysis_explanation": null, "end": 12083, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12079 }, { "analysis_explanation": null, "end": 12162, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12153 }, { "analysis_explanation": null, "end": 8, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 4 }, { "analysis_explanation": null, "end": 5972, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 5968 } ]
[ "Director of Office of Higher Education meeting with Students in St. Cloud Today\n\nSt. Paul, MN--Larry Pogemiller, Director of the Minnesota Office of Higher Education (OHE), is in St. Cloud today, March 19, to discuss Governor Mark Dayton's budget recommendations for higher education with students.", "\n\nFunding for postsecondary education is a key component of the Governor's budget proposal, including the largest increase in direct aid to students in over 25 years, funding that will make college more affordable for over 100,000 Minnesotans.", "\n\nDirector Pogemiller has been holding student forums across the state to share the details of the Governor's higher education proposal and listen to feedback from students.", "\n\n\"The majority of the students we talk to are steadfast in their commitment to completing their postsecondary education, but cite cost and debt as primary barriers,\" said Pogemiller. \"", "The provisions in the Governor's budget will help lower the cost of college for thousands of Minnesota students, as well as improve quality and learning opportunities.\"", "\n\nDayton is proposing a balanced $240 million investment for postsecondary education, the largest percentage increase for any area of the state budget. ", "His recommended $80 million for the Minnesota State Grant program expands eligibility for over 5,000 additional students, including over 2,000 in the middle-income range. ", "Every state grant recipient will receive an increase in the size of their award.", "\n\nHis budget also helps hold the line on tuition increases, invests in internships and state-of-the art equipment and will help retain high-quality faculty.", "\n\n\"Over the past decade, tuition and fees have increased by more than three times the rate of inflation and family income, we have the third-highest student debt rate in the country for a bachelor's degree, and an ever-increasing number of jobs are requiring some level of postsecondary completion,\" said Pogemiller. \"", "This is a trend that must be addressed.\"", "\n\nFor more information, contact Sandy Connolly at the Minnesota Office of Higher Education, 651-259-3902, cell phone 651-341-6617 or by email at sandy.connolly@state.mn.us." ]
{ "pile_set_name": "Pile-CC" }
[ 0.020134228187919462, 0, 0.005780346820809248, 0.005405405405405406, 0, 0, 0, 0, 0, 0.0031446540880503146, 0, 0.029069767441860465 ]
0.005295
5
[ { "analysis_explanation": null, "end": 2150, "entity_type": "EMAIL_ADDRESS", "recognition_metadata": { "recognizer_identifier": "EmailRecognizer_140094861343664", "recognizer_name": "EmailRecognizer" }, "score": 1, "start": 2124 }, { "analysis_explanation": null, "end": 89, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81 }, { "analysis_explanation": null, "end": 93, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91 }, { "analysis_explanation": null, "end": 111, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95 }, { "analysis_explanation": null, "end": 204, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189 }, { "analysis_explanation": null, "end": 237, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 226 }, { "analysis_explanation": null, "end": 462, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 449 }, { "analysis_explanation": null, "end": 539, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 528 }, { "analysis_explanation": null, "end": 560, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 550 }, { "analysis_explanation": null, "end": 893, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 883 }, { "analysis_explanation": null, "end": 999, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 990 }, { "analysis_explanation": null, "end": 1072, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1066 }, { "analysis_explanation": null, "end": 1644, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1629 }, { "analysis_explanation": null, "end": 1936, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1926 }, { "analysis_explanation": null, "end": 2025, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2011 }, { "analysis_explanation": null, "end": 2108, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.75, "start": 2096 }, { "analysis_explanation": null, "end": 2132, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2124 }, { "analysis_explanation": null, "end": 2150, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2139 }, { "analysis_explanation": null, "end": 2083, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 2071 } ]
[ "Q:\n\nUpper bound on sum of i.i.d. ", "random variables\n\nHere's a problem I've been struggling with:\n\nLet $X_1, X_2, X_3, \\ldots$ be an i.i.d. ", "sequence of random variables with finite moment generating function $M(t)$. Define the sum $S_n = X_1 + \\ldots + X_n$. For any $a < \\mu = \\mathbb{E}X_1$, prove that\n $$\\displaystyle \\mathbb{P}(S_n \\geq an) \\leq e^{-nI(a)},$$\n where $I(a) = \\sup_{t>0}\\{at -\\log\\ M(t)\\} > 0$.\n\nWhat I've been able to hash out so far:\n\nI should be able to simplify $\\log\\ M(t)$ to something like $\\mu t$; this will make it possible to express the right-hand side as some common distribution\n$\\displaystyle \\frac{S_n}{n}$ converges in distribution to $\\mathbb{E}X$, so the right-hand side should be expressible as something nice, like $\\mathbb{P}(\\mu n - an \\geq 0)$ (not exactly that, but something simple).", "\n\nI'm having trouble finding a way to rigorously express these intuitions about the problem. ", " In any case, thanks for any and all help.", "\n\nA:\n\nHint For any $t \\geq 0$, we have by Markov's (exponential) inquality and the independence of the random variables,\n$$\\begin{align*} \\mathbb{P}(S_n \\geq a \\cdot n) = \\mathbb{P}(e^{t \\cdot S_n} \\geq e^{t \\cdot a \\cdot n})\\leq e^{-a \\cdot n \\cdot t} \\cdot \\mathbb{E}e^{t \\cdot S_n} = e^{-a \\cdot n \\cdot t} \\cdot \\prod_{j=1}^n \\mathbb{E}(e^{t \\cdot X_j}) \\end{align*}$$\nNow use that the random variables are identically distributed to obtain the estimate you are aiming for.", "\n(As far as I can see, there is a typo in your question: Instead of $a<\\mu$ it should read $a>\\mu$; otherwise we cannot expect $I(a)>0$.)\nBy the way, this estimate is known as Chernoff bound. ", "It leads to the topic of large deviations.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0.001445086705202312, 0, 0, 0.008385744234800839, 0.005208333333333333, 0, 0 ]
0.001671
5
[ { "analysis_explanation": null, "end": 114, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 111 }, { "analysis_explanation": null, "end": 256, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 251 }, { "analysis_explanation": null, "end": 522, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 519 }, { "analysis_explanation": null, "end": 1009, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1003 }, { "analysis_explanation": null, "end": 1622, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1614 } ]
[ "Q:\n\nHow could I use LINQ to filter out strings starting with a variety of sub-strings?", "\n\nLet's say I have var lines = IEnumerable<string>, and lines contains a variety of lines whose first 1..n characters exclude them from a process. ", "E.g lines starting with '*', 'E.g.', 'Sample', etc.", "\nThe list of exclusion tokens is variable and known only at runtime, so \nlines.", "Where(l => !", "l.StartsWith(\"*\") && !", "l.StartsWith(\"E.g.\") && ...", "\n\nbecomes somewhat problematic.", "\nHow could I achieve this?", "\n\nA:\n\nWith LINQ:\n List<string> exceptions = new List<string>() { \"AA\", \"EE\" };\n\n List<string> lines = new List<string>() { \"Hello\", \"AAHello\", \"BHello\", \"EEHello\" };\n\n var result = lines.", "Where(x => !", "exceptions.", "Any(e => x.StartsWith(e))).ToList();\n // Returns only \"Hello\", \"BHello\"\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0, 0.045454545454545456, 0, 0, 0, 0.0106951871657754, 0, 0, 0 ]
0.004319
5
[ { "analysis_explanation": null, "end": 388, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 376 }, { "analysis_explanation": null, "end": 416, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 399 }, { "analysis_explanation": null, "end": 705, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 694 }, { "analysis_explanation": null, "end": 380, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 376 }, { "analysis_explanation": null, "end": 403, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 399 }, { "analysis_explanation": null, "end": 707, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 703 } ]
[ "Tom Bernard\n\nTom Bernard is an American film distributor specializing in art cinema and is one of the co-founders of Sony Pictures Classics (SPC).", "\n\nAn alumnus of the University of Maryland, Bernard became notable as head of sales at United Artists Classics (1981–1983) where he first worked with long-time collaborator Michael Barker. ", "Bernard and Barker left UA to create Orion Classics in February 1983. ", "They attended the Cannes Film Festival hoping to buy their first title and picked up Eric Rohmer's Pauline at the Beach when they were \"in a desperate position\". ", "Looking back 30 years later, Bernard remembered \"lots of big, fat, bald guys\" in 1983 but now the class of people is \"very, very different\", \"the only thing you can say is the same is they always have the best movies.\"", "\n\nReferences\n\nCategory:Film distributors (people)\nCategory:Living people\nCategory:Year of birth missing (living people)\nCategory:Jesuit College Preparatory School of Dallas alumni \nCategory:University of Maryland, College Park alumni" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.0136986301369863, 0.021164021164021163, 0.04285714285714286, 0.006172839506172839, 0.0045871559633027525, 0.008583690987124463 ]
0.016177
5
[ { "analysis_explanation": null, "end": 24, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 39, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31 }, { "analysis_explanation": null, "end": 196, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189 }, { "analysis_explanation": null, "end": 266, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 257 }, { "analysis_explanation": null, "end": 332, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 318 }, { "analysis_explanation": null, "end": 341, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 334 }, { "analysis_explanation": null, "end": 352, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 346 }, { "analysis_explanation": null, "end": 402, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 389 }, { "analysis_explanation": null, "end": 502, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 489 }, { "analysis_explanation": null, "end": 510, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 503 }, { "analysis_explanation": null, "end": 593, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 579 }, { "analysis_explanation": null, "end": 602, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 595 }, { "analysis_explanation": null, "end": 651, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 647 }, { "analysis_explanation": null, "end": 955, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 949 }, { "analysis_explanation": null, "end": 1009, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 997 } ]
[ "In Memory\n\nSome of the best times that I remember from High School in Eldora involve Dory and a dreaded snake. ", "Whether it was hearing her blood curdling screams coming from the bathroom at the Sno Creme where she was standing on top of the toilet in panic mode, or walking back to the school after archery class because someone put a snake in the bus and she would not get on the bus, it was an adventure with her\n\nBut the very best memory that I have of Dory was out at the old football field at the Fair Grounds where we were taught archery by THE Mr. Thurness. ", "I shot off my required number of arrows, trying to hit the stupid target and mostly missing the bale altogether. ", "Dory went out to pick up my arrows. ", "Suddenly she stopped, screamed the scream of a nightmare, dropped the arrows and in mid-air, turned and came running back to me. ", "Most of us didn't know she could run that fast and to be crying and screaming and cussing all at the same time. ", "It was quite a sight to see. ", "The look in her eyes was pure panic and terror. ", "When she got about six feet away from me, she came sailing through the air, all arms and legs and tears and before I knew it she jumped on me and I was holding her like a baby.. Needless to say Dory's turns at getting the arrows, were done. ", "I could barely get her to stand there while I went out to get them.", "\n\nI have many good memories of our high school years and many of them involved Dory. ", "I miss her as much today as the day she died. ", "Are there snakes in Heaven, Dory?" ]
{ "pile_set_name": "Pile-CC" }
[ 0.009009009009009009, 0.002207505518763797, 0, 0, 0, 0, 0, 0, 0.004149377593360996, 0, 0, 0, 0 ]
0.001182
5
[ { "analysis_explanation": null, "end": 202, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189 }, { "analysis_explanation": null, "end": 562, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 554 }, { "analysis_explanation": null, "end": 1390, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1369 }, { "analysis_explanation": null, "end": 1447, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1442 } ]
[ "Hotmail Login, www.Hotmail.com Sign in\n\nHotmail Login : How to create www.hotmail.com account and sign in to hotmail.com account? ", "How to recover Hotmail(Outlook) account password and email? ", "This Hotmail Login Process is simple.", "\n\nHello guys, welcome to my blog Hotmail-i.com. ", "www.hotmail.com is the first electronic mail service on internet. ", "Hotmail is now Outllook.com. ", "As many of the users getting confused while creating a new Hotmail.com account, we are going to guide you how to Create www.hotmail.com account for free.", "\n\nwww.hotmail.com, This guide will show you how to sign in to Hotmail on your device ? ", "Report your problems or discover all FAQ about Hotmail.com. ", "India is a great nation endowed with high-quality manpower. ", "It’s not just in the modern age but centuries ago as well. ", "Classic examples are Arya bhatta, who invented the concept of zero. ", "And, in the modern age, such examples could be Sabeer Bhatia, who along with Jack Smith found Hotmail in 1993. ", "Hotmail had the significant features like a free account which could store up to 250 MB data virus scanning, and filters to clean up spam.", "\n\nLater in 1997, Microsoft Corporation acquired Hotmail at a cost of $400 million and renamed it as MSN Hotmail, which later integrated to Windows Live Hotmail.", "\n\nMicrosoft came out with the final version of Hotmail Mail in October 2011 and it is offered in 36 languages. ", "It later replaces it Outlook.com.", "\n\nwww.hotmail.com\n\nHotmail is a great email service. ", "We’d discuss here briefly the features of www.hotmail.com Once you log in to Hotmail, you can do various things. ", "Here are a few of its important features.", "\n\nInteractive: This feature allows you to interact with emails directly. ", "Note that Hotmail is an online email service offered by Microsoft.", "\n\nCalendar: It enables you to add and view colander event steered in your account. ", "You can edit the calendar evens without the need to reload the page.", "\n\nUpdate contacts: Contacts connected to your device can be easily managed and are automatically updated and saved.", "\n\nOnline integration with Office: This enables you to view, edit and create Microsoft Word, PowerPoint and Excel documents attached to the email without the need to download them.", "\n\nPrivacy: The Data and information you furnish during signing up and at other instances are kept confidential. ", "Your data are not shared with third parties. ", "Hotmail uses content for the single purpose of notification services.", "\n\nYou need not pay: Hotmail is free. ", "You need not pay a price for signing up or account. ", "You may have to pay for using other connected features like Skype.", "\n\nSkype: Skype allows you to make video calls, voice calls with people anywhere in the worlds from your contact list. ", "To log into Skype, you can use your Hotmail account and use its features.", "\n\nCreate www.Hotmail.com Account\n\nCreating a Hotmail account involves as follows:\n\nStep #1. ", "Visit the official website MSN Hotmail. ", "The login URL for Hotmail is https://live.com or https://outlook.com or www.hotmail.com\n\nStep #2. ", "You’ll get three options including Get Premium which needs payment for the additional services furnished by Microsoft to its premium customers.", "\n\nStep #3. ", "Create an Account if you have already a have one on Hotmail and Sign up if you wish to register yourself for the services of Microsoft.", "\n\nStep #4. ", "Type in hot the Hotmail.com search bar of your browser, a sign in windows with title Outlook will show up.", "\n\nwww.hotmail.com sign up and login : How to create a Hotmail email account\n\nTo start with, click ‘sign in’ button and move ahead.", "\n\nClick on the button named Create Account. ", "A text box with a new email comes up with a drop-down menu asking for an extension of the email structure as www.hotmail.com or outlook.com as the case may be. ", "Type the username and the extension you wish to create. ", "If the username is already taken, it will prompt you to take a new username. ", "After entering the new username, click on the Next button. ", "Now write the email id you wish to create.", "\n\nYou will be asked to create a password.", "\n\nFollowing this, you need to create a password. ", "Always, be sure to form a strong password. ", "A strong password means you need to build it with different characters – letters, symbols, special signs, etc.", "\n\nHere is the thumb rule: remember to keep the minimum number of characters at in the password at eight. ", "Make sure you use letters in both lower and upper cases and symbols. ", "Type the password in the field.", "\n\nThere is a checkbox asking if you wish to get promotional emails from Microsoft. ", "Click it as per your wish.", "\n\nNow click on the button named Next.", "\n\nEnter your First name and last name. ", "Enter the field you need to fill in the text filed and click the Next button.", "\n\nNow, you will be asked regarding country/region showing a drop-down menu showing counties in options and the date of birth in mm/dd/yy format. ", "Enter the country and your date of birth. ", "Also, choose the country, and enter your date of birth to furnish account details. ", "Now click the Next button.", "\n\nIt’s time you’re checked if you are a human or a bot.", "\n\nThere will be two choices if you wish to do it by picture (image) or audio.", "\n\nWhen you click on the audio, it will give you an audio and ask you enter the words you hear. ", "Also, it will ask you to press 1 to play or play the audio again.", "\n\nEnter the words correctly you hear in any order.", "\n\nNow you get a different audio.", "\n\nOn the other hand, if you choose a picture (image), an image with characters will come up. ", "You need to recognize the characters and type the character in the field. ", "Click on the new button. ", "If you cannot recognize the characters in the image it will present you another picture with different characters. ", "Now click on the Next button.", "\n\nAs a security measure, it will ask you to furnish your phone number. ", "You’ll get an OTP corresponding to it. ", "Confirm your account by entering the characters in the OTP.", "\n\nIt’s absolutely essential to verify the account because it will add an additional protection to your account.", "\n\nWhen you click button showing ‘Send Code’, you will get a code sent to you at your mobile number and if you don’t get the code, click on the button saying ‘I didn’t get a code’.", "\n\nNow, enter the code you got and click on the Next button.", "\n\nChoose the time zone for date and time data accurately. ", "Following this, your Hotmail (outlook) account will be created\n\nHotmail Login From Android\n\nIf you want to use Hotmail in your android device then that can be easily done too. ", "Here is the play store link for downloading.", "\n\nOpen the Microsoft Outlook app.", "\n\nProvide your email & password in the add email account option.", "\n\nOn successful login, you are good to go.", "\n\nHotmail Login From PC\n\nOpen the java script compatible browser like chrome, Mozilla Firefox type https://outlook.live.com Or https://login.live.com/. You will get a Microsoft sign-in page.", "\n\nProvide your Hotmail or Microsoft email address.", "\n\nEnter the password for the email account.", "\n\nIf you entered both details correctly then you are good to go.", "\n\nAfter 2-3 seconds Hotmail inbox will open up.", "\n\nHotmail Login From iOS (iPhone)\n\nDownload the official Microsoft outlook app from the playstore link.", "\n\nGo to the alternative for the setting. ", "Click on the Mail option. ", "Then Mail Alternative.", "\n\nClick “Add account”.", "\n\nSelect Outlook.com or www.hotmail.com\n\nFill out the email & password for your www.hotmail.com account.", "\n\nIf you have not created or had a www.hotmail.com account, you can easily make one with a guide earlier provide in the same article, you are reading currently.", "\n\nIf details provided by you are correct then you will successfully get email inbox on your iOS devices.", "\n\nIf you are still confused about how to make an account on Outlook then check out the video below.", "\n\nwww.Hotmail.com Login Steps\n\nNow, the majority of the users usually sends and receives the mail from others. ", "Mail is the necessary part of the business and personal use. ", "The people can able to send the valuable information and data in the form of the email. ", "There are different ranges of the email services used by the people today. ", "Plenty of email service providers offer the best services to the users who fully depend on the email. ", "You can pick up the best email service that comes up with the best options. ", "The Hotmail is the widely used email services today that attract the huge range of the customers around the world.", "\n\nIt is considered as the simplest email service provider in the present era. ", "This can be used by lots of devices like Android, iPhone, PC, and others. ", "You can try to use this one and send and receive the messages on time without any delay. ", "This will definitely meet all the needs and requirements of the users. ", "You can set up this one on the relevant devices. ", "Here, the users can get the possible steps to sign in the Hotmail from the different devices. ", "You may simply create the Hotmail account in the perfect device.", "\n\nSome device manages the default email application. ", "You can just set up it on the devices. ", "After setting the mail, you can just log in to the devices in a simple way. ", "The users just keep an eye on the proper procedure to sign in the Hotmail from the devices. ", "You can make sure the procedure is varied from the various devices. ", "You can follow the proper procedures for the Android, iPhone and desktop. ", "You can sign in and send the email to the recipient.", "\n\nVisit: First, visit hotmail.com , this is the official page of this email service. ", "You will be redirected to Outlook Web, but keep calm, from which you will enter Hotmail.", "\n\nEnter your login information: Once on the official site, enter your Hotmail address and Hotmail password. ", "If you enter it correctly, you will not have trouble accessing your inbox.", "\n\nSign in: Then just click “Sign in” to enter your Hotmail account without any problems, by directly accessing your inbox.", "\n\nHow to sign in Hotmail from the various devices:\n\nThe Hotmail support the different range of the devices. ", "This is so beneficial for the users who willing to use this type of email service provider. ", "It is necessary for the users to check the procedure involved in the different devices. ", "You can make use of the proper things to use the Hotmail in a simple way. ", "You can never face any issues if you sign in the Hotmail by following the right procedure. ", "Each and every device manages the different procedures to use the Hotmail. ", "You can ensure the better email services by means of the Hotmail.", "\n\nHow to Access Hotmail and Outlook on Your Android Device ?", "\n\nIt is the necessary aspect for the users who use the Hotmail. ", "Sign in Hotmail from Android is the easiest process of the users. ", "You can follow only a few steps to easily sign in the email service. ", "The google play store is the popular place for getting the different kinds of the application. ", "The users can do the simple steps and use the Hotmail in a simple way. ", "You can get it very soon from the device. ", "The users just tab the google play store and search for the outlook mail application. ", "This is the suitable application that combined with the outlook and Hotmail account. ", "This is the best designed application for the Android users in order to fulfill the email needs.", "\n\nIf you are willing to utilize the Hotmail.com in the android devices, you can easily use it.", "\n\nAt first, you can go to the google play store and enter Microsoft outlook in the search box.", "\n\nImmediately, it will show the result quickly and download the Microsoft outlook app.", "\n\nThe users install it on the devices. ", "Sometimes, the application is available as a default app in the device.", "\n\nYou can simply open it and give the email and password that entered in the add email option.", "\n\nThe users simply set up the Hotmail account in a simple way.", "\n\nOnce you successfully log in the Hotmail, you can ready to use it.", "\n\nThe above process is very helpful for the users to use this email service by ensuring the proper procedure. ", "You can ready to send and receive the mail with the help of the Hotmail. ", "The users follow each and every process carefully to log in the Hotmail.", "\n\nProcedure to sign in Hotmail from the desktop:\n\nIt is another form of using the Hotmail. ", "You can use the Hotmail from the PC by the simple login process. ", "Today, lots of users rely on using the Hotmail.com. ", "The users just move towards the outlook.com. ", "Microsoft announces the excellent application that beneficial for the users to access the Hotmail services. ", "The users try to use the Microsoft outlook and opt for the Hotmail in a better manner. ", "It gives the expected solution to the users. ", "You can aware of using the possible services in the Hotmail. ", "The users take the perfect services from the Hotmail. ", "Whether you need to use the Hotmail account, you can use the Microsoft Outlook application.", "\n\nStep #1. ", "You can make use of the compatible browser that gives the right details.", "\n\nStep #2. ", "You can open up the browser and enter the relevant address in the search field.", "\n\nStep #3. ", "The users visit the hotmail.com or https://login.live.com official site and switch over to the Microsoft sign in page in the site.", "\n\nStep #4. ", "After that, you can give either Hotmail account or Microsoft email address in the sign in page.", "\n\nStep #5. ", "It is advised for the users to ensure the correct Hotmail or Microsoft email address.", "\n\nStep #6. ", "You must have to enter the password for the email account.", "\n\nStep #7. ", "Then, you can click on the sign in button after entering the email address.", "\n\nStep #8. ", "Once you enter the email address and password properly without any mistakes, you can ready to use the Hotmail.", "\n\nStep #9. ", "The users wait for few minutes to access the Hotmail.com\n\nStep #10. ", "The inbox of the Hotmail.com will open up within a minute.", "\n\nThe users try to follow the above steps carefully to log in the Hotmail.com . ", "You can carefully enter the details in the relevant. ", "You can try to overcome in delay of sending and receiving the mail by using the Hotmail services. ", "This works well based on the user needs. ", "It is the alternative email service provider that works similar to the Gmail. ", "It gives all the things like the Gmail services. ", "You can understand the above steps and clear the doubts regarding the login process.", "\n\nProcedure to sign in Hotmail.com from iPhone:\n\niPhone is the world class smartphone in these days. ", "This is equipped with the different email services. ", "It only supports the ios application but also hold up some Microsoft application. ", "The Hotmail.com is the Microsoft application that acquired from the Microsoft outlook. ", "This is suitable for the different ios devices. ", "You can never about to use the Hotmail in the ios devices. ", "The users pick up the Hotmail option in the phone very quickly. ", "But some of the users are confused to access the Hotmail on the phone. ", "You can closely watch the proper steps to simply log in to the Hotmail in the device. ", "You can probably do the simple steps and sign in the email in an easy way.", "\n\nStep #1. ", "The users exactly find out the Microsoft outlook from the app store.", "\n\nStep #2. ", "In order to sign to the Hotmail.com in the iPhone, you can get the outlook application from the app store.", "\n\nStep #3. ", "You can use the app store in the iPhone devices to download any kind of the application.", "\n\nStep #4. ", "Then, the users go to the alternative option from setting. ", "You can just hit the mail option in the setting.", "\n\nStep #5. ", "In the mail option, you can click on the mail alternative.", "\n\nStep #6. ", "After the above process is completed, you can go to add account option for accessing the Hotmail.", "\n\nStep #7. ", "You can choose to visit www.hotmail.com or outlook.com.", "\n\nStep #8. ", "You can visit the sign in page and enter the email and password in the relevant field in order to use the Hotmail\n\nStep #9. ", "In case, you don’t have the Hotmail account, you can quickly create the new account for the Hotmail.", "\n\nStep #10. ", "You can check the information once and then confirm it to use the Hotmail\n\nStep #11. ", "If the details are given correctly, you can get the new account easily.", "\n\nStep #12. ", "You can successfully receive the Hotmail inbox on the ios devices.", "\n\nBefore following all these steps, you can confirm that the outlook application is available on the ios devices. ", "It is mandatory for the users to check and use the Hotmail services. ", "The users need to verify that Microsoft outlook is available from the different devices. ", "This is must for using the Hotmail account. ", "So, the users try to consider the outlook application and successfully get the Hotmail account.", "\n\nFrequently asked question for the Hotmail Email login:\n\nQ – Is any issue face during the Hotmail account log out?", "\n\nA – No, there is no problem faced by the Hotmail users at the time of log out the account. ", "When it comes to log out the Hotmail account, you can follow the below steps\n\nYou can log out the Hotmail account as same like the Gmail account.", "\n\nYou can just right click the profile that presents in the right corner of the inbox page.", "\n\nOnce click it, there are different options show up in front of you.", "\n\nIn the option, you can choose the log out from this mail service.", "\n\nThe users log out simply from the Hotmail.", "\n\nQ – What to look when finding the options and menus?", "\n\nA – In order to find the options and menus, the Hotmail users consider some important factors to get the menus and options as quickly. ", "The users head over at the top of the inbox section of the Hotmail. ", "In the inbox section, the users simply find the options and menus that present at the right side of the Hotmail page. ", "After that, you can find the suitable option you want in the Hotmail. ", "You can change the profile picture, background themes and others in the Hotmail account. ", "The users use the different options to modify the way of look of the Hotmail inbox.", "\n\nQ – What way to insert the attachment to the calendar event?", "\n\nA – The process of adding the attachment is either in the calendar event or in the message. ", "You can choose the best option to join the attachment in either one of the option. ", "You can get the complete solution for adding the attachment to this one by following the simple steps,\n\nYou can open the Hotmail account and hit the compose email section.", "\n\nFrom this section, you can find out the icon that situated on the top of the Hotmail.", "\n\nYou can just click on the icon and need to choose the location of the photo that present in your device.", "\n\nYou can attach the source what you want on the email account.", "\n\nThe users also use the photo that present in the cloud application.", "\n\nYou can easily attach it to the Hotmail\n\nQ – Is it possible to read the previous and next message in the Hotmail account?", "\n\nIt is possible for the Hotmail user to read the previous and next message in the account with the support of the up and down arrow. ", "There are the default features that associated in the Hotmail. ", "If you are not able to find these options, you can check it on the browser screen. ", "This is only available in the beta version. ", "You can try this feature to read the messages simply.", "\n\nThe users try to understand the uses of the Hotmail. ", "You can use the possible steps to log in the Hotmail account from the several devices. ", "In this article, for those who are interested to use the Hotmail, they can consider the above steps for using the Hotmail.com from the devices like android, ios Or , and PC. ", "When you log in to the Hotmail, you can look forward to what kind of option present it and know how to use the options.", "\n\nThis is the complete guide for Hotmail Login, and Hotmail Email Login. ", "If you need any further assistance regarding www.hotmail.com. ", "Feel free to contact us." ]
{ "pile_set_name": "Pile-CC" }
[ 0.023076923076923078, 0, 0, 0, 0.015151515151515152, 0.06896551724137931, 0.013071895424836602, 0.011494252873563218, 0.03333333333333333, 0, 0, 0, 0.018018018018018018, 0.014492753623188406, 0.025, 0.018018018018018018, 0.030303030303030304, 0.03773584905660377, 0.008849557522123894, 0, 0, 0.015151515151515152, 0, 0, 0, 0.0111731843575419, 0.008928571428571428, 0, 0.014492753623188406, 0, 0, 0.015151515151515152, 0, 0.0273972602739726, 0.010869565217391304, 0.025, 0.030612244897959183, 0.013986013986013986, 0, 0.007407407407407408, 0, 0.018867924528301886, 0.007692307692307693, 0.022727272727272728, 0.00625, 0, 0, 0.01694915254237288, 0, 0, 0, 0, 0, 0.009523809523809525, 0, 0, 0.012048192771084338, 0, 0.02702702702702703, 0, 0.012987012987012988, 0, 0, 0, 0.038461538461538464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.034482758620689655, 0, 0.02564102564102564, 0.01694915254237288, 0, 0, 0.01694915254237288, 0, 0.005681818181818182, 0, 0.030303030303030304, 0, 0, 0.021052631578947368, 0.02, 0, 0, 0, 0.019417475728155338, 0, 0, 0, 0, 0.028846153846153848, 0.00625, 0, 0.010101010101010102, 0.018018018018018018, 0, 0, 0, 0, 0, 0.008771929824561403, 0, 0.02702702702702703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.02702702702702703, 0, 0, 0.011363636363636364, 0, 0, 0.00819672131147541, 0, 0, 0, 0, 0, 0, 0, 0.016666666666666666, 0, 0.015151515151515152, 0, 0, 0, 0, 0, 0, 0.010416666666666666, 0.02127659574468085, 0.010638297872340425, 0.011627906976744186, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.019230769230769232, 0, 0.009259259259259259, 0.011494252873563218, 0, 0, 0, 0.01098901098901099, 0, 0, 0, 0, 0, 0.015384615384615385, 0, 0.010526315789473684, 0, 0.011764705882352941, 0, 0, 0, 0, 0, 0, 0, 0.014705882352941176, 0.017241379310344827, 0.0125, 0, 0, 0, 0.01282051282051282, 0.02040816326530612, 0, 0.019801980198019802, 0, 0.012195121951219513, 0.034482758620689655, 0, 0, 0, 0, 0, 0, 0, 0.014705882352941176, 0, 0.018867924528301886, 0, 0.011363636363636364, 0, 0, 0, 0, 0, 0, 0, 0, 0.01818181818181818, 0, 0.008064516129032258, 0.01, 0, 0.011764705882352941, 0, 0, 0, 0, 0, 0.011235955056179775, 0, 0, 0, 0, 0.006896551724137931, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008130081300813009, 0, 0, 0, 0, 0, 0, 0, 0.017241379310344827, 0.008403361344537815, 0.0273972602739726, 0.016129032258064516, 0 ]
0.00571
5
[ { "analysis_explanation": null, "end": 2937, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.95, "start": 2921 }, { "analysis_explanation": null, "end": 2960, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.95, "start": 2941 }, { "analysis_explanation": null, "end": 673, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 668 }, { "analysis_explanation": null, "end": 915, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 902 }, { "analysis_explanation": null, "end": 942, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 932 }, { "analysis_explanation": null, "end": 964, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 960 }, { "analysis_explanation": null, "end": 1118, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1114 }, { "analysis_explanation": null, "end": 1337, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1325 }, { "analysis_explanation": null, "end": 2979, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 2964 }, { "analysis_explanation": null, "end": 4793, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4791 }, { "analysis_explanation": null, "end": 5830, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5827 }, { "analysis_explanation": null, "end": 6368, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6361 }, { "analysis_explanation": null, "end": 6627, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6623 }, { "analysis_explanation": null, "end": 6951, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6940 }, { "analysis_explanation": null, "end": 7985, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7980 }, { "analysis_explanation": null, "end": 8216, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8211 }, { "analysis_explanation": null, "end": 10466, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10459 }, { "analysis_explanation": null, "end": 11005, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10998 }, { "analysis_explanation": null, "end": 11109, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11102 }, { "analysis_explanation": null, "end": 12063, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12058 }, { "analysis_explanation": null, "end": 13425, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13414 }, { "analysis_explanation": null, "end": 13520, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13512 }, { "analysis_explanation": null, "end": 14101, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14091 }, { "analysis_explanation": null, "end": 19021, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19014 }, { "analysis_explanation": null, "end": 6712, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 6688 }, { "analysis_explanation": null, "end": 6740, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 6716 }, { "analysis_explanation": null, "end": 12839, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 12817 }, { "analysis_explanation": null, "end": 30, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 15 }, { "analysis_explanation": null, "end": 85, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 70 }, { "analysis_explanation": null, "end": 120, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 109 }, { "analysis_explanation": null, "end": 272, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 259 }, { "analysis_explanation": null, "end": 289, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 274 }, { "analysis_explanation": null, "end": 367, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 355 }, { "analysis_explanation": null, "end": 439, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 428 }, { "analysis_explanation": null, "end": 504, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 489 }, { "analysis_explanation": null, "end": 538, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 523 }, { "analysis_explanation": null, "end": 666, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 655 }, { "analysis_explanation": null, "end": 1405, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1394 }, { "analysis_explanation": null, "end": 1422, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1407 }, { "analysis_explanation": null, "end": 1515, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1500 }, { "analysis_explanation": null, "end": 2784, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2769 }, { "analysis_explanation": null, "end": 3315, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3304 }, { "analysis_explanation": null, "end": 3410, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3395 }, { "analysis_explanation": null, "end": 3690, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3675 }, { "analysis_explanation": null, "end": 3705, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3694 }, { "analysis_explanation": null, "end": 7209, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 7198 }, { "analysis_explanation": null, "end": 7228, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 7213 }, { "analysis_explanation": null, "end": 7284, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 7269 }, { "analysis_explanation": null, "end": 7342, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 7327 }, { "analysis_explanation": null, "end": 7669, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 7654 }, { "analysis_explanation": null, "end": 9282, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 9271 }, { "analysis_explanation": null, "end": 11094, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 11083 }, { "analysis_explanation": null, "end": 12108, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 12097 }, { "analysis_explanation": null, "end": 12153, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 12142 }, { "analysis_explanation": null, "end": 12813, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 12802 }, { "analysis_explanation": null, "end": 13451, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 13440 }, { "analysis_explanation": null, "end": 13491, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 13480 }, { "analysis_explanation": null, "end": 13597, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 13586 }, { "analysis_explanation": null, "end": 14036, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 14025 }, { "analysis_explanation": null, "end": 14252, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 14241 }, { "analysis_explanation": null, "end": 14849, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 14838 }, { "analysis_explanation": null, "end": 15359, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 15344 }, { "analysis_explanation": null, "end": 15374, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 15363 }, { "analysis_explanation": null, "end": 18991, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 18980 }, { "analysis_explanation": null, "end": 19291, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 19276 } ]
[ "The Colonial City of Zacatecas is located in\nMexico’s north-central region, 378 mi northwest of Mexico City and 197 mi north\nof Guadalajara. ", "Due to its pink limestone buildings, Zacatecas is one of the\nmost beautiful cities in northern Mexico. ", "Thanks to the city’s splendid history\nand architecture, the UNESCO declared it a World Heritage Site. ", "Look no further\nthan the majestic cathedral, considered one of the most important expressions of\nBaroque architecture in Mexico.", "\n\nZacatecas, an early mining town was\nfounded in 1546 after the discovery of silver. ", "This early colonial town became\nonly second to Mexico City during the colonization period in population and\neconomic influence. ", "The city reached its height in the 16th and 17th centuries.", "\n\nJuan de Tolosa, Diego de Ibarra,\nCristobal de Oñate and Baltazar Treviño de Bañuelos founded the city on 8th\nSeptember 1546. ", "Originally it carried the name \"The Mines of The Zacatecas\", as\nit was the mines which disgorged fabulous wealth which enriched the Spanish\ncrown. ", "In 1585 it was named \"The City of Our Lady of Zacatecas\" by the King\nFelipe II; and he also gave its coat of arms.", "\n\nAs you explore the city’s peculiar\nurban layout along narrow streets, alleys and plazas, you’ll find countless\nreligious, civic and cultural buildings. ", "You can appreciate these beautiful\nstructures on foot or from 280 feet above on a suspended cable car that crosses\nthe city. ", "The cable car runs to the Cerro de la Bufa, a hill where you’ll find\nvarious historical attractions.", "\n\nZacatecas was one of the most\nimportant mining cities in the nation. ", "The Eden mine, one of the city’s main\ntourist attractions, offers tours on a train through 1,980 feet of underground\ntunnels.", "\n\nWithout a doubt, Zacatecas is a\ndestination with its own unique charm, beauty and culture.", "\n\nPlease call us at 1-888-843-6292 or email us at\ninfo@MexicoColonialCities.com with your questions or for more\ninformation or click the button below to go to our Tour Information\nRequest Form." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0.0196078431372549, 0, 0, 0, 0, 0.023622047244094488, 0, 0, 0, 0, 0, 0, 0.008, 0, 0.015544041450777202 ]
0.003928
5
[ { "analysis_explanation": null, "end": 1874, "entity_type": "EMAIL_ADDRESS", "recognition_metadata": { "recognizer_identifier": "EmailRecognizer_140094861343664", "recognizer_name": "EmailRecognizer" }, "score": 1, "start": 1845 }, { "analysis_explanation": null, "end": 30, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 51, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45 }, { "analysis_explanation": null, "end": 107, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96 }, { "analysis_explanation": null, "end": 139, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128 }, { "analysis_explanation": null, "end": 187, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 178 }, { "analysis_explanation": null, "end": 242, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 236 }, { "analysis_explanation": null, "end": 473, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 467 }, { "analysis_explanation": null, "end": 484, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 475 }, { "analysis_explanation": null, "end": 526, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 522 }, { "analysis_explanation": null, "end": 616, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 605 }, { "analysis_explanation": null, "end": 744, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 717 }, { "analysis_explanation": null, "end": 760, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 746 }, { "analysis_explanation": null, "end": 777, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 762 }, { "analysis_explanation": null, "end": 830, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 802 }, { "analysis_explanation": null, "end": 1010, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1003 }, { "analysis_explanation": null, "end": 1025, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1021 }, { "analysis_explanation": null, "end": 1520, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1511 }, { "analysis_explanation": null, "end": 1732, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1723 }, { "analysis_explanation": null, "end": 1874, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1850 }, { "analysis_explanation": null, "end": 1829, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 1815 } ]
[ "Affirmed and Opinion Filed February 10, 2017.", "\n\n\n\n\n In The\n Court of Appeals\n Fifth District of Texas at Dallas\n No. ", "05-15-01211-CR\n\n JAMES VERNON HARPER, Appellant\n V.\n THE STATE OF TEXAS, Appellee\n\n On Appeal from the Criminal District Court No. ", "2\n Dallas County, Texas\n Trial Court Cause No. ", "F-1262208-I\n\n MEMORANDUM OPINION\n Before Justices Francis, Evans, and Stoddart\n Opinion by Justice Stoddart\n\n A jury convicted James Vernon Harper of sexual assault of a child and assessed\n\npunishment at ten years in prison. ", "In three issues, Harper contends the trial court erred by not\n\ngiving the jury an instruction on extraneous offense evidence in the punishment charge, and that\n\nhe received ineffective assistance of counsel. ", "We affirm.", "\n\n BACKGROUND\n\n Harper was a middle school coach and hall monitor. ", "L.R. testified that when she was\n\nsixteen years old, Harper sent her a note to come to his office. ", "She was uncomfortable but went\n\nbecause Harper was friendly to her and gave her things. ", "When she arrived, Harper kissed her\n\nneck, dimmed the lights, and backed her into a corner. ", "He unzipped her pants, laid her on the\n\nfloor and pulled down her pants. ", "She pushed him away and told him “No,” but Harper told her\n\fhe did not want her to leave his office. ", "Eventually, Harper put his mouth on her sexual organ.", "\n\nL.R. was able to push him off of her and get dressed. ", "She left the office and went to the\n\nbathroom where she cried about what had happened.", "\n\n L.R. also testified that when she was in his office, Harper told her about a case where a\n\ngirl accused him of rape. ", "L.R. thought Harper was found not guilty and the girl was harassed by\n\nother students and left the school. ", "Because of this, L.R. was initially afraid to tell anyone what\n\nhappened and felt no one would believe her. ", "However, she told her principal a week later\n\nbecause Harper was following her around school.", "\n\n The jury was instructed in the guilt-innocence charge that it could not consider any\n\nextraneous offense evidence unless it believed Harper committed the offense beyond a\n\nreasonable doubt. ", "At the punishment stage, Harper requested the jury place him on community\n\nsupervision and testified he had never been in trouble before L.R. accused him of sexual assault.", "\n\nOn cross-examination, Harper denied telling L.R. he had been accused of rape, but admitted that\n\nanother student accused him of rape. ", "Harper did not request and the trial court did not include an\n\ninstruction on extraneous offense evidence in the punishment charge. ", "Harper did not object to\n\nthis omission from the charge.", "\n\n DISCUSSION\n\n A. Extraneous Offense Instruction\n\n Harper argues in his first issue the trial court erred by not instructing the jury at\n\npunishment about the burden of proof for extraneous offense evidence under article 37.07,\n\nsection (3)(a). ", "See TEX. ", "CODE CRIM. ", "PROC. ", "ANN. ", "art. ", "37.07, § 3(a)(1). ", "The State counters that\n\nthe instruction was not required because the evidence was same transaction contextual evidence.", "\n\n We first determine whether there is error in the charge, and, if we find error, we assess\n\nthe harm from the error. ", "See Kirsch v. State, 357 S.W.3d 645, 649 (Tex. ", "Crim. ", "App. ", "2012); Ngo\n\n\n –2–\n\fv. State, 175 S.W.3d 738, 743–44 (Tex. ", "Crim. ", "App. ", "2005); Almanza v. State, 686 S.W.2d 157,\n\n171 (Tex. ", "Crim. ", "App. ", "1984) (op. ", "on reh’g). ", "If we conclude there is no error in the charge, we do\n\nnot assess the degree of harm. ", "See Middleton v. State, 125 S.W.3d 450, 453–54 (Tex. ", "Crim.", "\n\nApp. ", "2003).", "\n\n Article 37.07, section 3(a)(1) provides in relevant part:\n\n Regardless of the plea and whether the punishment be assessed by the judge or the\n jury, evidence may be offered by the state and the defendant as to any matter the\n court deems relevant to sentencing, including but not limited to [1] the prior\n criminal record of the defendant, [2] his general reputation, [3] his character, [4]\n an opinion regarding his character, [5] the circumstances of the offense for which\n he is being tried, and, notwithstanding Rules 404 and 405, Texas Rules of\n Evidence, [6] any other evidence of an extraneous crime or bad act that is shown\n beyond a reasonable doubt by evidence to have been committed by the defendant\n or for which he could be held criminally responsible, regardless of whether he has\n previously been charged with or finally convicted of the crime or act.", "\n\nTEX. ", "CODE CRIM. ", "PROC. ", "ANN. ", "art. ", "37.07, § 3(a)(1) (numbering added).", "\n\n In Bluitt v. State, the court of criminal appeals noted that of the six types of evidence\n\nlisted in article 37.07 section 3(a), only extraneous offenses and bad acts have an articulated\n\nburden of proof. ", "Bluitt v. State, 137 S.W.3d 51, 54 (Tex. ", "Crim. ", "App. ", "2004). ", "Based on the\n\nunambiguous language of the statute, other forms of evidence, such as the circumstances of the\n\noffense, do not require proof beyond a reasonable doubt. ", "See id. If evidence of an extraneous\n\ncrime or bad act is admitted during punishment, the trial court must, even if not requested,\n\ninstruct the jury not to consider the evidence unless the evidence shows beyond a reasonable\n\ndoubt the defendant committed the offense. ", "See Huizar v. State, 12 S.W.3d 479, 484 (Tex. ", "Crim.", "\n\nApp. ", "2000); see also TEX. ", "CODE CRIM. ", "PROC. ", "ANN. ", "art. ", "36.14.", "\n\n Same transaction contextual evidence is evidence of another crime that is so “intermixed,\n\nblended, or connected with” the charged crime that it forms an indivisible criminal transaction.", "\n\nLamb v. State, 186 S.W.3d 136, 141 (Tex. ", "App.–Houston [1st Dist.] ", "2005, no pet.). ", "It is\n\nbackground evidence admitted to show the context in which the criminal act occurred. ", "See\n –3–\n\fPrible v. State, 175 S.W.3d 724, 731–32 (Tex. ", "Crim. ", "App. ", "2005); Rogers v. State, 853 S.W.2d\n\n29, 32 (Tex. ", "Crim. ", "App. ", "1993). ", " Such evidence gives the jury information “essential to\n\nunderstanding the context and circumstances of events which, although legally separate offenses,\n\nare blended or interwoven.” ", "Camacho v. State, 864 S.W.2d 524, 534–35 (Tex. ", "Crim. ", "App.", "\n\n1993); see also Moreno v. State, 721 S.W.2d 295, 301 (Tex. ", "Crim. ", "App. ", "1986) (“the jury is\n\nentitled to know all relevant surrounding facts and circumstances of the charged offense because\n\nan offense is not tried in a vacuum”).", "\n\n Because same transaction contextual evidence serves to explain the circumstances\n\nsurrounding the offense, it falls within the “circumstances of the offense” language of section\n\n3(a)(1) rather than the “other evidence of an extraneous crime or bad act” language. ", "See TEX.", "\n\nCODE CRIM. ", "PROC. ", "ANN. ", "art. ", "37.07, § 3(a)(1); see also Camacho, 864 S.W.2d at 532; Lamb, 186\n\nS.W.3d at 142. ", " Thus, same transaction contextual evidence admitted or used during the\n\npunishment phase does not require a reasonable doubt instruction under section 3(a)(1) of article\n\n37.07. ", "See Atkinson v. State, 404 S.W.3d 567, 574 (Tex. ", "App.–Houston [1st Dist.] ", "2010, pet\n\nref’d); Garza v. State, 2 S.W.3d 331, 335 (Tex. ", "App.—San Antonio 1999, pet. ", "ref’d).1\n\n L.R. testified at the guilt-innocence phase that she was afraid to tell anyone what\n\nhappened to her because Harper told her about the rape accusation. ", "In response to Harper’s\n\ntestimony during punishment that he had never been in trouble with the law, other than an\n\nevading arrest misdemeanor several years ago, the State asked whether he told L.R. he was\n\naccused of rape by another student. ", " Harper denied telling L.R. about the accusation, but\n\nadmitted a student accused him of rape. ", "This evidence served to explain the circumstances\n\n\n 1\n This Court reached the same conclusion in an unpublished opinion. ", "See Duchane v. State, No. ", "05-00-\n01141-CR, 2002 WL 232851, at *4–5 (Tex. ", "App.—Dallas Feb. 8, 2002, no pet.) (", "not designated for publication)\n(“We therefore hold that ‘same transaction contextual evidence’ is not subject to the reasonable doubt charge\ninstruction requirement of article 37.07, section 3(a).”).", "\n\n\n –4–\n\fsurrounding the offense for which Harper was charged, why L.R. delayed reporting the offense,\n\nand whether Harper told L.R. about the accusation to intimidate her and prevent her from telling\n\nanyone about his conduct. ", "We conclude the evidence was same transaction contextual evidence\n\nand the trial court was not required to sua sponte give a reasonable doubt instruction. ", "See\n\nAtkinson, 404 S.W.3d at 574–75. ", "We overrule Harper’s first issue.", "\n\n B. Ineffective Assistance\n\n Harper argues in his second and third issues that his trial counsel was ineffective because\n\nhe failed to request the reasonable doubt instruction discussed above and failed to object to the\n\nState eliciting Harper’s opinion that anyone committing sexual assault of a child should go to\n\nprison. ", "The State contends the record is insufficient to support the ineffective assistance of\n\ncounsel arguments.", "\n\n To successfully assert an ineffective assistance of counsel claim on direct appeal,\n\nappellant must show that (1) counsel’s representation fell below an objective standard of\n\nreasonableness and (2) the deficient performance prejudiced him; that is, but for the deficiency,\n\nthere is a reasonable probability that the result of the proceeding would have been different. ", "See\n\nAndrews v. State, 159 S.W.3d 98, 101 (Tex. ", "Crim. ", "App. ", "2005). ", "The “claim must be firmly\n\nfounded in the record and the record must affirmatively demonstrate the meritorious nature of the\n\nclaim.” ", " Goodspeed v. State, 187 S.W.3d 390, 392 (Tex. ", "Crim. ", "App. ", "2005). ", " Absent an\n\nopportunity for trial counsel to explain the conduct in question, an appellate court should not find\n\ndeficient performance unless the challenged conduct was “so outrageous that no competent\n\nattorney would have engaged in it.” ", "Id. Appellant has the burden to prove his claim by a\n\npreponderance of the evidence. ", "Thompson v. State, 9 S.W.3d 808, 813 (Tex. ", "Crim. ", "App. ", "1999).", "\n\nWe indulge in a strong presumption that counsel’s conduct was not deficient. ", "Nava v. State, 415\n\nS.W.3d 289, 308 (Tex. ", "Crim. ", "App. ", "2013). ", "Failure to make the required showing of either\n\n\n –5–\n\fdeficient performance or sufficient prejudice defeats an ineffective assistance claim. ", " See\n\nAndrews, 159 S.W.3d at 101.", "\n\n Harper’s motion for new trial did not assert a claim of ineffective assistance of counsel\n\nand there is no record of an evidentiary hearing on the motion. ", "Thus, there is no record of trial\n\ncounsel’s strategies or reasons for the allegedly ineffective conduct. ", " Because there is no\n\nevidence as to trial counsel’s strategy, we cannot determine on this record whether counsel’s\n\nperformance fell below the standard of reasonable assistance. ", "See Menefield v. State, 363\n\nS.W.3d 591, 593 (Tex. ", "Crim. ", "App. ", "2012) (court could not know on silent record whether counsel\n\nhad a good or bad reason for failing to raise Confrontation Clause objection).", "\n\n Silent record notwithstanding, the trial court was not required to give the reasonable\n\ndoubt instruction thus counsel’s failure to request the instruction was not so outrageous that no\n\ncompetent attorney would have done the same. ", "Further, Harper does not identify a specific\n\nobjection counsel should have raised to the hypothetical question about punishment for someone\n\nwho sexually assaulted one of Harper’s daughters. ", "Appellate counsel candidly admits he was\n\nunable to find any case law relevant to the issue, but asserts “it cannot be that a prosecutor is\n\nentitled to commit a defendant in this manner.” ", "Without authority to support a valid objection to\n\nthe evidence, we cannot conclude the failure to object was outrageous conduct by Harper’s trial\n\ncounsel. ", "See Wert v. State, 383 S.W.3d 747, 758 (Tex. ", "App.—Houston [14th Dist.] ", "2012, no\n\npet.) (", "appellant required to provide authority to support contention that objections would have\n\nbeen meritorious to support ineffective assistance claim). ", "Appellant has not shown on this\n\nrecord that his counsel’s conduct was “so outrageous that no competent attorney would have\n\nengaged in it.” ", "Goodspeed, 187 S.W.3d at 392.", "\n\n The record before us does not rebut the strong presumption that counsel rendered\n\neffective assistance. ", "See Rylander v. State, 101 S.W.3d 107, 110–11 (Tex. ", "Crim. ", "App. ", "2003);\n\n –6–\n\fThompson, 9 S.W.3d at 814 (appellant failed to rebut presumption of reasonable assistance\n\nbecause record was silent as to “why appellant’s trial counsel failed to object to the State’s\n\npersistent attempts to elicit inadmissible hearsay”). ", "Thus, Harper has failed to establish his claim\n\nof ineffective assistance of counsel. ", "We overrule Harper’s second and third issues.", "\n\n CONCLUSION\n\n Having overruled all of appellant’s issues, we affirm the trial court’s judgment.", "\n\n\n\n\n /Craig Stoddart/\n CRAIG STODDART\n JUSTICE\n\n\nDo Not Publish\nTEX. ", "R. APP. ", "P. 47.2(b)\n151211F.U05\n\n\n\n\n –7–\n\f Court of Appeals\n Fifth District of Texas at Dallas\n JUDGMENT\n\nJAMES VERNON HARPER, Appellant On Appeal from the Criminal District Court\n No. ", "2, Dallas County, Texas\nNo. ", "05-15-01211-CR V. Trial Court Cause No. ", "F-1262208-I.\n Opinion delivered by Justice Stoddart.", "\nTHE STATE OF TEXAS, Appellee Justices Francis and Evans participating.", "\n\n Based on the Court’s opinion of this date, the judgment of the trial court is AFFIRMED.", "\n\n\nJudgment entered this 10th day of February, 2017.", "\n\n\n\n\n –8–\n\f" ]
{ "pile_set_name": "FreeLaw" }
[ 0.022222222222222223, 0, 0.012195121951219513, 0, 0.012539184952978056, 0.004807692307692308, 0, 0, 0, 0.011363636363636364, 0, 0, 0.009900990099009901, 0, 0, 0, 0.007936507936507936, 0.009345794392523364, 0, 0.010752688172043012, 0.005025125628140704, 0.005813953488372093, 0, 0, 0, 0, 0.1111111111111111, 0, 0, 0.2, 0, 0.05555555555555555, 0.008333333333333333, 0, 0.02127659574468085, 0.16666666666666666, 0, 0, 0.16666666666666666, 0, 0.019230769230769232, 0.16666666666666666, 0, 0, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0.2, 0, 0, 0, 0, 0.16666666666666666, 0, 0, 0, 0, 0, 0.2, 0, 0.047619047619047616, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0.16666666666666666, 0, 0.02040816326530612, 0.16666666666666666, 0, 0, 0, 0, 0.16666666666666666, 0, 0.01639344262295082, 0.16666666666666666, 0, 0, 0, 0.125, 0, 0, 0.2, 0, 0.04938271604938271, 0, 0, 0, 0.01694915254237288, 0.03571428571428571, 0.011764705882352941, 0.00823045267489712, 0, 0, 0.038461538461538464, 0, 0, 0, 0.007168458781362007, 0, 0, 0.030303030303030304, 0.0029585798816568047, 0.009433962264150943, 0, 0, 0.16666666666666666, 0, 0, 0, 0.02, 0.16666666666666666, 0, 0, 0, 0.011764705882352941, 0.023255813953488372, 0.16666666666666666, 0, 0, 0, 0.023809523809523808, 0.16666666666666666, 0, 0, 0, 0.02631578947368421, 0, 0, 0, 0.0196078431372549, 0.16666666666666666, 0, 0.007142857142857143, 0, 0.010416666666666666, 0, 0.006369426751592357, 0, 0, 0, 0, 0, 0.06896551724137931, 0, 0, 0.16666666666666666, 0, 0.0033222591362126247, 0.011627906976744186, 0.022222222222222223, 0, 0, 0.125, 0.013020833333333334, 0, 0, 0.019417475728155338, 0.031914893617021274, 0.010416666666666666, 0, 0 ]
0.026752
5
[ { "analysis_explanation": null, "end": 44, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27 }, { "analysis_explanation": null, "end": 148, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125 }, { "analysis_explanation": null, "end": 158, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 152 }, { "analysis_explanation": null, "end": 497, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 484 }, { "analysis_explanation": null, "end": 504, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 499 }, { "analysis_explanation": null, "end": 675, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 661 }, { "analysis_explanation": null, "end": 796, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 777 }, { "analysis_explanation": null, "end": 863, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 854 }, { "analysis_explanation": null, "end": 898, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 892 }, { "analysis_explanation": null, "end": 1119, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1113 }, { "analysis_explanation": null, "end": 1168, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1164 }, { "analysis_explanation": null, "end": 1215, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1198 }, { "analysis_explanation": null, "end": 1223, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1217 }, { "analysis_explanation": null, "end": 1309, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1303 }, { "analysis_explanation": null, "end": 1375, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1369 }, { "analysis_explanation": null, "end": 1565, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1559 }, { "analysis_explanation": null, "end": 1635, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1629 }, { "analysis_explanation": null, "end": 1675, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1671 }, { "analysis_explanation": null, "end": 1816, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1812 }, { "analysis_explanation": null, "end": 1871, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1865 }, { "analysis_explanation": null, "end": 1933, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1929 }, { "analysis_explanation": null, "end": 1948, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1942 }, { "analysis_explanation": null, "end": 2057, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2053 }, { "analysis_explanation": null, "end": 2188, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2176 }, { "analysis_explanation": null, "end": 2204, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2198 }, { "analysis_explanation": null, "end": 2377, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2371 }, { "analysis_explanation": null, "end": 2459, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2453 }, { "analysis_explanation": null, "end": 2569, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2565 }, { "analysis_explanation": null, "end": 2629, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2623 }, { "analysis_explanation": null, "end": 2649, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2645 }, { "analysis_explanation": null, "end": 2741, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2735 }, { "analysis_explanation": null, "end": 2873, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2867 }, { "analysis_explanation": null, "end": 2987, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2981 }, { "analysis_explanation": null, "end": 3476, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3470 }, { "analysis_explanation": null, "end": 3528, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3524 }, { "analysis_explanation": null, "end": 3534, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3531 }, { "analysis_explanation": null, "end": 3643, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3639 }, { "analysis_explanation": null, "end": 3706, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3702 }, { "analysis_explanation": null, "end": 3823, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3814 }, { "analysis_explanation": null, "end": 3878, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3874 }, { "analysis_explanation": null, "end": 4457, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4452 }, { "analysis_explanation": null, "end": 4885, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4879 }, { "analysis_explanation": null, "end": 5087, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5081 }, { "analysis_explanation": null, "end": 5115, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5113 }, { "analysis_explanation": null, "end": 5137, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5133 }, { "analysis_explanation": null, "end": 5586, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5580 }, { "analysis_explanation": null, "end": 5637, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5633 }, { "analysis_explanation": null, "end": 5946, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5942 }, { "analysis_explanation": null, "end": 6112, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6106 }, { "analysis_explanation": null, "end": 6167, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6163 }, { "analysis_explanation": null, "end": 6205, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6203 }, { "analysis_explanation": null, "end": 6227, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6223 }, { "analysis_explanation": null, "end": 6419, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6412 }, { "analysis_explanation": null, "end": 6452, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6446 }, { "analysis_explanation": null, "end": 6474, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6470 }, { "analysis_explanation": null, "end": 6492, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6486 }, { "analysis_explanation": null, "end": 6544, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6540 }, { "analysis_explanation": null, "end": 7032, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7025 }, { "analysis_explanation": null, "end": 7269, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7261 }, { "analysis_explanation": null, "end": 7335, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7331 }, { "analysis_explanation": null, "end": 7411, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7407 }, { "analysis_explanation": null, "end": 7440, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7436 }, { "analysis_explanation": null, "end": 7551, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7545 }, { "analysis_explanation": null, "end": 7609, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7603 }, { "analysis_explanation": null, "end": 7748, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7731 }, { "analysis_explanation": null, "end": 7786, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7782 }, { "analysis_explanation": null, "end": 7837, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7831 }, { "analysis_explanation": null, "end": 7857, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7853 }, { "analysis_explanation": null, "end": 8111, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8107 }, { "analysis_explanation": null, "end": 8161, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8149 }, { "analysis_explanation": null, "end": 8420, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8414 }, { "analysis_explanation": null, "end": 8442, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8438 }, { "analysis_explanation": null, "end": 8493, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8487 }, { "analysis_explanation": null, "end": 8503, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8499 }, { "analysis_explanation": null, "end": 8809, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8803 }, { "analysis_explanation": null, "end": 9076, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9070 }, { "analysis_explanation": null, "end": 9647, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9640 }, { "analysis_explanation": null, "end": 9698, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9694 }, { "analysis_explanation": null, "end": 9844, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9835 }, { "analysis_explanation": null, "end": 9896, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9892 }, { "analysis_explanation": null, "end": 10231, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10223 }, { "analysis_explanation": null, "end": 10281, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10277 }, { "analysis_explanation": null, "end": 10374, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10361 }, { "analysis_explanation": null, "end": 10418, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10414 }, { "analysis_explanation": null, "end": 10650, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10644 }, { "analysis_explanation": null, "end": 11096, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11087 }, { "analysis_explanation": null, "end": 11149, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11145 }, { "analysis_explanation": null, "end": 11533, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11527 }, { "analysis_explanation": null, "end": 11696, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11690 }, { "analysis_explanation": null, "end": 12037, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12031 }, { "analysis_explanation": null, "end": 12064, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12060 }, { "analysis_explanation": null, "end": 12131, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12127 }, { "analysis_explanation": null, "end": 12581, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12573 }, { "analysis_explanation": null, "end": 12636, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12632 }, { "analysis_explanation": null, "end": 12945, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12939 }, { "analysis_explanation": null, "end": 13037, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13031 }, { "analysis_explanation": null, "end": 13342, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13336 }, { "analysis_explanation": null, "end": 13353, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13344 }, { "analysis_explanation": null, "end": 13508, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13494 }, { "analysis_explanation": null, "end": 13517, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13512 }, { "analysis_explanation": null, "end": 13527, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13521 }, { "analysis_explanation": null, "end": 13744, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13731 }, { "analysis_explanation": null, "end": 13751, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13746 }, { "analysis_explanation": null, "end": 13982, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13950 }, { "analysis_explanation": null, "end": 13998, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13991 }, { "analysis_explanation": null, "end": 14008, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14003 }, { "analysis_explanation": null, "end": 14065, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14056 }, { "analysis_explanation": null, "end": 14160, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14129 }, { "analysis_explanation": null, "end": 211, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 200 }, { "analysis_explanation": null, "end": 13767, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 13756 }, { "analysis_explanation": null, "end": 13366, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 13363 }, { "analysis_explanation": null, "end": 565, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 558 }, { "analysis_explanation": null, "end": 8121, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 8115 }, { "analysis_explanation": null, "end": 13835, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 13828 } ]
[ "Q:\n\nRunning the SUBSTRING_INDEX query on a column\n\nI have this column called location in a table called raw_data. ", "Each row have lots of varchar data separated by [, ]. ", "Examples\nRow 1 dusseldorf, kjsbdfygs4, Germany\nRow 2 768768745h, kiev, Ukraine\nRow 3 %%%%666, Accra, Ghana\nYes some make no sense. ", "Im trying to select the last part of the string which is the country and display it.", "\nI tried using the substring index query and understand how it works but cant seem to understand how to apply it to a column.", "\n\nA:\n\nYou can use as per below-\nSELECT SUBSTRING_INDEX(my_column,',',-1) FROM raw_data;\n\nNote: If you need 1st part then use only 1 instead of -1.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0, 0.00684931506849315, 0 ]
0.000978
5
[ { "analysis_explanation": null, "end": 205, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 195 }, { "analysis_explanation": null, "end": 237, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 233 }, { "analysis_explanation": null, "end": 267, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262 }, { "analysis_explanation": null, "end": 274, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269 } ]
[ "Q:\n\nFullcite adds an unwanted comma, how do I fix it?", "\n\nHere's an MWE:\n\\documentclass{memoir}\n\\usepackage[backend=biber]{biblatex-chicago}\n\\addbibresource{thebib.bib}\n\\usepackage{filecontents}\n\\begin{document}\n\n\\begin{filecontents}{thebib.bib}\n@article{cavling1892,\nauthor = {Cavling, Henrik},\ntitle = {Jens Nielsens Henrettelse},\njournal = {Politiken},\nyear = {1892},\n}\n\\end{filecontents}\n\n\\fullcite{cavling1892}\n\\printbibliography\n\n\\end{document}\n\nYou can compile it with \nxelatex\nbiber\nxelatex\nxelatex\n\nThis is the result of the fullcite:\n\n... and here's how it looks with \\printbibliography: \n\nYou'll notice that the latter ends with a period, which is more proper. ", "How can I fix the former? ", "\n\nA:\n\nThe article entrytype, is usually understood in BibTeX entries as something published in an academic journal. ", "This means that volume/number are expected. ", "That is why a trailing comma is left in the fullcite in your example, something that is assumed to be there, isn't. ", "And so, the trailing punctuation is not adequately handled.", "\nAs stated in biblatex-chicago's documentation:\n\nIndeed, by fiat I declare that should you need to refer to a journal that identifies its issues mainly by year, month, or week, then for the purposes of biblatex-chicago-notes such a publication is a \"magazine,\" and not a \"journal.\"", "\n\nBut biblatex-chicago provides means to cite/reference newspaper and magazines also through the use of the article entrytype, but making use of an entrysubtype, either newspaper or magazine, which may not have a number.", "\nWith it, the result is expected (no end punctuation for the fullcite):\n\\documentclass{memoir}\n\\usepackage[backend=biber]{biblatex-chicago}\n\n\\usepackage{filecontents}\n\n\\begin{filecontents}{thebib.bib}\n@article{cavling1892,\nentrysubtype = {newspaper},\nauthor = {Cavling, Henrik},\ntitle = {Jens Nielsens Henrettelse},\njournal = {Politiken},\nyear = {1892},\n}\n\\end{filecontents}\n\n\\addbibresource{thebib.bib}\n\n\\begin{document}\n\n\\fullcite{cavling1892}\n\\printbibliography\n\n\\end{document}\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0.006493506493506494, 0, 0, 0, 0, 0, 0, 0, 0.008298755186721992 ]
0.001479
5
[ { "analysis_explanation": null, "end": 281, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 274 }, { "analysis_explanation": null, "end": 290, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 283 }, { "analysis_explanation": null, "end": 314, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 301 }, { "analysis_explanation": null, "end": 364, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 360 }, { "analysis_explanation": null, "end": 752, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 746 }, { "analysis_explanation": null, "end": 1193, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1182 }, { "analysis_explanation": null, "end": 1202, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1198 }, { "analysis_explanation": null, "end": 1245, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1238 }, { "analysis_explanation": null, "end": 1795, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1788 }, { "analysis_explanation": null, "end": 1804, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1797 }, { "analysis_explanation": null, "end": 1828, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1815 }, { "analysis_explanation": null, "end": 1878, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1874 }, { "analysis_explanation": null, "end": 162, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 153 }, { "analysis_explanation": null, "end": 239, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 230 }, { "analysis_explanation": null, "end": 1725, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1716 }, { "analysis_explanation": null, "end": 1928, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1919 } ]
[ "1. ", "Field of the Invention\nThis invention relates to a method and apparatus for removal at high temperatures of undesirable components, or impurities, from a gaseous stream containing said undesirable components. ", "Depending upon the source of the gaseous stream, e.g. fossil fuel combustion or reforming, the undesirable components that may be addressed by various embodiments of the method and apparatus of this invention include, but are not limited to, NOx, SOx, HgO, H2S, CO2, HCl, and NH3. ", "More particularly, this invention relates to the use of polyoxometalate materials for purification of gaseous streams, such as hydrogen-containing gaseous streams produced by fossil fuel reforming, flue gases produced by fossil fuel combustion, and solid fuel gasification products, and for processing gaseous streams such as natural gas processing, comprising these undesirable components at high temperatures. ", "The polyoxometalate materials selectively remove the undesirable components by absorption and/or diffusion through a layer of the polyoxometalate materials by concentration difference and concentrate them for more effective and efficient removal by currently available technologies.", "\n2. ", "Description of Related Art\nH2S, CO2, HCl, and NH3 are byproducts from natural gas, coal gasification or fossil oil reforming which can produce a hydrogen-rich fuel. ", "Removing these contaminants from the hydrogen-rich fuel supplied to proton exchange membrane fuel cell systems (PEMFC) is necessary as the H2S, HCl, and NH3 poison the fuel cell membrane and catalysts. ", "The CO2 and extra water then dilute the fuel and reduce the fuel cell performance. ", "However, these can be removed by other means.", "\nCurrent techniques for removing these contaminants include low-temperature membrane gas separation to remove CO2 and NH3 at temperatures less than about 120° C., CuO/ZnO catalysts to remove H2S at moderately high temperatures, and Pd-based membranes for hydrogen separation. ", "However, these techniques generally suffer from various limitations including short lifetimes and non-continuous removal of impurities, and they require substantial efforts for regeneration.", "\nPolyoxometalate-based organic-inorganic hybrid materials, which are well-defined, discrete transition metal oxide clusters with a variety of organic ligands as charge-compensating cations, have been applied in many fields, such as catalysis, medicine, materials, surface chemistry, and photo- and electro-chromism. ", "These unique materials are thermally stable at temperatures greater than 300° C. and capable of reversible sorption of gases and organic vapors (CO2, CHCl3, etc.). ", "In addition, polyoxometalates are based on very low-cost starting materials, thereby providing the potential for very attractive manufacturing costs.", "\nPressure swing adsorption (PSA) is an adiabatic process for purification of gases in which the impurities in the gases are removed by adsorption through suitable adsorbents in fixed beds contained in pressure vessels under high pressure. ", "Regeneration of the adsorbents is accomplished by countercurrent depressurization and by purging at low pressure with previously recovered substantially product-quality gas. ", "To obtain a continuous flow of product, a minimum of two adsorbers is required. ", "In this manner, one adsorber receives feed gas and actually produces a product gas of desired purity while the other adsorber performs the steps of depressurization, purging and repressurization back to the adsorption pressure. ", "After such adsorbent regeneration and repressurization, the functions of the adsorbers are switched. ", "Depending upon the type of impurity to be adsorbed and removed, adsorbents to be used comprise zeolitic molecular sieves, activated carbon, silica gel and activated alumina. ", "Typically, layers of different adsorbent beds are used, thereby dividing the adsorber contents into a number of distinct zones. ", "Monitoring and proper control of process parameters ensures a stable operation. ", "Stable operation means a pendulating swing in each particular location, in adsorber bed or piping, of values for all parameters, i.e. pressure, temperature, flow and composition of gaseous and adsorbed phase." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0, 0, 0, 0, 0, 0, 0, 0.0049504950495049506, 0, 0, 0.0036231884057971015, 0, 0, 0, 0, 0.0041841004184100415, 0, 0, 0, 0, 0.005747126436781609, 0, 0, 0 ]
0.000771
5
[]
[ "Q:\n\nNServiceBus clustered workers / Distributor usage\n\nCurrent Setup\nWe have a UI (well more than 1 UI, but that is not relevant), and we have 2 load balanced app servers. ", "Such the UI will talk to an alias, behind which are the 2 load balancer app servers.", "\nThe app servers are also self hosting NServiceBus endpoints. ", "The app server (this could be either App Server 1 or App Server 2 ) that is dealing with the current request is capable of doing the following using the self hosted NServiceBus:\n\nSend a message locally (this is a calculation that can be run at any\ntime, and it doesn’t matter who triggers it, it is just a trigger to\ndo the calculation) \nSend a command to the publisher on the Ancillary\nService Box (the publisher pushes new event to Worker 1 and Worker 2)\nSend a command to Worker 1 directly on the Ancillary Services Box\nSend a command to Worker 2 directly on the Ancillary Services Box\n\nThe \"App Server(s)\" current App.", "Config\nAs such the App.", "Config for each app server has something like this\n\n <UnicastBusConfig ForwardReceivedMessagesTo=\"audit\">\r\n <MessageEndpointMappings>\r\n \r\n <add Assembly=\"Messages\" Type=\"PublisherCommand\" Endpoint=\"Publisher\" />\r\n <add Assembly=\"Messages\" Type=\" Worker1Command\" Endpoint=\"Worker1\" />\r\n <add Assembly=\"Messages\" Type=\" Worker2Command\" Endpoint=\"Worker2\" />\r\n <!-- ", "This one is sent locally only -->\r\n <add Assembly=\" Messages\" Type=\"RunCalculationCommand\" Endpoint=\"Dealing\" />\r\n </MessageEndpointMappings>\r\n </UnicastBusConfig>\n\nThe “Publisher” current App.", "Config\nCurrently the “Publisher” App.", "Config \n\n<UnicastBusConfig ForwardReceivedMessagesTo=\"audit\">\r\n <MessageEndpointMappings>\r\n </MessageEndpointMappings>\r\n</UnicastBusConfig>\n\nThe “Worker(s)” current App.", "Config\nCurrently the worker App.", "Configs at the moment only have to subscribe to one other endpoint the “Publisher”, their config files looks like this:\n\n<UnicastBusConfig ForwardReceivedMessagesTo=\"audit\">\r\n <MessageEndpointMappings>\r\n <add Assembly=\"Messages\" Type=\"SomeEvent\" Endpoint=\"Publisher\" />\r\n </MessageEndpointMappings>\r\n</UnicastBusConfig>\n\nAll other messages to the workers right now come directly from one of the app servers, as shown in the App.", "Config above for the app servers.", "\nThis is all working correctly.", "\nThing is we have a single point of failure, if the “Ancillary Services Box” dies, we are stuffed.", "\nSo we are wondering if we could make use of multiple “Ancillary Services Boxes (each with a Publishers/Worker1/Worker2)”. ", "Ideally they would work exactly as described above, and as shown in the diagram above. ", "Where if “Ancillary Services Box 1” is available it is used, otherwise we use “Ancillary Services Box 2”\nI have read about the distributor (but not used it), which if I have it correct, we may be able to use in either the AppServer(s) themselves, where we treat each AppServer as a Distributor and a worker (for the case where we need to do the SendLocal command (RunCalculationCommand) we need to run).", "\nWhere the “Ancillary Services Box” would have to use the Distributor for each of the contained endpoints:\nSo we may end up with something like this:\n\nCould someone help me to know if I am even thinking about this the right way, or whether I am way off.", "\nEssentially what I want to know is:\n\nIs the distributor the correct approach to use?", "\nWhat would the worker / publisher configs look like, they would have to change somehow to point to distributor no? ", "As I state right now the app servers send a message directly to the workers, to the app server config has the worker end point address, and the worker is only setup to point to the publisher\nWhat would the app servers config look like? ", "Would this stop sending directly to the publisher / workers?", "\nWhat would the publisher config look like? ", "Should this point to the distributor?", "\n\nA:\n\nThe distributor is a good approach here, but it comes at a cost of increased infrastructure complexity. ", "To avoid introducing another single point of failure, the distributor and it's queues must be run on a Windows Failover Cluser. ", "Meaning both MSMQ and DTC must be configured as clustered services. ", "This can be oh so much fun.. :D\nI've renamed what you call \"worker\" to endpoints, from Worker1 to Endpoint1 and Worker2 to Endpoint2. ", "This is because \"worker\" is very clearly defined as something specific when you introduce the distributor. ", "An actual physical endpoint on a machine that is receiving messages from a distributor is a worker. ", "So Endpoint1@ServicesMachine01, Endpoint2@ServicesMachine02 etc. ", "are all workers. ", "Workers get work from the distributor.", "\nScenario 01\n\nIn the first scenario you see the app server gets a request from the load balancer and sends it to \nEndpoint1@Cluster01 or Endpoint2@Cluster01 queue on the distributor, depending on the command. ", "The\ndistributor then finds a ready worker for message in that queue and send the command along to it. ", "\nSo for WorkerCommand1 EITHER Endpoint1@ServicesBox01 OR Endpoint1@ServicesBox02 ends up getting \nthe command from the distributor and process it as normal.", "\nScenario 02\n\nIn scenario two it's pretty much the same. ", "The PublishCommand is sent to Endpoint3@Cluster01. ", "It \npicks one of the ready Endpoint3s, in this case Endpoint3@ServicesBox02, and gives it the command.", "\nServiceBox02 processes the message and publishes the SomeEvent to Endpoint01@Cluster01 and \nEndpoint02@Cluster01. ", "These are picked up by the distributor and in this case sent to \nEndpoint1@ServiceBox01 and Endpoint2@ServiceBoxN. \nNotice how the messages ALWAYS flow THROUGH the distributor and the queues on Cluster01. ", "This is\nactual load balancing of MSMQ.", "\nConfig for app server changes to makes sure the commands go through the cluster.", "\n<UnicastBusConfig ForwardReceivedMessagesTo=\"audit\">\n <MessageEndpointMappings>\n\n <add Assembly=\"Messages\" Type=\"PublisherCommand\" Endpoint=\"Endpoint3@Cluster01\" />\n <add Assembly=\"Messages\" Type=\"Worker1Command\" Endpoint=\"Endpoint1@Cluster01\" />\n <add Assembly=\"Messages\" Type=\"Worker2Command\" Endpoint=\"Endpoint2@Cluster01\" />\n <!-- ", "This one is sent locally only -->\n <add Assembly=\" Messages\" Type=\"RunCalculationCommand\" Endpoint=\"Dealing\" />\n </MessageEndpointMappings>\n </UnicastBusConfig>\n\nServicesBox config changes slightly to make sure subscriptions go through the distributor as well.", "\n<UnicastBusConfig ForwardReceivedMessagesTo=\"audit\">\n <MessageEndpointMappings>\n <add Assembly=\"Messages\" Type=\"SomeEvent\" Endpoint=\"Endpoint3@Cluster01\" />\n </MessageEndpointMappings>\n</UnicastBusConfig>\n\nNo changes for the publisher config. ", "It doesn't need to point to anything. ", "The subscribers will tell it where to publish.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.005813953488372093, 0.011904761904761904, 0, 0.00964630225080386, 0.043478260869565216, 0.00510204081632653, 0, 0.05405405405405406, 0.005813953488372093, 0.0625, 0, 0, 0, 0, 0.008130081300813009, 0, 0.007444168734491315, 0, 0, 0, 0, 0, 0, 0, 0, 0.0078125, 0.014705882352941176, 0.007462686567164179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0392156862745098, 0.00980392156862745, 0.02608695652173913, 0.004878048780487805, 0, 0.012345679012345678, 0, 0.0037174721189591076, 0, 0, 0, 0 ]
0.006937
5
[ { "analysis_explanation": null, "end": 4099, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4095 }, { "analysis_explanation": null, "end": 5260, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5237 } ]
[ "Inter- and intraspecific variation in excited-state triplet energy transfer rates in reaction centers of photosynthetic bacteria.", "\nIn protein-cofactor reaction center (RC) complexes of purple photosynthetic bacteria, the major role of the bound carotenoid (C) is to quench the triplet state formed on the primary electron donor (P) before its sensitization of the excited singlet state of molecular oxygen from its ground triplet state. ", "This triplet energy is transferred from P to C via the bacteriochlorophyll monomer B(B). ", "Using time-resolved electron paramagnetic resonance (TREPR), we have examined the temperature dependence of the rates of this triplet energy transfer reaction in the RC of three wild-type species of purple nonsulfur bacteria. ", "Species-specific differences in the rate of transfer were observed. ", "Wild-type Rhodobacter capsulatus RCs were less efficient at the triplet transfer reaction than Rhodobacter sphaeroides RCs, but were more efficient than Rhodospirillum rubrum RCs. ", "In addition, RCs from three mutant strains of R. capsulatus carrying substitutions of amino acids near P and B(B) were examined. ", "Two of the mutant RCs showed decreased triplet transfer rates compared with wild-type RCs, whereas one of the mutant RCs demonstrated a slight increase in triplet transfer rate at low temperatures. ", "The results show that site-specific changes within the RC of R. capsulatus can mimic interspecies differences in the rates of triplet energy transfer. ", "This application of TREPR was instrumental in defining critical energetic and coupling factors that dictate the efficiency of this photoprotective process." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0, 0, 0.011111111111111112, 0, 0, 0, 0.0064516129032258064 ]
0.001756
5
[ { "analysis_explanation": null, "end": 855, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 829 }, { "analysis_explanation": null, "end": 925, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 914 }, { "analysis_explanation": null, "end": 941, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 938 }, { "analysis_explanation": null, "end": 998, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 972 }, { "analysis_explanation": null, "end": 1058, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1045 } ]
[ "The video above is the 30 for 30 film on Sonny Vaccaro, a famous and infamous character in the sneaker world who is celebrated and vilified and revered and maligned. ", "It’s about what his role was (or maybe wasn’t) in turning basketball shoes into a multibillion-dollar industry. ", "Sole Man is interesting even if you are not into basketball or shoes, because really it’s about how powerful people interact, which is always intriguing. ", "I wanted to write about it, but I wasn’t sure how because while I do have feet, I’ve only ever cared about what I put on them three times:\n\n• When I got my first pair of Nikes. ", "That was the fifth grade, and was the first time I’d ever given any thought to what I was wearing. ", "Really, I didn’t even know I wanted them. ", "My mom just showed up one day with them. ", "I remember being very excited about it because where I was from, having Nikes meant that you weren’t poor (that sort of thinking, incidentally, is an easy tell that you are, in fact, poor — or rich). ", "They were a full size too big. ", "I wore a lot of socks that year.", "\n\n• When my mom brought home Rollerblades. ", "The problem here was that they weren’t actually Rollerblades, they were just big-as-fuck shoes that looked like Rollerblades without wheels. ", "I swear they came all the way up to the middle of my calf. ", "My mom had bought them in the summer between my sixth- and seventh-grade years. ", "They were supposed to be my play shoes because I’d outgrown my school pair and wasn’t going to get new nice ones until the next school year. ", "I put the Rollerblades in the closet and never ever EVER wore them. ", "I stayed in those too-small shoes. ", "I didn’t wear a lot of socks that summer.", "\n\n• When my mom bought me the Reggie Millers. ", "They were the first signature athlete shoes I owned, because Reggie Miller was the first basketball player I ever loved. ", "I loved Reggie Miller so much. ", "He was skinny and had big ears and weird teeth just like me. ", "He also never shut up, a trait I have always appreciated.", "\n\nThose are the only three times I remember feeling anything about my feet beyond “I hope I don’t get glass in them,” so rather than just write about shoes, I talked to some people who know a lot about that sort of thing. ", "One is Jake Woolf, a very handsome style writer at GQ who owns many jackets and shoes. ", "The other is Lawrence Schlossman, the very handsome editor-in-chief of Four Pins, Complex’s menswear site (he’s also the host of Complex TV’s Fashion Bros. and cowrote that big Fuck Yeah Menswear book).", "\n\nOK, let’s start easy, with a topic that I wish more people talked about. ", "Allen Iverson’s first shoe, The Question: That’s the coolest basketball shoe that’s ever been made, right?", "\n\nLawrence Schlossman: It’s unquestionably up there, but coolest of all time might be a stretch. ", "It’s a great shoe to actually ball in — or so I hear; I’m Jewish, so I don’t play any sports — but hard to wear casually. ", "It’s easily the coolest signature athlete sneaker Reebok has ever made, though, for sure.", "\n\nMore Grantland Q&As Click here for all of our interviews with fascinating people from the worlds of sports and pop culture. ", "Jake Woolf: Those were actually the first sneakers I ever begged my parents to buy me, because I’m too young to have begged for Jordans. ", "Those and the T-Macs were my Jordans. ", "AI made them easily the coolest sneaker of the early 2000s, but now that I’m older it’s pretty hard to argue against any Air Jordan from 1 to 13, except for the 9s. ", "9s are garbage water.", "\n\nSchlossman: Yeah, Jordans will always be king, but for that one fateful night when AI crossed up the greatest basketball player ever, The Questions held the title belt.", "\n\nHas Steph Curry somehow made Under Armour shoes cool? ", "If so, he needs to win, like, probably the next 20 MVPs.", "\n\nSchlossman: For my money, Under Armour shoes are super wack. ", "All that next-level performance stuff they lace the best point guard alive with (R.I.P. CP3’s life) doesn’t mean shit when they look like they were designed by a third-grader. ", "Granted, as Steph’s star continues to rise, we can probably expect an increase in UA’s market share … but I’ve never once seen anyone wearing ’em on the street, and I doubt I ever will.", "\n\nI feel silly when I say or write the phrase “sneaker culture.” ", "Is that because it’s actually silly or because I am ignorant?", "\n\nSchlossman: Both? ", "Sneaker culture as it exists today is basically an embarrassing, greedy, clusterfuck bizarro-world version of what it once was, so on that note it should be shamed. ", "However, there are still members of the old guard who look at sneakers with the kind of love and admiration a normal person might with their children, though they can be corny in their own right, admonishing an entire new generation of thirsty flippers sight unseen. ", "The best analogy I have for sneaker culture is hip-hop fans. ", "It’s a constant struggle between “old heads” and new, younger aficionados jockeying for a voice in a popular and crowded arena.", "\n\nWoolf: I think it’s kind of a fallacy that may or may not have been invented by Nike to sell more sneakers. ", "Like, I guess kids have fun Instagramming their kicks, selling kicks, going to conventions, and doing drugs while waiting in line to buy sneakers, but does that constitute a “culture”? ", "I don’t know. ", "But the most important thing is that, yeah, saying “sneaker culture” just feels incredibly nerdy to say. ", "It’s like when struggle rappers say they’re starting a “movement” or making songs for “the culture,” when really they mean that they just have no friends.", "\n\nMore important moment to sneaker culture: Dr. J winning the 1976 ABA slam dunk contest, Jordan winning the 1988 NBA slam dunk contest, or Dee Brown pumping his shoes up before his blind dunk in 1991?", "\n\nSchlossman: Relevancy in the sneaker world always goes through MJ. ", "That’s just a fact. ", "OK, I will acquiesce to the pump being right up there with the best shit Reebok has ever done, and Dee Brown so blatantly juicing his kicks up is an incredible moment in flexing history, but, again, everything sneakers goes through His Airness first and foremost.", "\n\nWoolf: I think what we’re getting at is that in the wake of the Air Jordan phenomenon, every sneaker company tried and ultimately failed to create a signature sneaker at that level. ", "For one, no one is or will ever be Michael Jordan. ", "But also these other brands like Adidas and Reebok just didn’t have the design talent or advertising savvy that Nike and Wieden+Kennedy did. ", "They were all just making signature sneakers because they felt like they had to. ", "Even to this day, Nike is trying its best to make hot signature shoes with Durant, Kyrie, and even Kobe (which has been moderately successful, relatively speaking), but no one else has that MJ juice.", "\n\nFair enough. ", "Let me use that same premise but make the question less obvious. ", "Arrange these moments in order of importance to sneaker culture:\n\n• Run-D.M.C. doing “My Adidas”\n\n• The “you stepped on my brand-new white Air Jordans” scene from Do the Right Thing\n\n• Fat Joe licking the sole of his shoes on MTV Cribs\n\n• Back to the Future Part II’s Air Marty McFlys\n\nSchlossman: First is Run-D.M.C. doing “My Adidas.” ", "An iconic sneaker becomes even more iconic thanks to an iconic cosign. ", "Sales were BOOMIN’. ", "Also, Adidas is pushing the Superstar incredibly hard in 2015 after finding similar success relaunching the equally classic Stan Smith last year.", "\n\nSecond is the “you stepped on my shoe” scene from Do The Right Thing. ", "Without getting wildly out of pocket, this kinda serves as an allegory for race relations in America today that’s more pertinent and urgent than ever, so its impact as a moment when cinema transcends the screen cannot be understated.", "\n\nThird is Fat Joe licking the sole of his shoes on MTV Cribs, the most incredible moment in Cribs history outside of Redman showing off his stash box and Dave Chappelle ethering the entire show’s existence with one of his best skits ever. ", "Honestly, you’re not living until you’ve literally tasted the spoils of victory by licking a brand-new fire sneaker you just copped.", "\n\nWoolf: An incredible moment for MTV, Fat Joe, and wealthy people everywhere, but not really important to sneakers. ", "But let’s be real — Fat Joe will lick just about anything.", "\n\nI wish we all got to see Fat Joe lick more things.", "\n\nSchlossman: Fourth is Back to the Future Part II’s Air Marty McFlys. ", "This was cool at the time but has since become this quasi-trash moment in retrospect since it led to Nike releasing the Air Mag, their corniest, most ridiculously gauche, overhyped sneaker to date. ", "Those shits didn’t even lace themselves!", "\n\nWoolf: Back to the Future Part II is second place for me. ", "They were actually science fiction and Nikes at the same time, which is basically the perfect formula for appealing to teenage boys. ", "It’s also awesome that they were designed by Tinker Hatfield, the guy who designed the Air Max and all of the best Air Jordans. ", "Because the movie took place in 2015, Nike is releasing them later this year in full self-lacing form, and people are going to definitely punch each other in the face to get a pair. ", "For the record, though, they’re insanely ugly and anyone who’s worn a pair from the limited-release auction back in 2011 has looked like nothing short of a hypebeast clown.", "\n\nWait. ", "Let me jump back a bit, because I just thought of this. ", "Has there ever been a bigger fall-off in shoe design than going from Iverson’s The Question shoe to Iverson’s The Answer shoe? ", "Because, dudes, what a mess. ", "And to expand on that, or maybe to counterbalance against it, I have to make sure I mention the commercial for The Answer. ", "Do you remember that? ", "It was the one where Iverson explained how to do his crossover. ", "Great commercial, awful shoe.", "\n\nWoolf: The O.G. Answers, yeah, those were terribly ugly. ", "Though I can’t in good conscience hate on them because as a naive kid I thought Reebok’s DMX technology had something to do with rapper DMX, which was actually reasonable when you consider the timing of all of this (1998-2000).", "\n\nI was very sad when I found out that that was not the case.", "\n\nWoolf: Also, Iverson was wearing the Answer IVs when he did this:\n\nhttps://www.youtube.com/watch?v=H273e0Gk0zQ\n\nSchlossman: Not that I needed any more convincing at the time to be all in on AI, easily my favorite player growing up, but that crossovers-for-dummies commercial definitely sold me heavy even though it will never be as good as this iconic Nike joint:\n\nNot to mention that seemingly worthless DMX technology — which I still don’t understand, by the way — had me gassed more than any sneaker selling point outside of maybe, like, British Knights selling springs in their shoes that supposedly would make you be able to dunk even if you were a 9-year-old white kid from the suburbs. ", "I remember trying to tell my parents the DMX technology made these shoes a steal, like an adult would even give a single fuck about sneakers. ", "They still refused to buy them for me. ", "Looking back, The Answers were pretty butt, but when they dropped I wanted them more than anything.", "\n\nWho are the white basketball players with shoe deals? ", "Where are they? ", "Why doesn’t Kirk Hinrich have a shoe deal in place?", "\n\nWoolf: I think Kyle Korver had a deal with Converse but now he wears Nike, which owns Converse. ", "I think we just live in a time when the most electrifying and marketable players in the league happen to be black. ", "That said, a few white guys have signature sneakers, albeit with smaller brands. ", "Kevin Love has a deal with a Chinese sneaker company called 361 Degrees. ", "Chandler Parsons is with a company called Anta, but he wore Jordans on the court a while ago. ", "Steve Nash used to have a signature sneaker with Nike, but it doesn’t exist anymore and no one liked that sneaker anyway. ", "And that’s when he was MVP.", "\n\nIt feels a lot like you’re saying Mason Plumlee isn’t exciting, Jake.", "\n\nWoolf: The Mason Plumlee signature shoe would basically just be one of those Cole Haan Lunargrand desert boots. ", "Here’s Kevin Love’s signature shoe.", "\n\nOh my word. ", "It’s like a car accident. ", "It’s like if someone took all their bad ideas and put them on your feet. ", "OK, let’s do a quick game. ", "I’ll name some basketball players, and you guys give them shoes. ", "They can be real actual shoes or, like, if I say Zach Randolph, you can say his shoes should be we just dip his feet in concrete and he goes out and runs around like that. ", "Let’s start with Amar’e.", "\n\nWoolf: Amar’e gets Nike X Riccardo Tisci boots because maybe they’ll be supportive enough for his old-ass knees.", "\n\nThis got personal real quick. ", "Jeremy Lin?", "\n\nWoolf: Nike Air Yeezy 2. ", "Really hyped a few years ago, now just seem corny when you see them in person.", "\n\nZach Randolph?", "\n\nSchlossman: Z-Bo is a beast and a generally frightening human. ", "Assuming how firmly he is about that life and the fact that Stephen Jackson all but confirmed our suspicions on The Grantland Basketball Hour, I’m gonna go ahead and recommend Z-Bo strap on a pair of Vietnam-issue jungle boots and get back to murdering people in the paint.", "\n\nMario Chalmers?", "\n\nSchlossman: A pair of gray geriatric New Balances would be rad because is that not the funniest mental image? ", "Chalmers just running the point in the corniest dad shoes imaginable.", "\n\nTiago Splitter?", "\n\nSchlossman: Tiago being Brazilian and all just seems like he’s a super chill bro, so his career moving forward would probably flourish as a specialist in Rainbow Sandals.", "\n\nPopovich?", "\n\nSchlossman: Wait, can Chalmers give Pop his New Balances?", "\n\nWoolf: New Derrick Rose signature sneakers?", "\n\nJake.", "\n\nWoolf: Also out of left field, but it’s pretty amazing that Rasheed Wallace wore Air Force 1s exclusively throughout his career.", "\n\nIs that true?", "\n\nWoolf: I’m not sure if he ONLY wore Air Force 1s, but he definitely wore them most of the time with the strap hanging off the back, because ankle support is overrated." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.006024096385542169, 0, 0.006493506493506494, 0.005649717514124294, 0, 0, 0, 0, 0, 0, 0, 0.0070921985815602835, 0, 0, 0, 0.014705882352941176, 0, 0, 0, 0.008264462809917356, 0.03225806451612903, 0, 0, 0, 0.022988505747126436, 0.019801980198019802, 0, 0.009433962264150943, 0.010309278350515464, 0, 0.011235955056179775, 0.007936507936507936, 0.0072992700729927005, 0, 0.006060606060606061, 0, 0.0058823529411764705, 0.017857142857142856, 0, 0.015873015873015872, 0.005681818181818182, 0.010810810810810811, 0, 0, 0, 0, 0, 0, 0, 0.01818181818181818, 0, 0, 0, 0, 0.014925373134328358, 0, 0, 0.0076045627376425855, 0.005434782608695652, 0.0196078431372549, 0.014184397163120567, 0, 0.01507537688442211, 0, 0, 0.011869436201780416, 0, 0.05, 0.013793103448275862, 0, 0, 0.0125, 0, 0.017094017094017096, 0, 0, 0.014084507042253521, 0.005050505050505051, 0, 0.016666666666666666, 0.007518796992481203, 0.015625, 0.005494505494505495, 0, 0, 0, 0.023622047244094488, 0, 0, 0, 0.015625, 0, 0.03389830508474576, 0.013215859030837005, 0, 0.008633093525179856, 0.007042253521126761, 0, 0, 0, 0, 0.0196078431372549, 0.05102040816326531, 0, 0, 0.0136986301369863, 0.02127659574468085, 0.01639344262295082, 0.037037037037037035, 0.028169014084507043, 0.017543859649122806, 0.02857142857142857, 0, 0, 0, 0, 0, 0.005813953488372093, 0.041666666666666664, 0.02631578947368421, 0, 0.09090909090909091, 0.037037037037037035, 0, 0.0625, 0, 0.003663003663003663, 0.058823529411764705, 0.008928571428571428, 0, 0.058823529411764705, 0.005813953488372093, 0, 0, 0, 0, 0.023076923076923078, 0, 0.011834319526627219 ]
0.009115
5
[ { "analysis_explanation": null, "end": 54, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41 }, { "analysis_explanation": null, "end": 286, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 278 }, { "analysis_explanation": null, "end": 779, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 772 }, { "analysis_explanation": null, "end": 1053, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1044 }, { "analysis_explanation": null, "end": 1332, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1322 }, { "analysis_explanation": null, "end": 1515, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1495 }, { "analysis_explanation": null, "end": 1704, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1686 }, { "analysis_explanation": null, "end": 1780, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1767 }, { "analysis_explanation": null, "end": 1848, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1835 }, { "analysis_explanation": null, "end": 2214, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2204 }, { "analysis_explanation": null, "end": 2316, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2297 }, { "analysis_explanation": null, "end": 2575, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2560 }, { "analysis_explanation": null, "end": 2686, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2667 }, { "analysis_explanation": null, "end": 2826, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2820 }, { "analysis_explanation": null, "end": 2988, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2979 }, { "analysis_explanation": null, "end": 3108, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3098 }, { "analysis_explanation": null, "end": 3233, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3226 }, { "analysis_explanation": null, "end": 3271, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3264 }, { "analysis_explanation": null, "end": 3331, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3316 }, { "analysis_explanation": null, "end": 3470, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3460 }, { "analysis_explanation": null, "end": 3485, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3478 }, { "analysis_explanation": null, "end": 3644, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3633 }, { "analysis_explanation": null, "end": 3975, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3963 }, { "analysis_explanation": null, "end": 3994, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3989 }, { "analysis_explanation": null, "end": 4298, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4288 }, { "analysis_explanation": null, "end": 4340, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4335 }, { "analysis_explanation": null, "end": 4932, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4927 }, { "analysis_explanation": null, "end": 5541, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5540 }, { "analysis_explanation": null, "end": 5558, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5554 }, { "analysis_explanation": null, "end": 5588, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5582 }, { "analysis_explanation": null, "end": 5605, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5601 }, { "analysis_explanation": null, "end": 5641, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5632 }, { "analysis_explanation": null, "end": 5692, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5688 }, { "analysis_explanation": null, "end": 5704, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5694 }, { "analysis_explanation": null, "end": 5759, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5757 }, { "analysis_explanation": null, "end": 5889, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5880 }, { "analysis_explanation": null, "end": 6050, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6045 }, { "analysis_explanation": null, "end": 6276, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6262 }, { "analysis_explanation": null, "end": 6413, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6399 }, { "analysis_explanation": null, "end": 6516, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6508 }, { "analysis_explanation": null, "end": 6603, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6599 }, { "analysis_explanation": null, "end": 6692, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6690 }, { "analysis_explanation": null, "end": 7074, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7050 }, { "analysis_explanation": null, "end": 7267, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7263 }, { "analysis_explanation": null, "end": 7340, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7330 }, { "analysis_explanation": null, "end": 7350, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7341 }, { "analysis_explanation": null, "end": 7522, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7515 }, { "analysis_explanation": null, "end": 7528, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7523 }, { "analysis_explanation": null, "end": 7672, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7665 }, { "analysis_explanation": null, "end": 7752, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7747 }, { "analysis_explanation": null, "end": 7778, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7772 }, { "analysis_explanation": null, "end": 7823, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7809 }, { "analysis_explanation": null, "end": 8032, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8027 }, { "analysis_explanation": null, "end": 8071, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8064 }, { "analysis_explanation": null, "end": 8169, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8162 }, { "analysis_explanation": null, "end": 8233, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8226 }, { "analysis_explanation": null, "end": 8262, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8252 }, { "analysis_explanation": null, "end": 8319, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8303 }, { "analysis_explanation": null, "end": 8565, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8560 }, { "analysis_explanation": null, "end": 8811, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8796 }, { "analysis_explanation": null, "end": 8915, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8911 }, { "analysis_explanation": null, "end": 8955, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8940 }, { "analysis_explanation": null, "end": 9181, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9177 }, { "analysis_explanation": null, "end": 9696, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9691 }, { "analysis_explanation": null, "end": 9706, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9702 }, { "analysis_explanation": null, "end": 9973, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9964 }, { "analysis_explanation": null, "end": 10041, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10036 }, { "analysis_explanation": null, "end": 10056, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10049 }, { "analysis_explanation": null, "end": 10584, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10577 }, { "analysis_explanation": null, "end": 10700, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10690 }, { "analysis_explanation": null, "end": 11104, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11092 }, { "analysis_explanation": null, "end": 11137, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11132 }, { "analysis_explanation": null, "end": 11158, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11147 }, { "analysis_explanation": null, "end": 11434, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11424 }, { "analysis_explanation": null, "end": 11460, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11453 }, { "analysis_explanation": null, "end": 11513, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11497 }, { "analysis_explanation": null, "end": 11564, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11557 }, { "analysis_explanation": null, "end": 11601, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11591 }, { "analysis_explanation": null, "end": 11739, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11736 }, { "analysis_explanation": null, "end": 11788, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11775 }, { "analysis_explanation": null, "end": 11809, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11805 }, { "analysis_explanation": null, "end": 11816, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11811 }, { "analysis_explanation": null, "end": 11940, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11930 }, { "analysis_explanation": null, "end": 12224, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12211 }, { "analysis_explanation": null, "end": 12364, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12359 }, { "analysis_explanation": null, "end": 12512, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12502 }, { "analysis_explanation": null, "end": 12519, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12514 }, { "analysis_explanation": null, "end": 12567, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12552 }, { "analysis_explanation": null, "end": 12631, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12618 }, { "analysis_explanation": null, "end": 12643, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12633 }, { "analysis_explanation": null, "end": 12771, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12756 }, { "analysis_explanation": null, "end": 12903, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12896 }, { "analysis_explanation": null, "end": 12984, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12970 }, { "analysis_explanation": null, "end": 12996, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12986 }, { "analysis_explanation": null, "end": 13104, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13096 }, { "analysis_explanation": null, "end": 13181, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13166 }, { "analysis_explanation": null, "end": 13192, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13182 }, { "analysis_explanation": null, "end": 13215, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13206 }, { "analysis_explanation": null, "end": 13393, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13385 }, { "analysis_explanation": null, "end": 13426, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13421 }, { "analysis_explanation": null, "end": 13444, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13432 }, { "analysis_explanation": null, "end": 13469, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13465 }, { "analysis_explanation": null, "end": 13476, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13471 }, { "analysis_explanation": null, "end": 13546, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13531 }, { "analysis_explanation": null, "end": 13619, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13614 }, { "analysis_explanation": null, "end": 10146, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 10103 } ]
[ "Notes:2008-09: Selected by Nashville in 2nd round (38th overall) of the NHL Draft...2010-11: Signed with Nashville to a three-year deal worth $2.6 million...2011-12: Made NHL debut...2012-13: Silver Medallist with Switzerland at IIHF World Championships...2013-14: Re-signed with Nashville to a seven-year deal worth $28 million, June 10th." ]
{ "pile_set_name": "Pile-CC" }
[ 0.0058823529411764705 ]
0.005882
5
[ { "analysis_explanation": null, "end": 36, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27 }, { "analysis_explanation": null, "end": 91, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 84 }, { "analysis_explanation": null, "end": 114, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 105 }, { "analysis_explanation": null, "end": 130, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 120 }, { "analysis_explanation": null, "end": 164, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 157 }, { "analysis_explanation": null, "end": 190, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 183 }, { "analysis_explanation": null, "end": 225, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 214 }, { "analysis_explanation": null, "end": 263, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256 }, { "analysis_explanation": null, "end": 289, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 280 }, { "analysis_explanation": null, "end": 305, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 295 }, { "analysis_explanation": null, "end": 339, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 330 } ]
[ "import os\nimport tempfile\nimport deepchem as dc\n\n\ndef test_load_singleton_csv():\n fin = tempfile.", "NamedTemporaryFile(mode='w', delete=False)\n fin.write(\"smiles,endpoint\\nc1ccccc1,1\")\n fin.close()\n featurizer = dc.feat.", "CircularFingerprint(size=1024)\n tasks = [\"endpoint\"]\n loader = dc.data.", "CSVLoader(\n tasks=tasks, feature_field=\"smiles\", featurizer=featurizer)\n\n X = loader.create_dataset(fin.name)\n assert len(X) == 1\n os.remove(fin.name)\n" ]
{ "pile_set_name": "Github" }
[ 0, 0, 0, 0.012578616352201259 ]
0.003145
5
[ { "analysis_explanation": null, "end": 47, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45 }, { "analysis_explanation": null, "end": 193, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 187 }, { "analysis_explanation": null, "end": 390, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 381 }, { "analysis_explanation": null, "end": 409, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 403 }, { "analysis_explanation": null, "end": 441, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 436 }, { "analysis_explanation": null, "end": 452, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 446 } ]
[ "Maybe you didn’t know this yet but the fingers of Fist of Blog are all chipping in to buy a new sex robot (and matching brown paper bag to cover her face). ", "She/it will be available on a time share basis so get on the list now! ", "Crappy looking sex robot on...\n\nThe Christian Side Hug (Not to be confused with the Hindu Lateral Embrace) is a way to hug someone while avoiding the possibility of your groins rubbing together under your clothes. ", "FINALLY!!!! ", "I’ve been Heathen Front Hugging people for decades now, and more than half the time it leads to uncontrollable fits of pelvic thrusting. ", "And about once out of every ten times THAT happens, my wild and vicious thrusting will pierce a..." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0, 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 316, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 311 }, { "analysis_explanation": null, "end": 503, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 496 }, { "analysis_explanation": null, "end": 632, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 628 } ]
[ "In a Freudian slip, the Democratic vice-presidential nominee appeared to inadvertently admit Thursday that Democratic policies are inherently harmful to white Americans.", "\n\nWhile speaking to a group of black Baptists in New Orleans, Tim Kaine seemed to suggest that in order to achieve “equity” between the races, white people need to willingly submit themselves to a state of repression similar to what black Americans have experienced.", "\n\nWhite children in some of the nation’s most elite schools are literally being taught to be ashamed of themselves because of the color of their skin.", "\n\nMore from LifeZette TV\n\nMORE NEWS: Threatening to Impeach President Trump for a Second Time\n\n“I’ve never been treated badly in life because of my skin color or my gender,” Kaine said. “", "I think the burden is on those of us who are in the majority — Caucasians. ", "We have to put ourselves in a place where we are the minority.”", "\n\nSen. Kaine is certainly in the right party, as turning white Americans into a minority — and a minority against which other races are able to direct hate with impunity — is the inevitable result of the policies promoted by the Democratic Party and the Left at large.", "\n\nDo you agree that protesting is acceptable, but rioting is not? ", "Yes No Email Address (required) By completing the poll, you agree to receive emails from LifeZette and that you've read and agree to our privacy policy and legal statement Results Vote\n\nIndeed, despite what Democrats tell the public, progressive policies do very little to raise black people up from poverty and a lot to bring all Americans down to a level of government dependency and economic immobility.", "\n\n[lz_jwplayer video= “1koQCs9x” ads=”true”]\n\nThe ever-increasing rate at which good-paying, blue-collar jobs are being offshored by bad trade deals — something to which the modern Democratic Party appears committed fully — will continue to have a devastating effect on working-class white communities. ", "The disproportionately negative effect globalization has had on blue-collar whites was a large factor in GOP nominee Donald Trump’s success in the GOP primaries.", "\n\nMORE NEWS: Ep 47 | Trump’s SCOTUS Pick Expected This Week, Biden and Obama Slam the President\n\nMoreover, this destruction of the middle American economy is having very real, very negative effects on white Americans. “", "Something startling is happening to middle-aged white Americans,” The New York Times reported in 2015. “", "Unlike every other age group, unlike every other racial and ethnic group, unlike their counterparts in other rich countries, death rates in this group have been rising, not falling.”", "\n\nSome of the Democratic Party’s favorite progressive policies — like affirmative action — are directly and openly discriminatory against white Americans. ", "Moreover, the Supreme Court’s decision this summer in Fisher v. University of Texas gave legal sanction to this obvious form of anti-white discrimination.", "\n\nThen there’s the Democratic Party’s stringent support for open borders and mass non-white migration, which is quite literally turning white Americans into a minority in the country their own ancestors built. ", "White Americans are already a minority among school-aged children, and will be a nationwide minority by 2050, according to predictions by the Census Bureau.", "\n\nDemocrats and liberals charge that any and all opposition to these obvious assaults on the well-being of millions of Americans is rooted in inherent white racism and the desire to protect “white privilege,” but this argument is emblematic of a subtle racism against white people. ", "Indeed, every other ethnic group in America is positively encouraged by the Democratic Party to engage outright in racial groupthink.", "\n\n[lz_related_box id=”166777″]\n\nMultiple Latino advocacy organizations have the word “raza” — race — in their title, while black activists routinely talk about protecting the “black community” and frequently engage in outright discrimination against white people. ", "Meanwhile, white children in some of the nation’s most elite schools are literally being taught to be ashamed of themselves because of the color of their skin.", "\n\nAs the 2016 DNC proved, this toxic form of identity politics is wholly supported by the Democratic Party — as long as it is practiced by non-white people and directed against white people. ", "According to Kaine, Hillary Clinton has no plans to stop the Democratic Party’s endorsement of this political and social poison.", "\n\n“Hillary and I both kind of challenge our Caucasian leaders and Caucasian communities to do that. ", "She’s made it clear that taking on these inequities is one of the most important tasks of being our next president,” Kaine said." ]
{ "pile_set_name": "OpenWebText2" }
[ 0, 0.0037593984962406013, 0, 0.016042780748663103, 0, 0, 0.011194029850746268, 0, 0.0024630541871921183, 0.006600660066006601, 0.018633540372670808, 0.0136986301369863, 0.009615384615384616, 0, 0.0064516129032258064, 0.012987012987012988, 0.004761904761904762, 0.00641025641025641, 0, 0.007518796992481203, 0, 0, 0.010471204188481676, 0.0234375, 0.01, 0.0078125 ]
0.00661
5
[ { "analysis_explanation": null, "end": 13, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5 }, { "analysis_explanation": null, "end": 34, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24 }, { "analysis_explanation": null, "end": 101, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 93 }, { "analysis_explanation": null, "end": 117, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 107 }, { "analysis_explanation": null, "end": 168, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 159 }, { "analysis_explanation": null, "end": 213, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 205 }, { "analysis_explanation": null, "end": 228, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217 }, { "analysis_explanation": null, "end": 239, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 230 }, { "analysis_explanation": null, "end": 416, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 407 }, { "analysis_explanation": null, "end": 657, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 652 }, { "analysis_explanation": null, "end": 761, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 756 }, { "analysis_explanation": null, "end": 843, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 833 }, { "analysis_explanation": null, "end": 919, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 914 }, { "analysis_explanation": null, "end": 979, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 970 }, { "analysis_explanation": null, "end": 1338, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1329 }, { "analysis_explanation": null, "end": 1456, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1447 }, { "analysis_explanation": null, "end": 1580, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1571 }, { "analysis_explanation": null, "end": 1666, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1648 }, { "analysis_explanation": null, "end": 2077, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2065 }, { "analysis_explanation": null, "end": 2157, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2137 }, { "analysis_explanation": null, "end": 2167, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2158 }, { "analysis_explanation": null, "end": 2174, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2169 }, { "analysis_explanation": null, "end": 2184, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2179 }, { "analysis_explanation": null, "end": 2254, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2246 }, { "analysis_explanation": null, "end": 2324, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2315 }, { "analysis_explanation": null, "end": 2391, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2382 }, { "analysis_explanation": null, "end": 2429, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2425 }, { "analysis_explanation": null, "end": 2767, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2758 }, { "analysis_explanation": null, "end": 2819, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2808 }, { "analysis_explanation": null, "end": 3073, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3064 }, { "analysis_explanation": null, "end": 3147, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3132 }, { "analysis_explanation": null, "end": 3240, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3236 }, { "analysis_explanation": null, "end": 3298, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3289 }, { "analysis_explanation": null, "end": 3415, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3406 }, { "analysis_explanation": null, "end": 3612, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3605 }, { "analysis_explanation": null, "end": 3748, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3742 }, { "analysis_explanation": null, "end": 3791, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3787 }, { "analysis_explanation": null, "end": 4136, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4132 }, { "analysis_explanation": null, "end": 4332, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4327 }, { "analysis_explanation": null, "end": 4349, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4334 }, { "analysis_explanation": null, "end": 4451, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4444 }, { "analysis_explanation": null, "end": 4494, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4485 }, { "analysis_explanation": null, "end": 4516, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4507 }, { "analysis_explanation": null, "end": 4663, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4658 }, { "analysis_explanation": null, "end": 3729, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 3723 } ]
[ "Systemic cytokine response in patients with community-acquired pneumonia.", "\nThe role of individual cytokines and polymorphisms in pneumonia has been described, but the relationship between different cytokines and polymorphisms in relation to causative microorganisms, antibiotics, corticosteroids and clinical course has not. ", "This study questions the relationship between cytokines, polymorphisms and clinical characteristics of pneumonia. ", "Patients diagnosed with pneumonia were included in the study. ", "Serum cytokine levels were measured during hospital stay, genotyping was performed, causative microorganisms were identified and patients were monitored throughout the hospital stay. ", "In 201 patients with pneumonia interleukin (IL)-1 receptor antagonist (IL-1RA), IL-6, IL-8 and IL-10 acted as acute phase proteins. ", "After admission, the levels of these cytokines decreased rapidly. ", "Single nucleotide polymorphisms did not influence cytokine production and were not associated with clinical outcome. ", "Cytokine serum levels were significantly higher in patients with pneumococcal pneumonia. ", "The decrease in levels of cytokines was independently influenced by the start of corticosteroid therapy. ", "IL-1RA, IL-6, IL-8 and IL-10 are acute phase proteins, independent of genotype. ", "Their levels are influenced by the nature of the causative microorganism and the start of corticosteroids therapy." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0, 0, 0.007575757575757576, 0, 0, 0, 0, 0.0125, 0 ]
0.001673
5
[ { "analysis_explanation": null, "end": 760, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 754 } ]
[ "Please check out the updated version of the cheat sheet available here.", "\n\nIf you have been reading The 4-Hour Body by Tim Ferris, you’re probably pretty excited to get started. ", "Although the basic eating plan is simple enough, if you add in the GLUT-4 exercises, supplements, and other activities, it can get confusing to plan your day.", "\n\n\n\nI did my best to capture the eating plan, GLUT-4 exercises, supplements, and cold therapy in one cheat sheet for my own use, which provides a daily schedule for the 4-Hour Body fat loss plan.", "\n\nIt is not a replacement for the book itself. ", "The 4-Hour Body is an excellent resource, well researched and carefully documented. ", "The cheat sheet is just a helpful way to capture the most important information on a single page for people who have read the book.", "\n\n4-Hour Body Cheat Sheet\n\n4HB Fat Loss Cheat Sheet Download by format:" ]
{ "pile_set_name": "OpenWebText2" }
[ 0, 0.009523809523809525, 0, 0.005128205128205128, 0, 0, 0, 0.014084507042253521 ]
0.003592
5
[ { "analysis_explanation": null, "end": 107, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101 }, { "analysis_explanation": null, "end": 126, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 116 }, { "analysis_explanation": null, "end": 481, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 476 }, { "analysis_explanation": null, "end": 505, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 499 }, { "analysis_explanation": null, "end": 586, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 575 }, { "analysis_explanation": null, "end": 810, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 787 } ]
[ "-----BEGIN CERTIFICATE-----\nMIIDoDCCAoigAwIBAgIJAMKSROeRdgaBMA0GCSqGSIb3DQEBCwUAMGUxCzAJBgNV\nBAYTAkRFMRMwEQYDVQQIDApTb21lLVN0YXRlMQ0wCwYDVQQKDARXaXJlMQswCQYD\nVQQLDAJRQTElMCMGA1UEAwwcUUEgQ2VydGlmaWNhdGUgQXV0aG9yaXR5KENBKTAe\nFw0xODA3MTYwODM3MDNaFw0zODA3MTEwODM3MDNaMGUxCzAJBgNVBAYTAkRFMRMw\nEQYDVQQIDApTb21lLVN0YXRlMQ0wCwYDVQQKDARXaXJlMQswCQYDVQQLDAJRQTEl\nMCMGA1UEAwwcUUEgQ2VydGlmaWNhdGUgQXV0aG9yaXR5KENBKTCCASIwDQYJKoZI\nhvcNAQEBBQADggEPADCCAQoCggEBAL2I7/bMuV158R+5dNioBAxbSyoQ9N08Nidm\nKDpEWDbRzmnXnM633kK0nNyBn+OlpSJjOcRtUWqItZEkIw8e9nxjz9nKmjrMvxY4\ndhfHhk9pmX1ztv15AvYSzZhJfGjM/+nCuFNbCACkrpaaAk2aCBHbIQGaZACcwzH7\nn2Jc818f/lHRCwsw1c+mNtdDvLo6eOzhC8iFpx7cSmEGFLMegnZK4eCWECaDmQx4\nkWhhy17eiJ8jELEhWy2EGfZumGQVsfNi9tSOqA//2wvEr4NvUKQtqcasyrlionMj\ngF4Phz1n8lhdGlIAm/0AdB+Vb8lH6BqMd1i/TEZnySL7ivAj0ZMCAwEAAaNTMFEw\nHQYDVR0OBBYEFGi7qqgK55VxtmSB7kObvy3NusaWMB8GA1UdIwQYMBaAFGi7qqgK\n55VxtmSB7kObvy3NusaWMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQAD\nggEBAF5QbdvBT6fZbdmc7SSr7sbbmR9/K+4irn6XiPES96YM57z8Dpet7qDDjavY\nZRSRHK6qJ+nOFkSeCAEbZhqlvZR6upujpiYorUDH3rsUsO2LrcrWNFLT+GUrvlMe\nWFFmvW2rCG5yRNux+Dt6027hr98+OWGMin+3EhRWg15dXqdf1ZIeKEG9L3bx4m4C\n9KASNIkAwpctX3qhvcNgNiITZooQXibaSJ4bNjjyLZDIAA4thJo957VAHFXUFHFU\na9sEndA06YpJNZZpEBy3VR0pUOnjwKMzQLLu0fLR2rC0f/8lQbQ/NRFkYYzN/8Hl\nvOntbjYL44Ah0UZ1O+XwuTjpdCc=\n-----END CERTIFICATE-----\n" ]
{ "pile_set_name": "Github" }
[ 0.006069802731411229 ]
0.00607
5
[]
[ "The effects of oil pollution on Antarctic benthic diatom communities over 5 years.", "\nAlthough considered pristine, Antarctica has not been impervious to hydrocarbon pollution. ", "Antarctica's history is peppered with oil spills and numerous abandoned waste disposal sites. ", "Both spill events and constant leakages contribute to previous and current sources of pollution into marine sediments. ", "Here we compare the response of the benthic diatom communities over 5 years to exposure to a commonly used standard synthetic lubricant oil, an alternative lubricant marketed as more biodegradable, in comparison to a control treatment. ", "Community composition varied significantly over time and between treatments with some high variability within contaminated treatments suggesting community stress. ", "Both lubricants showed evidence of significant effects on community composition after 5 years even though total petroleum hydrocarbon reduction reached approximately 80% over this time period. ", "It appears that even after 5 years toxicity remains high for both the standard and biodegradable lubricants revealing the temporal scale at which pollutants persist in Antarctica." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 41, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32 }, { "analysis_explanation": null, "end": 81, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 74 }, { "analysis_explanation": null, "end": 123, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 113 }, { "analysis_explanation": null, "end": 184, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174 }, { "analysis_explanation": null, "end": 462, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 455 }, { "analysis_explanation": null, "end": 879, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 872 }, { "analysis_explanation": null, "end": 1013, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1006 }, { "analysis_explanation": null, "end": 1157, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1147 } ]
[ "Sexual dimorphism and development of the human cochlea. ", "Computer 3-D measurement.", "\nThe length of the cochlear turns was measured in 9 pairs of temporal bones from age-matched male and female individuals (1 day to 76 years old), using a computer-aided three-dimensional reconstruction and measurement method. ", "The mean cochlear length was significantly longer (Two-way analysis of variance, F = 31.87, d.f. ", "= 1, p less than 0.01) in males (37.1 +/- 1.6 mm) than in females (32.3 +/- 1.8 mm), whereas it did not vary with postnatal age in either sex. ", "Sexually dimorphic cochlear length may pose a new issue in auditory physiology in man. ", "The lack of postnatal elongation also indicates that length of the cochlea becomes close to its maximum during fetal life." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0.010309278350515464, 0, 0, 0 ]
0.001473
5
[ { "analysis_explanation": null, "end": 208, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 203 }, { "analysis_explanation": null, "end": 224, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 212 } ]
[ "This clinical trial has been approved by CTEP and our IRB and we have enrolled now 33 patients. ", "Also, we opened the trial at the Rutgers Cancer Institute of New Jersey. ", "The objectives of the study are as follows: - Primary: To determine if there is an improvement in disease-free survival (DFS) with BCG + PANVAC compared with BCG alone in a phase II study in non-muscle invasive high-grade urothelial carcinoma of the bladder who have failed to respond to intravesical BCG - Secondary: Estimate tumor upgrading and tumor upstaging rates for each study arm. - ", "Secondary: Determine the safety of the combination therapy. - ", "Exploratory/Correlative: Evaluate the immune response generated in each arm. ", "Although the major goal is to improve upon the results of BCG alone clinically, there are several scientific objectives that are secondary endpoints of the trial and are as follows: - PPD results will be used to assess the immunologic response to BCG therapy. ", "This premise is based on a previous report that correlates PPD positivity with improved tumor recurrence-free intervals after BCG treatment (Luftenegger et al, J Urol, Feb 1996, Vol 155, 1483-7). - ", "Urine may be collected at baseline (week 0), BCG instillation #1, BCG instillation #3, week 3, week 8, and at the end of the study. ", "Collection volume will range from 30 to 100 mL with each collection. ", "An attempt will be made to collect urine prior to BCG instillation and 2 hours after BCG drainage, based on previous study demonstrating urinary cytokine changes during these time points (Bisiaux et al, J Urol, Vol 181, April 2009, 1571-80) -In particular to the current study, we would like to study the T-cell infiltration pattern within bladder tumors pre- and post-treatment. ", "Specifically, we will look at: - The expression of CEA and MUC-1 antigens in bladder tumor specimens pre- and post-treatment in both arms - The presence of CD4 and CD8 T cells in bladder tumor specimens pre- and post-treatment in both arms - The presence of regulatory T cells (Tregs) by double staining with FoxP3 and CD4 in bladder tumor specimens pre- and post-treatment in both arms - The presence of myeloid derived suppressor cells (MDSC) in bladder tumor specimens pre- and post-treatment in both arms - At baseline, week 3, week 8, and at the end of the study (between weeks 17-20), blood samples will be obtained via 6 green top tubes. ", "From this blood, PBMCs and sera will be isolated, when appropriate samples are available, for the following immune correlates: Immunologic testing will include: 1. ", "IFN-gamma ELISPOT assays for CD8 T-cell responses specific for CEA, MUC-1, and Brachyury (Limited to patients with HLA-A2 allele) 2. ", "Measure CD4 antigen-specific response to CEA 3. ", "Sera samples will be analyzed for the development of antibodies to CEA, MUC-1 and Brachyury. (", "Samples from baseline and at end of study) 4. ", "Flow cytometry analysis using 10 markers of all PBMC samples for each of the following cell types: CD4, CD8, Tregs, MDSCs, and NK. ", "5. ", "Serum for NCA (CEA-CAM) titers will be drawn anytime that a patient exhibits new onset neutropenia (ANC 1000) 6. ", "Immunologic studies will be repeated more frequently if clinically indicated, and any abnormalities potentially related to treatment will be followed until they have resolved, or have been determined to not be treatment-related or until the participant's primary medical care is transferred from the principal investigator. ", "We have now successfully accrued 33 patients to this trial. ", "We are now gearing up to analyze immune responses generated by BCG alone and BCG+PANVAC. ", "We hope that these responses will demonstrate that the addition of PANVAC is inducing immunologic changes and we hope to correlate these changes with responses in patients. ", "We have done preliminary immune analysis on the first 16 patients enrolled on the trial and we see an increased antigen-specific T cell response to brachyury which is a cascade tumor antigen only in the combination group with BCG and PANVAC and not in the BCG only group. ", "This is encouraging as it suggests that the combination therapy offers a synergistic immune response." ]
{ "pile_set_name": "NIH ExPorter" }
[ 0.020833333333333332, 0.0136986301369863, 0.0076726342710997444, 0, 0, 0.007692307692307693, 0.010101010101010102, 0.022727272727272728, 0, 0.005263157894736842, 0.007751937984496124, 0.006097560975609756, 0.03007518796992481, 0.041666666666666664, 0.031914893617021274, 0, 0.015267175572519083, 0, 0.02654867256637168, 0.0030864197530864196, 0, 0.011235955056179775, 0.005780346820809248, 0.007352941176470588, 0 ]
0.010991
5
[ { "analysis_explanation": null, "end": 1117, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1100 }, { "analysis_explanation": null, "end": 1125, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1119 }, { "analysis_explanation": null, "end": 1135, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1127 }, { "analysis_explanation": null, "end": 1152, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1146 }, { "analysis_explanation": null, "end": 1199, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1193 }, { "analysis_explanation": null, "end": 1258, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1241 }, { "analysis_explanation": null, "end": 1436, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1429 }, { "analysis_explanation": null, "end": 1559, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1546 }, { "analysis_explanation": null, "end": 1567, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1561 }, { "analysis_explanation": null, "end": 1588, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1573 }, { "analysis_explanation": null, "end": 2276, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2262 }, { "analysis_explanation": null, "end": 2320, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2307 }, { "analysis_explanation": null, "end": 2635, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2626 }, { "analysis_explanation": null, "end": 2668, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 2666 } ]
[ "SAN BRUNO, Calif. — The father of YouTube shooter Nasim Aghdam apologized for her attack Wednesday and said he didn't understand how a woman who devoted so much energy to protecting animals could open fire on innocent people because of a grudge against the company.", "\n\n\"She never hurt one animal, one ant. ", "I don’t know how she did like this,\" Ismail Aghdam told reporters. \"", "I apologize to all the U.S. people, all the humans. ", "I am sorry. ", "I can’t believe it.\"", "\n\nAs evidence of his daughter's peaceful nature, he pointed to her \"movies\" — the dozens of videos about animal rights and veganism she posted on her website, social media accounts and YouTube channels.", "\n\nAghdam's family told NBC News that the 38-year-old San Diego resident believed that YouTube was discriminating against the videos she uploaded onto the site, restricting their viewership and cutting into her income.", "\n\nAnd police said that appeared to be the motive for Tuesday's attack at the YouTube campus in San Bruno, which left three people wounded and Aghdam dead of a self-inflicted gunshot wound.", "\n\nShe was upset with YouTube,\" San Bruno Police Chief Ed Barberini said at a news conference. ", "The investigation is ongoing, but police revealed new details about Aghdam's actions on Wednesday morning.", "\n\nHer family had not been able to contact her since Saturday and reported her missing on Monday, police said.", "\n\nOfficers in Mountain View, about 30 miles from San Bruno, found her early Tuesday sleeping in her car. ", "The woman confirmed her identity after police matched her license plate to the missing-person report, and her family was notified that she had been located.", "\n\n\"According to our report, at no point in our contact with the woman did she indicate she was a threat to herself or others,\" a Mountain View police official said.", "\n\nNasim Aghdam appears on a video posted on her website. ", "nasimesabz.com\n\nBarberini said his department was investigating reports that Aghdam's family told police that she \"hated\" YouTube and might be at its headquarters. ", "He said that message never made it to his team.", "\n\nAt some point later Tuesday morning, Aghdam visited a gun range in the area, Barberini said, declining to identify which one.", "\n\nThen, around lunchtime, she entered the YouTube campus through a parking garage and began shooting in the courtyard with a Smith & Wesson 9 mm semiautomatic handgun that she had bought legally, Barberini said.", "\n\nHe said Aghdam fired \"quite a few\" shots but there is no indication that she was targeting specific people. ", "When police arrived, they found one wounded victim on the site, two others who had fled to a neighboring building and Aghdam dead.", "\n\n\"I will tell you that the evidence at the scene suggests that she was not superproficient\" with a firearm, Barberini told NBC News. \"", "There seemed to be no kind of method or rhyme or reason to what she was doing.\"", "\n\nBy Wednesday morning, two of the victims had been treated at a hospital and released, and one remained in serious condition.", "\n\nAt the Menifee, Calif., home of Aghdam's parents, police and agents from the Bureau of Alcohol, Tobacco, Firearms and Explosives gathered evidence while relatives came and went.", "\n\nOne family member, who did not want to give her name, expressed frustration that police had not taken Aghdam into custody after she was found in her car and that she was allowed to buy a firearm without a psychiatric exam.", "\n\nMostly, she said, she was sad about what had happened. \"", "I am so sorry for those people shot,\" she told reporters.", "\n\nAghdam was an Iranian-born refugee who had lived in California since her late teens. ", "the relative said. ", "An extremist vegan, she was obsessive about animal rights, her social media accounts show." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.007547169811320755, 0, 0.014705882352941176, 0, 0, 0, 0.0049504950495049506, 0.013824884792626729, 0.010638297872340425, 0.031914893617021274, 0.009433962264150943, 0, 0, 0, 0, 0.017543859649122806, 0.006097560975609756, 0, 0.007874015748031496, 0.009478672985781991, 0.00909090909090909, 0.007692307692307693, 0.007407407407407408, 0, 0, 0.0111731843575419, 0.004464285714285714, 0, 0, 0.011494252873563218, 0, 0 ]
0.005792
5
[ { "analysis_explanation": null, "end": 9, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 17, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11 }, { "analysis_explanation": null, "end": 62, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50 }, { "analysis_explanation": null, "end": 98, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89 }, { "analysis_explanation": null, "end": 353, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 340 }, { "analysis_explanation": null, "end": 399, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 395 }, { "analysis_explanation": null, "end": 708, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 697 }, { "analysis_explanation": null, "end": 718, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 709 }, { "analysis_explanation": null, "end": 932, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 925 }, { "analysis_explanation": null, "end": 976, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 967 }, { "analysis_explanation": null, "end": 1020, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1014 }, { "analysis_explanation": null, "end": 1125, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1113 }, { "analysis_explanation": null, "end": 1250, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1241 }, { "analysis_explanation": null, "end": 1258, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1251 }, { "analysis_explanation": null, "end": 1318, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1310 }, { "analysis_explanation": null, "end": 1353, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1347 }, { "analysis_explanation": null, "end": 1393, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1380 }, { "analysis_explanation": null, "end": 1424, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1415 }, { "analysis_explanation": null, "end": 1449, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1436 }, { "analysis_explanation": null, "end": 1768, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1755 }, { "analysis_explanation": null, "end": 1803, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1791 }, { "analysis_explanation": null, "end": 1860, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 1846 }, { "analysis_explanation": null, "end": 1871, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1862 }, { "analysis_explanation": null, "end": 2085, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2078 }, { "analysis_explanation": null, "end": 2093, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2086 }, { "analysis_explanation": null, "end": 2101, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2095 }, { "analysis_explanation": null, "end": 2144, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2135 }, { "analysis_explanation": null, "end": 2387, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2378 }, { "analysis_explanation": null, "end": 2408, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2402 }, { "analysis_explanation": null, "end": 2626, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2620 }, { "analysis_explanation": null, "end": 2749, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2740 }, { "analysis_explanation": null, "end": 2859, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2850 }, { "analysis_explanation": null, "end": 2867, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2860 }, { "analysis_explanation": null, "end": 2986, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2979 }, { "analysis_explanation": null, "end": 2994, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2988 }, { "analysis_explanation": null, "end": 3494, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3488 }, { "analysis_explanation": null, "end": 3509, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3502 }, { "analysis_explanation": null, "end": 3550, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3540 } ]
[ "Environmental stability, high impact strength, resistance to flame and shock, and low cost are among the most important and desired characteristics for containers such as gun propellant casings.", "\nTo achieve strength and to resist flame and shock, however, it is generally necessary to limit or wholly replace casing materials of a high energetic nature, such as felted nitrocellulose casings with low energy polymeric material and to attempt to make up the difference by achieving a higher propellant-packing density.", "\nThe use of inert, tough organic compounds such as synthetic resins (U.S. Pat. ", "No. ", "3,749,023), polycarbonates, polysulfones and blends thereof with polyethylene (U.S. Pat. ", "No. ", "3,745,924), Polyethylene terphthalate (PET) (U.S. Pat. ", "No. ", "3,901,153), polyester film (U.S. Pat. ", "No. ", "4,282,813), or similar polymeric materials, however, are not fully satisfactory as substitutes for nitrocellulose (NC) felting, because of difficulty in carrying out firings without fouling a barrel and gun breach with partly consumed casing. ", "Such smoking residue also presents a serious air pollution and storage problem within the confines of a tank or similar vehicle under buttoned down combat conditions.", "\nAttempts at compromise, such as the use of thin sheets of plastic interspaced between traditional felted nitrocellulose layers (U.S. Pat. ", "No. ", "3,901,153) have resulted in some improvement in moisture resistance and handling properties, but have not succeeded in adequately addressing case combustion problems.", "\nThe present invention substantially increases consumability by increasing the amount of fragmentation and the resulting combustion of a propellant-charged gun propellant casing used in a conventional firing sequence. ", "In addition the practice of this invention obtains a consumable inert propellant casing having improved flame and shock resistance plus increased mechanical durability." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0, 0, 0, 0, 0, 0, 0.01818181818181818, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.00107
5
[ { "analysis_explanation": null, "end": 589, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 585 }, { "analysis_explanation": null, "end": 682, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 678 }, { "analysis_explanation": null, "end": 741, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 737 }, { "analysis_explanation": null, "end": 783, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 779 }, { "analysis_explanation": null, "end": 910, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 908 }, { "analysis_explanation": null, "end": 1335, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1331 } ]
[ "package com.sequenceiq.it.util;\n\npublic class ServerAddressGenerator {\n\n public static final int ADDRESS_RANGE = 254;\n\n private final int numberOfServers;\n\n private String prefix;\n\n private int from = 1;\n\n public ServerAddressGenerator(int numberOfServers) {\n this.numberOfServers = numberOfServers;\n prefix = \"192.168.\";", "\n }\n\n public void iterateOver(ServerAddressGeneratorFunction serverAddressGeneratorFunction) {\n int i = from / ADDRESS_RANGE;\n int j = from % ADDRESS_RANGE;\n int serverProduceCount = from + numberOfServers - 1;\n for (; i <= serverProduceCount / ADDRESS_RANGE; i++) {\n int subAddress = Integer.min(ADDRESS_RANGE, serverProduceCount - i * ADDRESS_RANGE);\n for (; j <= subAddress; j++) {\n serverAddressGeneratorFunction.doSomething(prefix + i + '.' ", "+ j);\n }\n j = 1;\n }\n }\n\n public void iterateOver(ServerAddressGeneratorWithNumberFunction serverAddressGeneratorWithNumberFunction) {\n int i = from / ADDRESS_RANGE;\n int j = from % ADDRESS_RANGE;\n int k = from;\n int serverProduceCount = from + numberOfServers - 1;\n for (; i <= serverProduceCount / ADDRESS_RANGE; i++) {\n int subAddress = Integer.min(ADDRESS_RANGE, serverProduceCount - i * ADDRESS_RANGE);\n for (; j <= subAddress; j++) {\n serverAddressGeneratorWithNumberFunction.doSomething(prefix + i + '.' ", "+ j, k);\n k++;\n }\n j = 1;\n }\n }\n\n public void setPrefix(String prefix) {\n this.prefix = prefix;\n }\n\n public void setFrom(int from) {\n this.from = from;\n }\n\n @FunctionalInterface\n public interface ServerAddressGeneratorFunction {\n void doSomething(String address);\n }\n\n @FunctionalInterface\n public interface ServerAddressGeneratorWithNumberFunction {\n void doSomething(String address, int number);\n }\n}" ]
{ "pile_set_name": "Github" }
[ 0, 0.0019342359767891683, 0.0016207455429497568, 0.0019723865877712033 ]
0.001382
5
[ { "analysis_explanation": null, "end": 25, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 8 }, { "analysis_explanation": null, "end": 289, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 282 }, { "analysis_explanation": null, "end": 836, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 803 }, { "analysis_explanation": null, "end": 1453, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1410 }, { "analysis_explanation": null, "end": 1618, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1611 }, { "analysis_explanation": null, "end": 1691, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1684 } ]
[ "Pakistan morgues run out of space as heat wave kills more than 1,000\n\nThe worst heat wave to hit Pakistan’s southern city of Karachi in 35 years has killed more than 1,000 people. ", "Morgues ran out of space and residents rushed to supply over-stretched public hospitals. ", "Tents offering iced water and rehydration salts have mushroomed on street corners, run by rival political parties and the military. ", "The heat wave in the city of 20 million people coincided with severe electricity cuts, leaving many without fans, water or light at the beginning of the holy month of Ramadan. ", "Temperatures shot up to 44 degrees Celsius, the hottest since 1981. ", "Forecasters have been predicting rain for days, but there has been no significant fall.", "\n\nCrops rally in El Nino year, but relief seen\nSurprisingly strong rains in the El Nino year, typically marked by droughts in parts of Asia, have eased concerns of a lower crop output in the region. ", "But weather forecasters are not convinced, warning of severe dryness in the autumn months. ", "There is relief for corn, oilseed and cotton output in India, and for palm supply from Indonesia and Malaysia.", "\n\nAsia stocks fall, euro drifts down as Greek crisis deepens\nAsian stocks fell on Friday as Greece failed to reach an agreement with its creditors and fell towards a default, while major currencies like the euro and dollar drifted in narrow ranges as the debt sidelined investors. ", "Financial spreadbetters expected Britain’s FTSE 100 to open down 0.3 per cent, Germany’s DAX as much as 0.2 percent lower and France’s CAC 40 at 0.4 percent lower. ", "Athens has to repay the International Monetary Fund.", "\n\nSaudi loses top-spot crude supplier to India, China\nSaudi Arabia lost its spot last month as India’s top oil supplier to Nigeria for the first time in last four years, according to ship tracking data compiled by Reuters. ", "It comes at a time when the world’s top crude exporter struggles to maintain market share in Asia. ", "The OPEC kingpin also fell behind Russia and Angola as the biggest crude supplier to China last month. ", "The Middle East country’s failure to maintain its position in some markets comes despite its leading strategy to keep output high to drive out competitors. ", "In India, refiners have been switching out of long-term contracts with Middle East suppliers in favour of spot purchases, often African oil.", "\n\nNorth Koreans hold Korean War anniversary rally\nNorth Korea held a mass rally to mark the 65th anniversary of the beginning of the Korean War on June 25 in Pyongyang. ", "In video provided by North Korea’s state news agency KCNA, thousands gathered at Kim Il Sung stadium, marching and chanting anti-US slogans.", "\n\nChina stocks slump on margin crackdown Boston Marathon bomber\nChina stocks fell more than 4 per cent as investors dumped shares as regulators cracked down on risky margin trading and on mounting uncertainty over the direction of Beijing’s monetary policy. ", "The CSI300 index was down 3.8 per cent at 4,525.76 points, while the SC Index tanked 4.1 per cent to 4,344.06 points.", "\n\nIS attacks Syrian army and Kurds in twin assault\nIslamic State fighters have launched simultaneous attacks against Syrian government and Kurdish militia forces. ", "The attacks by Islamic State follow a rapid advance by Kurdish-led forces deep into the group’s territory, to within 50 km of its de facto capital Raqqa.", "\n\nOneWeb sets record after $500 million funding\nPrivately owned OneWeb announced the world’s largest commercial rocket deal after raising $500 million from a group of global investors to support its plans to bring broadband to billions via satellite.", "The fund-raising attracted backing from Richard Branson’s Virgin Group and Europe’s Airbus Group which will also build 900 “micro-satellites” designed to extend the reach of the Internet to remote corners of the world.", "\n\nBoston bomber admits guilt for deadly 2013 attack\nBoston Marathon bomber Dzhokhar Tsarnaev apologised for the deadly 2013 attack at a hearing before a U.S. judge formally sentenced him to death for killing four people and injuring 264 in the bombing and its aftermath. ", "The 21 year old ethnic Chechen, referred to Allah and admitted that he and his now-dead older brother carried out one of the highest- profile attacks on U.S. soil. ‘", "I am sorry for the lives I have taken, for the suffering that I have caused you, for the damage I have done, irreparable damage,’ said Tsarnaev standing at the defence table.", "\n\nEurope considers migrant crisis\nBritain’s government is considering border reinforcements after what the prime minister’s calling unacceptable scenes of chaos involving migrants trying to reach the UK. ", "A strike by French ferry workers which also led to the closure of the Channel Tunnel prompted these scenes. ", "Migrants are seen trying to board UK-bound trucks forced to queue because of the stoppage. ", "More than 750 rescued from packed boats trying to cross the Mediterranean arrived at the Italian port of Palermo. ", "They’re from African nations like Eritrea, Nigeria and Sudan.", "\n\nDonors pledge $4.4 billion in Nepal quake aid Saudi Arabia lost its spot\nEarthquake-hit Nepal received pledges of aid worth $4.4 billion, or two-thirds of the amount needed over five years for reconstruction after a devastating earthquake that killed 8,832 people, two months ago. ", "Half of the money pledged at an international conference in Kathmandu is in the form of grants and the rest is in the form of concessional loans. ", "India and China alone pledged nearly $1.5 billion for impoverished Nepal.", "\n\nJapan surveillance plane fl ies over South China Sea\nA Japanese surveillance plane circled over disputed parts of the South China Sea at the start of a joint military exercise with the Philippines. ", "The plane flew over an energy- rich area claimed by both Beijing and Manila – prompting a warning from China’s foreign ministry. ", "Japan, has no claims in the hotly contested waters, but is concerned by China’s expanding maritime domination. ", "Its cooperation with the Philippines could be considered symbolic of tacit support for their territorial claims. ", "But for some in the Philippines, Japanese involvement brings back reminders of the past that are far from happy.", "\n\nCricket tycoon Lalit Modi declares war, rattles government\nPressure is growing on the foreign minister and a top member of the ruling party over help they gave to a disgraced cricket tycoon. ", "Foreign Minister Sushma Swaraj has faced days of scrutiny for her ties to Lalit Modi, scion of an industrial family who almost singlehandedly turned the Indian Premier League into the world’s richest. ‘", "This is war,’ declares Modi, who is not related to the Prime Minister. ", "He has used Twitter to attack opponents, such as Finance Minister Arun Jaitley and members of the opposition. ", "Dissent bubbled up in BJP with one MP saying Swaraj and Rajasthan Chief Minister Vasundhara Raje were wrong to have helped the tycoon in his bid for British travel papers." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.012195121951219513, 0.019230769230769232, 0.004484304932735426, 0, 0.009708737864077669, 0, 0, 0, 0.014285714285714285, 0.003875968992248062, 0.008547008547008548, 0, 0.013071895424836602, 0, 0.013761467889908258, 0.0036900369003690036, 0, 0.005747126436781609, 0, 0.009259259259259259, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.009900990099009901, 0, 0.01818181818181818, 0.011695906432748537 ]
0.003427
5
[ { "analysis_explanation": null, "end": 8, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 105, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97 }, { "analysis_explanation": null, "end": 132, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125 }, { "analysis_explanation": null, "end": 144, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 136 }, { "analysis_explanation": null, "end": 187, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 180 }, { "analysis_explanation": null, "end": 643, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 639 }, { "analysis_explanation": null, "end": 691, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 687 }, { "analysis_explanation": null, "end": 755, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 748 }, { "analysis_explanation": null, "end": 818, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 807 }, { "analysis_explanation": null, "end": 870, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 866 }, { "analysis_explanation": null, "end": 1019, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1002 }, { "analysis_explanation": null, "end": 1081, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1076 }, { "analysis_explanation": null, "end": 1117, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1108 }, { "analysis_explanation": null, "end": 1130, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1122 }, { "analysis_explanation": null, "end": 1136, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1132 }, { "analysis_explanation": null, "end": 1175, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1170 }, { "analysis_explanation": null, "end": 1196, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1191 }, { "analysis_explanation": null, "end": 1218, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1212 }, { "analysis_explanation": null, "end": 1228, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1222 }, { "analysis_explanation": null, "end": 1451, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1444 }, { "analysis_explanation": null, "end": 1497, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1490 }, { "analysis_explanation": null, "end": 1543, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1537 }, { "analysis_explanation": null, "end": 1581, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1575 }, { "analysis_explanation": null, "end": 1633, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1628 }, { "analysis_explanation": null, "end": 1672, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1667 }, { "analysis_explanation": null, "end": 1679, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1674 }, { "analysis_explanation": null, "end": 1692, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1680 }, { "analysis_explanation": null, "end": 1717, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1707 }, { "analysis_explanation": null, "end": 1726, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1721 }, { "analysis_explanation": null, "end": 1756, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1749 }, { "analysis_explanation": null, "end": 1794, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1779 }, { "analysis_explanation": null, "end": 1946, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1942 }, { "analysis_explanation": null, "end": 1988, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1982 }, { "analysis_explanation": null, "end": 1999, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1993 }, { "analysis_explanation": null, "end": 2038, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2033 }, { "analysis_explanation": null, "end": 2049, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2039 }, { "analysis_explanation": null, "end": 2066, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2055 }, { "analysis_explanation": null, "end": 2215, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2210 }, { "analysis_explanation": null, "end": 2289, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2278 }, { "analysis_explanation": null, "end": 2342, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2335 }, { "analysis_explanation": null, "end": 2361, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2348 }, { "analysis_explanation": null, "end": 2407, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2396 }, { "analysis_explanation": null, "end": 2500, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2493 }, { "analysis_explanation": null, "end": 2513, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2504 }, { "analysis_explanation": null, "end": 2549, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2536 }, { "analysis_explanation": null, "end": 2607, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2596 }, { "analysis_explanation": null, "end": 2646, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2639 }, { "analysis_explanation": null, "end": 2661, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2656 }, { "analysis_explanation": null, "end": 2723, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2718 }, { "analysis_explanation": null, "end": 2892, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2885 }, { "analysis_explanation": null, "end": 2922, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2916 }, { "analysis_explanation": null, "end": 3047, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3041 }, { "analysis_explanation": null, "end": 3062, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3057 }, { "analysis_explanation": null, "end": 3151, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3145 }, { "analysis_explanation": null, "end": 3174, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3167 }, { "analysis_explanation": null, "end": 3253, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3246 }, { "analysis_explanation": null, "end": 3343, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3338 }, { "analysis_explanation": null, "end": 3651, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3634 }, { "analysis_explanation": null, "end": 3675, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3669 }, { "analysis_explanation": null, "end": 3819, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3813 }, { "analysis_explanation": null, "end": 3855, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3851 }, { "analysis_explanation": null, "end": 3903, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3886 }, { "analysis_explanation": null, "end": 3934, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3930 }, { "analysis_explanation": null, "end": 3968, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3964 }, { "analysis_explanation": null, "end": 4097, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4086 }, { "analysis_explanation": null, "end": 4112, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4105 }, { "analysis_explanation": null, "end": 4239, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4235 }, { "analysis_explanation": null, "end": 4391, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4383 }, { "analysis_explanation": null, "end": 4429, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4423 }, { "analysis_explanation": null, "end": 4462, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4455 }, { "analysis_explanation": null, "end": 4623, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4621 }, { "analysis_explanation": null, "end": 4643, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4637 }, { "analysis_explanation": null, "end": 4769, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4767 }, { "analysis_explanation": null, "end": 4897, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4884 }, { "analysis_explanation": null, "end": 4920, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4913 }, { "analysis_explanation": null, "end": 4936, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4929 }, { "analysis_explanation": null, "end": 4958, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4951 }, { "analysis_explanation": null, "end": 4979, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4972 }, { "analysis_explanation": null, "end": 4988, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4981 }, { "analysis_explanation": null, "end": 4998, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4993 }, { "analysis_explanation": null, "end": 5035, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5030 }, { "analysis_explanation": null, "end": 5058, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5046 }, { "analysis_explanation": null, "end": 5093, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5088 }, { "analysis_explanation": null, "end": 5188, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5178 }, { "analysis_explanation": null, "end": 5279, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5265 }, { "analysis_explanation": null, "end": 5350, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5341 }, { "analysis_explanation": null, "end": 5432, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5427 }, { "analysis_explanation": null, "end": 5442, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5437 }, { "analysis_explanation": null, "end": 5499, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5494 }, { "analysis_explanation": null, "end": 5506, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5501 }, { "analysis_explanation": null, "end": 5553, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5538 }, { "analysis_explanation": null, "end": 5564, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5556 }, { "analysis_explanation": null, "end": 5634, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5615 }, { "analysis_explanation": null, "end": 5697, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5686 }, { "analysis_explanation": null, "end": 5763, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5756 }, { "analysis_explanation": null, "end": 5774, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5768 }, { "analysis_explanation": null, "end": 5807, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5802 }, { "analysis_explanation": null, "end": 5833, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5828 }, { "analysis_explanation": null, "end": 5905, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5900 }, { "analysis_explanation": null, "end": 5975, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5964 }, { "analysis_explanation": null, "end": 6083, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6072 }, { "analysis_explanation": null, "end": 6093, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6085 }, { "analysis_explanation": null, "end": 6190, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6180 }, { "analysis_explanation": null, "end": 6386, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6373 }, { "analysis_explanation": null, "end": 6401, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6397 }, { "analysis_explanation": null, "end": 6440, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6430 }, { "analysis_explanation": null, "end": 6586, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6582 }, { "analysis_explanation": null, "end": 6708, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6701 }, { "analysis_explanation": null, "end": 6791, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6785 }, { "analysis_explanation": null, "end": 6805, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6796 }, { "analysis_explanation": null, "end": 6836, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6821 }, { "analysis_explanation": null, "end": 6896, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6889 } ]
[ "Roll Off Trucks For Sale In Ohio\n\n10 The Jerr-DanJerr-Dan trucks bring contracts The company's first Jerr-Dan vehicle was a standard-duty rollback carrier to be added to the hunter Auto & Wrecker service fleet. ", "here it easily lifts a cement mixer off the for Wreckers Ltd. customers and potential customers, according to Marion, is service after the sale. ... ", "View Document\n\nCOUNCIL OF THE VILLAGE OF MINGO JUNCTION, OHIOCOUNCIL OF THE VILLAGE OF MINGO JUNCTION, OHIO REGULAR COUNCIL MEETING 7:00 PM August 14, 2007 Call to ROLL CALL The following Council Members answered Roll Call: John Bracone A Domenic Chappano P Stephen Safety Morrocco states that he received a complaint that any time Pesta has a delivery, the trucks ... Fetch Document\n\nUrea/Diesel Exhaust Fluid SupplyIn order to ensure a smooth roll out of DEF infrastructure, National Fire Protection Association So, it's likely that most heavy duty trucks will top off DEF tanks during every second or third fuel fills. ", "needs, but the right mix of equipment means nothing to you if there is no service after the sale. ... ", "Retrieve Doc\n\nPersonal Property Tax“tax roll” received from the assessor. ", "The Department of Revenue is also off-road and not primarily designed for use on public streets or highways, manufactured for sale, and livestock. (", "Property held for lease/ ... Return Document\n\nSemi-trailer truck - Wikipedia, The Free EncyclopediaSome trucks are made with only six tires these trucks are normally use for shorter trailers or for In general, these types of setups are restricted to tolled turnpikes, such as I-80 through Ohio and 18 Wheels of Steel series \"MotorStorm\" \"Motorstorm: Pacific Rift\" Rig 'n' Roll (2009) ... Read Article\n\nSOLID WASTE AUTHORITY OF CENTRAL OHIOThese trucks will be used to service the Columbus School drop-off program. ", "The motion was adopted by roll call vote, Trustees Briscoe, Bush Resolution 111-07 providing for the authorization and sale of bonds of the Solid Waste Authority of Central Ohio in ... Return Doc\n\nRECORD OF PROCEEDINGS VILLAGE OF AMELIAROLL CALL SHOWED THE FOLLOWING MEMBERS PRESENT: LEROY ELLINGTON, ANDREW PARKER, MOLLY PARKER He said you couldn't see the lighting on the trucks until you were upon them. ", "BETWEEN THE VILLAGE OF AMELIA AND TULANE ENTERPRISES, LLC OF 2018 PLUMB LANE, BATAVIA, OHIO 45103 FOR THE SALE OF ... View Full Source\n\nBrooklyn, NY Sitemap - Page 7With a great sound system and spacious auditorium just off the Bedford L stop More information on the condominiums for sale at Northside Piers in Prospect Park Closed for Marathon & Other Runners: Rock n Roll Race Arrives in Prospect Park Oct. 24, 2011: Start the Week off With a Bang, End ... Read Article\n\nWAGE AND PAYROLL - DAVIS- BACONMaterial delivery trucks while off the site of the work. ", "b. Truck drivers of a prime contractor or subcontractor traveling between a DBRA covered project and a commercial supply facility while they are off the site of the work. ", "c. Truck drivers whose time spent on the site of the work is de ... Read Here\n\nMonster truck - Wikipedia, The Free EncyclopediaTrucks are equipped three kill switches: the RII (Remote Ignition Interrupt), one within the driver's reach in the cab, and another at the rear of the truck so that all electrical power may be shut off in the event of a rollover. ", "Many trucks are constructed with the driver sitting in the center of ... Read Article\n\nTarping NewsTarp does not roll up straight Tarp is not square. ", "Sign up today! ", "www.pulltarps.com Once you are added to our E-mail list, you will get 5% off your next Ken from Bluebird Construction in Canada says they bought 6 Slope Detectors to put on the trucks to ... Content Retrieval" ]
{ "pile_set_name": "Pile-CC" }
[ 0.004739336492890996, 0.013422818791946308, 0.012861736334405145, 0, 0.013513513513513514, 0.006756756756756757, 0.007782101167315175, 0.012285012285012284, 0.0053475935828877, 0.005847953216374269, 0.0056022408963585435, 0.006666666666666667, 0, 0.019230769230769232 ]
0.008147
5
[ { "analysis_explanation": null, "end": 32, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28 }, { "analysis_explanation": null, "end": 327, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 321 }, { "analysis_explanation": null, "end": 506, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 492 }, { "analysis_explanation": null, "end": 515, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 507 }, { "analysis_explanation": null, "end": 596, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 584 }, { "analysis_explanation": null, "end": 617, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 599 }, { "analysis_explanation": null, "end": 1123, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1084 }, { "analysis_explanation": null, "end": 1600, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1596 }, { "analysis_explanation": null, "end": 1669, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1657 }, { "analysis_explanation": null, "end": 1689, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1685 }, { "analysis_explanation": null, "end": 2135, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2129 }, { "analysis_explanation": null, "end": 2293, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2289 }, { "analysis_explanation": null, "end": 2376, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2374 }, { "analysis_explanation": null, "end": 2646, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2632 }, { "analysis_explanation": null, "end": 2661, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2653 }, { "analysis_explanation": null, "end": 2740, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2727 }, { "analysis_explanation": null, "end": 2797, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2789 }, { "analysis_explanation": null, "end": 2968, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2960 }, { "analysis_explanation": null, "end": 3480, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3475 }, { "analysis_explanation": null, "end": 3609, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3603 }, { "analysis_explanation": null, "end": 3499, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3482 } ]
[ "News\n\nNews Releases are added to our web site immediately upon release to the general public. ", "If you would like to receive news releases via e-mail please click here.", "\n\nNews Releases\n\nMar 07, 2018\n\nSTUNSAIL-6 AND KALLADEINA NORTH-1 ON EX PEL 91 BOTH SUCCESSFUL\n\nVancouver, British Columbia, March 7th, 2018. ", "Newport Exploration Ltd (\"Newport\" or \"the Company\") is pleased to provide an activity update on licenses in the Cooper Basin, Australia over which the Company has a 2.5% gross overriding royalty. ", "This information was reported by Beach Energy Ltd (\"Beach\") (ASX: BPT) in a news release dated 7th March, 2018, and reference should be made to their website for their interpretation of the results and any plans to bring wells into production.", "\n\nDEVELOPMENT\n\nWestern Flank Oil - ex PEL 91\n\nBeach report its operated drilling program returned to the Stunsail Field, located approximately 16 kilometres northeast of the Bauer Field, to undertake the second phase of the full field development project. ", "The second phase is to comprise two horizontal wells, one targeting the Birkhead Formation and one targeting the McKinlay Member with final well plans incorporating data obtained from the two vertical wells of the first phase of the development project completed in January.", "\n\nStunsail-6 the first well of the second phase targeted horizontal development of the Birkhead Formation. ", "This well is the first horizontal well within the Birkhead Formation on the Western Flank, and is designed to develop the Birkhead reservoir and evaluate the effectiveness of the development technique within the reservoir. ", "The well drilled a 585 metre lateral section where it encountered 203 metres of net oil pay and is to be completed as a future Birkhead producer. ", "It is anticipated that the well will be brought online in Q4 FY2018.", "\n\nEXPLORATION AND APPRAISAL\n\nWestern Flank Oil - ex PEL 91\n\nBeach report that it completed a two-well oil appraisal campaign of the Kalladeina Field, located approximately 10 to 15 kilometres north northeast of the Bauer Field. ", "The aim of the campaign was to extend the proven limits of the field to allow future in-fill development. ", "The Kalladeina Field has recently been re-mapped utilising the Solidus 3D seismic survey incorporating outputs from the velocity modelling project. ", "This project identified a potential extension of the Kalladeina Field to the north of existing well control.", "\n\nThe second appraisal well, Kalladeina North-1, was drilled approximately 2 kilometres north of the recent Kalladeina-3 appraisal well and targeted the McKinlay Member as a primary objective with the Namur Sandstone as a secondary objective. ", "The well intersected a six metre oil column within the McKinlay Member, within which 2.5 metres of net pay was interpreted. ", "The well was cased and suspended as a future McKinlay oil producer. ", "This well may also provide a depth control point for future McKinlay Member horizontal development drilling in the Kalladeina Field.", "\n\nGuidance\n\nThe Company receives its gross overriding royalty from the operator who is not a reporting issuer in Canada, and therefore, not required to comply with the requirements of NI 51-101 - Standards of Disclosure for Oil and Gas Activities hence, Newport is not able to confirm if the disclosure satisfies the requirements of NI 51-101 - Standards of Disclosure for Oil and Gas Activities, or other requirements of Canadian securities legislation.", "\n\nThe Company is unable to forecast potential productivity for each well and continues to strongly encourage shareholders and potential investors to access information released independently by Beach and Santos Ltd to keep current during exploration, development and production guidance of all the licences subject to the Company's gross overriding royalty.", "\n\nNeither the TSX Venture Exchange nor its Regulation Services Provider (as that term is defined in the policies of the TSX Venture Exchange) accepts responsibility for the accuracy or adequacy of this news release.", "\n\nCautionary Statement on Forward-Looking Information\n\nThis news release is intended to provide readers with a reasonable basis for assessing the financial performance of the Company. ", "The words \"believe\", \"should\", \"could\", \"expect\", \"anticipate\", \"contemplate\", \"target\", \"plan\", \"intends\", \"continue\", \"budget\", \"estimate\", \"may\", \"will\", \"schedule\" and similar expressions identify forward-looking statements. ", "Forward-looking statements may pertain to assumptions regarding the price of oil and fluctuations in currency markets (specifically the Australian dollar). ", "Forward-looking statements are based upon a number of estimates and assumptions that, which are considered reasonable by the Company, are inherently subject to business, economic and competitive uncertainties and contingencies. ", "Factors include, but are not limited to, the risk of fluctuations in the assumed prices of oil, the risk of changes in government legislation including the risk of obtaining necessary licences and permits, taxation, controls, regulations and political or economic developments in Canada, Australia or other countries in which the Company carries or may carry on business in the future, risks associated with developmental activities, the speculative nature of exploration and development, and assumed quantities or grades of reserves. ", "Readers are cautioned that forward-looking statements are not guarantees of future performance. ", "There can be no assurance that such statements will prove to be accurate and actual results and future events could differ materially from those acknowledged in such statements.", "\n\nThe Company disclaims any intention or obligation to update or revise any forward-looking statements whether as a result of new information, future events or otherwise, except to the extent required by applicable laws." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0.02127659574468085, 0.01015228426395939, 0.012345679012345678, 0.00390625, 0.0036496350364963502, 0.009345794392523364, 0.013452914798206279, 0.00684931506849315, 0.014705882352941176, 0.0043859649122807015, 0, 0, 0, 0, 0.008064516129032258, 0.014705882352941176, 0.007575757575757576, 0.006607929515418502, 0.0056022408963585435, 0.013953488372093023, 0.005434782608695652, 0, 0, 0.0043859649122807015, 0.001869158878504673, 0, 0, 0.004545454545454545 ]
0.005761
5
[ { "analysis_explanation": null, "end": 194, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 182 }, { "analysis_explanation": null, "end": 269, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 260 }, { "analysis_explanation": null, "end": 287, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 271 }, { "analysis_explanation": null, "end": 304, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 289 }, { "analysis_explanation": null, "end": 431, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 415 }, { "analysis_explanation": null, "end": 442, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 433 }, { "analysis_explanation": null, "end": 613, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 598 }, { "analysis_explanation": null, "end": 1122, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1114 }, { "analysis_explanation": null, "end": 1274, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1267 }, { "analysis_explanation": null, "end": 1286, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1276 }, { "analysis_explanation": null, "end": 1817, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1808 }, { "analysis_explanation": null, "end": 2445, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2435 }, { "analysis_explanation": null, "end": 2567, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2559 }, { "analysis_explanation": null, "end": 2712, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2704 }, { "analysis_explanation": null, "end": 2826, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2818 }, { "analysis_explanation": null, "end": 2909, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2901 }, { "analysis_explanation": null, "end": 2972, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2952 }, { "analysis_explanation": null, "end": 3091, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3085 }, { "analysis_explanation": null, "end": 3402, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3394 }, { "analysis_explanation": null, "end": 3624, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3619 }, { "analysis_explanation": null, "end": 4554, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4544 }, { "analysis_explanation": null, "end": 5078, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5072 }, { "analysis_explanation": null, "end": 5089, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5080 }, { "analysis_explanation": null, "end": 1810, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 1808 }, { "analysis_explanation": null, "end": 1817, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 1811 } ]
[ "US Equity Markets\n\nToday’s US Equity Market Commentary reviews the week commencing February 26th, 2017. ", "The Dollar Index is looking good on the monthly time-frame. ", "We may be looking for a pullback on the monthly chart, like we’ve seen recently on the weekly chart. ", "Lower time-frames look slightly less decisive, but overall trend strength is pretty easily identifiable.", "\n\nRun time: 7:55 minutes\n\nUS Equity Markets\n\nThe Dollar Index is looking good on the monthly time-frame. ", "We may be looking for a pullback on the monthly chart, like we’ve seen recently on the weekly chart. ", "Lower time-frames look slightly less decisive, but overall trend strength is pretty easily identifiable.", "\n\nFor more from Toby including a big picture view of the MSCI Emerging Markets Index, please visit ICE Market Commentary.", "\n\nFutures, foreign currency and options trading contains substantial risk and is not for every investor. ", "An investor could potentially lose all or more than the initial investment. ", "Risk capital is money that can be lost without jeopardizing ones financial security or lifestyle. ", "Only risk capital should be used for trading and only those with sufficient risk capital should consider trading. ", "Past performance is not necessarily indicative of future results. ", "View Full Risk Disclosure." ]
{ "pile_set_name": "Pile-CC" }
[ 0.009615384615384616, 0, 0, 0, 0, 0, 0, 0.024793388429752067, 0, 0, 0, 0, 0, 0 ]
0.002458
5
[ { "analysis_explanation": null, "end": 71, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63 }, { "analysis_explanation": null, "end": 102, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83 }, { "analysis_explanation": null, "end": 151, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 144 }, { "analysis_explanation": null, "end": 211, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204 }, { "analysis_explanation": null, "end": 257, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 251 }, { "analysis_explanation": null, "end": 392, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 380 }, { "analysis_explanation": null, "end": 460, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 453 }, { "analysis_explanation": null, "end": 520, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 513 }, { "analysis_explanation": null, "end": 566, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 560 }, { "analysis_explanation": null, "end": 697, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 693 } ]
[ "MeningerDette er et debattinnlegg. ", "Innlegget gir uttrykk for skribentens holdninger.", "Hva er vår tids største utfordring? ", "Klimaendringer? ", "Polarisering? ", "Psykisk helse?", "\n\nJeg er fristet til å dra en dystopisk Ole Brumm og si «ja takk, alle tre», for jeg mener de henger sammen.", "\n\nAngst og usikkerhet bidrar til frykt og fiendebilder. ", "Skillelinjer og uforsonlighet hindrer oss fra å løse de store samfunnsproblemene. ", "En usikker framtid avler mer stress og bekymring.", "\n\nMin påstand er likevel at vi må reparere oss selv før vi kan kurere noe annet. ", "Den ble jeg enda mer trygg på etter å ha lest den nye Ungdata-undersøkelsen – som nesten er for vond til å være sann.", "\n\nLES OGSÅ: Undersøkelse: – Vi ser en økning av hærverk, hasjbruk og nasking hos gutter\n\nHold deg fast! ", "24 % av jentene på ungdomsskolen og videregående i Norge gruer seg til å gå på skolen. ", "Mellom 29-49% av VGS-elevene har opplevd plager som depresjon, håpløshet og bekymring. ", "Kun 57 % av ungdomsskolebarna har aldri blitt utsatt for plaging, trusler eller utfrysing av andre unge.", "\n\nI Drammen er det enda verre.", "\n\n...mange dager er en jævlig kamp for å holde hodet over vannet.", "\n\nBlant VGS-elevene i kommunen vår tror kun 66 % at de får et lykkelig liv. ", "27 % er mye plaget av ensomhet. ", "Nesten en firedel er mye plaget av depressive symptomer. ", "Alle tallene er høyere enn landsgjennomsnittet. ", "Videregåendeelevene i Drammen blir mobbet – og mobber – oftere enn jevnaldrende i landet for øvrig.", "\n\nSelvmord er den verste konsekvensen av psykisk uhelse.", "\n\nHeldigvis ligger Norge «bare» midt på skalaen i Europa. ", "Men – i snitt tar en pasient i norsk psykisk helsevern sitt eget liv annenhver dag! ", "Vi er verdens rikeste land og har alle forutsetninger for å lykkes med folkehelsearbeid. ", "Hvorfor er vi da så langt unna nullvisjonen for selvmord?", "\n\nSelv er jeg blant de forholdsvis få som kan leve med en tung psykisk sykdom – i mitt tilfelle bipolar lidelse – uten å falle på utsiden.", "\n\nHele mitt voksne liv har jeg hatt gode lederstillinger, tunge verv og god lønn. ", "Jeg er heldig. ", "Samtidig kan jeg signere på at mange dager er en jævlig kamp for å holde hodet over vannet. ", "Fordommene om psykisk sykdom har visstnok blitt mindre de siste årene. ", "Vi som lever på innsiden av bobla opplever det ikke nødvendigvis slik.", "\n\nUtallige ganger har jeg oppgitt «feber, influensa, forkjøla» som egenmeldingsårsak når realiteten var «verden var for svart til at jeg klarte å stå opp av senga».", "\n\nJeg har blitt flinkere til å akseptere meg selv, og være ærlig om hvilke utfordringer jeg har og hvilken tilpasning jeg trenger. ", "Men mange med psykiske sykdommer velger heller å gjemme seg vekk – for å ikke være til plage for samfunnet, venner og familie. ", "I Japan finnes begrepet «hikikomoro» – en tilstand av komplett isolasjon fra samfunnet – trolig siste stasjon før man velger å avslutte elendigheten. ", "Ungdata-tallene tyder på at det raskt kan bli flere i klubben her i Norge.", "\n\nPolitikere, organisasjonsledere og eksperter har i årevis snakket om at «psykisk helse er den nye folkesykdommen». ", "Men hva har vi egentlig gjort?", "\n\nPolitiske tiltak preges av virkningsløse holdningskampanjer\n\nForslaget om at psykisk helse må bli et eget fag i skolen ble fremmet for første gang i 2002. ", "I fjor fikk sju niendeklasser ved Ugla ungdomsskole i Trondheim tilbudet om faget «Livsmestring» – som aller første skole i Norge – noensinne! ", "Politiske tiltak preges av virkningsløse holdningskampanjer, diverse innstiftede «dager» og endeløse utredninger.", "\n\nDette holder ikke.", "\n\nMitt parti – Miljøpartiet de Grønne – inviterer resten av det politiske Drammen til å bli med på tidenes krafttak for psykisk helse.", "\n\nLa oss:\n\nGjøre et prøveprosjekt med psykisk helse som fag på så mange trinn som mulig på alle skolene våre.", "\n\n\n\nStyrke antallet lærere og barnehagelærere. ", "Grunnlaget for god psykisk helse ligger i tidlig etablering av nære og trygge relasjoner. ", "Derfor trenger vi flere fagpersoner som barna våre kan støtte seg på, prate med og stole på.", "\n\n\n\nStyrke Ungdomshuset G60 og andre ungdomsklubber. ", "Jeg har selv vært mentor på G60 og sett et miljø hvor ungdommer får muligheter til å bli utfordret, tatt på alvor og akseptert på måter skolen ikke kan gi dem, og oppnå sosiale relasjoner mange ikke ville fått ellers.", "\n\n\n\nStyrke lavterskeltilbudene i kultur og idrett. ", "Et godt eksempel er barnekorene til Strømsgodset Menighet, hvor unger få delta for kun en hundrelapp i halvåret. ", "Står det ekstra dårlig til hjemme får de det helt gratis. ", "Barna gis et etterlengtet sosialt miljø, en scene å stå på hvor de utvikler selvtillit, og kunstnerisk kompetanse som de kan bruke i mange andre sammenhenger seinere i livet.", "\n\n\n\nEtablere et samarbeidsforum for alle som har med barn og ungdom å gjøre – skole, barnehage, idrettslag, foreninger, ungdomsklubber og andre. ", "De forskjellige instanser bryr seg ofte bare om skoleeleven, eller fotballspilleren, eller arbeideren. ", "Hvem er personen bak disse rollene?", "\n\n\n\nBruke de sterke, unge stemmene blant influencerne og bloggerne som ressurser og fagkompetanse. ", "Her i Drammen er f.eks. ", "Annijor, Ingrid Bruun og Iselin Guttormsen forbilder for hundretusenvis av unge mennesker. ", "Hvorfor er ikke disse representert i fagråd, komiteer og utvalg?", "\n\n\n\nStyrke lavterskel-møtepunkter som treffstedene til Mental Helse Ungdom.", "\n\nI dag markerer vi en nitrist dato – Verdensdagen for selvmordsforebygging.", "\n\nEn gang håper jeg Norge ikke trenger å delta i denne dagen lenger. ", "Lite tyder på at det er nært forestående. ", "Dersom vi fortsetter å la oss selv bukke under for press, depresjoner og angst, så vil vi heller aldri klare å samarbeide om å løse de virkelig store problemene.", "\n\nVi må gjøre noe nå.", "\n\nLES OGSÅ:" ]
{ "pile_set_name": "OpenWebText2" }
[ 0.02857142857142857, 0, 0.027777777777777776, 0, 0, 0.07142857142857142, 0.027777777777777776, 0, 0, 0, 0, 0.008547008547008548, 0, 0.011494252873563218, 0, 0, 0, 0, 0.039473684210526314, 0, 0, 0, 0.010101010101010102, 0, 0.017241379310344827, 0, 0, 0, 0.007246376811594203, 0.012195121951219513, 0.06666666666666667, 0, 0.014084507042253521, 0.014285714285714285, 0.012195121951219513, 0, 0, 0, 0.013513513513513514, 0, 0, 0, 0.006993006993006993, 0, 0, 0.014925373134328358, 0, 0, 0, 0.010869565217391304, 0.018867924528301886, 0.013824884792626729, 0, 0.017699115044247787, 0, 0, 0.006896551724137931, 0, 0, 0.010101010101010102, 0, 0.01098901098901099, 0.015625, 0.02666666666666667, 0.013157894736842105, 0.014492753623188406, 0, 0.006211180124223602, 0, 0 ]
0.008142
5
[ { "analysis_explanation": null, "end": 72, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 61 }, { "analysis_explanation": null, "end": 135, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 121 }, { "analysis_explanation": null, "end": 169, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 166 }, { "analysis_explanation": null, "end": 193, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 185 }, { "analysis_explanation": null, "end": 213, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 194 }, { "analysis_explanation": null, "end": 228, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 221 }, { "analysis_explanation": null, "end": 239, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 230 }, { "analysis_explanation": null, "end": 264, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 245 }, { "analysis_explanation": null, "end": 309, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 304 }, { "analysis_explanation": null, "end": 372, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 343 }, { "analysis_explanation": null, "end": 481, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 459 }, { "analysis_explanation": null, "end": 519, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 500 }, { "analysis_explanation": null, "end": 530, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 527 }, { "analysis_explanation": null, "end": 654, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 645 }, { "analysis_explanation": null, "end": 709, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 682 }, { "analysis_explanation": null, "end": 790, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 766 }, { "analysis_explanation": null, "end": 820, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 809 }, { "analysis_explanation": null, "end": 851, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 845 }, { "analysis_explanation": null, "end": 885, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 874 }, { "analysis_explanation": null, "end": 1011, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 998 }, { "analysis_explanation": null, "end": 1035, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1012 }, { "analysis_explanation": null, "end": 1064, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1054 }, { "analysis_explanation": null, "end": 1098, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1087 }, { "analysis_explanation": null, "end": 1116, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1103 }, { "analysis_explanation": null, "end": 1147, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1130 }, { "analysis_explanation": null, "end": 1171, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1159 }, { "analysis_explanation": null, "end": 1225, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1212 }, { "analysis_explanation": null, "end": 1242, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1236 }, { "analysis_explanation": null, "end": 1541, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1513 }, { "analysis_explanation": null, "end": 1550, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1544 }, { "analysis_explanation": null, "end": 1580, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1558 }, { "analysis_explanation": null, "end": 1634, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1612 }, { "analysis_explanation": null, "end": 1689, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1666 }, { "analysis_explanation": null, "end": 1750, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1725 }, { "analysis_explanation": null, "end": 1787, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1783 }, { "analysis_explanation": null, "end": 1884, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1863 }, { "analysis_explanation": null, "end": 1974, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1920 }, { "analysis_explanation": null, "end": 1998, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1990 }, { "analysis_explanation": null, "end": 2003, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2000 }, { "analysis_explanation": null, "end": 2031, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2015 }, { "analysis_explanation": null, "end": 2075, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2064 }, { "analysis_explanation": null, "end": 2093, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2080 }, { "analysis_explanation": null, "end": 2176, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2129 }, { "analysis_explanation": null, "end": 2193, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2178 }, { "analysis_explanation": null, "end": 2220, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2206 }, { "analysis_explanation": null, "end": 2229, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2225 }, { "analysis_explanation": null, "end": 2257, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2249 }, { "analysis_explanation": null, "end": 2272, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2265 }, { "analysis_explanation": null, "end": 2362, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2336 }, { "analysis_explanation": null, "end": 2376, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2367 }, { "analysis_explanation": null, "end": 2403, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2397 }, { "analysis_explanation": null, "end": 2419, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2412 }, { "analysis_explanation": null, "end": 2440, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2439 }, { "analysis_explanation": null, "end": 2459, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2451 }, { "analysis_explanation": null, "end": 2474, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2464 }, { "analysis_explanation": null, "end": 2508, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2485 }, { "analysis_explanation": null, "end": 2539, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2509 }, { "analysis_explanation": null, "end": 2580, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2551 }, { "analysis_explanation": null, "end": 2589, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2588 }, { "analysis_explanation": null, "end": 2605, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2597 }, { "analysis_explanation": null, "end": 2623, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2614 }, { "analysis_explanation": null, "end": 2675, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2670 }, { "analysis_explanation": null, "end": 2763, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2757 }, { "analysis_explanation": null, "end": 2794, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2786 }, { "analysis_explanation": null, "end": 2816, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2795 }, { "analysis_explanation": null, "end": 2924, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2905 }, { "analysis_explanation": null, "end": 2941, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2928 }, { "analysis_explanation": null, "end": 2961, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2944 }, { "analysis_explanation": null, "end": 3022, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3012 }, { "analysis_explanation": null, "end": 3048, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3039 }, { "analysis_explanation": null, "end": 3109, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3066 }, { "analysis_explanation": null, "end": 3192, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3188 }, { "analysis_explanation": null, "end": 3223, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3206 }, { "analysis_explanation": null, "end": 3232, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3224 }, { "analysis_explanation": null, "end": 3257, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3248 }, { "analysis_explanation": null, "end": 3315, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3303 }, { "analysis_explanation": null, "end": 3335, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3316 }, { "analysis_explanation": null, "end": 3396, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3364 }, { "analysis_explanation": null, "end": 3456, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3451 }, { "analysis_explanation": null, "end": 3468, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3464 }, { "analysis_explanation": null, "end": 3480, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3470 }, { "analysis_explanation": null, "end": 3549, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3542 }, { "analysis_explanation": null, "end": 3609, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3603 }, { "analysis_explanation": null, "end": 3726, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3711 }, { "analysis_explanation": null, "end": 3793, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3781 }, { "analysis_explanation": null, "end": 3802, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3796 }, { "analysis_explanation": null, "end": 3813, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3803 }, { "analysis_explanation": null, "end": 3821, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3817 }, { "analysis_explanation": null, "end": 3842, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3825 }, { "analysis_explanation": null, "end": 3879, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3862 }, { "analysis_explanation": null, "end": 3898, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3880 }, { "analysis_explanation": null, "end": 3912, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3906 }, { "analysis_explanation": null, "end": 3984, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3964 }, { "analysis_explanation": null, "end": 3993, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3986 }, { "analysis_explanation": null, "end": 4064, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4050 }, { "analysis_explanation": null, "end": 4173, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4149 }, { "analysis_explanation": null, "end": 4195, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4180 }, { "analysis_explanation": null, "end": 4230, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4204 }, { "analysis_explanation": null, "end": 4239, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4233 }, { "analysis_explanation": null, "end": 4270, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4254 }, { "analysis_explanation": null, "end": 4308, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4287 }, { "analysis_explanation": null, "end": 4372, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4364 }, { "analysis_explanation": null, "end": 4386, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4380 }, { "analysis_explanation": null, "end": 4431, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4422 }, { "analysis_explanation": null, "end": 4461, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4435 }, { "analysis_explanation": null, "end": 4508, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4498 }, { "analysis_explanation": null, "end": 4552, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4525 }, { "analysis_explanation": null, "end": 4579, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4561 }, { "analysis_explanation": null, "end": 4653, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4629 }, { "analysis_explanation": null, "end": 4753, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4738 }, { "analysis_explanation": null, "end": 4772, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4764 }, { "analysis_explanation": null, "end": 4821, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4799 }, { "analysis_explanation": null, "end": 4839, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4823 }, { "analysis_explanation": null, "end": 4861, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4849 }, { "analysis_explanation": null, "end": 4892, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4877 }, { "analysis_explanation": null, "end": 5003, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4996 }, { "analysis_explanation": null, "end": 5017, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5005 }, { "analysis_explanation": null, "end": 5097, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5087 }, { "analysis_explanation": null, "end": 5102, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5098 }, { "analysis_explanation": null, "end": 5140, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5132 }, { "analysis_explanation": null, "end": 5198, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5152 }, { "analysis_explanation": null, "end": 5244, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5226 }, { "analysis_explanation": null, "end": 5257, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5245 }, { "analysis_explanation": null, "end": 5272, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5260 }, { "analysis_explanation": null, "end": 5364, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5346 }, { "analysis_explanation": null, "end": 5386, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5383 }, { "analysis_explanation": null, "end": 5437, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5429 }, { "analysis_explanation": null, "end": 5448, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5438 }, { "analysis_explanation": null, "end": 5516, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5505 }, { "analysis_explanation": null, "end": 5529, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5517 }, { "analysis_explanation": null, "end": 5585, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5570 }, { "analysis_explanation": null, "end": 1071, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1066 }, { "analysis_explanation": null, "end": 3960, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 3957 }, { "analysis_explanation": null, "end": 4017, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 4014 } ]
[ "Description\n\nBorderlands 2 fan art.", "\n\nI was such a big fan of Gearbox’s rpg fps that I decided to make a grown-up version of one of the NPCs: the deadliest 13 year-old girl on Pandora and explosive expert, Tiny Tina.", "\n\nTina’s rig and skinning was made by Samir Griene (http://samrigging.blogspot.fr/)\n\nThe other characters' rig/skin was made by myself." ]
{ "pile_set_name": "OpenWebText2" }
[ 0, 0.011111111111111112, 0.014814814814814815 ]
0.008642
5
[ { "analysis_explanation": null, "end": 165, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 154 }, { "analysis_explanation": null, "end": 213, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204 }, { "analysis_explanation": null, "end": 219, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 215 }, { "analysis_explanation": null, "end": 263, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 251 }, { "analysis_explanation": null, "end": 295, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 265 } ]
[ "HIP-HOP Kanye West Breaks Social Media Silence to Explain Donald Trump Meeting\n\nIt's been nearly two months since the Twitter world heard from Kanye West, but after he caused a media frenzy by showing up to Trump Tower for a meeting with Donald Trump on Tuesday morning (Dec. 13), the rapper came out of social-media hiding to provide a little clarity on his meeting with the U.S. president-elect.", "\n\n\"I wanted to meet with Trump today to discuss multicultural issues,\" West tweeted hours after leaving Trump Tower. ", "He added, \"I feel it is important to have a direct line of communication with our future President if we truly want change.\"", "\n\nI wanted to meet with Trump today to discuss multicultural issues. — ", "KANYE WEST (@kanyewest) December 13, 2016\n\nThese issues included bullying, supporting teachers, modernizing curriculums, and violence in Chicago. — ", "KANYE WEST (@kanyewest) December 13, 2016\n\nI feel it is important to have a direct line of communication with our future President if we truly want change. — ", "KANYE WEST (@kanyewest) December 13, 2016\n\nAlong with his explanation, West hinted that his time with Trump may have convinced him that he needs a little more time to prepare to run for Oval Office.", "\n\n#2024 — KANYE WEST (@kanyewest) December 13, 2016\n\nWest's visit with Trump took place just a few weeks after he was hospitalized for exhaustion and sleep deprivation. ", "While the Life of Pablo rapper didn't address his condition in his series of tweets, his resurgence both on social media and the public eye are certainly promising." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.007556675062972292, 0.017094017094017096, 0, 0.014084507042253521, 0.006756756756756757, 0.006329113924050633, 0.015151515151515152, 0.011834319526627219, 0 ]
0.008756
5
[ { "analysis_explanation": null, "end": 70, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50 }, { "analysis_explanation": null, "end": 107, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 90 }, { "analysis_explanation": null, "end": 153, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 143 }, { "analysis_explanation": null, "end": 250, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238 }, { "analysis_explanation": null, "end": 269, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254 }, { "analysis_explanation": null, "end": 278, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 271 }, { "analysis_explanation": null, "end": 380, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 376 }, { "analysis_explanation": null, "end": 426, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 421 }, { "analysis_explanation": null, "end": 432, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 427 }, { "analysis_explanation": null, "end": 485, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 480 }, { "analysis_explanation": null, "end": 665, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 660 }, { "analysis_explanation": null, "end": 671, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 666 }, { "analysis_explanation": null, "end": 748, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 731 }, { "analysis_explanation": null, "end": 851, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 844 }, { "analysis_explanation": null, "end": 896, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 879 }, { "analysis_explanation": null, "end": 1054, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1037 }, { "analysis_explanation": null, "end": 1120, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1115 }, { "analysis_explanation": null, "end": 1217, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1213 }, { "analysis_explanation": null, "end": 1261, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1244 }, { "analysis_explanation": null, "end": 1286, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1281 }, { "analysis_explanation": null, "end": 1314, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1298 } ]
[ "This invention relates to a superconductor covered with a reinforced aluminum matrix and to a method for the manufacture thereof. ", "More particularly, the present invention relates to a superconductor covered with an aluminum matrix which makes the most of the high electric conductivity, the high thermal conductivity and the magneto resistance effect saturation characteristic inherently exhibited by high-purity aluminum at very low temperatures in an extremely high magnetic field and tensile strength and enjoys a notably improved tensile strength such as has heretofore been found difficult to attain by the prior art and to a method for the manufacture of said aluminum superconductor.", "\nAs is universally known, a superconductor has a thermal conductivity on the order of 10.sup.-3 to 10.sup.-2 W/cm.deg. ", "which is so low that when an electric current of high current density flows superconductively through said superconductor, the superconductor generates heat due to magnetization, magnetic flux jump or some other cause. ", "Consequently the superconductor transiently or partially shifts to a normally conductive state. ", "Because of this phenomenon, there has been suggested a method for stabilizing the behavior of the superconductor by cladding said superconductor with a normally conductive metal possessed of high electric conductivity and high thermal conductivity. ", "To date, copper of high purity has been used preponderantly as the normal conductive metal. ", "Copper, however, has a disadvantage that the electric resistance thereof increases notably in proportion the magnetic field.", "\nIn contrast, aluminum of high purity has its electric resistance increased in a high magnetic field to only about twice the value in an absence of magnetic field. ", "It enjoys the saturation characteristic that the electric resistance no longer varies even if the magnetic field is intensified further. ", "Moreover, aluminum excels copper in electric conductivity and thermal conductivity and has light weight. ", "Thus, aluminum possesses outstanding characteristics as the normal conductive metal. ", "When aluminum of high purity is deposited to directly clad superconductors such as, for example, of an Nb-78% Ti wire and the clad wires are subjected to wire-drawing, because of a broad difference in hardness between the two metals, there ensues a flowing phenomenon wherein only the aluminum layer on the surface is drawn out. ", "Thus, the desired integral forming of the two metals cannot be obtained by co-drawing. ", "Formerly, the present inventors proposed an aluminum clad multiplex superconductor having a uniform cross-sectional distribution of components throughout the entire length by precluding the flowing phenomenon which would otherwise occur while an aluminum clad multiplex superconductor was undergoing wire-drawing (U.S. Pat. ", "Nos. ", "3,714,371 and 3,778,895). ", "According to the invention of said U.S. patents, the aluminum clad multiplex superconductor is obtained by placing at least three twisted or braided superconductive wires inside a pipe of highly pure aluminum, sheathing said aluminum pipe with a pipe of an aluminum alloy having a Vickers' hardness of not less than 50 and subjecting the resultant composite cable to the wire-drawing, whereby the superconductive wires and the aluminum pipe are integrally drawn out and brought into intimate mutual cohesion. ", "The wire-drawing to be performed on the aluminum pipe and the superconductive wires during the aforementioned manufacture of the aluminum clad superconductor, however, necessitates highly advanced skill. ", "Further, the manufacture of said aluminum clad superconductor necessitates use of at least three twisted superconductive wires.", "\nThe object of this invention is to provide a superconductor covered with a reinforced aluminum matrix which makes the most of the high electric conductivity, the high thermal conductivity and the magneto resistance effect saturation characteristic inherently exhibited by aluminum of high purity at very low temperature and enjoys a notably improved tensile strength and also a method for the manufacture of said aluminum clad superconductivity of high tensile strength." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0019646365422396855, 0, 0, 0 ]
0.000094
5
[ { "analysis_explanation": null, "end": 807, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 789 }, { "analysis_explanation": null, "end": 2814, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2810 }, { "analysis_explanation": null, "end": 2890, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2886 }, { "analysis_explanation": null, "end": 781, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 776 }, { "analysis_explanation": null, "end": 794, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 789 }, { "analysis_explanation": null, "end": 806, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 801 } ]
[ "Charles Michael Bendas\n\nPhotos with Charles Michael Bendas\n\nBiography\n\nCharles Michael Bendas is a native of Perth Amboy, New Jersey. ", "He received his Bachelor's and Master's degrees from Rutgers University and a PhD in Microbiology from Hahnemann (Drexel) Medical College. ", "He has taught in medical school as well as other colleges and has worked in the pharmaceutical and medical eduction industries. ", "He has appeared in several independent feature films and web series and has featured or leading roles in several professional stage productions. ", "He has two grown sons, Charles and Nicholas, and resides with his wife, Charla and three dogs, in Bucks County Pennsylvania. ", "Read more...<" ]
{ "pile_set_name": "Pile-CC" }
[ 0.029850746268656716, 0.02877697841726619, 0, 0, 0.024, 0 ]
0.013771
5
[ { "analysis_explanation": null, "end": 30, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 69, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36 }, { "analysis_explanation": null, "end": 93, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71 }, { "analysis_explanation": null, "end": 120, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 109 }, { "analysis_explanation": null, "end": 132, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 122 }, { "analysis_explanation": null, "end": 576, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 569 }, { "analysis_explanation": null, "end": 589, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 581 }, { "analysis_explanation": null, "end": 624, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 618 }, { "analysis_explanation": null, "end": 656, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 644 }, { "analysis_explanation": null, "end": 669, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 657 } ]
[ "Tumor response to ionizing radiation and combined 2-deoxy-D-glucose application in EATC tumor bearing mice: monitoring of tumor size and microscopic observations.", "\nThe present study deals with the changes induced by two fractionation schedules (5 x 9 Gy and 10 x 4.5 Gy; 30 MeV-electrons) of ionizing radiations and 2-deoxy-D-glucose (2-DG) application on EATC tumor bearing swiss albino mice. ", "The monitoring of tumor response was carried out by means of caliper measurement on the macroscopic level and by histopathological examination of tumor preparations stained with hematoxiline and eosine on the microscopic level. ", "The tumor material was assessed at suitable intervals after treatment by killing the animals. ", "The tumor response was analysed in the histological preparations and the thickness of the tumor band was determined quantitatively by an ocular micrometric technique. ", "Tumor damage was most extensive in the combined treated animals (5 x 9 Gy + 2-DG). ", "Only in this group local tumor control was achievable. ", "The histological analysis of tumor preparations revealed additional data about treatment-induced changes in the tumor compared to the measurement of the tumor volume with mechanical calipers. ", "We also found that the treatment outcome could be predicted from the histopathological analysis. ", "It is concluded that studies involving histopathological examinations may give some insight into the way cancer is controlled by radiotherapy and may be of value in prognosis and selection of treatment in patients." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.006172839506172839, 0.004329004329004329, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.00105
5
[ { "analysis_explanation": null, "end": 338, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 334 } ]
[ "These are my reflections on those Scriptures that God has used to comfort me as I have travelled through the \"valleys of Shadow of death.\" ", "I am hoping that they will comfort those fellow-travelers who are going through the wilderness of life. ", "At times, I will also write blogs relevant to mental illness, particularly as it relates to issues of faith, theology and community. ", "All Scriptures used here will be from New American Standard Bible, unless otherwise specified.", "\n\nMental Illness and the Demands of Christian Faith\n\nMy husband received a call this morning informing us that an old friend (whom I call Carl) had killed himself with a gunshot in his own bed. ", "As you can imagine I was deeply rattled, saddened, and shocked by the news, but I was not surprised.", "\n\nCarl was a man in his early forties, quite attractive, very friendly, and quite vulnerable. ", "He suffered from mental illness with a diagnosis of “bipolar disorder,” and had been taking medications for many years. ", "He was a professing Christian and attended our church years ago. ", "He suffered from diabetes and obesity, which might have been related to the psychiatric drugs he was taking, or just lack of attention to his diet and overall welfare. ", "He was a private man and did not talk publicly about his physical health or lack of it.", "\n\nLike many others who suffer from severe mental illnesses, he was going through life without any friends or family. ", "His mother and his only sister who were close to him had died a few years ago. ", "He is survived by a brother who, as far as I know, was not very close to him. ", "He had a hard time keeping steady work and managing his finances. ", "He was very lonely and finally the pressures of life became too much to bear, and in the loneliness of his bedroom he put an end to a life filled with pain and despair.", "\n\nSome might ask, “What happened to his faith in God?” ", "Some will cruelly judge him, saying, “He can’t have been a real Christian or he would’ve not killed himself.” ", "I am in no position to judge his heart or actions.", "\n\nCarl is just one example among many. ", "For those of us who have had the misfortune of having a loved one be treated in a mental hospital, the image of having many Christians walking in those dark corridors, talking to God, Jesus, or Satan is not an unfamiliar scene. ", "Mental hospitals in this country are filled with lonely Christians, who are labeled as pathological and crazy, and who are rarely understood by those around them.", "\n\nToday I want to talk about how we as a church have failed Carl, and people like him.", "\n\nMost of the people labeled with severe mental illnesses such as “schizophrenia” or “bipolar disorder” live very lonely lives. ", "They are abandoned by friends, their church, society at large, and often even families who are overwhelmed by the enormity of the task at hand. ", "Many of them are criminalized and spend their time in prisons for petty crimes. ", "After the widespread deinstitutionalization of the mentally ill in the 1950s, these people were sent back to their communities to live “normal” lives, with the hope that through antipsychotic medications they could manage their symptoms and live functional lives. ", "But these illnesses are not that simple!", "\n\nNils Christie, who has worked for many years among those with mental challenges speaks of this movement back to the society as follows:\n\nThe insane back to the families was the slogan, but those families were not the same. . . . ", "They were not large anymore; they did not provide free service from females permanently at home. ", "The road from the mental hospital did not lead to a home filled with life and vivacity. ", "The road led with great regularity to a room in a boarding house in the center of the city. ", "Or it led to an existence as a bag-lady, homeless and with all belongings in some plastic bags, strolling the streets of our glittering, modern towns. ", "Or it led to another type of institution—to prison.[1]\n\nMany of these individuals “are quite vulnerable, and have no support system, and no caring community to lean on. ", "In addition to their trauma, they have to deal with the loss of friends, rejection, ridicule, vanished self- esteem and utter bewilderment about what has happened to them.” [", "2] It is the cruelty of their new life that drifts them toward anonymous street life in our inner-cities, with their living space limited to a cardboard box. ", "Among them are college graduates, mothers, fathers, sisters, brothers, sons, daughters, and many of them former church members, hiding in darkness among the multitude of the inhabitants of “cardboard cities.” [", "3] The enormity of the pain and suffering that these souls and their families experience is beyond the grasp of the average citizen.", "\n\nWhere is the church in this picture?", "\n\nInstead of questioning the faith of people like Carl who give up on life because the burden is too heavy for them to carry by themselves, we in the church must question our own faith. ", "We witness their despairing lives and turn our faces away and move on, attending our church services, our fellowship potlucks, our Bible studies, and our mission trips to help those thousands of miles away from us. ", "Don’t get me wrong! ", "I am not against Bible studies or fellowship with other Christians, or mission trips to forgotten places in the world. ", "They are all wonderful gestures of our faith. ", "But how can we turn away our faces and pass by on the other side as a certain priest and the Levite did (Luke 10: 31-32) when all around us are those suffering from severe mental illnesses? ", "Most of us think: “Well, they are sick people and need to take their medication, and listen to their doctors. ", "I’ll pray for them, but there is not much I can do for them!” ", "But things are not that easy and for you to understand the complexity involved the conversation would have to go way beyond this post.", "\n\nWhat matters when Christians are battling severe illnesses is not simply to defeat the problem and get back to one’s daily routines. ", "The victory does not lie merely in getting rid of the pain and suffering at all costs, but in persevering in the face of such challenges and clinging to one’s deep conviction of what it means to worship God faithfully and surrender to Him while hanging on the cross. ", "What matters most is that when Christians encounter the sick and hopeless, “they take it upon themselves,” as Joel Shuman suggests, “to make space in their lives” to care for those persons as if they were caring for Christ Himself; for in reality such illnesses are more than an individualistic encounter.[4] Severe mental illnesses such as “schizophrenia” and “bipolar disorder” heighten our awareness about human condition, brokenness, sin, evil, the mystical body of Christ, our connections to each other, and our own desperate need for grace and redemption.", "\n\nFor Fourteen years I have cared for my daughter who has been labeled with the diagnosis of “schizophrenia,” and I must add they have been fourteen treacherous, heart-wrenching years. ", "I am certainly not a saint (except by God’s grace) and I am probably a greater sinner than most of my Christian brothers and sisters. ", "How did I do it? ", "God strengthened me and revealed Himself and His tender love everyday as I faced the evil that has for so long engulfed my precious daughter. ", "It was through this journey that I learned the preciousness of the gift of faith. ", "I learned then when God bestows such a gift of faith, He expects a willingness to sacrifice no less than one’s life. ", "Caring for my darling daughter, Helia, brought me to my knees, shattered most of my idols, and opened my eyes not only to the world of spiritual evil but also to God’s glory and majesty. ", "Caring for Helia pierced my heart and penetrated my soul with a knowing of why Christ had to die for me and for Helia, beyond what any theology book had taught me in my formal education. ", "Martin Luther, in his usual no-nonsense way, explains this well:\n\nFaith is a living, bold trust in God’s grace, so certain of God’s favor that it would risk death a thousand times trusting in it. ", "Such confidence and knowledge of God’s grace makes you happy, joyful and bold in your relationship to God and all creatures. ", "The Holy Spirit makes this happen through faith. ", "Because of it, you freely, willingly and joyfully do good to everyone, serve everyone, suffer all kinds of things, love and praise the God who has shown you such grace. ", "Thus, it is just as impossible to separate faith and works as it is to separate heat and light from fire! ", "Therefore, watch out for your own false ideas and guard against good-for-nothing gossips, who think they’re smart enough to define faith and works, but really are the greatest of fools. ", "Ask God to work faith in you, or you will remain forever without faith, no matter what you wish, say or can do.[5]\n\nIt takes a precious God-given faith to not give up and care for one another in this battle. ", "It is important to note that more than any other people those suffering from mental illness often suffer from lack of a spiritual sense of God’s presence. ", "They often seemingly have no access to God’s grace and are taken over by despair, hopelessness, and darkness. ", "These are truly souls in need of loving care and the healing touch of Christ.", "\n\nWho is best positioned to love them and attend to them but the church? ", "It is the church, like no other body, that can exhibit how far God’s mercy can reach. ", "If the church ignores this responsibility, it has ignored the invitation of Christ to attend to the “least of the brethren” (Matt.25:40).", "\n\nBOOK AVAILABLE ON AMAZON\n\nIn the Fellowship of His Suffering: A Theological Interpretation of Mental Illness – A Focus on “Schizophrenia”\n\nAbout Elahe Hessamfar\n\nELAHE HESSAMFAR is a former business executive and has a PhD in Divinity from the University of Aberdeen in Scotland. ", "She has an MA in biblical studies from the Reformed Theological Seminary, an MS in computer science from the George Washington University, and a BS in electrical engineering from the University of Kansas." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0.010638297872340425, 0.010309278350515464, 0, 0.010638297872340425, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.02564102564102564, 0, 0, 0.011627906976744186, 0, 0.006944444444444444, 0, 0, 0, 0, 0.010309278350515464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.005376344086021506, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0017825311942959, 0, 0, 0, 0, 0, 0, 0.0053475935828877, 0.0106951871657754, 0.00510204081632653, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0072992700729927005, 0.010638297872340425, 0.024509803921568627 ]
0.00212
5
[ { "analysis_explanation": null, "end": 561, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 549 }, { "analysis_explanation": null, "end": 611, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 607 }, { "analysis_explanation": null, "end": 768, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 764 }, { "analysis_explanation": null, "end": 974, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 964 }, { "analysis_explanation": null, "end": 1005, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 996 }, { "analysis_explanation": null, "end": 1039, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1030 }, { "analysis_explanation": null, "end": 1489, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1474 }, { "analysis_explanation": null, "end": 1930, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1921 }, { "analysis_explanation": null, "end": 2022, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2018 }, { "analysis_explanation": null, "end": 2189, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2179 }, { "analysis_explanation": null, "end": 2244, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2239 }, { "analysis_explanation": null, "end": 2349, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2339 }, { "analysis_explanation": null, "end": 2451, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2446 }, { "analysis_explanation": null, "end": 2508, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2504 }, { "analysis_explanation": null, "end": 2957, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2948 }, { "analysis_explanation": null, "end": 3199, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3186 }, { "analysis_explanation": null, "end": 3230, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3220 }, { "analysis_explanation": null, "end": 4778, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4774 }, { "analysis_explanation": null, "end": 5211, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5201 }, { "analysis_explanation": null, "end": 5422, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5415 }, { "analysis_explanation": null, "end": 5835, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5825 }, { "analysis_explanation": null, "end": 5929, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5924 }, { "analysis_explanation": null, "end": 6248, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6238 }, { "analysis_explanation": null, "end": 6328, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6317 }, { "analysis_explanation": null, "end": 6787, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6773 }, { "analysis_explanation": null, "end": 7063, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7054 }, { "analysis_explanation": null, "end": 7481, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7476 }, { "analysis_explanation": null, "end": 7647, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7642 }, { "analysis_explanation": null, "end": 7748, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7743 }, { "analysis_explanation": null, "end": 7831, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7818 }, { "analysis_explanation": null, "end": 9773, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9765 } ]
[ "Measurement of speech thresholds of Spanish-speaking children by non-Spanish speaking clinicians.", "\nThis study investigated the feasibility of a prerecorded speech threshold procedure that was used in a picture-pointing format, and was administered to Spanish-speaking children by non-Spanish-speaking clinicians. ", "The derived Spanish word list was compared for equivalency to English spondees on a group of bilingual adults. ", "The test, administered to 16 children ages three to six years, resulted in good agreement between SRT and pure-tone average. ", "The test was found to be feasible, rapid, and reliable." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0.008, 0 ]
0.0016
5
[ { "analysis_explanation": null, "end": 76, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65 }, { "analysis_explanation": null, "end": 290, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279 }, { "analysis_explanation": null, "end": 331, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 324 }, { "analysis_explanation": null, "end": 381, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 374 }, { "analysis_explanation": null, "end": 484, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 461 } ]
[ "In 2008, Obama called science on vaccines 'inconclusive'\n\nPresident Barack Obama called the science behind vaccinations “indisputable” on Monday, but he once appeared to call a purported link between autism and vaccines “inconclusive.”", "\n\nIn 2008, as a senator and presidential candidate, Obama discussed the possible link between vaccines and autism.", "\n\n\n“We’ve seen just a skyrocketing autism rate,” Obama said in April 2008 at a rally in Pennsylvania. “", "Some people are suspicious that it’s connected to the vaccines. ", "This person included.”", "\n\n(Shortly after the comments, Obama campaign spokesman Tommy Vietor supplied a video showing that Obama had pointed to a member of the audience when he said “this person included.”)", "\n\nObama continued, “The science is right now inconclusive, but we have to research it.” (", "It’s not clear whether he was referring to science linking vaccines and autism or science explaining the rise in autism cases in the United States. ", "POLITICO has asked the White House for clarification.)", "\n\nThe purported vaccine-autism link has sparked an anti-vaccination movement across the U.S. for years. ", "So-called anti-vaxxers believe that ingredients in vaccines, such as thimerosal, cause autism in children — and their suspicions have spilled over into other types of diseases.", "\n\nIn 2012, the anti-vaccination movement was blamed for an outbreak of the whooping cough. ", "Today, anti-vaxxers are being blamed for an outbreak of measles in the United States. ", "Tom Frieden, director of the Centers for Disease Control and Prevention, reported on Sunday that at least 102 cases of measles have been recorded in 14 states this year.", "\n\nBy April 2008, when Obama was claiming research was inconclusive, scientists had already overwhelmingly rejected any causal relationship between vaccinations and autism.", "\n\nIn 2001, thimerosal was “ removed or reduced to trace amounts” in all childhood vaccines except for one type that treats the flu. ", "In May 2004 — almost four years before Obama claimed that the science was “inconclusive” — the Institute of Medicine, the health arm of the National Academy of Sciences, released a report rejecting any “causal relationship between thimerosal-containing vaccines and autism.” ", "The CDC strongly supported the results.", "\n\n“Besides thimerosal, some people have had concerns about other vaccine ingredients in relation to autism as well. ", "However, no links have been found between any vaccine ingredients and autism,” the CDC added.", "\n\nWhen Obama made his vaccine remark, the U.S. was just ending another measles outbreak.", "\n\nFrom Jan. 1 through April 2008, the CDC reported the highest number of measles cases since 2001, with 64 recorded cases. ", "Of those, the CDC reported that 63 were not vaccinated.", "\n\nNow, the U.S. faces a new outbreak of measles, due in part to the refusal of some parents to vaccinate their children. ", "According to Frieden, the outbreak can be stopped “if we vaccinate well” and “increase those vaccination rates” so that fewer Americans are left “vulnerable.”", "\n\nThis time, Obama is speaking out in favor of vaccination.", "\n\n“The science is, you know, pretty indisputable,” Obama told the “Today Show.” “", "We’ve looked at this again and again. ", "There is every reason to get vaccinated, but there aren’t reasons to not.”", "\n\nCorrection: This article has been updated to reflect the fuller context of Obama’s 2008 remarks.", "\n\nCORRECTION: Corrected by: Daniella Diaz @ 02/03/2015 10:42 AM Correction: This article has been updated to reflect the fuller context of Obama’s 2008 remarks." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.00425531914893617, 0.008771929824561403, 0.009708737864077669, 0, 0, 0.01098901098901099, 0.011235955056179775, 0, 0.018518518518518517, 0, 0, 0, 0, 0.011834319526627219, 0.005847953216374269, 0, 0.007272727272727273, 0.02564102564102564, 0, 0.010752688172043012, 0.011363636363636364, 0.008130081300813009, 0.01818181818181818, 0, 0.006329113924050633, 0, 0.012345679012345678, 0, 0, 0.01020408163265306, 0.0125 ]
0.006577
5
[ { "analysis_explanation": null, "end": 7, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3 }, { "analysis_explanation": null, "end": 14, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9 }, { "analysis_explanation": null, "end": 80, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68 }, { "analysis_explanation": null, "end": 144, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 138 }, { "analysis_explanation": null, "end": 243, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239 }, { "analysis_explanation": null, "end": 291, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 286 }, { "analysis_explanation": null, "end": 400, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 395 }, { "analysis_explanation": null, "end": 419, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 409 }, { "analysis_explanation": null, "end": 446, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 434 }, { "analysis_explanation": null, "end": 603, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 591 }, { "analysis_explanation": null, "end": 639, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 634 }, { "analysis_explanation": null, "end": 723, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 718 }, { "analysis_explanation": null, "end": 952, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 935 }, { "analysis_explanation": null, "end": 1099, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1095 }, { "analysis_explanation": null, "end": 1109, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1104 }, { "analysis_explanation": null, "end": 1295, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1291 }, { "analysis_explanation": null, "end": 1382, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1377 }, { "analysis_explanation": null, "end": 1461, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1444 }, { "analysis_explanation": null, "end": 1474, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1463 }, { "analysis_explanation": null, "end": 1554, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1548 }, { "analysis_explanation": null, "end": 1631, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1622 }, { "analysis_explanation": null, "end": 1646, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1636 }, { "analysis_explanation": null, "end": 1658, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1653 }, { "analysis_explanation": null, "end": 1810, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1806 }, { "analysis_explanation": null, "end": 1944, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1936 }, { "analysis_explanation": null, "end": 1964, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1947 }, { "analysis_explanation": null, "end": 1977, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1972 }, { "analysis_explanation": null, "end": 2466, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2461 }, { "analysis_explanation": null, "end": 2500, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2496 }, { "analysis_explanation": null, "end": 2554, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2548 }, { "analysis_explanation": null, "end": 2573, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2563 }, { "analysis_explanation": null, "end": 2638, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2634 }, { "analysis_explanation": null, "end": 2733, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2729 }, { "analysis_explanation": null, "end": 2859, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2852 }, { "analysis_explanation": null, "end": 2974, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2965 }, { "analysis_explanation": null, "end": 3014, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3009 }, { "analysis_explanation": null, "end": 3110, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3105 }, { "analysis_explanation": null, "end": 3329, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3324 }, { "analysis_explanation": null, "end": 3336, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3332 }, { "analysis_explanation": null, "end": 3385, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3372 }, { "analysis_explanation": null, "end": 3418, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3399 }, { "analysis_explanation": null, "end": 3488, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3483 }, { "analysis_explanation": null, "end": 3495, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3491 }, { "analysis_explanation": null, "end": 3398, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "DateRecognizer_140094861343904", "recognizer_name": "DateRecognizer" }, "score": 0.6, "start": 3388 } ]
[ "Neurotechnology Growing a Brain in Switzerland\n\nA network of artificial nerves is growing in a Swiss supercomputer -- meant to simulate a natural brain, cell-for-cell. ", "The researchers at work on \"Blue Brain\" promise new insights into the sources of human consciousness." ]
{ "pile_set_name": "OpenWebText2" }
[ 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 46, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35 }, { "analysis_explanation": null, "end": 100, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95 } ]
[ "The RCMP's main concern about a Yellowknife reporter it banned from a press conference earlier this year was a perceived bias against police, according to internal emails CBC obtained through an access to information request.", "\n\nThe rocky relations between the RCMP and Yellowknifer newspaper reporter John McFadden reached a head on April 17, when McFadden arrived at the Yellowknife detachment for a press conference the RCMP had arranged to talk about a large drug bust it had made days before.", "\n\nAll media outlets were invited to send reporters, but when McFadden arrived at the door he was told he was not allowed in. ", "As far as anyone knows, it is the only time the Northwest Territories RCMP has barred a reporter from a press conference.", "\n\nThe incident was widely discussed after a report on the website Canadaland. ", "It has come under further scrutiny after McFadden was charged in July with obstructing a peace officer after taking photos of RCMP officers searching a van in the city's downtown area.", "\n\nThe RCMP has never explained why it turned McFadden away from the news conference.", "\n\n\"The situation involved personal matters between a member of the RCMP and a member of the news agency,\" said the RCMP in a news release. \"", "All issues have been discussed and resolved. ", "There will be no further discussion or information on the matter.\"", "\n\nRCMP emails and notes obtained by CBC shed more light on why McFadden was banned.", "\n\nDeteriorating relations between reporter and spokesperson\n\nThe RCMP member corresponding with McFadden was Const. ", "Elenore Sturko. ", "She had been hired as G Division's first full-time media liaison just months before.", "\n\nRelations between Sturko and McFadden had deteriorated before the April 17 press conference. ", "Sturko had been asking McFadden for all of his questions in writing \"for some time now,\" according to a March 25 email from the division's senior communications strategist, Marie York-Condon to senior RCMP communications officials in Ottawa.", "\n\nAt the beginning of the year, McFadden wrote a series of stories about the RCMP's failure to warn the public about a break and enter and sexual assault that had occurred in Yellowknife on Feb. 1. ", "Two weeks later another home was broken into and another person was sexually assaulted. ", "A repeat sex offender, Bobby Zoe, was arrested and charged with both sexual assaults.", "\n\nRCMP spokesperson Const. ", "Elenore Sturko speaks at a news conference in Yellowknife earlier this year. ", "In an internal email obtained by CBC she wrote 'The decision [to bar McFadden] was made in the interest of protecting RCMP employees' right to conduct daily business in a respectful workplace.' (", "CBC)\n\nAt a news conference, Sturko admitted the RCMP should have warned the public about the first break-in and sexual assault and said changes had been made to improve communications.", "\n\nLess than two weeks after those stories, McFadden wrote a story that said there were \"serious concerns\" about a break and enter in the city in which a number of firearms were stolen.", "\n\nSturko took issue with that. ", "In a phone conversation the day the story came out, Sturko told McFadden all she had said was that the RCMP takes all break and enters seriously, and suggested he leave the assessment of public risk to the RCMP.", "\n\nAccording to Sturko's notes on the conversation, McFadden responded, \"Oh, just like you did with XXXXX?\" ", "The name is redacted. ", "McFadden was likely referring to Bobby Zoe, because he went on to say, according to Sturko, \"The RCMP doesn't report sex assaults ... You don't warn the public about sex assaults?\" ", "The conversation ended with Sturko hanging up on McFadden.", "\n\n'Tense situation'\n\nIn notes of that conversation, Sturko says the head of RCMP criminal operations in the N.W.T., Supt. ", "Mike LeSage, advised her not to answer any more questions from McFadden.", "\n\nSturko hung up on McFadden again shortly after, according to the March 25 email from York-Condon. ", "McFadden asked Sturko for the RCMP's opinion about the availability and success of drug treatment programs in the city. ", "Sturko advised him to speak to other community organizations involved in drug treatment. ", "Sturko said she would take any questions about the drug bust. ", "McFadden persisted in asking for the RCMP's opinion on the availability of addictions treatment. ", "She hung up.", "\n\nAccording to the same email, Supt. ", "LeSage asked York-Condon to reach out [to headquarters in Ottawa] to find out if there was anything that could be done to resolve \"the tense situation.\"", "\n\nA few hours after McFadden was barred from the press conference on April 17, York-Condon informed senior communications officials in Ottawa about the incident.", "\n\n\"Recently, a certain reporter, has reported in an inaccurate manner on RCMP matters,\" she wrote. \"", "Senior managers are supportive of actions taken and aware of confrontation ... No actions required at this time.\"", "\n\nThe Ottawa official York-Condon emailed said they had never had to deal with such a situation.", "\n\n\"We always try to work with media as we are bound to provide them with timely information,\" wrote Staff Sgt. ", "Julie Gagnon. \"", "The next option would be to lodge an official complaint.\"", "\n\nYork-Condon replied that there was no professional organization representing journalists in the North, so there was no avenue for an official complaint. ", "She was presumably unaware of an email the Yellowknifer had sent to Sturko a few hours earlier, advising the RCMP that the newspaper is a member of the Alberta Press Council, which handles public complaints about its members.", "\n\nYork-Condon told Gagnon that the paper would continue to receive RCMP press releases, but added, \"should they take an adversarial stance on this, Sr. ", "Management may instruct us to remove them in total for a period of time.\"", "\n\nAccording to the same email, an editor of the paper showed up at the press conference and demanded to speak to Insp. ", "Gallagher, the detachment commander. ", "There are no notes or other records of that conversation.", "\n\nThe email conversation continued the next day, a Saturday.", "\n\n\"I am fully aware of this reporter,\" emailed Gagnon.", "\n\nThe head of communications for the RCMP got involved. ", "Christine Pappas said she would call York-Condon on Monday to \"discuss the issues at play here.\"", "\n\nLeSage, who was cc'd on the email, said he wanted to be involved. ", "He said newspaper coverage of the RCMP had improved since communications with McFadden had been restricted.", "\n\n\"The reporting has been consistent with no underlying anti-police tones,\" he wrote.", "\n\n'Reporters ... frequently are biased'\n\nYork-Condon then emailed LeSage and suggested contacting other divisions that have complained about bias in media reporting before the conversation with Ottawa officials. ", "She said that in an April 8 teleconference meeting of RCMP communications officials, the two had talked about dealing with \"biased\" media.", "\n\nWithin an hour, York-Condon sends out an email to RCMP officials in British Columbia and Saskatchewan. ", "In it, she took issue with Gagnon's suggestion that the RCMP is obliged to provide media with information, and wrote, \"Senior management...directed us not to deal any further with this reporter. ", "There is no relationship to 'maintain' or 'build.\"", "\n\nAccording to the records CBC received, York-Condon got only one response, from Paul Greene, who is now an RCMP spokesperson in New Brunswick.", "\n\n\"Although they shouldn't be, reporters can and frequently are biased,\" wrote Greene.", "\n\n\"The concern is, do they have the facts straight and reporting our side of the story in a fair manner ... We need to work at going around the media more and more to reach our target audience.\"", "\n\n'Nothing to do with accuracy or inaccuracy'\n\nOn April 21, four days after McFadden was not allowed into the press conference, Sturko emailed York-Condon, Gagnon and LeSage that she had received inquiries about the incident from the website Canadaland and from CBC. ", "Sturko said Canadaland seemed to have emails related to it.", "\n\nYork-Condon advised, \"At this time suggest no response.\"", "\n\nThat day, Canadaland published a story based on emails exchanged between Sturko and the newspaper. ", "The story suggests the barring of McFadden had more to do with his critical reporting than inaccuracies and rudeness Sturko cites in her emails.", "\n\nRCMP headquarters offered to draft a public statement for G Division.", "\n\n\"The matter that has brought us to this point has nothing to do with the accuracy or inaccuracy of any news story,\" the statement began. \"", "What this is about is a simple matter of respect and professionalism.\"", "\n\nThe short statement provided no examples of unprofessional or disrespectful behaviour.", "\n\nSturko took issue with it, saying it lacked clarity.", "\n\n\"The decision [to bar McFadden] was made in the interest of protecting RCMP employees' right to conduct daily business in a respectful workplace,\" she wrote.", "\n\nYork-Condon added a line to the statement: \"During the course of their duties as a media liaison for the Northwest Territories RCMP, a member had several interactions with a reporter that are believed to have subjected her to a disrespectful and unprofessional environment.\"", "\n\nBut the public never got to see the amended draft. ", "Instead the news release describing the situation as a \"personal matter\" was issued.", "\n\nCBC requested an interview with the RCMP about the emails and notes surrounding the banning of McFadden.", "\n\n\"We will not be speaking to this topic,\" responded York-Condon on Friday.", "\n\nMcFadden and the managing editor of his newspaper, Bruce Valpy, also declined comment. ", "Valpy says the paper will not talk about it until the charge McFadden is facing for obstructing a peace officer is dealt with. ", "McFadden says his lawyer has advised him not to talk about the banning." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.013333333333333334, 0.018518518518518517, 0.008, 0, 0.01282051282051282, 0.005434782608695652, 0.023809523809523808, 0.014285714285714285, 0, 0, 0.03614457831325301, 0.017241379310344827, 0, 0.011904761904761904, 0.010526315789473684, 0.012448132780082987, 0.010101010101010102, 0, 0.011764705882352941, 0.037037037037037035, 0.012987012987012988, 0.010256410256410256, 0.010869565217391304, 0.005434782608695652, 0, 0.009478672985781991, 0.018691588785046728, 0, 0.016574585635359115, 0.017241379310344827, 0, 0.027777777777777776, 0.02, 0.016666666666666666, 0, 0, 0.020618556701030927, 0, 0.02702702702702703, 0.013157894736842105, 0.012422360248447204, 0.01, 0, 0.010416666666666666, 0.009009009009009009, 0.06666666666666667, 0, 0, 0.008888888888888889, 0.013157894736842105, 0, 0, 0, 0, 0, 0.018518518518518517, 0.017857142857142856, 0.010416666666666666, 0, 0.018691588785046728, 0, 0.0047169811320754715, 0, 0.009523809523809525, 0.010256410256410256, 0, 0.02097902097902098, 0.011627906976744186, 0, 0.02247191011235955, 0, 0, 0.009900990099009901, 0.006944444444444444, 0.028169014084507043, 0, 0, 0, 0, 0.006289308176100629, 0, 0, 0, 0.018867924528301886, 0.013333333333333334, 0.011235955056179775, 0.007874015748031496, 0.014084507042253521 ]
0.009801
5
[ { "analysis_explanation": null, "end": 43, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32 }, { "analysis_explanation": null, "end": 104, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87 }, { "analysis_explanation": null, "end": 279, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267 }, { "analysis_explanation": null, "end": 312, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299 }, { "analysis_explanation": null, "end": 339, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 331 }, { "analysis_explanation": null, "end": 354, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 346 }, { "analysis_explanation": null, "end": 381, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 370 }, { "analysis_explanation": null, "end": 486, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 482 }, { "analysis_explanation": null, "end": 562, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 554 }, { "analysis_explanation": null, "end": 687, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 662 }, { "analysis_explanation": null, "end": 865, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 857 }, { "analysis_explanation": null, "end": 885, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 881 }, { "analysis_explanation": null, "end": 1052, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1044 }, { "analysis_explanation": null, "end": 1404, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1396 }, { "analysis_explanation": null, "end": 1519, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1511 }, { "analysis_explanation": null, "end": 1545, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1531 }, { "analysis_explanation": null, "end": 1630, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1612 }, { "analysis_explanation": null, "end": 1656, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1650 }, { "analysis_explanation": null, "end": 1669, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1661 }, { "analysis_explanation": null, "end": 1706, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1698 }, { "analysis_explanation": null, "end": 1731, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1725 }, { "analysis_explanation": null, "end": 1756, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1748 }, { "analysis_explanation": null, "end": 1837, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1829 }, { "analysis_explanation": null, "end": 1915, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1898 }, { "analysis_explanation": null, "end": 1965, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1959 }, { "analysis_explanation": null, "end": 1995, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1970 }, { "analysis_explanation": null, "end": 2005, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1997 }, { "analysis_explanation": null, "end": 2151, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2140 }, { "analysis_explanation": null, "end": 2161, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2155 }, { "analysis_explanation": null, "end": 2178, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2163 }, { "analysis_explanation": null, "end": 2283, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2274 }, { "analysis_explanation": null, "end": 2360, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2355 }, { "analysis_explanation": null, "end": 2376, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2362 }, { "analysis_explanation": null, "end": 2419, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2408 }, { "analysis_explanation": null, "end": 2437, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2420 }, { "analysis_explanation": null, "end": 2595, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2590 }, { "analysis_explanation": null, "end": 2669, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2663 }, { "analysis_explanation": null, "end": 2839, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2820 }, { "analysis_explanation": null, "end": 2869, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2861 }, { "analysis_explanation": null, "end": 3009, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3003 }, { "analysis_explanation": null, "end": 3063, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3056 }, { "analysis_explanation": null, "end": 3090, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3084 }, { "analysis_explanation": null, "end": 3104, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3096 }, { "analysis_explanation": null, "end": 3263, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3257 }, { "analysis_explanation": null, "end": 3301, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3293 }, { "analysis_explanation": null, "end": 3346, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3341 }, { "analysis_explanation": null, "end": 3379, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3371 }, { "analysis_explanation": null, "end": 3413, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3404 }, { "analysis_explanation": null, "end": 3461, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3455 }, { "analysis_explanation": null, "end": 3586, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3580 }, { "analysis_explanation": null, "end": 3667, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3661 }, { "analysis_explanation": null, "end": 3742, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3731 }, { "analysis_explanation": null, "end": 3810, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3804 }, { "analysis_explanation": null, "end": 3830, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3822 }, { "analysis_explanation": null, "end": 3877, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3869 }, { "analysis_explanation": null, "end": 3910, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3902 }, { "analysis_explanation": null, "end": 3923, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3917 }, { "analysis_explanation": null, "end": 4028, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4022 }, { "analysis_explanation": null, "end": 4117, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4111 }, { "analysis_explanation": null, "end": 4181, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4173 }, { "analysis_explanation": null, "end": 4382, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4376 }, { "analysis_explanation": null, "end": 4482, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4471 }, { "analysis_explanation": null, "end": 4497, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4489 }, { "analysis_explanation": null, "end": 4546, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4538 }, { "analysis_explanation": null, "end": 4610, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4604 }, { "analysis_explanation": null, "end": 4854, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4848 }, { "analysis_explanation": null, "end": 5046, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5043 }, { "analysis_explanation": null, "end": 5060, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5048 }, { "analysis_explanation": null, "end": 5223, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5218 }, { "analysis_explanation": null, "end": 5330, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5318 }, { "analysis_explanation": null, "end": 5349, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5343 }, { "analysis_explanation": null, "end": 5369, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5350 }, { "analysis_explanation": null, "end": 5524, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5518 }, { "analysis_explanation": null, "end": 5851, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5842 }, { "analysis_explanation": null, "end": 5982, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5970 }, { "analysis_explanation": null, "end": 5994, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5986 }, { "analysis_explanation": null, "end": 6047, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6041 }, { "analysis_explanation": null, "end": 6119, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6103 }, { "analysis_explanation": null, "end": 6144, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6140 }, { "analysis_explanation": null, "end": 6161, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6155 }, { "analysis_explanation": null, "end": 6352, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6344 }, { "analysis_explanation": null, "end": 6656, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6650 }, { "analysis_explanation": null, "end": 6695, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6688 }, { "analysis_explanation": null, "end": 6821, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6814 }, { "analysis_explanation": null, "end": 6891, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6875 }, { "analysis_explanation": null, "end": 6908, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6896 }, { "analysis_explanation": null, "end": 6943, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6937 }, { "analysis_explanation": null, "end": 7246, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7235 }, { "analysis_explanation": null, "end": 7296, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7283 }, { "analysis_explanation": null, "end": 7381, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7375 }, { "analysis_explanation": null, "end": 7632, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7624 }, { "analysis_explanation": null, "end": 7643, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7634 }, { "analysis_explanation": null, "end": 7658, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7650 }, { "analysis_explanation": null, "end": 7708, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7702 }, { "analysis_explanation": null, "end": 7736, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7730 }, { "analysis_explanation": null, "end": 7747, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7741 }, { "analysis_explanation": null, "end": 7847, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7841 }, { "analysis_explanation": null, "end": 7912, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7901 }, { "analysis_explanation": null, "end": 7966, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7958 }, { "analysis_explanation": null, "end": 8037, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8031 }, { "analysis_explanation": null, "end": 8099, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8091 }, { "analysis_explanation": null, "end": 8180, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8174 }, { "analysis_explanation": null, "end": 8575, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8569 }, { "analysis_explanation": null, "end": 8731, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8726 }, { "analysis_explanation": null, "end": 8791, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8780 }, { "analysis_explanation": null, "end": 8906, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8881 }, { "analysis_explanation": null, "end": 9358, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9347 }, { "analysis_explanation": null, "end": 9368, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9362 }, { "analysis_explanation": null, "end": 9378, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9370 }, { "analysis_explanation": null, "end": 9432, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9421 }, { "analysis_explanation": null, "end": 9462, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9457 }, { "analysis_explanation": null, "end": 9526, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9518 }, { "analysis_explanation": null, "end": 9592, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9584 } ]
[ "Nonalcoholic fatty liver disease (NAFLD) is estimated to affect 1/3 of the US adult population. ", "In this high-fat environment, hepatic mitochondria and peroxisomes are thought to work in concert to prevent lipid accumulation;however, enhanced peroxisomal activity generates reactive oxygen species (ROS) and may have damaging effects on hepatocytes. ", "Exercise is considered among the best treatments for NAFLD, but there is little molecular explanation for its benefits. ", "We have developed a mitochondrial trifunctional protein (catalyzes last 3 steps in beta-oxidation) heterozygous mouse (MTPa) that develops NAFLD and insulin resistance due to impairment in mitochondrial fatty acid oxidation and accumulation of long chain fatty acid metabolites. ", "The central hypothesis of this proposal is that daily exercise increases hepatic mitochondrial biogenesis in MTPa mice resulting in increased mitochondrial fatty acid oxidative capacity and reduced trafficking of fatty acids through peroxisomal pathways culminating in reduced hepatic-oxidative stress, -steatosis, and liver injury. ", "We also postulate that this reduced hepatic oxidative stress will improve hepatic insulin signaling and whole body insulin sensitivity. ", "MTP and MTP mice will either voluntarily exercise on running wheels or remain sedentary for 6 months. ", "Measures of hepatic mitochondrial biogenesis and peroxisomal proliferation and fatty acid oxidative capacity will be assessed, along with hepatic lipid peroxidation and oxidative stress. ", "MTP mice also will undergo hyperinsulinemic-euglycemic clamps to assess the influence of exercise on hepatic insulin signaling and whole-body insulin sensitivity. ", "The long-term goal of this project is to explore mechanisms linked to reduced severity of hepatic steatosis with exercise training. ", "PUBLIC HEALTH RELEVANCE: It also is estimated that more than 10 million Americans have disorders in mitochondrial fatty acid oxidation and 90 million US adults have NAFLD. ", "Unfortunately, the effectiveness and biological mechanisms of current treatments are largely unknown. ", "It is the focus of this project to identify potential mechanisms and therapeutic targets by which exercise can reduce the incidence of NAFLD by increasing hepatic mitochondrial function, reduce liver injury, and improve hepatic insulin sensitivity." ]
{ "pile_set_name": "NIH ExPorter" }
[ 0.010416666666666666, 0.003952569169960474, 0.008333333333333333, 0.0035842293906810036, 0, 0, 0.00980392156862745, 0, 0, 0, 0.005813953488372093, 0, 0.004032258064516129 ]
0.003534
5
[ { "analysis_explanation": null, "end": 77, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75 }, { "analysis_explanation": null, "end": 1317, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1309 }, { "analysis_explanation": null, "end": 1882, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1873 }, { "analysis_explanation": null, "end": 1953, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1951 } ]
[ "Babies, bath water, and the chicken's way out.", "\nBryden, McManus, and Bulman-Fleming (1994) have provided a thoughtful critique of the developmental model of cerebral lateralization proposed by Geschwind, Behan, and Galaburda. ", "Although it is clear that many particular aspects of the Geschwind-Behan-Galaburda (GBG) model have not withstood empirical test, the GBG model has had an important and useful impact by encouraging others to conceptualize cerebral laterality in an appropriately developmental way. ", "Consequently, although the present commentary reinforces some of the criticisms leveled by Bryden et al., ", "it also points out why it would be unwise to throw out the baby (i.e., a developmental perspective) with the bath water (i.e., particular details of the GBG model)." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0.01675977653631285, 0, 0, 0 ]
0.003352
5
[ { "analysis_explanation": null, "end": 53, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47 }, { "analysis_explanation": null, "end": 62, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55 }, { "analysis_explanation": null, "end": 88, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 84 }, { "analysis_explanation": null, "end": 223, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 214 }, { "analysis_explanation": null, "end": 610, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 597 } ]
[ "Tag Archive\n\nToday’s ʻŌlelo Hawaiʻi word is ‘Āina, and it means “the land.” ", "Aloha ‘Āina (love of the land) is a powerful core value for the people of Hawaiʻi. ", "Here, there is a deep connection between the land and the people. ", "In fact, the state motto is Ua Mau ke Ea o ka ʻĀina i ka Pono. ", "This motto is commonly translated as “The life of the land is perpetuated in …\n\nToday’s ‘Olelo Hawai’i word is Kākou. ", "Most of all, it is a word of unity. ", "It refers to all of us together, inclusively, and includes the speaker. ", "For example, in a group of people we might say Aloha Kākou! (", "Greetings, love and a sharing of life together is my wish for all of us, myself included.) ", "Imagine if The Three Musketeers had been …\n\nToday’s ‘Olelo Hawai’i word is Kōkua. ", "It means means to help, to give aid or to give assistance. ", "It’s exactly what Paul was talking about when he wrote today’s passage. ", "Kōkua is all about a spirit of generosity, of putting the needs of others ahead of your own. ", "Today’s Scripture Do nothing from selfishness or empty conceit, but with humility of mind regard one …\n\nToday’s ʻOlelo Hawaiʻi word is Mahalo! ", "Along with aloha, mahalo is the most common ‘Olelo Hawai’i words you will hear on the islands. ", "It means thank you. ", "It is often modified with the words nui and/or loa which both convey the idea of big or large. ", "Sometimes we will say to each other here in Hawai’i Mahalo Nui or Mahalo Nui Loa! …", "\n\nToday’s ʻOlele Hawaiʻi word is Aloha! ", "Aloha is, hands down, the most widely known of the Hawaiian words. ", "Aloha is a word that can mean hello, goodbye or love here in Hawaiʻi. ", "It is actually two words being put together. ", "Alo means to share and Ha refers to the breath of life. ", "So, to wish someone Alo-Ha is to say …" ]
{ "pile_set_name": "Pile-CC" }
[ 0.013157894736842105, 0.012048192771084338, 0, 0.015873015873015872, 0, 0, 0, 0, 0, 0.024390243902439025, 0, 0.013888888888888888, 0, 0.013986013986013986, 0, 0, 0, 0, 0.05, 0, 0, 0, 0.017857142857142856, 0.02631578947368421 ]
0.007813
5
[ { "analysis_explanation": null, "end": 35, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21 }, { "analysis_explanation": null, "end": 157, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 150 }, { "analysis_explanation": null, "end": 270, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 253 }, { "analysis_explanation": null, "end": 382, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 377 }, { "analysis_explanation": null, "end": 405, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 399 }, { "analysis_explanation": null, "end": 727, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 722 }, { "analysis_explanation": null, "end": 832, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 828 }, { "analysis_explanation": null, "end": 870, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 865 }, { "analysis_explanation": null, "end": 887, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 882 }, { "analysis_explanation": null, "end": 980, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 975 }, { "analysis_explanation": null, "end": 1101, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1087 }, { "analysis_explanation": null, "end": 1116, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1110 }, { "analysis_explanation": null, "end": 1168, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1163 }, { "analysis_explanation": null, "end": 1272, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1269 }, { "analysis_explanation": null, "end": 1386, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1372 }, { "analysis_explanation": null, "end": 1408, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1394 }, { "analysis_explanation": null, "end": 1417, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1412 }, { "analysis_explanation": null, "end": 1434, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1427 }, { "analysis_explanation": null, "end": 1509, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1501 }, { "analysis_explanation": null, "end": 1585, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1578 }, { "analysis_explanation": null, "end": 1635, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1632 }, { "analysis_explanation": null, "end": 1714, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1708 } ]
[ "Salsa in Kathmandu\n\n&nbsp 2017-08-30 | nepaltraveller.com\n\nDoctors, lawyers, professionals and people from all walks of life come together at Tamarind Restaurant and Bar every Tuesday to Salsa\n\nJhamsikhel is the crossroads of fine eateries with a number of bars and restaurants serving a variety of food and drinks ranging from Indian to Italian. ", "And with various events happening there every week, it is definitely one of the best places to hang out in Kathmandu. ", "To see if the hype was real, I found myself visiting Tamarind Restaurant and Bar on a Tuesday evening which also happened to be their Salsa Night.", "\n\nLocated in the calm and welcoming neighbourhood of Jhamsikhel, Tamarind is a multi cuisine restaurant where you can relax with either your family or your friends. ", "They also have a huge screen where one can enjoy football matches while sipping their favourite cocktails. ", "But Tuesdays is all about salsa.", "\n\nI am not much of a dancer but as I walk in the restaurant with tunes of Despachito playing in the background, I couldn’t help sway a bit. ", "As I enter the restaurant Latino tracks echo through the evening as I notice a shimmy here, a spin there, and bodies that are moving in tandem. ", "This is the weekly hangout and almost a ritual for many Salsa dancers in the city.", "\n\nAfter arriving in Nepal in the late 90s, Salsa has evolved into a form of social dance which has swayed its way into clubs, cafes and even homes, where salsa enthusiasts get together to dance and socialise. ", "Gradually people of all ages and backgrounds are learning the basic steps of a partner social dance that is all about great rhythm and individual flair.", "\n\nThe brain behind the Salsa Night is Riyaz Shrestha who’s been involved in salsa dancing for a number of years now. “", "It was fun when Salsa Nepal used to host it, but as it was just once a month. ", "There were times I didn’t dance for 2 months which is why I wanted this to be a weekly thing so people don’t miss it as much,” shares Riyaz.", "\n\nSalsa Night at Tamarind started in 2011 and for the past 6 years it has been growing strong in popularity and is a huge crowd puller. “", "The initial 6 months was a bit tough and there were times it was only me and couple of mates who would be dancing. ", "But gradually the word started to spread and now we’re pretty big here,” said Riyaz.", "\n\nWhile there are many dance schools that teach you Salsa, the only opportunity people get to practice and rejuvenate is at these socials. ", "I stumble across Nicole from New York, who was there for the first time and she tells me how she never thought she’d be doing the Salsa in Nepal. “", "Everyone I’ve danced with today has been patient and well mannered. ", "All of them here on the dance floor are pretty good and there are a ton of men which is quite encouraging,” said Nicole.", "\n\nEven if you are not a dancer it’s amazing to watch the dancers, especially the really good ones. ", "I notice one couple who were totally captivated by the music and dancing as if they were filming a Hollywood movie, this, in turn, captivates many fellow dancers on the floor.", "\n\nThe dance form has evolved so much that people do not want to just limit themselves to learning it in dance institutes. ", "At socials, you meet different people with the same passion, who have fun and dance away to glory.", "\n\nEveryone who’s interested attends the Salsa Night at Tamarind which to my surprise was full of locals. ", "From doctors, lawyers and media professionals to actors and businessmen, people from all walks of life and age groups come together to dance. ", "The night starts at around 7 pm and goes on until 10 pm.", "\n\nGone are the days when salsa was restricted to dance schools alone. ", "They believe it’s not just a dance it is a way of life for many. ", "It teaches you etiquettes and it also boosts your confidence, after all, it does teach you how to communicate with your body. ", "They say it energises both your body and relaxes your mind.", "\n\nAll you need is a Latino track, dancing shoes, a cold cocktail and a floor, and you will swivel, spin and shimmy; move, turn and lift. ", "After all, it’s not just a dance; it is the magic of Salsa." ]
{ "pile_set_name": "Pile-CC" }
[ 0.002881844380403458, 0, 0.00684931506849315, 0.012121212121212121, 0, 0, 0.007142857142857143, 0.006944444444444444, 0, 0, 0, 0.00847457627118644, 0.01282051282051282, 0.007142857142857143, 0, 0, 0.011904761904761904, 0, 0.006802721088435374, 0, 0.008333333333333333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.002689
5
[ { "analysis_explanation": null, "end": 36, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26 }, { "analysis_explanation": null, "end": 183, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 176 }, { "analysis_explanation": null, "end": 204, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 187 }, { "analysis_explanation": null, "end": 334, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 328 }, { "analysis_explanation": null, "end": 345, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 338 }, { "analysis_explanation": null, "end": 397, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 387 }, { "analysis_explanation": null, "end": 463, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 454 }, { "analysis_explanation": null, "end": 558, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 551 }, { "analysis_explanation": null, "end": 566, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 559 }, { "analysis_explanation": null, "end": 673, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 663 }, { "analysis_explanation": null, "end": 683, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 675 }, { "analysis_explanation": null, "end": 894, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 886 }, { "analysis_explanation": null, "end": 1085, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1079 }, { "analysis_explanation": null, "end": 1215, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1209 }, { "analysis_explanation": null, "end": 1303, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1298 }, { "analysis_explanation": null, "end": 1319, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1307 }, { "analysis_explanation": null, "end": 1690, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1676 }, { "analysis_explanation": null, "end": 1749, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1732 }, { "analysis_explanation": null, "end": 1784, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1779 }, { "analysis_explanation": null, "end": 1879, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1871 }, { "analysis_explanation": null, "end": 1921, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1915 }, { "analysis_explanation": null, "end": 1974, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1969 }, { "analysis_explanation": null, "end": 1999, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1991 }, { "analysis_explanation": null, "end": 2015, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2011 }, { "analysis_explanation": null, "end": 2040, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2024 }, { "analysis_explanation": null, "end": 2132, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2112 }, { "analysis_explanation": null, "end": 2310, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2305 }, { "analysis_explanation": null, "end": 2472, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2466 }, { "analysis_explanation": null, "end": 2486, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2478 }, { "analysis_explanation": null, "end": 2593, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2588 }, { "analysis_explanation": null, "end": 2628, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2623 }, { "analysis_explanation": null, "end": 2784, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2778 }, { "analysis_explanation": null, "end": 2991, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2982 }, { "analysis_explanation": null, "end": 3339, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3331 }, { "analysis_explanation": null, "end": 3532, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3523 }, { "analysis_explanation": null, "end": 3554, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3543 }, { "analysis_explanation": null, "end": 3578, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3573 }, { "analysis_explanation": null, "end": 3597, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3589 }, { "analysis_explanation": null, "end": 3923, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3917 }, { "analysis_explanation": null, "end": 57, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 39 } ]
[ "Evolution of descending optic atrophy. ", "A case report.", "\nFundus changes following severe trauma to the intracranial optic nerve were followed by means of serial fundus photography. ", "The eye was completely blind. ", "Little change was seen during the first 4 weeks. ", "The retinal nerve fibre layer disappeared gradually during weeks 4 to 8. ", "At the same time the retinal vessels turned narrow, and vascular pseudo-sheathing appeared close to the optic disc. ", "Disc pallor was not maximal until the 12th week, when the peripapillary retina also had acquired a mottled appearance." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 255, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238 }, { "analysis_explanation": null, "end": 328, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 316 }, { "analysis_explanation": null, "end": 493, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 480 } ]
[ "\n508 S.E.2d 231 (1998)\n234 Ga. App. ", "862\nGUILD\nv.\nThe STATE (Two Cases).", "\nNos. ", "A98A2110, A98A2111.", "\nCourt of Appeals of Georgia.", "\nOctober 26, 1998.", "\n*232 Russell R. Guild, pro se.", "\nStanley C. House, Augusta, for appellant.", "\nDaniel J. Craig, District Attorney, Charles R. Sheppard, Assistant District Attorney, for appellee.", "\nELDRIDGE, Judge.", "\nThis is an appeal from two separate criminal convictions arising from the following set of interconnected facts.", "\nOn December 8, 1995, at approximately 11:30 p.m., Robert Dunagan was driving his white Porsche 924S in the far right lane of Broad Street in Augusta, Richmond County, Georgia. ", "At the intersection of Broad Street and Crawford Avenue, he stopped for a red light. ", "A car pulled up beside him in the left lane and then pulled forward in front of Dunagan's Porsche, effectively blocking it.", "\nAppellant Robert Russell Guild jumped out of the back door on the passenger side of the car and pointed a pistol at Dunagan through the Porsche's partially opened window. ", "He demanded money and \"was very nervous and yelling[.]\" ", "As the victim was fumbling for his wallet, Guild opened the unlocked driver's side door of the Porsche, put the gun to the victim's head, and ordered the victim to \"slide over.\" ", "The victim \"said, no, no, take my money, take my money, and he [Guild] said, no, slide over. ", "He had the gun pressed to the side of my head[.]\"", "\nAs the victim slid over, Guild reached his gun hand down toward the gear shift of the Porsche. ", "The victim used that opportunity to open the passenger side of the car and roll out. ", "The victim \"ran down the middle of the road, down the center line, thinking it was over at that point, knowing that he had my car, but I got out of it.... As I looked back over my shoulder I was surprised to see him getting out of the—out of my car.\"", "\nGuild chased the victim down Broad Street, screaming \"you're not getting away from me; I'm going to get you; I'm going to get you, motherfucker[.]\" ", "The victim \"was running and he [Guild] was running after me with the gun, screaming, yelling, I'm going to get you. ", "I had a bad feeling that he was going to get me.\"", "\nGuild gained rapidly on the victim. ", "The victim \"knew he [Guild] was going to catch me so I turned around and I stopped, put up my hands, and said, don't do it—don't—I'll give you my wallet; I'll give you my wallet. ", "He came up to me, was yelling at me, had the gun to my forehead, just cursing at me. ", "I pulled out my wallet. ", "I told him, I'll give you my wallet.\"", "\nGuild took the victim's wallet and some money from the victim's pocket. ", "Then Guild replaced the gun against the victim's forehead. ", "The victim \"was pleading with him, don't do it, please don't do it, don't shoot me, don't shoot me.\" ", "In response, Guild \"took a step or two back, straightened his arm, took aim ... and that's when the headlights could be seen coming up over the canal. ", "He [Guild] stopped; he didn't pull the trigger; he ran off into the canal field.\"", "\nAs a result of intensive police investigation, on December 15, 1995, at 11:15 p.m., a car matching the description of the one involved in the car jacking was stopped by law enforcement. ", "Guild was in the back seat. ", "Immediately to Guild's right was a plastic bag containing 1.4 grams of crack cocaine. ", "Robert Dunagan positively identified Guild as the *233 person who perpetrated the crimes against him.", "\nOn May 28, 1996, a Richmond County jury found Guild guilty of possession of cocaine with intent to distribute. ", "On June 11, 1996, a second Richmond County jury found Guild guilty of armed robbery, aggravated assault, car jacking, and possession of a firearm during the commission of a crime. ", "Held:\nCase No. ", "A98A2110—Armed robbery; aggravated assault; car jacking; possession of a firearm during the commission of a crime\n1. ", "Guild contends that, even absent a request, the trial court's failure to also give a limiting instruction contemporaneously with the introduction of similar transaction evidence is reversible error pursuant to our decisions in Hinson v. State, 229 Ga.App. ", "840, 842(3), 494 S.E.2d 693 (1997) and Belt v. State, 227 Ga.App. ", "425(1), 489 S.E.2d 157 (1997).", "\nThis issue recently has been decided adversely to Guild. ", "See State v. Belt, 269 Ga. 763, 505 S.E.2d 1 (1998) (reversing the Court of Appeals' decisions in Hinson v. State and Belt v. State and holding that absent a request, it is not reversible error to fail to give a similar transaction limiting instruction). \"", "In passing, we note that, although a trial judge is not required in the absence of a request to give a limiting instruction when similar transaction evidence is admitted, it would be better for the trial judge to do so.\" ", "Id. at 765, 505 S.E.2d 1 Accordingly, there was no error in this case.", "\n2. ", "In the court below, Guild raised an objection pursuant to Batson v. Kentucky, 476 U.S. 79, 106 S.Ct. ", "1712, 90 L.Ed.2d 69 (1986). ", "Here, he challenges the trial court's step-three Batson determination overruling his objection. ", "Guild argues that the State's explanations for the exercise of its peremptory strikes were not race-neutral.[1] We do not agree.", "\nIn the trial court, a Batson analysis consists of a now familiar—although much debated—three part progression: (a) the opponent of the strikes makes a prima facie showing of discrimination; (b) the proponent offers race-neutral explanations for the use of the strikes; and (c) the trial court determines whether the otherwise race-neutral explanations are to be believed. ", "Here, this progression went as follows:\n(a) The trial court required the State to articulate its reasons for the peremptory strikes, rendering the preliminary showing of prima facie discrimination moot. ", "Barnes v. State, 269 Ga. 345, 496 S.E.2d 674 (1998).", "\n(b) The prosecutor offered explanations for the strikes. ", "With regard to the first strike about which Guild complains, against juror Levonia Higgs, the prosecutor explained that he struck Ms. Higgs because she had served as a juror in a theft case with similar facts and had voted to acquit the defendant. ", "With regard to the second strike about which Guild complains, against juror Gennie Harris, the prosecutor explained that he struck Ms. Harris for the same reason that he struck jurors William Moon (a white male) and Angela Overstreet, i.e., because of their exposure to psychological training. ", "The prosecutor explained \"we're not sure if psychology will be used as a defense on either a misidentification theory or that this defendant was acting under psychological coercion.\"", "\n(c) The trial court accepted each of these otherwise race-neutral reasons and overruled the Batson challenge.", "\nHere, the prosecutor's step-two explanations are race-neutral on their face. ", "In step three, the trial court accepted the explanations, thereby determining that the otherwise race-neutral explanations were not pretext, which determination is the trial court's role, not ours. ", "Purkett v. Elem, 514 U.S. 765, 115 S.Ct. ", "1769, 131 L.Ed.2d 834 (1995); Hernandez v. New York, 500 U.S. 352, 359, 111 S.Ct. ", "1859, 114 L.Ed.2d 395 (1991). ", "On appellate review of the trial court's step-three determination (as opposed to the prosecutor's step-two explanations), Guild has given us no reason to find as clearly erroneous the trial court's decision to accept the *234 otherwise race-neutral reasons. ", "There is no error.", "\n3. ", "We find that the evidence in this case was quite sufficient for a rational trier of fact to have found Guild guilty beyond a reasonable doubt of armed robbery, aggravated assault, hijack of a motor vehicle, and possession of a firearm during the commission of a crime. ", "Barnes v. State, supra at 347, 496 S.E.2d 674.", "\nWholly without merit is Guild's contention that the aggravated assault charge should have merged into the armed robbery charge \"because the only time such assault occurred was when the robbery took place.\" ", "The indictment alleged that Guild committed aggravated assault upon the victim \"by pointing a handgun at him.\" ", "The evidence showed that after Guild took the victim's wallet and money, he stepped back and aimed the gun at the pleading victim. ", "Apparently, the accomplishment of Guild's purpose was frustrated only by the fear of being caught in suddenly approaching headlights. ", "There was no merger of offenses here.", "\nCase No. ", "A98A2111—Possession of cocaine with intent to distribute\n4. ", "In his first enumeration of error with regard to the above-numbered case, Guild challenges the introduction of similar transaction evidence. ", "He contends that there were no significant similarities between the independent crime and the one for which he was tried and thus, there was nothing about the independent crime that \"proved\" the instant case. ", "We disagree.", "\nAlthough Guild failed to make a transcript of the similar transaction hearing a part of the record in this case, we may garner from the trial transcript that the similar transaction evidence was based upon the following set of facts:\nThe Gateway Motel in Augusta was known as an area with frequent illegal drug activity. ", "On November 9, 1995, police officers placed the motel under surveillance and observed suspected drug transactions. ", "Pursuant to their; investigation, a foot chase ensued during which the officers chased a suspected drug dealer into a Gateway Motel room. ", "In the motel room, in plain view on a dressing table, was a plastic bag containing 17 rocks of crack cocaine. ", "Guild was lying nearby in a bed in the motel room; another man was lying in a second bed in the room; a bag of marijuana was found under Guild's bed; $250 was recovered from Guild's person.", "\nApproximately one month later, apparently while out on bond on the Gateway Motel charge, Guild was arrested for the instant case wherein the car in which Guild was riding was stopped. ", "On the rear passenger seat, in plain view, was a plastic bag containing 1.4 grams of crack cocaine. ", "Guild was sitting on the right rear passenger seat immediately beside the cocaine; another man was sitting on the left rear passenger seat.", "\nTwo weeks before the trial of the instant case, a jury found Guild guilty of possession of cocaine with intent to distribute and misdemeanor possession of marijuana based upon the Gateway Motel incident.[2] The indictment and verdict were introduced in this case, as well as substantive testimony thereon.", "\n\"The test of admissibility of evidence of other criminal acts by the defendant is not the number of similarities between the two incidents. ", "Rather, such evidence may be admitted if it is substantially relevant for some purpose other than to show a probability that the defendant committed the crime on trial because he is a man of criminal character.\" (", "Citation and punctuation omitted.) ", "Maggard v. State, 259 Ga. 291, 293, 380 S.E.2d 259 (1989). \"", "Similarity is an important factor in determining the admissibility of the extrinsic crime; however, it is not the only factor, nor is it necessarily the controlling factor. ", "The ultimate issue for admissibility is whether the evidence of other crimes has relevance to the issues in the trial of the case at bar. ", "Depending on the purpose for which the extrinsic evidence is offered, the *235 State may be required to prove a high degree of similarity between the relevant characteristics of the extrinsic crime and the crime charged, or it may have only the burden of showing a logical connection between the crimes which are essentially dissimilar. ", "Ward v. State, 262 Ga. 293, 295(2), 417 S.E.2d 130 [ (1992) ].\" ", "Harris v. State, 222 Ga.App. ", "52, 54, 473 S.E.2d 232 (1996).", "\nHere, the trial court instructed the jury that the Gateway Motel incident could be considered for the purpose of showing identity and \"the knowledge or intent of the Defendant in the crime charged in the case now on trial.\" ", "We find sufficient logical connection between (a) Guild's possession in Augusta on November 6, 1995, of a plastic bag containing seventeen rocks of crack cocaine with the intent to distribute such, and (b) his possession in Augusta one month later of a plastic bag containing eight rocks of crack cocaine, which testimony showed was a distribution amount, so that the former helped to prove the latter offense in the manner specified by the trial court. ", "Barker v. State, 226 Ga.App. ", "747, 748-749(3), 487 S.E.2d 494 (1997). ", "If the defense chooses to characterize both incidents as merely being present in the proximity of the crack cocaine, i.e., coincidence, then such is an argument for the jury. \"", "Drug cases are no different from any other cases. ", "If the defendant is proven to be the perpetrator of another drug crime and the facts of that crime are sufficiently similar or connected to the facts of the crime charged, the separate crime will be admissible to prove identity, motive, plan, scheme, bent of mind, or course of conduct.\" (", "Emphasis supplied.) ", "State v. Johnson, 246 Ga. 654, 655(1), 272 S.E.2d 321 (1980); Smith v. State, 203 Ga.App. ", "3, 416 S.E.2d 129 (1992); Collins v. State, 205 Ga.App. ", "341(2), 422 S.E.2d 56 (1992).", "\nContrary to Guild's assertions, our decision in King v. State, 230 Ga.App. ", "301, 496 S.E.2d 312 (1998), is not applicable. ", "There, we found that nothing about a 1984 conviction for sale of methamphetamine helped to prove that the defendant was using the drug 13 years later. ", "King v. State, supra at 303, 496 S.E.2d 312 (defendant charged with possession of drugs in his blood stream). ", "Here, Guild's two-week-old conviction for possession of cocaine with intent to distribute based on an incident almost contemporaneous with the one which comprised the case-in-chief clearly helped to prove the later possession of cocaine with intent to distribute in the manner charged by the trial court. ", "There was no error.", "\n5. ", "In his second enumeration of error, Guild contends that the trial court erred \"in admitting into evidence two crime lab reports.\" ", "In support thereof, Guild alleges that (a) \"there was no compliance with the discovery statute. ", "Section 17-16-4(a)(4), O.C.G.A.,\" and (b) \"there is no way to determine which of the reports, if either of them, concerns the alleged illegal substance seized in the case on trial.\" ", "We find these contentions to be without merit.", "\n(a) Before this Court, Guild contends that the State violated discovery because defense counsel was not given \"an opportunity to inspect and copy\" the crime lab reports, as required by OCGA § 17-16-4(a)(4).", "\nHowever, a review of the record shows that defense counsel's objection at trial was not regarding an \"opportunity to inspect and copy\" the reports. ", "In fact, the record shows that the instant drug offense was introduced as a similar transaction during the trial two weeks earlier on the Gateway Motel incident; by the conclusion of that trial, the crime lab reports on both incidents were present in the State's file, and the file was made available to defense counsel to inspect and copy the contents thereof.", "\nInstead, at trial, defense counsel repeatedly objected because the State failed to serve defense counsel with a copy. \"", "Well I think that the bottom line is that I object to not being furnished with a copy of any of the lab reports that were involved in either the Gateway Motel case or the vehicle stop.\"", "\n\"Where an entirely different objection or basis for appeal is argued in the brief which was not presented at trial we will not consider that basis as we are limited to those grounds presented to and ruled upon by the trial court. ", "The rule is that the scope of review is limited to the scope of the ruling in the trial court as shown by the trial record *236 and cannot be enlarged or transformed through a process of switching, shifting.\" (", "Citations and punctuation omitted.) ", "Robinson v. State, 208 Ga.App. ", "528, 530-531, 430 S.E.2d 830 (1993).[3]\n(b) Appellant did not register an objection that \"there is no way to determine which of the reports concerns the alleged illegal substance seized in the case on trial.\" ", "In fact, the record shows that defense counsel had no difficulty in recognizing the crime lab report on the instant case as State's Exhibit 8, Crime Lab Report No. ", "A95523, and did not object to the expert testimony offered thereon except on the basis that the State \"should have provided me with the crime lab report prior to their doing so.\" ", "Failure to object waives any error. ", "Banks v. State, 230 Ga. App. ", "881, 497 S.E.2d 821 (1998).", "\n6. ", "Guild's enumerations of error numbers 3 and 4 regarding alleged violations of the discovery statute are controlled by Division 5(a), supra, and thus are meritless.", "\n7. ", "Guild next contends that the trial court erred in admitting the bag of marijuana seized during the similar transaction incident. ", "The record shows that Guild objected to such evidence because: (a) such was similar transaction evidence and thus irrelevant; (b) counsel's \"uncertainty\" over the chain of custody; and (c) the State's failure to serve counsel with a copy of the crime lab report. ", "These contentions are without merit.", "\n(a) Evidence regarding the marijuana was part of the res gestae of the similar transaction offense and thus was not \"irrelevant.\"", "\n(b) The chain of custody regarding the marijuana was established as part of the earlier Gateway Motel trial. ", "In the instant trial, defense counsel failed to provide a basis for his \"uncertainty\" regarding the chain of custody. ", "Nor did he voir dire on that subject or object that the chain of custody on such similar transaction evidence must be proved in the trial of the instant case.", "\n(c) The State was not required to serve defense counsel with a copy of the crime lab report. ", "See footnote 3, supra.", "\nFurther, while Guild contends that the introduction of the marijuana \"resulted in prejudice,\" he fails to state how such result obtains. ", "It is fundamental that harm as well as error must be shown for reversal. ", "McIntyre v. State, 266 Ga. 7(9), 463 S.E.2d 476 (1995). ", "In light of the fact that Guild was charged with possession of cocaine with intent to distribute and that the substance of the similar transaction evidence was that Guild possessed cocaine with the intent to distribute, it is highly unlikely that proof Guild also possessed a misdemeanor amount of marijuana contributed to the jury's verdict. ", "Johnson v. State, 238 Ga. 59, 61, 230 S.E.2d 869 (1976).", "\n8. ", "In his sixth enumeration of error, Guild contends that the trial court erred by denying his motion for mistrial based upon alleged improper argument by the prosecutor. ", "We disagree.", "\nClosing arguments were not taken down, but defense counsel objected on the record as follows: \"Judge I object to this form of argument. ", "He's suggesting even though we all agree that we had no burden of proof that I should have brought in evidence and I should have produced evidence. ", "I think it's a burden shifting argument and I object to it and move for a mistrial.\" ", "The trial court admonished the prosecutor, but denied the motion for mistrial.", "\n\"[T]he trial judge in passing upon a motion for mistrial on account of alleged improper argument is vested with a broad and sound discretion, and his ruling will not be controlled by this court unless manifestly abused.\" (", "Citations and punctuation omitted.) ", "Martin v. State, 193 Ga.App. ", "581, 587, 388 S.E.2d 420 (1989).", "\nHere, while defense counsel summarized what he thought was suggested by the prosecutor's argument, the prosecutor's actual argument is not before this Court in order to determine whether such suggestion is valid. ", "Nor was a proffer made as to the substance of the allegedly improper argument. ", "Thus, on the record before this Court, we cannot *237 say that the trial court's discretion was \"manifestly abused\" in denying Guild's motion for mistrial based upon alleged improper argument. ", "Martin v. State, supra at 587, 388 S.E.2d 420.", "\n9. ", "In his enumeration of error number 7, Guild contends that the trial court erred by charging the jury that they could consider the similar transaction evidence for the purpose of showing \"identity,\" as well as \"intent.\" ", "Guild argues that the similar transaction evidence was not sufficiently distinctive to establish \"identity.\"", "\nIdentity is a proper purpose for the introduction of similar transaction evidence. ", "Williams v. State, 261 Ga. 640, 642, n. 2, 409 S.E.2d 649 (1991). ", "Thus, the trial court did not err in charging the jury regarding such proper purpose.", "\nGuild's claim of error really goes to a contention that the similar transaction evidence was improperly admitted for the purpose of showing \"identity.", "\"[4] However, an objection regarding the purpose for the admission of such evidence should have been made at the time admissibility was being determined, i.e., at the similar transaction hearing. ", "Fairbanks v. State, 225 Ga.App. ", "666(1), 484 S.E.2d 693 (1997). ", "No such objection is before this Court. ", "Guild's apparent failure to object to the trial court's determination that identity was a proper purpose for the admission of the similar transaction evidence cannot be bootstrapped into meritorious claim by re-tooling it as an alleged charging error. ", "There was no error in the charge.", "\n10. ", "In enumerations of error numbers 8, 9, and 10, Guild challenges the sufficiency of the evidence, contending (a) there was no evidence by which a jury could determine that Guild possessed the drugs found in the vehicle; and (b) there was no evidence by which a jury could determine that Guild possessed the drugs with the intent to distribute. ", "We disagree with both contentions.", "\n\"[W]here drugs are found in the immediate presence of the defendant, the jury is authorized to find they are in the constructive possession of the accused.... All of the competent evidence adduced at trial, which was admissible against appellant, may be considered to show his constructive or joint possession.\" (", "Citations and punctuation omitted.) ", "Barnett v. State, 204 Ga.App. ", "491, 495, 420 S.E.2d 43 (1992). ", "Further, \"[o]n appeal the evidence must be viewed in a light most favorable to the verdict, and appellant no longer enjoys a presumption of innocence[.]\" ", "Grant v. State, 195 Ga.App. ", "463, 464(1), 393 S.E.2d 737 (1990).", "\n(a) With regard to the element of possession, we find that evidence that a plastic bag containing 1.4 grams of cocaine was laying in plain view immediately beside Guild, coupled with evidence that he was found in possession of 17 rocks of cocaine only a month prior to the instant case, is sufficient evidence for a rational trier of fact to find beyond a reasonable doubt that Guild \"was knowingly in either joint or constructive possession of the cocaine. [", "Cit.]\" ", "Barnett v. State, supra at 495, 420 S.E.2d 43.", "\n(b) With regard to the element of intent to distribute, the evidence showed that no device for use of the cocaine, i.e., a crack pipe or other device, was recovered pursuant to the stop of the vehicle. ", "Also, a seventeen year veteran of the narcotics squad testified that the quantity of cocaine usually recovered from users of the drug is a \"dub,\" i.e., a $20 rock; however, the plastic bag recovered in this case contained eight rocks of crack cocaine worth $160. ", "In addition, evidence of a prior conviction for possession of cocaine with intent to distribute was introduced as a similar transaction.", "\nThe above evidence is sufficient to demonstrate beyond a reasonable doubt the intent to distribute. ", "James v. State, 214 Ga.App. ", "763, 764, 449 S.E.2d 126 (1994); Davis v. State, 200 Ga.App. ", "44, 45(2), 406 S.E.2d 555 (1991); compare Bethea v. State, 220 Ga.App. ", "800, 801(1), 470 S.E.2d 328 (1996).", "\nAccordingly, when viewed in a light most favorable to the jury's verdict, the evidence is *238 sufficient for a rational trier of fact to have found Guild guilty beyond a reasonable doubt of possession of cocaine with the intent to distribute. ", "Jackson v. Virginia, 443 U.S. 307, 99 S.Ct. ", "2781, 61 L.Ed.2d 560 (1979).", "\n11. ", "Guild's final enumeration of error is controlled adversely to him as per Division 1, supra.", "\nJudgment affirmed.", "\nMcMURRAY, P.J., and BLACKBURN, J., concur.", "\nNOTES\n[1] In his brief before this Court, Guild complains about the exercise of four allegedly race-based strikes; however, he provides argument and citation of authority for only two of them.", "\n[2] Apparently, the similar transaction hearings on both the instant case and the Gateway Motel incident were held simultaneously prior to the trial on the Gateway Motel case. ", "We will presume the correctness of such proceedings and resultant findings in the absence of a transcript. ", "Gilbert v. State, 222 Ga.App. ", "787, 788(4), 476 S.E.2d 39 (1996).", "\n[3] In passing, we note that OCGA § 17-16-4(a)(1)\" requires only that the State make a defendant's statements available for inspection, copying, or photographing, not that such statements be served upon the defendant.\" ", "Lawson v. State, 224 Ga.App. ", "645, 647, 481 S.E.2d 856 (1997).", "\n[4] See Cole v. State, 216 Ga.App. ", "68, 69, 453 S.E.2d 495 (1994), which is the case cited by Guild in support of his contention.", "\n" ]
{ "pile_set_name": "FreeLaw" }
[ 0, 0, 0.16666666666666666, 0.10526315789473684, 0, 0, 0.03225806451612903, 0.023809523809523808, 0.02, 0, 0, 0.011299435028248588, 0, 0.008130081300813009, 0.01744186046511628, 0, 0.011235955056179775, 0, 0, 0.020833333333333332, 0, 0, 0, 0, 0, 0, 0, 0.011764705882352941, 0, 0, 0, 0.01694915254237288, 0, 0.006622516556291391, 0, 0, 0, 0, 0.009900990099009901, 0, 0, 0, 0, 0, 0.015151515151515152, 0, 0, 0.0078125, 0, 0, 0, 0.019801980198019802, 0, 0.010416666666666666, 0.0078125, 0.002680965147453083, 0.0049261083743842365, 0, 0, 0.012096774193548387, 0.017006802721088437, 0, 0.00909090909090909, 0, 0, 0.024390243902439025, 0.012195121951219513, 0, 0, 0, 0, 0, 0, 0.004830917874396135, 0.018018018018018018, 0.007633587786259542, 0, 0, 0, 0, 0.0070921985815602835, 0, 0, 0, 0, 0.007246376811594203, 0, 0.005291005291005291, 0.010810810810810811, 0, 0, 0, 0, 0, 0, 0, 0, 0.007246376811594203, 0, 0.015625, 0.034482758620689655, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.022222222222222223, 0.017857142857142856, 0, 0.013157894736842105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.014492753623188406, 0, 0.00554016620498615, 0.008333333333333333, 0.005405405405405406, 0, 0, 0, 0.06451612903225806, 0, 0.006097560975609756, 0.0111731843575419, 0, 0, 0, 0, 0.012269938650306749, 0, 0, 0.0076045627376425855, 0, 0, 0.00909090909090909, 0, 0, 0.010638297872340425, 0, 0.007246376811594203, 0, 0.017857142857142856, 0.008746355685131196, 0.017857142857142856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.034482758620689655, 0, 0.004672897196261682, 0, 0.0051813471502590676, 0.021739130434782608, 0, 0, 0, 0, 0.030303030303030304, 0, 0, 0, 0, 0, 0.025, 0, 0, 0, 0.008746355685131196, 0, 0, 0, 0.03333333333333333, 0, 0, 0.03571428571428571, 0, 0.002173913043478261, 0.14285714285714285, 0.021739130434782608, 0, 0, 0, 0, 0.07142857142857142, 0.01639344262295082, 0.014084507042253521, 0, 0, 0.022727272727272728, 0, 0, 0, 0, 0.06976744186046512, 0.005154639175257732, 0.0056179775280898875, 0, 0.03333333333333333, 0, 0.00904977375565611, 0.06896551724137931, 0, 0.05405405405405406, 0, 0 ]
0.007715
5
[ { "analysis_explanation": null, "end": 20, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16 }, { "analysis_explanation": null, "end": 141, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125 }, { "analysis_explanation": null, "end": 190, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174 }, { "analysis_explanation": null, "end": 199, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 192 }, { "analysis_explanation": null, "end": 231, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 216 }, { "analysis_explanation": null, "end": 271, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252 }, { "analysis_explanation": null, "end": 465, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 449 }, { "analysis_explanation": null, "end": 494, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 470 }, { "analysis_explanation": null, "end": 510, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 496 }, { "analysis_explanation": null, "end": 594, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 587 }, { "analysis_explanation": null, "end": 611, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 596 }, { "analysis_explanation": null, "end": 620, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 613 }, { "analysis_explanation": null, "end": 794, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 787 }, { "analysis_explanation": null, "end": 861, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 841 }, { "analysis_explanation": null, "end": 954, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 947 }, { "analysis_explanation": null, "end": 2293, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2280 }, { "analysis_explanation": null, "end": 3018, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3001 }, { "analysis_explanation": null, "end": 3033, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3023 }, { "analysis_explanation": null, "end": 3265, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3251 }, { "analysis_explanation": null, "end": 3368, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3356 }, { "analysis_explanation": null, "end": 3387, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3372 }, { "analysis_explanation": null, "end": 3480, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3467 }, { "analysis_explanation": null, "end": 3506, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3491 }, { "analysis_explanation": null, "end": 4065, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4061 }, { "analysis_explanation": null, "end": 4075, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4071 }, { "analysis_explanation": null, "end": 4126, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4122 }, { "analysis_explanation": null, "end": 4203, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4199 }, { "analysis_explanation": null, "end": 4212, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4209 }, { "analysis_explanation": null, "end": 4236, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4232 }, { "analysis_explanation": null, "end": 4308, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4304 }, { "analysis_explanation": null, "end": 4802, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4796 }, { "analysis_explanation": null, "end": 4814, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4806 }, { "analysis_explanation": null, "end": 4824, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4820 }, { "analysis_explanation": null, "end": 4843, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4839 }, { "analysis_explanation": null, "end": 4864, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4860 }, { "analysis_explanation": null, "end": 4922, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4916 }, { "analysis_explanation": null, "end": 5120, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5114 }, { "analysis_explanation": null, "end": 5691, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5688 }, { "analysis_explanation": null, "end": 5717, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5713 }, { "analysis_explanation": null, "end": 5865, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5852 }, { "analysis_explanation": null, "end": 5916, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5911 }, { "analysis_explanation": null, "end": 6114, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6101 }, { "analysis_explanation": null, "end": 6166, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6160 }, { "analysis_explanation": null, "end": 6221, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6209 }, { "analysis_explanation": null, "end": 6258, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6241 }, { "analysis_explanation": null, "end": 6600, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6594 }, { "analysis_explanation": null, "end": 6894, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6887 }, { "analysis_explanation": null, "end": 6912, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6908 }, { "analysis_explanation": null, "end": 6932, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6928 }, { "analysis_explanation": null, "end": 6955, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6951 }, { "analysis_explanation": null, "end": 6967, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6958 }, { "analysis_explanation": null, "end": 6979, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6971 }, { "analysis_explanation": null, "end": 6989, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6985 }, { "analysis_explanation": null, "end": 7014, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7010 }, { "analysis_explanation": null, "end": 7037, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7033 }, { "analysis_explanation": null, "end": 7604, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7589 }, { "analysis_explanation": null, "end": 7611, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7606 }, { "analysis_explanation": null, "end": 8950, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8943 }, { "analysis_explanation": null, "end": 9028, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9012 }, { "analysis_explanation": null, "end": 9591, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9562 }, { "analysis_explanation": null, "end": 9995, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9986 }, { "analysis_explanation": null, "end": 10688, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10681 }, { "analysis_explanation": null, "end": 10706, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10703 }, { "analysis_explanation": null, "end": 10737, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10733 }, { "analysis_explanation": null, "end": 11423, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11418 }, { "analysis_explanation": null, "end": 11448, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11444 }, { "analysis_explanation": null, "end": 11460, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11454 }, { "analysis_explanation": null, "end": 11485, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11483 }, { "analysis_explanation": null, "end": 11489, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11487 }, { "analysis_explanation": null, "end": 11511, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11507 }, { "analysis_explanation": null, "end": 11817, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11810 }, { "analysis_explanation": null, "end": 11837, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11821 }, { "analysis_explanation": null, "end": 11969, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11962 }, { "analysis_explanation": null, "end": 11985, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11970 }, { "analysis_explanation": null, "end": 12207, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12192 }, { "analysis_explanation": null, "end": 12258, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12254 }, { "analysis_explanation": null, "end": 12814, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12807 }, { "analysis_explanation": null, "end": 12857, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12853 }, { "analysis_explanation": null, "end": 12911, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12907 }, { "analysis_explanation": null, "end": 12921, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12914 }, { "analysis_explanation": null, "end": 12971, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12967 }, { "analysis_explanation": null, "end": 13074, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13070 }, { "analysis_explanation": null, "end": 13137, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13133 }, { "analysis_explanation": null, "end": 13245, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13231 }, { "analysis_explanation": null, "end": 13267, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13262 }, { "analysis_explanation": null, "end": 13383, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13371 }, { "analysis_explanation": null, "end": 13942, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13934 }, { "analysis_explanation": null, "end": 14625, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14608 }, { "analysis_explanation": null, "end": 15648, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15640 }, { "analysis_explanation": null, "end": 16313, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16309 }, { "analysis_explanation": null, "end": 17765, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17757 }, { "analysis_explanation": null, "end": 17783, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17780 }, { "analysis_explanation": null, "end": 17810, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17806 }, { "analysis_explanation": null, "end": 18163, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18156 }, { "analysis_explanation": null, "end": 18181, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18178 }, { "analysis_explanation": null, "end": 18184, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18182 }, { "analysis_explanation": null, "end": 18188, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18186 }, { "analysis_explanation": null, "end": 18210, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18206 }, { "analysis_explanation": null, "end": 19119, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19104 }, { "analysis_explanation": null, "end": 19163, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19159 }, { "analysis_explanation": null, "end": 19666, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19651 }, { "analysis_explanation": null, "end": 19673, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19668 }, { "analysis_explanation": null, "end": 20120, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20112 }, { "analysis_explanation": null, "end": 20153, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20149 }, { "analysis_explanation": null, "end": 20175, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20171 }, { "analysis_explanation": null, "end": 20620, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20611 }, { "analysis_explanation": null, "end": 20671, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20667 }, { "analysis_explanation": null, "end": 21041, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21040 }, { "analysis_explanation": null, "end": 21739, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21732 }, { "analysis_explanation": null, "end": 21791, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21787 }, { "analysis_explanation": null, "end": 22009, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22005 }, { "analysis_explanation": null, "end": 22271, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22259 }, { "analysis_explanation": null, "end": 22486, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22479 }, { "analysis_explanation": null, "end": 22502, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22497 }, { "analysis_explanation": null, "end": 22750, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22736 }, { "analysis_explanation": null, "end": 23242, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23228 }, { "analysis_explanation": null, "end": 23286, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23282 }, { "analysis_explanation": null, "end": 23294, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23289 }, { "analysis_explanation": null, "end": 23319, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23317 }, { "analysis_explanation": null, "end": 23325, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23321 }, { "analysis_explanation": null, "end": 23348, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23344 }, { "analysis_explanation": null, "end": 23365, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23359 }, { "analysis_explanation": null, "end": 23421, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23417 }, { "analysis_explanation": null, "end": 23675, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23668 }, { "analysis_explanation": null, "end": 23687, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23679 }, { "analysis_explanation": null, "end": 23738, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23734 }, { "analysis_explanation": null, "end": 23864, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23856 }, { "analysis_explanation": null, "end": 23885, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23876 }, { "analysis_explanation": null, "end": 23889, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23887 }, { "analysis_explanation": null, "end": 24384, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24377 }, { "analysis_explanation": null, "end": 24439, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24435 }, { "analysis_explanation": null, "end": 24668, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24662 }, { "analysis_explanation": null, "end": 24721, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24717 }, { "analysis_explanation": null, "end": 24762, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24760 }, { "analysis_explanation": null, "end": 24788, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24784 }, { "analysis_explanation": null, "end": 16050, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 16044 } ]
[ "Chloroplast acclimation to low osmotic potential.", "\nPhotosynthetic potential of isolated chloroplasts was investigated during in situ water deficits. ", "An eight day stress cycle imposed on spinach plants reduced leaf ψw by 0.57MPa, and leaf ψπ by 0.50MPa, resulting in partial turgor maintenance during the stress cycle. ", "Pressure/volume curves confirmed the occurrence of osmotic adjustment. ", "Leaf ψπ depression was associated with an altered response of chloroplasts to low ψπ in vitro. ", "Optimum reaction medium ψπ for photosynthesis shifted from -1.04 to -1.57MPa, and low ψπ was not as inhibitory to photosynthesis of plastids pre-exposed to stress in situ. ", "These data indicate that chloroplasts acclimate to low external ψπ in response to leaf water deficits. ", "This response was still evident four days after a stress cycle ended, but was nearly reversed eight days after stress. ", "Repeated stress cycles in situ did not increase the degree of chloroplast acclimation to low ψπ in vitro. ", "Fast dehydration of leaves did not induce this apparent chloroplast acclimation." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 160, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 151 }, { "analysis_explanation": null, "end": 799, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 790 }, { "analysis_explanation": null, "end": 862, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 852 } ]
[ "Friday, December 23, 2016\n\nAll the sorts of people were there today to view the Yves Saint Laurent exhibit at the SAM. ", "YSL has always had a dichotomous image in my head of being either very elegant and proper or very daring and pushing the envelope. ", "Like with any sort of art though, anybody can appreciate the creativity and craftsmanship and history of such a designer, whether or not it's their personal aesthetic.", "\n\nThese were some of my favorite pieces, although there were many more risque, elaborate, fantastical works that YSL was known for. ", "I loved all the mod styles with sleek cuts that just barely frame the figure.", "\n\nSaturday, November 26, 2016\n\nI never thought I'd say this, but sometimes regular shopping is much more exhausting than thrifting. ", "The difficult part about retail is that you have to wade through everything - each piece which catches the eye, and could theoretically be a good buy to some degree - and discern what you actually like and what you're actually being tricked into liking. ", "It's harder to pinpoint what pieces are actually special. ", "After a few stores you start recognizing the same trends and wonder whether you should've bought it from this place instead of that one, whether it really makes a difference that this brand put an extra ruffle here. ", "When they don't carry your size, you try to convince yourself that either you can squeeze into the smaller one or make it work with the bigger one. ", "And of course, there's the eternal struggle of \"Do I really like it thi$ much\"?", "\n\nTuesday, October 18, 2016\n\nAnd here’s something that’s worth bringing up: Cultural appropriation has made it so a blonde, white woman who doesn't know her chopsticks from her hair accessories will always look “cute” in a cheongsam, and an Asian woman will look like she’s dressed in a costume. ", "That was definitely how things were in the ‘90s, and is often the case today. ", "But, to my surprise, I’ve also found hopeful signs that we are moving in a new, more informed direction. ", "These days, when I encounter non-Asian people wearing Asian trends, oftentimes they’re from trips they took to abroad. ", "They know the origins of these garments and are interested to learn more. ", "I’m biased, but I’ve always found that these clothes are objectively beautiful, too; the silhouettes are striking, and the patterns hit that mix between eclectic and elegant that I’ve always been drawn to. ", "I'm willing to share, but to do that, I need to have ownership of these trends, too. ", "They’re rooted in a history that feels real and tangible to me. ", "In my mind, Woodstock will always evoke technicolor snapshots from Lifemagazine; Audrey Hepburn’s LBD will always conjure scenes from the movie — those are my adopted cultural story. ", "But a jade earring is my mother and my grandmother and my aunts and my cousin; it comes from the same place I do, and it's part of the narrative I was born into.", "\n\n*applauds*But seriously though, I thought I was the only one who felt shame about emphasizing that I was Asian. ", "Going through the racks in the thrift store to see beautiful qipaos discarded and then picked up as Halloween costumes or \"boho\" styles... And worse, knowing that different traditional fashions are \"cooler\" than others. ", "I hope I'll have the guts one day to don my culture one day.", "\n\nSunday, September 11, 2016\n\nTaken at Handmade, La Conner in La Conner, WA, an adorable little beauty product and gift shop. ", "You can see in the second photo their kitchen-like workshop where they concoct all their products. ", "My paparazzi skills are a little rusty, sorry for the blurriness...\n\nThursday, August 4, 2016\n\nMonday, August 1, 2016\n\nSo awesome - at Wise Buys thrift store in Bellingham, they were selling recycled jewelry handmade by local high school students. ", "Each piece had tag of the student's name on it; how great a teaching opportunity, to give them that sense of pride in creating a product! ", "Some of these look very JCrew inspired and most people would never guess they were made from pieces of old broken jewelry. ", "I almost bought one of the thin chained, single-pendant clear rhinestone necklaces on the chalkboard.", "\n\nThursday, July 14, 2016\n\nThe culottes trend has slowly grown on me; they're not quite gauchos (*shudder*) but wider throughout and generally more structured and voluminous... therefore somehow more flattering than the bell flare of gauchos. ", "Maybe I'll shudder at culottes in 10 years too, but so it is with trends. ", "Since this one is fairly difficult to pull off and style, I didn't want to spend too much money.", "\n\nI found these very long, high-waisted, wide-legged pants (that came with a belt) at Goodwill for $2, and simply cut off about 10\" from the bottom and finished with an invisible hem. ", "It was difficult deciding just where to crop them - culottes come in all sorts of lengths nowadays from more of a shorts style to just above the ankle - but there's enough room for me to take them lower or higher it in the future if I want a change.", "\n\nThursday, May 12, 2016\n\n\"Fashion is the armor we wear, it’s a very powerful communication device. ", "So there must be creativity to create clothing to create inspired clothing and creativity in communicating the story behind the clothing as well. ", "Without creativity clothing is just a commodity, something functional to cover our bodies.\" - ", "Maxine Bédat, co-founder and CEO of Zady\n\nMy military jacket used to be my default \"uniform,\" especially when I had no idea what the day was going to bring, or when I just wanted to go unnoticed. ", "Sometimes I want to switch characters like a person in a stageplay. ", "Nowadays though, there isn't much of a time or place to wear those things, because I'm called to represent something bigger and prouder and make stuff happen. ", "Slowly my clothes reflect how I'm growing and changing, but yet somehow these clothes are still very me. ", "There's a difference though - they're not necessarily to keep things at an arm's length, but rather to propel me out there just as I am and be who I was meant to be.", "\n\nFriday, April 29, 2016\n\nFor me, pads aren't the most comfortable thing, and tampons are even worse. ", "I considered getting a menstrual cup in the past (to reduce waste!) ", "but it justseemed like a different version of a tampon. ", "So when I heard of THINX, the panties that absorb without leaking, bulking, or staining, I was excited.", "\n\nI chose the boyshort style, which is designed for medium days.", "\n\nTHINX fit true to size (I'm 27\", usually pant size 4, and ordered a size small), and are very stretchy and comfortable. ", "To my surprise, the whole inside is actually lined (with a bit extra in the crotch area, of course) with a breathable cotton fabric. ", "I was worried they would feel like weird squeaky disco shorts but they feel and look just like regular modern underwear except a bit thicker. ", "The line doesn't show underneath normal pants.", "\n\nAs for the most important part, the functionality: I wore this on day 3 of menstruation, and it did not make me feel vulnerable at all around other people; I almost forgot I was on my period! ", "It soaked everything in (the black made it barely visible) without feeling wet, bulking up or leaking, and I felt comfortable enough to wear it for half a day before changing. ", "Soaking and washing was quick and simple with a small plastic tub, and it dried within 24 hours, ready to be reused.", "The verdict: I would highly recommend these! ", "As someone who is going to be on my feet all the time and getting close to people (in the clinic/hospital), these are very liberating (not an exaggeration)!Use this code to get $10 off and free shipping on your first purchase - http://fbuy.me/dPYLp. ", "There are styles from full coverage to thongs (handling heavy to light periods). ", "Even better, they help give girls in developing countries the resources for reusable hygiene products so that they can function better in society as well!", "\n\nSunday, March 27, 2016\n\nFriday, March 25, 2016\n\nOn my recent trip back to Atlanta, Jenni and I decided to check out the High Museum and there happened to be a new fashion collection - Iris van Herpen: Transforming Fashion - on display. ", "Our second that was also totally unplanned (after the Dior exhibit in Seoul)!", "\n\nVan Herpen is known for her futuristic creations made out of non-traditional materials such as fiberglass and 3D printing! ", "Still, each piece looked extremely light and moveable and fluid, not pieced together. ", "Each one of her collections has a complex theme such as \"Cabriole,\" \"Voltage,\" and \"Biopiracy,\" that conjures up even more imagination and self-reflection.", "\n\nSome of my favorite works:\n\nThe skeleton dress from \"Escapism\"\n\nWater cape from \"Crystallization\"\n\nFrom \"Voltage\"\n\nAlso from \"Voltage.\" ", "This beautifully picked up pieces of light from all angles.", "\n\nFrom \"Magnetic Motion.\" ", "Up close, even more stunning like moving icicles.", "\n\nWednesday, March 23, 2016\n\nThis guy was so stylish and nice and even showed us how to pose/take pictures with the art to make it an accent and us the focus. ", "Seemed like the type of guy who would have his own blog - should have asked!", "\n\nFriday, March 18, 2016\n\nI really missed the thought-out streetstyle that I'd always see on Emory campus. ", "This is a casual, Mori-girl take on the culotte - a trend I've been wanting to try for awhile. ", "Will they still be in style for awhile (but does that matter)?", "\n\nAbout Me\n\nLea\n\nAtlanta/Seattle, United States\n\nWhat is most interesting is fashion when it's living. ", "I find it inspiring when people dress well - but in their unique interpretation. ", "Searching for people who enjoy having fun with their style and make their own statements.", "\nIf you want your picture removed, don't hesitate to contact me!" ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.02185792349726776, 0, 0, 0, 0, 0.015873015873015872, 0, 0.004032258064516129, 0, 0, 0, 0, 0, 0, 0.005434782608695652, 0, 0, 0, 0, 0.00510204081632653, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.004, 0, 0, 0.004201680672268907, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.009345794392523364, 0, 0, 0, 0, 0, 0 ]
0.000907
5
[ { "analysis_explanation": null, "end": 25, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 67, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62 }, { "analysis_explanation": null, "end": 98, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 80 }, { "analysis_explanation": null, "end": 653, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 626 }, { "analysis_explanation": null, "end": 1537, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1512 }, { "analysis_explanation": null, "end": 1756, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1751 }, { "analysis_explanation": null, "end": 1853, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1845 }, { "analysis_explanation": null, "end": 1882, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1877 }, { "analysis_explanation": null, "end": 1999, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1989 }, { "analysis_explanation": null, "end": 2027, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2018 }, { "analysis_explanation": null, "end": 2048, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2043 }, { "analysis_explanation": null, "end": 2558, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2549 }, { "analysis_explanation": null, "end": 2632, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2618 }, { "analysis_explanation": null, "end": 2992, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2987 }, { "analysis_explanation": null, "end": 3103, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3094 }, { "analysis_explanation": null, "end": 3301, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3275 }, { "analysis_explanation": null, "end": 3331, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3322 }, { "analysis_explanation": null, "end": 3344, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3335 }, { "analysis_explanation": null, "end": 3348, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3346 }, { "analysis_explanation": null, "end": 3593, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3567 }, { "analysis_explanation": null, "end": 3615, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3593 }, { "analysis_explanation": null, "end": 3669, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3659 }, { "analysis_explanation": null, "end": 4132, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4109 }, { "analysis_explanation": null, "end": 4392, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4384 }, { "analysis_explanation": null, "end": 4975, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4953 }, { "analysis_explanation": null, "end": 5303, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5291 }, { "analysis_explanation": null, "end": 5427, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5420 }, { "analysis_explanation": null, "end": 6007, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5985 }, { "analysis_explanation": null, "end": 6333, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6325 }, { "analysis_explanation": null, "end": 6374, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6370 }, { "analysis_explanation": null, "end": 6889, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6884 }, { "analysis_explanation": null, "end": 7168, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7158 }, { "analysis_explanation": null, "end": 7281, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7273 }, { "analysis_explanation": null, "end": 7507, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7490 }, { "analysis_explanation": null, "end": 7858, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7834 }, { "analysis_explanation": null, "end": 7880, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7858 }, { "analysis_explanation": null, "end": 7915, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7908 }, { "analysis_explanation": null, "end": 8145, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8140 }, { "analysis_explanation": null, "end": 8158, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8148 }, { "analysis_explanation": null, "end": 8808, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8783 }, { "analysis_explanation": null, "end": 9039, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9017 }, { "analysis_explanation": null, "end": 9169, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9162 }, { "analysis_explanation": null, "end": 9302, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9295 }, { "analysis_explanation": null, "end": 9310, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9303 }, { "analysis_explanation": null, "end": 9325, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9312 }, { "analysis_explanation": null, "end": 7597, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 7576 } ]
[ "(11/25 1 p.m. PT): It has just been revealed that SCI will perform a special “The Doobie Incident” set at Lockn’ featuring classic rockers The Doobie Brothers.", "\n\nEarlier today, Lockn’ Festival organizers confirmed Widespread Panic would return for next September’s event as well as Tedeschi Trucks Band. ", "Now we have our third Lockn’ ’15 lineup announcement as The String Cheese Incident have been added to the bill.", "\n\nThe String Cheese Incident will play two nights at Lockn’ 2015. ", "All three bands announced thus far have played each installment of the now three-year-old festival. ", "In 2013 SCI collaborated with Zac Brown and this past September they presented a String Cheese & The Gang set featuring JT Taylor. ", "Lockn’ 2015 takes place at Oak Ridge Farm in Arrington, Virginia between September 10 -13. ", "Tickets go on sale on Monday, December 1 at 10 a.m. ET. ", "Look for more artist announcements soon.", "\n\nUPDATE 11/25 1 p.m. PT: It has just been revealed that SCI will perform a special “The Doobie Incident” set at Lockn’ featuring classic rockers The Doobie Brothers." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.018867924528301886, 0.020833333333333332, 0, 0.015151515151515152, 0, 0.022900763358778626, 0.01098901098901099, 0, 0, 0.018072289156626505 ]
0.010681
5
[ { "analysis_explanation": null, "end": 13, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7 }, { "analysis_explanation": null, "end": 173, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 160 }, { "analysis_explanation": null, "end": 262, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246 }, { "analysis_explanation": null, "end": 300, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 280 }, { "analysis_explanation": null, "end": 461, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 451 }, { "analysis_explanation": null, "end": 567, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 553 }, { "analysis_explanation": null, "end": 585, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 581 }, { "analysis_explanation": null, "end": 617, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 608 }, { "analysis_explanation": null, "end": 641, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 622 }, { "analysis_explanation": null, "end": 707, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 698 }, { "analysis_explanation": null, "end": 720, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 716 }, { "analysis_explanation": null, "end": 763, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 754 }, { "analysis_explanation": null, "end": 773, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 765 }, { "analysis_explanation": null, "end": 794, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 774 }, { "analysis_explanation": null, "end": 840, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 822 }, { "analysis_explanation": null, "end": 854, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 844 }, { "analysis_explanation": null, "end": 916, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 910 }, { "analysis_explanation": null, "end": 909, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "DateRecognizer_140094861343904", "recognizer_name": "DateRecognizer" }, "score": 0.44999999999999996, "start": 904 }, { "analysis_explanation": null, "end": 6, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "DateRecognizer_140094861343904", "recognizer_name": "DateRecognizer" }, "score": 0.1, "start": 1 } ]
[ "Mignane Diouf\n\nMignane Diouf (born February 1, 1989 in Saly) is a Senegalese footballer who currently plays for Al-Orobah .", "\n\nCareer\nDiouf signed for Senegal National League 2 side Diambars in 2010, aged 21, before being loaned out to Tromsø IL in Norway where he made one appearance in 2010.", "\n\nOn May 6, 2011, Diouf was sent on loan again, this time to the Montreal Impact in the North American Soccer League. ", "He made his debut for Montreal on May 14, 2011, in a 2-1 loss to the Carolina RailHawks, and scored his first goal for the club on June 4 in a 2-0 win over FC Edmonton.", "\n\nReferences\n\nExternal links\n Montreal Impact bio\n\nCategory:1989 births\nCategory:Living people\nCategory:Senegalese footballers\nCategory:Serer sportspeople\nCategory:Tromsø IL players\nCategory:Montreal Impact (1992–2011) players\nCategory:Eliteserien players\nCategory:North American Soccer League players\nCategory:Senegalese expatriate footballers\nCategory:Expatriate footballers in Norway\nCategory:Senegalese expatriate sportspeople in Norway\nCategory:Expatriate soccer players in Canada\nCategory:Senegalese expatriate sportspeople in Canada\nCategory:Expatriate footballers in Morocco\nCategory:Senegalese expatriate sportspeople in Morocco\nCategory:Expatriate footballers in Oman\nCategory:Senegalese expatriate sportspeople in Oman\nCategory:Expatriate footballers in Saudi Arabia\nCategory:Senegalese expatriate sportspeople in Saudi Arabia\nCategory:Al-Kawkab FC players\nCategory:Al-Orobah FC players\nCategory:Prince Mohammad bin Salman League players\nCategory:Saudi Second Division players\nCategory:Diambars FC players\nCategory:Olympique Club de Khouribga players\nCategory:Association football forwards\nCategory:Chabab Atlas Khénifra players" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.024390243902439025, 0.011904761904761904, 0.00847457627118644, 0.011904761904761904, 0.004389815627743635 ]
0.012213
5
[ { "analysis_explanation": null, "end": 28, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 51, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35 }, { "analysis_explanation": null, "end": 59, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55 }, { "analysis_explanation": null, "end": 76, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66 }, { "analysis_explanation": null, "end": 136, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 131 }, { "analysis_explanation": null, "end": 195, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 191 }, { "analysis_explanation": null, "end": 204, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 202 }, { "analysis_explanation": null, "end": 242, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 233 }, { "analysis_explanation": null, "end": 252, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246 }, { "analysis_explanation": null, "end": 289, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 285 }, { "analysis_explanation": null, "end": 305, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 294 }, { "analysis_explanation": null, "end": 312, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 307 }, { "analysis_explanation": null, "end": 437, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 429 }, { "analysis_explanation": null, "end": 453, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 441 }, { "analysis_explanation": null, "end": 544, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 538 }, { "analysis_explanation": null, "end": 574, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 566 }, { "analysis_explanation": null, "end": 688, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 678 }, { "analysis_explanation": null, "end": 715, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 710 }, { "analysis_explanation": null, "end": 791, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 782 }, { "analysis_explanation": null, "end": 895, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 885 }, { "analysis_explanation": null, "end": 960, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 954 }, { "analysis_explanation": null, "end": 980, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 970 }, { "analysis_explanation": null, "end": 1014, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1008 }, { "analysis_explanation": null, "end": 1059, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1053 }, { "analysis_explanation": null, "end": 1079, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1069 }, { "analysis_explanation": null, "end": 1113, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1107 }, { "analysis_explanation": null, "end": 1176, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1166 }, { "analysis_explanation": null, "end": 1211, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1204 }, { "analysis_explanation": null, "end": 1271, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1261 }, { "analysis_explanation": null, "end": 1351, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1339 }, { "analysis_explanation": null, "end": 1371, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1361 }, { "analysis_explanation": null, "end": 1411, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1399 }, { "analysis_explanation": null, "end": 1514, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1488 } ]
[ "This monthly recap of August 2017 worldwide public holidays news and updates,\ncovering all the countries of the world, is based on our daily review of hundreds of on-line newspapers, government sites, and institutional sources,\nand over a decade of experience following worldwide public holidays, to place current events in context, and anticipate on\npossible future changes.", "\n\nThe information on this page is provided for private, non-professional, use. ", "To access our news feed and full database of worldwide public holidays and bank holidays, under license, please contact us.", "\n\nIndia 2017 Puducherry Public Holidays Amended Again (Source: Government of Puducherry-Saram) - Summary: The Government of India's state of Puducherry has changed the date of the upcoming Bakrid public holiday from Friday, September 1, 2017, to Saturday, September 3, 2017. ", "Links: full story and other India news and updates.", "\n\nSri Lankan Public Holiday September 2 (Source: Ministry of Public Administration and Home Affairs-Colombo) - Summary: The Sri Lankan Minister of Public Administration and Home Affairs has announced that the Sri Lankan Government had decided to declare Saturday, September 2, 2017, as a non-working public holiday in Sri Lanka on account of the Hijj Festival which falls on Saturday, September 2, 2017. ", "Links: full story and other Sri Lanka news and updates.", "\n\nNepalese 2017 Eid-ul-Adha Public Holiday (Source: Nepalese Ministry of Home Affairs-Kathmandu) - Summary: The government of Nepal, through its Ministry of Home Affairs, has finally announced that Sunday, September 3, 2017, had been declared as the date of the upcoming annual non-working public holiday across the country on account of the upcoming Baqar-Eid (Feast of Sacrifice) annual non-working public holiday of Nepal. ", "Links: full story and other Nepal news and updates.", "\n\nIndia 2018 Chhattisgarh Public Holidays Announced (Source: Government of Chhattisgarh-Raipur) - Summary: The Government of India's state of Chhattisgarh has released a Government Order containing its annual list of the days which will be non-working public holidays in India's state of Chhattisgarh for the upcoming calendar year 2018. ", "Links: full story and other India news and updates.", "\n\nMalaysian Public Holiday September 4 (Source: Bernama News Agency-Kuala Lumpur) - Summary: Malaysia's Prime Minister, Datuk Seri Najib Tun Razak, has announced that the government of Malaysia had decided to declare Monday, September 4, 2017, as a one-off non-working public holiday in Malaysia \"following Malaysia's outstanding performance at the 29th SEA Games\". ", "Links: full story and other Malaysia news and updates.", "\n\nKenya Restricts 2017 Idd-ul-Adha Public Holiday (Source: Kenya Broadcasting Corporation-Nairobi) - Summary: Kenya's Interior Minister, Fred Matiang’i, has announced that employers could allow Muslim workers a day off on Friday, September 1st, 2017, to mark the coming Eid al-Adha Islamic holiday, but that this would not be a nationwide public holiday as was the case last year. ", "Links: full story and other Kenya news and updates.", "\n\nTurkmenistan Public Holiday September 5 (Source: Turkmenistan Government Information Agency-Ashgabad) - Summary: Turkmenistan's President, Gurbanguly Berdimuhammadov, has signed a decree declaring Tuesday, September 5, 2017, as a one-off day in lieu non-working public holiday \"to make up for the Sunday that happens during the Eid al-Adha festival\". ", "Links: full story and other Turkmenistan news and updates.", "\n\nSt. Kitts and Nevis Rules-Out September 18 Public Holiday (Source: Office of the Prime Minister of Saint Kitts and Nevis-Basseterre) - Summary: The Office of the Prime Minister of St. Kitts and Nevis has issued a statement ruling-out the declaration of Monday, September 18, 2017, as a one-off non-working public holiday in St. Kitts and Nevis. ", "Links: full story and other Saint Kitts and Nevis news and updates.", "\n\nGabonese 2017 Eid al Adha Public Holiday (Source: Gouvernement de la République Gabonaise-Libreville) - Summary: Gabon's ministre du du Travail, de l’Emploi et de la Formation professionnelle, Carmen Ndaot, has announced that the date of the upcoming Aïd El Kebir (Feast of Sacrifice) public holiday, would be observed as a non-working public holiday on Friday, September 1, 2017, throughout the Gabon. ", "Links: full story and other Gabon news and updates.", "\n\nQatar 2017 Eid Al Adha Public Holidays Announced (Source: Qatari News Agency-QNA) - Summary: Qatar's Emiri Diwan has once again extended the Eid al-Adha public sector holidays, for ministries, government departments, general authorities and institutions, so that they will be on holiday for 10 days for the upcoming Eid Al Adha (Feast of Sacrifice) public holidays. ", "Links: full story and other Qatar news and updates.", "\n\nBahrain 2017 Eid Al Adha Public Holidays Announced (Source: Bahrain News Agency-BNA) - Summary: Bahrain's Prime Minister, Prince Khalifa bin Salman Al Khalifa, has issued a circular declaring Thursday to Thursday, August 31 to September 5, 2017, as the annual non-working public sector holidays in Bahrain to mark the upcoming Eid Al-Adha (Feast of Sacrifice) public sector holidays for the Islamic year 1438. ", "Links: full story and other Bahrain news and updates.", "\n\nPhilippines Eid'l Adha Public Holiday September 1 (Source: Philippine Information Agency-Manila) - Summary: Philippines Presidential Executive Secretary, Salvador C. Medialdea, has announced that Philippines President, Rodrigo Duterte, had signed Proclamation No.297, declaring Friday, September 1, 2017, as the date of the upcoming Eid'l Adha (Feast of Sacrifice) annual non-working public holiday of the Philippines, in accordance with Republic Act 9177. ", "Links: full story and other Philippines news and updates.", "\n\nUgandan 2017 Eid Adhuha Public Holiday (Source: Office of the Prime Minister of the Republic of Uganda-Kampala) - Summary: The permanent secretary in Uganda's Ministry of Public Service, Catherine Bitarakwate Musingwiire, has announced that the government of Uganda had declared Friday, September 1, 2017, as the date of the upcoming Eid Adhuha (Feast of Sacrifice) annual non-working public holiday in Uganda. ", "Links: full story and other Uganda news and updates.", "\n\nNigerian 2017 Eid El-Kabir Public Holidays Announced (Source: Official Gazette of the Federal Republic of Nigeria-Abuja) - Summary: The Minister of the Interior of the Federal Government of Nigeria, Abdulrahman Dambazau, has announced that the Nigerian Government had decided to declare Friday and Monday, September 1 and 4, 2017, as the date of the 2017 annual non-working public holidays of Nigeria on account of the upcoming Eid-el-Kabir (aka. ", "Eid al-Adha or Feast of sacrifice). ", "Links: full story and other Nigeria news and updates.", "\n\nOman 2017 Eid al Adha Public Holidays Announced (Source: Oman News Agency-Muscat) - Summary: Omani authorities have announced the dates of the upcoming Eid al Adha (Feast of Sacrifice) annual non-working public holidays for the private sector and the public sector, for the calendar year 2017, as running from Thursday, August 31, to Monday, September 4, 2017, for both public and private sector workers. ", "Links: full story and other Oman news and updates.", "\n\nSingapore Public Holiday September 23 (Source: Singapore Elections Department-Singapore) - Summary: The Government of Singapore has announced that, in all likelihood, it will declare Saturday, September 23, 2017, as another one-off public holiday on account of the Presidential Election that will be held on that day. ", "Links: full story and other Singapore news and updates.", "\n\nSouth Korean October 2 Public Holiday Flip-Flop (Source: Yonhap News Agency-Seoul) - Summary: The Government of South Korea is reconsidering its earlier announced declaration of Monday, October 2, 2017, as a one-off (temporary) non-working public holiday in South Korea, to link the annual Chuseok South Korean public holiday with the preceding weekend. ", "Links: full story and other South Korea news and updates.", "\n\nJordanian 2017 Eid Al Adha Public Holidays (Source: Jordan News Agency Petra-Amman) - Summary: The Jordanian Prime Ministry has issued a circular decreeing August 31, to September 4, 2017, as the non-working public holidays in Jordan on account of the upcoming \"Eid Al Adha\" non-working public holidays of Jordan in 2017. ", "Links: full story and other Jordan news and updates.", "\n\nPakistan 2017 Eid-ulAzha Public Holidays (Source: The State Bank of Pakistan-Karachi) - Summary: The State Bank of Pakistan (SBP) has announced that the State Bank of Pakistan and the commercial banks of Pakistan would observe their annual Eid-ulAzha bank holidays from September 1-4, 2017. ", "Links: full story and other Pakistan news and updates.", "\n\nTogolese Tabaski 2016 Public Holiday (Source: Primature du Togo-Lome) - Summary: The Minister of Labour of the government of Togo has announced that, as per an earlier decision of the Union musulmane du Togo (UMT), Friday, September 1, 2017, had been declared as the date of the annual non-working public holiday throughout Togo for the upcoming Aid al-Kébir (Feast of Sacrifice, aka. ", "Tabaski). ", "Links: full story and other Togo news and updates.", "\n\nGuyana Public Holiday September 1 (Source: Guyana Ministry of Home Affairs-Georgetown) - Summary: The government of Guyana has issued a \"Notification Under The Public Holidays Act (CAP. ", "19:07)\" in the Official Gazette\n(extraordinary) Of Guyana, whereby Friday, September 1, 2017, is gazetted as an official non-working public holiday in Guyana on account of the upcoming Eid-ul-Adha annual non-working public holiday of Guyana. ", "Links: full story and other Guyana news and updates.", "\n\nUzbekistan 2017 Eid al Adha Public Holidays (Source: Uzbek National News Agency-Tashkent) - Summary: The President of Uzbekistan, Shavkat Mirziyayev, has issued his annual resolution \"On celebrating Kurban-hait (Eid al-Adha)\" which declares Friday, September 1, 2017, as the non-working day off public holiday in Uzbekistan for the upcoming Eid al-Adha (Feast of Sacrifice). ", "Links: full story and other Uzbekistan news and updates.", "\n\nUAE 2017 Eid Al Adha Public Holidays (Source: Emirates News Agency-WAM) - Summary: The UAE Federal Government, through its respective ministries, has announced the dates of the annual upcoming 2017 Eid Al Adha (Feast of Sacrifice) non-working public holidays, as usual in separate announcements for the public sector and the private sector of the UAE. ", "Links: full story and other UAE (United Arab Emirates) news and updates.", "\n\nGhana 2017 Eidul-Adha Public Holidays (Source: Ghana Government Portal-Accra) - Summary: Ghana's Minister of the Interior, Ambrose Dery, has issued a statement indicating that Friday, September 1, 2017, will be a non-working public holidays in Ghana on the occasion of the 2017 Eidul-Adha (Feast of Sacrifice), and a statutory holiday to be observed as such. ", "Links: full story and other Ghana news and updates.", "\n\nSenegal 2017 Eid al-Adha Public Holidays (Source: Site Officiel du Gouvernement du Sénégal-Dakar) - Summary: The National Moon-Sighting Commission of Sénégal (Commission nationale d'observation du croissant lunaire - CNOCL) has announced that the upcoming Tabaski (Aid el Kébir, aka. ", "Feast of Sacrifice) annual non-working public holiday would be on Saturday, September 2, 2017. ", "Links: full story and other Sénégal news and updates.", "\n\nBangladesh 2017 Eid-ul-Azha Public Holidays (Source: Bangladesh Sangbad Sangstha-BSS) - Summary: Bangladesh's Governnment, has announced the date of the upcoming Eid-ul-Azha (Feast of Sacrifice), on Saturday,Spetember 2, 2017, and annual non-working public holidays in Bangladesh. ", "Links: full story and other Bangladesh news and updates.", "\n\nEgyptian 2017 Eid Al-Adha Public Holidays (Source: Egypt State Information Service-Cairo) - Summary: Egyptian authorities have extended the upcoming public sector's Eid Al-Adha annual non-working public holidays of 2017, for government clerical staff, which will run from Thursday, August 31, until Monday, September, 2017. ", "Links: full story and other Egypt news and updates.", "\n\nPakistan Extends 2017 Eid-ulAzha Public Holidays (Source: Pakistan's Ministry of Interior-Islamabad) - Summary: The Ministry of the Interior of the Federal Government of Pakistan has amended the dates for the upcoming Eid-ulAzha (Feast of sacrifice) annual non-working public holidays throughout Pakistan for the calendar year 2017, extending the upcoming Eid-ulAzha non-working public holidays period to a total of 4 consecutive days. ", "Links: full story and other Pakistan news and updates.", "\n\nTunisian 2017 Aïd El-Idha Public Holidays (Source: Agence Tunis Afrique Presse-TAP) - Summary: The government of Tunisia (Présidence du Gouvernement) has announced that the upcoming Aïd El-Idha (Feast of Sacrifice) annual non-working public holidays throughout Tunisia would be observed on Friday and Saturday, September 1-2, 2017. ", "Links: full story and other Tunisia news and updates.", "\n\nMorocco 2017 Aid Al Adha Public Holidays (Source: Agence Maroc Arabe Presse-Rabat) - Summary: The Government of Morocco, through its \"ministère des Habous et des Affaires islamiques\", has announced that the date for the upcoming 2017 Aid Al Adha (Feast of Sacrifice) non-working public holidays in Morocco, would run from Friday, September 1, 2017, until, Sunday, September 3, 2017. ", "Links: full story and other Morocco news and updates.", "\n\nMacedonian 2017 Assumption Public Holiday (Source: Ministry of Labour and Social Policy of the Republic of Macedonia-Skopje) - Summary: Macedonia's Ministry of Labour and Social Policy has announced that Monday, August 28, 2017, would be a non-working public holiday for Orthodox faithful in Macedonia on account of the upcoming Assumption of the Mother of God annual sectorial non-working public holiday of Macedonia. ", "Links: full story and other Macedonia news and updates.", "\n\nMalaysia Confirms 2017 Public Holidays Amendments (Source: Laman Web Rasmi Bahagian Kabinet Jabatan Perdana Menteri-Kuala Lumpur) - Summary: The Malaysian Islamic Development Department (Jakim) has issued a statement confirming last January's change to the 2017 date of the Awal Muharram (Islamic New Year) in both the JAKIM religious holiday and the 2017 Federal holidays calendar of non-working public holidays in Malaysia. ", "Links: full story and other Malaysia news and updates.", "\n\nJapan Mulls 2020 Tokyo Olympics Public Holiday (Source: The Asahi Simbun-Tokyo) - Summary: A nonpartisan group of lawmakers plans to submit a national holidays reform bill to declare the opening day of the 2020 Tokyo Olympics as a one-off non-working public holiday national holiday in Japan. ", "Links: full story and other Japan news and updates.", "\n\nKuwaiti 2017 Eid Al-Adha Public Holidays (Source: Kuwait Civil Service Commission-Kuwait City) - Summary: The Kuwaiti Civil Service Commission has announced that the dates of the upcoming 2017 Eid Al-Adha (Feast of Sacrifice) non-working public holidays in Kuwait would run, this year, for 5 days. ", "Links: full story and other Kuwait news and updates.", "\n\nAngolan Confirms August 23 Public Holiday (Source: AngoNotícias-Luanda) - Summary: Angolan head of State, José Eduardo dos Santos, has announced that Wednesday, August 23, 2017, would be a one-off public holiday (tolerância de ponto) on account of the upcoming fourth general elections in Angola. ", "Links: full story and other Angola news and updates.", "\n\nGibraltar Confirms September 4 Public Holiday (Source: Government of Gibraltar Press Office-Gibraltar) - Summary: The Government of Gibraltar has issued a statement confirming that the 2017 day in lieu non-working public holiday for the National Day annual public holiday of Gibraltar would be observed on Monday, September 4, 2017, and that Monday, September 11, 2017, would not be declared a day in lieu non-working public holiday in Gibraltar. ", "Links: full story and other Gibraltar news and updates.", "\n\nZimbabwe Amends Public Holidays (Source: The Herald-Harare) - Summary: Zimbabwe's Home Affairs Minister, Ignatius Chombo, has announced that the government of Zimbabwe had amended the annual list of non-working public holidays in Zimbabwe by declaring February 21 as Robert Gabriel Mugabe National Youth Day, a new annual non-working public holiday in Zimbabwe, in honour of Robert Mugabe, who has ruled Zimbabwe since 1980, and who was born on February 21, 1924. ", "Links: full story and other Zimbabwe news and updates.", "\n\nKyrgyzstan 2017 Kurman Ait Public Holiday (Source: Kabar Kyrgyz National News Agency-Bishkek) - Summary: The Ministry of Labour and Social Development of the Kyrgyz Republic has announced that Friday, September 1, 2017, would be the date of the upcoming annual non-working public holiday in Kyrgyzstan on account of the Kurman Ait (Feast of Sacrifice) annual public holiday of Kyrgyzstan. ", "Links: full story and other Kyrgyzstan news and updates.", "\n\nSwaziland Umhlanga/Reed Dance 2017 Public Holiday (Source: Government of Swaziland Ministry of Home Affairs-Mbabane) - Summary: Swaziland's government has announced the date when the upcoming non-working public holiday in Swaziland for the 2017 Umhlanga (aka. ", "Reed Dance) would be observed. ", "Links: full story and other Swaziland news and updates.", "\n\nSuriname Id-Ul-Adha Public Holiday September 1 (Source: Kabinet van de President van de Republiek Suriname-Paramarimbo) - Summary: The government of Suriname, via its Minister of the Interior, has announced that the upcoming \"Ied Ul Adha\" (Feast of Sacrifice) annual non-working public holiday in Suriname would be observed on Friday, September 1, 2017, a date which has been declared a non-working public holiday in Suriname. ", "Links: full story and other Suriname news and updates.", "\n\nUkraine August 2017 Public Holidays (Source: Cabinet of Ministers of the Ukraine-Kiev) - Summary: The Ministry of Social Policy of the Ukraine has issued a communiqué confirming and detailing the official list of August 2017 non-working public holidays in the Ukraine, as had been announced late last year. ", "Links: full story and other Ukraine news and updates.", "\n\nAustralia Mulls Further 2018 ACT Public Holidays Amendments (Source: ACT Government Chief Minister and Treasury Directorate-Canberra) - Summary: The Indigenous Affairs Minister of Australia's Capital Territory (ACT), Rachel Stephen-Smith, has introduced legislation to further amend the annual list of official non-working public holidays observed in the Australian Capital Territory (ACT) of Australia, by replacing the ACT's September Family and Community Day annual public holiday, with a new Reconciliation Day annual public holiday in Australia's Capital Territory in May. Links: full story and other Australia news and updates.", "\n\nArmenian Public Holiday September 18 (Source: Armenian News Agency-ARMENPRESS) - Summary: The Government of Armenia has announced that Monday, September 18, 2017, would once again be a non-working public holiday in Armenia, on account of the upcoming Exaltation of the Life-Giving Cross of the Lord feast (Khachverats), to be compensated by declaring Saturday, September 23, 2017, as a regular working day in Armenia. ", "Links: full story and other Armenia news and updates.", "\n\nMorocco 2017 Aid Al Adha Public Holidays Preview (Source: Agence Maroc Arabe Presse-Rabat) - Summary: The Government of Morocco, through its \"ministère de la fonction publique et de la modernisation de l'administration\", has ruled-out the declaration of an additional non-working public holiday in Morocco, on Monday, September 4, 2017, for the upcoming 2017 Aid Al Adha (Feast of Sacrifice) non-working public holidays in Morocco, even if the final date of the Aid Al Adha (Feast of Sacrifice) non-working public holiday fall on Saturday and Sunday, September 2 and 3, 2017. ", "Links: full story and other Morocco news and updates.", "\n\nSaudi Arabia Extends 2017 Eid al Adha Public Holidays (Source: Saudi Press Agency-SPA) - Summary: The government of Saudi Arabia has announced that this year's Eid al Adha (Feast of Sacrifice) public sector holidays would be extended by 6 days, beginning at the end of the working day on Dhul Hijjah 2, and with the last day of the 2017 annual Eid al Adha public holidays of Saudi Arabia being Dhul Hijjah 15. ", "Links: full story and other Saudi Arabia news and updates.", "\n\nMoldova Mulls September 1 Public Holiday (Source: Agentia Informationala de Stat-Moldpres) - Summary: Moldova's Cabinet has yet to decide whether or not to declare Friday, September 1, 2017, as a one-off bridge public sector holiday in Moldova to link the weekend to the annual August 31 National Language Day public holiday of Moldova. ", "Links: full story and other Moldova news and updates.", "\n\nTurkey Extends 2017 Eid al-Adha Public Holidays (Source: Hürriyet Daily News-Istanbul) - Summary: Following today's cabinet meeting, Turkish Deputy Prime Minister and government spokesman, Bekir Bozdag, announced that the Turkish cabinet had decided to extend the upcoming Eid al-Adha (Feast of Sacrifice) public holidays of Turkey in 2017 to last 10 days. ", "Links: full story and other Turkey news and updates.", "\n\nGuinea Conakry Public Holiday August 15 (Source: Portail Officiel du Gouvernement de la République de Guinée-Conakry) - Summary: The government of Guinea Conakry, through its Minister of Labour and of the Public Sector (\"le ministère en charge de la fonction publique, de la reforme de l’Etat et de la modernisation de l’administration\"), has announced that Tuesday, August 15, 2017, had been declared as a non-working public holiday in Guinea Conakry on account of the upcoming \"Assomption\". ", "Links: full story and other Guinea news and updates.", "\n\nFiji 2018 Public Holidays Announced And Gazetted (Source: Ministry of Information-Suva) - Summary: The Fiji Governing Cabinet has approved, through Gazette Notice No. ", "79, dated from last Friday, its annual list of the dates of official non-working public holidays in Fiji for the upcoming calendar year 2018. ", "Links: full story and other Fiji news and updates.", "\n\nTurkey 2017 Eid al-Adha Public Holidays Extension Update (Source: Hürriyet Daily News-Istanbul) - Summary: Turkish President Recep Tayyip Erdogan has announced that the decision to extend, or not, the upcoming Eid al-Adha (Feast of Sacrifice) public holidays of Turkey, as was done last year, would be taken at, and announced immediately after, the upcoming cabinet meeting of Tuesday, August 15, 2017. ", "Links: full story and other Turkey news and updates.", "\n\nJordan Public Holiday August 15 (Source: Jordan News Agency Petra-Amman) - Summary: The Jordanian cabinet of the government of Jordan has announced that Tuesday, August 15, 2017, had been declared a non-working public holiday in Jordan on account of that day's decentralized and municipal elections. ", "Links: full story and other Jordan news and updates.", "\n\nVenezuelan Bank Holiday August 14 (Source: Superintendencia de Instituciones del Sector Bancario-Sudeban) - Summary: The Venezuelan regulatory body for the banking sector, Sudeban (Superintendencia de Instituciones del Sector Bancario) has announced that Monday, August 14, 2017, would be another bank holiday in Venezuela, on account of the annual \"Asunción de Nuestra Señora\") annual bank holiday of Venezuela. ", "Links: full story and other Venezuela news and updates.", "\n\nIndian Haryana Public Holiday August 14 (Source: Chief Secretary Organisation, Haryana Government-Chandigarh) - Summary: The government of the Indian State of Haryana has further amended its previously-released list of 2017 public holidays in Haryana State by declaring Monday, August 14, 2017, as a public holiday for the Shri Krishna Janmashtmi annual public holiday of India's State of Haryana. ", "Links: full story and other India news and updates.", "\n\nCameroon Public Holidays August 14-15 (Source: Présidence de la République du Cameroun-Yaoundé) - Summary: The President of Cameroon, Paul Biya, has signed another decree declaring Monday, August 14, 2017, as a bridge non-working public holiday (feriée chômée sur toute l'étendue du territoire de la république du Cameroun) to link the annual upcoming, August 15, non-working public holiday of Cameroon to the preceding weekend. ", "Links: full story and other Cameroon news and updates.", "\n\nGabonese Public Holidays August 15-17 (Source: Gouvernement de la République Gabonaise-Libreville) - Summary: Gabon's Ministre du Travail, de l'Emploi et de la Prévoyance Sociale has announced that the upcoming annual National Day non-working public holidays in Gabon would run from Wednesday, August 15, 2017, until Friday, August 17, 2017. ", "Links: full story and other Gabon news and updates.", "\n\nEl Salvador August 15 Public Holiday Ruled-Out (Source: Asamblea Legislativa de la República de El Salvador-San Salvador) - Summary: El Salvador's legislative assembly has a bill by the president of the FMLN group, Sánchez Cerén, to declare Tuesdya, August 15, 2017, as a one-off non-working public holiday in el Salvador, to mark the 100th anniversary of the birth of monseñor Óscar Arnulfo Romero. ", "Links: full story and other El Salvador news and updates.", "\n\nBenin Public Holiday August 15 (Source: Site officiel du gouvernement du Bénin-Cotonou) - Summary: The government of Benin has released a communiqué, signed by Benin's Minister of Labour and Social Security, announcing that the government of Bénin had declared Tuesday, August 15, 2017, as a non-working public holiday throughout Bénin on account of the upcoming \"fête de l'Assomption\" annual non-working public holidays in the Bénin. ", "Links: full story and other Bénin news and updates.", "\n\nBotswana Announces Makwala Public Holiday (Source: Botswana Press Agency-Gaborone) - Summary: Botswana's Sports Minister, Thapelo Olopeng, has announced that a one-off public holiday in Botswana would be declared to honour Isaac Makwala's performance at the World Athletics Championship Links: full story and other Botswana news and updates.", "\n\nSpain 2018 Castilla La-Mancha Public Holidays Announced (Source: Diario Oficial de Castilla-La Mancha-DOCM) - Summary: The Consejera de Gobierno de Comunidad Autónoma de Castilla La-Mancha, through the regional vice-president, José Luis Martínez Guijarro, has announced the annual list of regional non-working public holidays in Spain's Autonomous Región of Castilla La-Mancha for the upcoming calendar year 2018 (\"calendario laboral de las fiestas laborales de carácter retribuido y no recuperable en el año 2018, en Castilla-La Mancha\"). ", "Links: full story and other Spain news and updates.", "\n\nKazakhstan Mulls August 31 Public Holiday (Source: Electronic government of the Republic of Kazakhstan-Astana) - Summary: The government of Kazakhstan is reported to be considering the declaration of Thursday, August 31, 2017, as a one-off non-working public holiday in Kazakhstan, to link the upcoming annual Constitution Day non-working public holiday of Kazakhstan, on Wednesday, August 30, 2017, with this year's Kurban-ait (Feast of Sacrifice) on Friday, September 1, 2017, and adjoining weekend. ", "Links: full story and other Kazakhstan news and updates.", "\n\nIraqi Public Holiday August 10 (Source: Al Sumaria News-Baghdad) - Summary: The Iraqi Government, via the Iraqi Cabinet, has once again declared a mandatory non-working public holiday in Iraq, on Thursday, August 10, 2017, due to forecasted high temperatures. ", "Links: full story and other Iraq news and updates.", "\n\nDominican Republic Confirms August 16 Public Holiday (Source: Ministerio de Trabajo República Dominicana-Santo Domingo) - Summary: The Ministry of Labour of the Dominican Republic has once again issued a communiqué announcing that, as per the current public holidays legislation, Wednesday, August 16, 2017, would be the date of the official annual non-working public holiday in the Dominican Republic on account of the upcoming Día de la Restauración non-working public holiday of the Dominican Republic. ", "Links: full story and other Dominican Republic news and updates.", "\n\nTurkey Mulls 2017 Eid al-Adha Public Holidays Extension (Source: Hürriyet Daily News-Istanbul) - Summary: After a 2017 End of Ramadan which covered 2 weekend days, the tourism industry of Turkey is calling on the government of Turkey to extend the upcoming Feast of Sacrifice (Eid al-Adha, in Arabic, or Kurban Bayrami, in Turkish) non-working public holidays in Turkey, as was done in recent years. ", "Links: full story and other Turkey news and updates.", "\n\nAntigua and Barbuda Emancipation Day Public Holidays Ruled-Out (Source: Permanent Secretary Ministry of Legal Affairs-St. John's) - Summary: The Festivals and Culture Minister of Antigua and Barbuda, E. P. Chet Greene, has ruled-out the declaration of a new official non-working public holidays in Antigua and Barbuda on Emancipation Day. ", "Links: full story and other Antigua and Barbuda news and updates.", "\n\nAustralia Mulls NSW Aboriginal Public Holiday (Source: Australian Broadcasting Corporation-ABC) - Summary: The Shadow Minister for Human Services of the Labor Party of Australia's State of New South Wales, Linda Burney, has announced that, in the event of a victory by the Labor Party in the 2019 NSW state elections, the government of New South Wales would declare a new non-working public holiday to celebrate the culture, people and heritage of Aboriginal and Torres Strait Islanders. ", "Links: full story and other Australia news and updates.", "\n\nArgentina Mulls October 31 Public Holiday (Source: Boletín Oficial de la República Argentina-Buenos Aires) - Summary: A bill has been introduced into Argentina's Lower House (Cámara de Diputados), by MP Marcelo Daletto (UCR), which add a new annual non-working public holiday in Argentina on October 31st, to mark the \"Día de las Iglesias Evangélicas\". ", "Links: full story and other Argentina news and updates.", "\n\nJamaican Public Holiday August 6-7 (Source: Jamaica Information Service-JIS) - Summary: The Ministry of Labour and Social Security of Jamaica, has announced that the upcoming Independence Day non-working public holiday of Jamaica would be observed on Monday, August 7, 2017. ", "Links: full story and other Jamaica news and updates.", "\n\nBolivian Public Holidays August 6-7 (Source: Agencia Boliviana de Información-La Paz) - Summary: Bolivia's Minister of Labour, Elizabeth Molina, has issued a communiqué announcing that Monday, August 7, 2017, would be observed as an official non-working public holiday (\"feriado con suspensión de actividades públicas y privadas\") to commemorate the \"Día de la Patria\", which falls on a Sunday in 2017. ", "Links: full story and other Bolivia news and updates.", "\n\nParaguay August 15 Public Holiday Re-Confirmed (Source: Presidencia de la República del Paraguay-Asunción) - Summary: The Paraguayan Presidency has released yet another communique confirming that, notwithstanding the Decreto Presidencial N° 9393, the upcoming Día de la fundación de Asunción Paraguayan annual non-working public holiday would remain on its set date of Tuesday, August 15, 2017. ", "Links: full story and other Paraguay news and updates.", "\n\nKenyan Public Holiday August 8 (Source: Kenya Broadcasting Corporation-Nairobi) - Summary: Kenya's Acting Interior Cabinet Secretary, Fred Matiangi, has announced that Tuesday, August 8, 2017 has been declared a public holiday in Kenya to coincide with the upcoming general elections. ", "Links: full story and other Kenya news and updates.", "\n\nMalaysian 2018 Public Holidays Announced (Source: Laman Web Rasmi Bahagian Kabinet Jabatan Perdana Menteri-Kuala Lumpur) - Summary: Malaysia's Cabinet's and the Constitution and Government Relations Department of the Prime Minister's Office have jointly issued the annual official Federal Public Holidays Schedule 2018 and State Public Holiday Schedule 2018 containing the list of official national non-working public holidays in Malaysia for the calendar year 2018 as well as the state-specific regional non-working public holidays in Malaysia for the calendar year 2018. ", "Links: full story and other Malaysia news and updates." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0.007272727272727273, 0, 0.012376237623762377, 0, 0.004694835680751174, 0, 0.005917159763313609, 0, 0.00819672131147541, 0, 0.005249343832020997, 0, 0.0056657223796034, 0, 0.005763688760806916, 0, 0.014814814814814815, 0, 0.008152173913043478, 0, 0.007281553398058253, 0, 0.015250544662309368, 0, 0.004842615012106538, 0, 0.008908685968819599, 0, 0, 0.004914004914004914, 0, 0.00625, 0, 0.0028089887640449437, 0, 0.006172839506172839, 0, 0.013651877133105802, 0, 0.015503875968992248, 0, 0.02, 0.010638297872340425, 0.004132231404958678, 0.019230769230769232, 0.007957559681697613, 0, 0.005649717514124294, 0, 0.0110803324099723, 0, 0.0034965034965034965, 0.010526315789473684, 0, 0, 0, 0.003067484662576687, 0, 0.0045662100456621, 0, 0.011976047904191617, 0, 0.007792207792207792, 0, 0.004750593824228029, 0, 0.011682242990654205, 0, 0, 0, 0.01, 0, 0.016722408026755852, 0, 0.004454342984409799, 0, 0.015021459227467811, 0, 0.01278772378516624, 0, 0.003816793893129771, 0.03225806451612903, 0.01818181818181818, 0.011655011655011656, 0, 0.003236245954692557, 0, 0.009448818897637795, 0.004761904761904762, 0, 0.005190311418685121, 0, 0.007281553398058253, 0, 0.0058997050147492625, 0.018867924528301886, 0.008356545961002786, 0, 0.00404040404040404, 0, 0.011834319526627219, 0, 0, 0.007407407407407408, 0, 0.006622516556291391, 0, 0.007228915662650603, 0, 0.0075, 0, 0.004640371229698376, 0.018518518518518517, 0.0029069767441860465, 0, 0.012437810945273632, 0, 0.011441647597254004, 0, 0.026239067055393587, 0.014760147601476014, 0, 0.003968253968253968, 0, 0.003816793893129771, 0, 0.003937007874015748, 0, 0.007462686567164179, 0, 0.008797653958944282, 0.03076923076923077, 0.014285714285714285, 0, 0.014084507042253521, 0, 0.007220216606498195, 0, 0.0049382716049382715, 0, 0.007556675062972292, 0.018518518518518517, 0.006968641114982578, 0, 0.010434782608695653, 0 ]
0.005144
5
[ { "analysis_explanation": null, "end": 12, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5 }, { "analysis_explanation": null, "end": 33, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22 }, { "analysis_explanation": null, "end": 140, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 135 }, { "analysis_explanation": null, "end": 582, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 577 }, { "analysis_explanation": null, "end": 587, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 583 }, { "analysis_explanation": null, "end": 598, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 588 }, { "analysis_explanation": null, "end": 662, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 652 }, { "analysis_explanation": null, "end": 726, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 716 }, { "analysis_explanation": null, "end": 770, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 764 }, { "analysis_explanation": null, "end": 816, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 791 }, { "analysis_explanation": null, "end": 848, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 821 }, { "analysis_explanation": null, "end": 883, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 878 }, { "analysis_explanation": null, "end": 1181, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1154 }, { "analysis_explanation": null, "end": 1227, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1218 }, { "analysis_explanation": null, "end": 1302, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1275 }, { "analysis_explanation": null, "end": 1400, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1360 }, { "analysis_explanation": null, "end": 1418, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1410 }, { "analysis_explanation": null, "end": 1489, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1484 }, { "analysis_explanation": null, "end": 1581, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1556 }, { "analysis_explanation": null, "end": 1746, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1740 }, { "analysis_explanation": null, "end": 1782, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1777 }, { "analysis_explanation": null, "end": 1817, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1812 }, { "analysis_explanation": null, "end": 1841, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1836 }, { "analysis_explanation": null, "end": 1846, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1842 }, { "analysis_explanation": null, "end": 1928, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1909 }, { "analysis_explanation": null, "end": 1988, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1976 }, { "analysis_explanation": null, "end": 2042, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2036 }, { "analysis_explanation": null, "end": 2059, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2051 }, { "analysis_explanation": null, "end": 2110, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2105 }, { "analysis_explanation": null, "end": 2134, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2122 }, { "analysis_explanation": null, "end": 2170, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2161 }, { "analysis_explanation": null, "end": 2205, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2200 }, { "analysis_explanation": null, "end": 2233, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2224 }, { "analysis_explanation": null, "end": 2302, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2290 }, { "analysis_explanation": null, "end": 2323, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2315 }, { "analysis_explanation": null, "end": 2368, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2348 }, { "analysis_explanation": null, "end": 2415, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2407 }, { "analysis_explanation": null, "end": 2464, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2439 }, { "analysis_explanation": null, "end": 2517, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2509 }, { "analysis_explanation": null, "end": 2537, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2529 }, { "analysis_explanation": null, "end": 2624, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2616 }, { "analysis_explanation": null, "end": 2648, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2643 }, { "analysis_explanation": null, "end": 2663, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2659 }, { "analysis_explanation": null, "end": 2756, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2751 }, { "analysis_explanation": null, "end": 2792, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2778 }, { "analysis_explanation": null, "end": 2841, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2835 }, { "analysis_explanation": null, "end": 2890, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2863 }, { "analysis_explanation": null, "end": 2938, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2900 }, { "analysis_explanation": null, "end": 3020, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3011 }, { "analysis_explanation": null, "end": 3055, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3050 }, { "analysis_explanation": null, "end": 3199, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3187 }, { "analysis_explanation": null, "end": 3239, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3213 }, { "analysis_explanation": null, "end": 3297, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3271 }, { "analysis_explanation": null, "end": 3315, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3304 }, { "analysis_explanation": null, "end": 3377, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3367 }, { "analysis_explanation": null, "end": 3465, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3453 }, { "analysis_explanation": null, "end": 3513, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3484 }, { "analysis_explanation": null, "end": 3594, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3583 }, { "analysis_explanation": null, "end": 3615, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3599 }, { "analysis_explanation": null, "end": 3673, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3664 }, { "analysis_explanation": null, "end": 3683, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3678 }, { "analysis_explanation": null, "end": 3763, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3737 }, { "analysis_explanation": null, "end": 3817, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3808 }, { "analysis_explanation": null, "end": 3827, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3822 }, { "analysis_explanation": null, "end": 3868, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3857 }, { "analysis_explanation": null, "end": 3937, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3897 }, { "analysis_explanation": null, "end": 3997, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3947 }, { "analysis_explanation": null, "end": 4015, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4010 }, { "analysis_explanation": null, "end": 4040, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4018 }, { "analysis_explanation": null, "end": 4102, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4090 }, { "analysis_explanation": null, "end": 4160, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4148 }, { "analysis_explanation": null, "end": 4276, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4251 }, { "analysis_explanation": null, "end": 4357, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4352 }, { "analysis_explanation": null, "end": 4362, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4358 }, { "analysis_explanation": null, "end": 4450, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4445 }, { "analysis_explanation": null, "end": 4464, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4453 }, { "analysis_explanation": null, "end": 4650, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4643 }, { "analysis_explanation": null, "end": 4679, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4655 }, { "analysis_explanation": null, "end": 4751, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4746 }, { "analysis_explanation": null, "end": 4777, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4770 }, { "analysis_explanation": null, "end": 4873, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4866 }, { "analysis_explanation": null, "end": 4928, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4892 }, { "analysis_explanation": null, "end": 4970, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4962 }, { "analysis_explanation": null, "end": 5014, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4974 }, { "analysis_explanation": null, "end": 5029, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5023 }, { "analysis_explanation": null, "end": 5075, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5068 }, { "analysis_explanation": null, "end": 5168, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5161 }, { "analysis_explanation": null, "end": 5178, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5174 }, { "analysis_explanation": null, "end": 5215, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5208 }, { "analysis_explanation": null, "end": 5245, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5234 }, { "analysis_explanation": null, "end": 5353, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5342 }, { "analysis_explanation": null, "end": 5409, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5388 }, { "analysis_explanation": null, "end": 5441, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5430 }, { "analysis_explanation": null, "end": 5468, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5453 }, { "analysis_explanation": null, "end": 5537, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5512 }, { "analysis_explanation": null, "end": 5605, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5599 }, { "analysis_explanation": null, "end": 5651, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5640 }, { "analysis_explanation": null, "end": 5730, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5719 }, { "analysis_explanation": null, "end": 5765, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5757 }, { "analysis_explanation": null, "end": 5859, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5829 }, { "analysis_explanation": null, "end": 5905, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5899 }, { "analysis_explanation": null, "end": 5969, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5936 }, { "analysis_explanation": null, "end": 6014, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6008 }, { "analysis_explanation": null, "end": 6053, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6028 }, { "analysis_explanation": null, "end": 6093, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6087 }, { "analysis_explanation": null, "end": 6121, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6115 }, { "analysis_explanation": null, "end": 6158, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6152 }, { "analysis_explanation": null, "end": 6194, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6188 }, { "analysis_explanation": null, "end": 6230, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6222 }, { "analysis_explanation": null, "end": 6432, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6412 }, { "analysis_explanation": null, "end": 6506, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6500 }, { "analysis_explanation": null, "end": 6542, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6511 }, { "analysis_explanation": null, "end": 6562, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6547 }, { "analysis_explanation": null, "end": 6567, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6563 }, { "analysis_explanation": null, "end": 6613, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6606 }, { "analysis_explanation": null, "end": 6653, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6641 }, { "analysis_explanation": null, "end": 6680, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6675 }, { "analysis_explanation": null, "end": 6731, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6724 }, { "analysis_explanation": null, "end": 6754, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6750 }, { "analysis_explanation": null, "end": 6787, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6755 }, { "analysis_explanation": null, "end": 6848, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6843 }, { "analysis_explanation": null, "end": 6913, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6902 }, { "analysis_explanation": null, "end": 6941, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6935 }, { "analysis_explanation": null, "end": 7042, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7020 }, { "analysis_explanation": null, "end": 7079, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7060 }, { "analysis_explanation": null, "end": 7109, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7084 }, { "analysis_explanation": null, "end": 7187, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7183 }, { "analysis_explanation": null, "end": 7215, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7206 }, { "analysis_explanation": null, "end": 7262, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7253 }, { "analysis_explanation": null, "end": 7417, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7389 }, { "analysis_explanation": null, "end": 7522, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7514 }, { "analysis_explanation": null, "end": 7561, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7552 }, { "analysis_explanation": null, "end": 7592, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7580 }, { "analysis_explanation": null, "end": 7602, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7593 }, { "analysis_explanation": null, "end": 7781, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7758 }, { "analysis_explanation": null, "end": 7849, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7838 }, { "analysis_explanation": null, "end": 7869, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7863 }, { "analysis_explanation": null, "end": 7890, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7870 }, { "analysis_explanation": null, "end": 7932, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7911 }, { "analysis_explanation": null, "end": 7973, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7962 }, { "analysis_explanation": null, "end": 8001, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7992 }, { "analysis_explanation": null, "end": 8006, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8002 }, { "analysis_explanation": null, "end": 8074, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8063 }, { "analysis_explanation": null, "end": 8157, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8148 }, { "analysis_explanation": null, "end": 8179, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8162 }, { "analysis_explanation": null, "end": 8225, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8219 }, { "analysis_explanation": null, "end": 8304, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8298 }, { "analysis_explanation": null, "end": 8312, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8308 }, { "analysis_explanation": null, "end": 8375, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8367 }, { "analysis_explanation": null, "end": 8407, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8376 }, { "analysis_explanation": null, "end": 8579, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8571 }, { "analysis_explanation": null, "end": 8606, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8600 }, { "analysis_explanation": null, "end": 8656, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8637 }, { "analysis_explanation": null, "end": 8694, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8686 }, { "analysis_explanation": null, "end": 8729, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8713 }, { "analysis_explanation": null, "end": 8781, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8759 }, { "analysis_explanation": null, "end": 8842, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8838 }, { "analysis_explanation": null, "end": 8920, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8903 }, { "analysis_explanation": null, "end": 8953, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8928 }, { "analysis_explanation": null, "end": 9041, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9037 }, { "analysis_explanation": null, "end": 9105, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9098 }, { "analysis_explanation": null, "end": 9140, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9136 }, { "analysis_explanation": null, "end": 9165, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9159 }, { "analysis_explanation": null, "end": 9281, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9275 }, { "analysis_explanation": null, "end": 9402, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9396 }, { "analysis_explanation": null, "end": 9437, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9412 }, { "analysis_explanation": null, "end": 9502, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9496 }, { "analysis_explanation": null, "end": 9585, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9579 }, { "analysis_explanation": null, "end": 9621, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9615 }, { "analysis_explanation": null, "end": 9650, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9640 }, { "analysis_explanation": null, "end": 9655, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9651 }, { "analysis_explanation": null, "end": 9768, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9758 }, { "analysis_explanation": null, "end": 9788, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9770 }, { "analysis_explanation": null, "end": 9906, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9881 }, { "analysis_explanation": null, "end": 9949, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9911 }, { "analysis_explanation": null, "end": 9963, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9953 }, { "analysis_explanation": null, "end": 10053, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10043 }, { "analysis_explanation": null, "end": 10075, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10072 }, { "analysis_explanation": null, "end": 10080, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10076 }, { "analysis_explanation": null, "end": 10255, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10249 }, { "analysis_explanation": null, "end": 10273, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10265 }, { "analysis_explanation": null, "end": 10422, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10419 }, { "analysis_explanation": null, "end": 10455, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10452 }, { "analysis_explanation": null, "end": 10477, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10457 }, { "analysis_explanation": null, "end": 10502, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10497 }, { "analysis_explanation": null, "end": 10507, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10503 }, { "analysis_explanation": null, "end": 10591, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10586 }, { "analysis_explanation": null, "end": 10632, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10620 }, { "analysis_explanation": null, "end": 10698, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10673 }, { "analysis_explanation": null, "end": 10746, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10741 }, { "analysis_explanation": null, "end": 10774, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10770 }, { "analysis_explanation": null, "end": 10785, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10775 }, { "analysis_explanation": null, "end": 10889, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10884 }, { "analysis_explanation": null, "end": 10915, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10908 }, { "analysis_explanation": null, "end": 10924, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10916 }, { "analysis_explanation": null, "end": 11130, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11125 }, { "analysis_explanation": null, "end": 11171, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11164 }, { "analysis_explanation": null, "end": 11218, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11212 }, { "analysis_explanation": null, "end": 11285, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11258 }, { "analysis_explanation": null, "end": 11322, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11315 }, { "analysis_explanation": null, "end": 11384, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11341 }, { "analysis_explanation": null, "end": 11425, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11394 }, { "analysis_explanation": null, "end": 11448, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11438 }, { "analysis_explanation": null, "end": 11462, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11451 }, { "analysis_explanation": null, "end": 11548, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11540 }, { "analysis_explanation": null, "end": 11566, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11559 }, { "analysis_explanation": null, "end": 11578, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11572 }, { "analysis_explanation": null, "end": 11620, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11610 }, { "analysis_explanation": null, "end": 11660, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11650 }, { "analysis_explanation": null, "end": 11687, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11679 }, { "analysis_explanation": null, "end": 11696, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11688 }, { "analysis_explanation": null, "end": 11788, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11780 }, { "analysis_explanation": null, "end": 11898, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11894 }, { "analysis_explanation": null, "end": 11970, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11951 }, { "analysis_explanation": null, "end": 12001, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11978 }, { "analysis_explanation": null, "end": 12036, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12031 }, { "analysis_explanation": null, "end": 12063, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12055 }, { "analysis_explanation": null, "end": 12103, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12072 }, { "analysis_explanation": null, "end": 12121, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12113 }, { "analysis_explanation": null, "end": 12233, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12225 }, { "analysis_explanation": null, "end": 12311, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12305 }, { "analysis_explanation": null, "end": 12359, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12351 }, { "analysis_explanation": null, "end": 12386, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12364 }, { "analysis_explanation": null, "end": 12489, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12471 }, { "analysis_explanation": null, "end": 12527, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12519 }, { "analysis_explanation": null, "end": 12554, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12546 }, { "analysis_explanation": null, "end": 12559, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12555 }, { "analysis_explanation": null, "end": 12666, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12659 }, { "analysis_explanation": null, "end": 12694, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12668 }, { "analysis_explanation": null, "end": 12739, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12728 }, { "analysis_explanation": null, "end": 12767, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12761 }, { "analysis_explanation": null, "end": 12814, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12807 }, { "analysis_explanation": null, "end": 12842, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12836 }, { "analysis_explanation": null, "end": 12876, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12847 }, { "analysis_explanation": null, "end": 12913, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12906 }, { "analysis_explanation": null, "end": 13165, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13161 }, { "analysis_explanation": null, "end": 13177, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13170 }, { "analysis_explanation": null, "end": 13237, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13230 }, { "analysis_explanation": null, "end": 13279, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13254 }, { "analysis_explanation": null, "end": 13313, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13288 }, { "analysis_explanation": null, "end": 13350, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13343 }, { "analysis_explanation": null, "end": 13492, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13460 }, { "analysis_explanation": null, "end": 13514, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13505 }, { "analysis_explanation": null, "end": 13596, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13573 }, { "analysis_explanation": null, "end": 13648, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13640 }, { "analysis_explanation": null, "end": 13670, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13661 }, { "analysis_explanation": null, "end": 13736, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13730 }, { "analysis_explanation": null, "end": 13786, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13777 }, { "analysis_explanation": null, "end": 13825, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13816 }, { "analysis_explanation": null, "end": 13852, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13844 }, { "analysis_explanation": null, "end": 13866, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13862 }, { "analysis_explanation": null, "end": 13908, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13903 }, { "analysis_explanation": null, "end": 13935, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13913 }, { "analysis_explanation": null, "end": 13972, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13936 }, { "analysis_explanation": null, "end": 14086, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14072 }, { "analysis_explanation": null, "end": 14105, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14101 }, { "analysis_explanation": null, "end": 14199, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14195 }, { "analysis_explanation": null, "end": 14268, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14260 }, { "analysis_explanation": null, "end": 14306, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14298 }, { "analysis_explanation": null, "end": 14330, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14325 }, { "analysis_explanation": null, "end": 14535, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14508 }, { "analysis_explanation": null, "end": 14616, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14611 }, { "analysis_explanation": null, "end": 14651, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14646 }, { "analysis_explanation": null, "end": 14677, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14670 }, { "analysis_explanation": null, "end": 14686, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14678 }, { "analysis_explanation": null, "end": 14866, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14858 }, { "analysis_explanation": null, "end": 14933, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14927 }, { "analysis_explanation": null, "end": 14954, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14945 }, { "analysis_explanation": null, "end": 14966, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14960 }, { "analysis_explanation": null, "end": 15002, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14996 }, { "analysis_explanation": null, "end": 15062, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15038 }, { "analysis_explanation": null, "end": 15091, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15072 }, { "analysis_explanation": null, "end": 15111, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15104 }, { "analysis_explanation": null, "end": 15150, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15127 }, { "analysis_explanation": null, "end": 15197, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15171 }, { "analysis_explanation": null, "end": 15316, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15310 }, { "analysis_explanation": null, "end": 15352, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15346 }, { "analysis_explanation": null, "end": 15564, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15556 }, { "analysis_explanation": null, "end": 15620, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15608 }, { "analysis_explanation": null, "end": 15655, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15646 }, { "analysis_explanation": null, "end": 15702, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15677 }, { "analysis_explanation": null, "end": 15739, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15713 }, { "analysis_explanation": null, "end": 15816, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15807 }, { "analysis_explanation": null, "end": 15882, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15874 }, { "analysis_explanation": null, "end": 15953, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15945 }, { "analysis_explanation": null, "end": 15994, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15979 }, { "analysis_explanation": null, "end": 16041, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16033 }, { "analysis_explanation": null, "end": 16064, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16058 }, { "analysis_explanation": null, "end": 16112, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16104 }, { "analysis_explanation": null, "end": 16137, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16126 }, { "analysis_explanation": null, "end": 16162, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16141 }, { "analysis_explanation": null, "end": 16195, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16189 }, { "analysis_explanation": null, "end": 16234, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16226 }, { "analysis_explanation": null, "end": 16262, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16249 }, { "analysis_explanation": null, "end": 16286, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16278 }, { "analysis_explanation": null, "end": 16297, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16293 }, { "analysis_explanation": null, "end": 16336, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16319 }, { "analysis_explanation": null, "end": 16374, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16366 }, { "analysis_explanation": null, "end": 16403, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16393 }, { "analysis_explanation": null, "end": 16408, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16404 }, { "analysis_explanation": null, "end": 16449, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16444 }, { "analysis_explanation": null, "end": 16566, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16547 }, { "analysis_explanation": null, "end": 16611, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16586 }, { "analysis_explanation": null, "end": 16694, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16684 }, { "analysis_explanation": null, "end": 16751, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16745 }, { "analysis_explanation": null, "end": 16780, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16770 }, { "analysis_explanation": null, "end": 16820, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16810 }, { "analysis_explanation": null, "end": 16976, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16967 }, { "analysis_explanation": null, "end": 17070, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17061 }, { "analysis_explanation": null, "end": 17083, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17079 }, { "analysis_explanation": null, "end": 17092, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17084 }, { "analysis_explanation": null, "end": 17167, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17158 }, { "analysis_explanation": null, "end": 17266, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17242 }, { "analysis_explanation": null, "end": 17283, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17267 }, { "analysis_explanation": null, "end": 17343, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17335 }, { "analysis_explanation": null, "end": 17452, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17446 }, { "analysis_explanation": null, "end": 17491, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17483 }, { "analysis_explanation": null, "end": 17538, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17513 }, { "analysis_explanation": null, "end": 17611, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17603 }, { "analysis_explanation": null, "end": 17649, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17641 }, { "analysis_explanation": null, "end": 17675, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17668 }, { "analysis_explanation": null, "end": 17687, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17676 }, { "analysis_explanation": null, "end": 17810, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17803 }, { "analysis_explanation": null, "end": 17892, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17881 }, { "analysis_explanation": null, "end": 17935, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17928 }, { "analysis_explanation": null, "end": 17973, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17959 }, { "analysis_explanation": null, "end": 18010, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18003 }, { "analysis_explanation": null, "end": 18057, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18053 }, { "analysis_explanation": null, "end": 18218, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18209 }, { "analysis_explanation": null, "end": 18266, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18246 }, { "analysis_explanation": null, "end": 18322, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18316 }, { "analysis_explanation": null, "end": 18431, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18422 }, { "analysis_explanation": null, "end": 18497, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18491 }, { "analysis_explanation": null, "end": 18550, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18544 }, { "analysis_explanation": null, "end": 18578, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18569 }, { "analysis_explanation": null, "end": 18605, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18602 }, { "analysis_explanation": null, "end": 18644, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18635 }, { "analysis_explanation": null, "end": 18671, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18663 }, { "analysis_explanation": null, "end": 18699, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18697 }, { "analysis_explanation": null, "end": 18778, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18771 }, { "analysis_explanation": null, "end": 18824, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18798 }, { "analysis_explanation": null, "end": 18885, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18878 }, { "analysis_explanation": null, "end": 18980, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18969 }, { "analysis_explanation": null, "end": 19042, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19014 }, { "analysis_explanation": null, "end": 19079, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19072 }, { "analysis_explanation": null, "end": 19116, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19109 }, { "analysis_explanation": null, "end": 19440, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19433 }, { "analysis_explanation": null, "end": 19470, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19445 }, { "analysis_explanation": null, "end": 19493, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19489 }, { "analysis_explanation": null, "end": 19505, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19498 }, { "analysis_explanation": null, "end": 19565, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19558 }, { "analysis_explanation": null, "end": 19709, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19665 }, { "analysis_explanation": null, "end": 19746, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19739 }, { "analysis_explanation": null, "end": 19777, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19765 }, { "analysis_explanation": null, "end": 19818, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19786 }, { "analysis_explanation": null, "end": 19893, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19881 }, { "analysis_explanation": null, "end": 19922, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19918 }, { "analysis_explanation": null, "end": 19936, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19925 }, { "analysis_explanation": null, "end": 20008, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20002 }, { "analysis_explanation": null, "end": 20096, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20077 }, { "analysis_explanation": null, "end": 20101, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20097 }, { "analysis_explanation": null, "end": 20136, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20109 }, { "analysis_explanation": null, "end": 20152, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20140 }, { "analysis_explanation": null, "end": 20173, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20159 }, { "analysis_explanation": null, "end": 20215, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20203 }, { "analysis_explanation": null, "end": 20274, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20248 }, { "analysis_explanation": null, "end": 20343, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20336 }, { "analysis_explanation": null, "end": 20423, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20398 }, { "analysis_explanation": null, "end": 20477, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20470 }, { "analysis_explanation": null, "end": 20497, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20486 }, { "analysis_explanation": null, "end": 20569, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20562 }, { "analysis_explanation": null, "end": 20606, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20599 }, { "analysis_explanation": null, "end": 20631, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20625 }, { "analysis_explanation": null, "end": 20648, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20640 }, { "analysis_explanation": null, "end": 20738, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20733 }, { "analysis_explanation": null, "end": 20765, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20758 }, { "analysis_explanation": null, "end": 20826, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20814 }, { "analysis_explanation": null, "end": 20854, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20847 }, { "analysis_explanation": null, "end": 20956, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20950 }, { "analysis_explanation": null, "end": 20964, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20960 }, { "analysis_explanation": null, "end": 20980, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20968 }, { "analysis_explanation": null, "end": 21016, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21010 }, { "analysis_explanation": null, "end": 21041, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21035 }, { "analysis_explanation": null, "end": 21056, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21042 }, { "analysis_explanation": null, "end": 21188, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21182 }, { "analysis_explanation": null, "end": 21196, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21189 }, { "analysis_explanation": null, "end": 21417, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21393 }, { "analysis_explanation": null, "end": 21478, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21472 }, { "analysis_explanation": null, "end": 21486, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21479 }, { "analysis_explanation": null, "end": 21562, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21556 }, { "analysis_explanation": null, "end": 21590, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21581 }, { "analysis_explanation": null, "end": 21774, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21763 }, { "analysis_explanation": null, "end": 21786, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21780 }, { "analysis_explanation": null, "end": 21852, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21848 }, { "analysis_explanation": null, "end": 21888, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21879 }, { "analysis_explanation": null, "end": 21922, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21918 }, { "analysis_explanation": null, "end": 21947, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21941 }, { "analysis_explanation": null, "end": 21956, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21948 }, { "analysis_explanation": null, "end": 22055, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22048 }, { "analysis_explanation": null, "end": 22086, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22066 }, { "analysis_explanation": null, "end": 22209, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22203 }, { "analysis_explanation": null, "end": 22232, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22223 }, { "analysis_explanation": null, "end": 22342, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22318 }, { "analysis_explanation": null, "end": 22378, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22372 }, { "analysis_explanation": null, "end": 22410, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22397 }, { "analysis_explanation": null, "end": 22468, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22457 }, { "analysis_explanation": null, "end": 22494, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22485 }, { "analysis_explanation": null, "end": 22530, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22524 }, { "analysis_explanation": null, "end": 22574, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22550 }, { "analysis_explanation": null, "end": 22632, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22626 }, { "analysis_explanation": null, "end": 22655, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22652 }, { "analysis_explanation": null, "end": 22783, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22781 }, { "analysis_explanation": null, "end": 22881, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22871 }, { "analysis_explanation": null, "end": 23028, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23005 }, { "analysis_explanation": null, "end": 23072, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23063 }, { "analysis_explanation": null, "end": 23135, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23129 }, { "analysis_explanation": null, "end": 23161, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23152 }, { "analysis_explanation": null, "end": 23200, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23191 }, { "analysis_explanation": null, "end": 23258, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23256 }, { "analysis_explanation": null, "end": 23385, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23358 }, { "analysis_explanation": null, "end": 23442, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23438 }, { "analysis_explanation": null, "end": 23475, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23462 }, { "analysis_explanation": null, "end": 23512, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23489 }, { "analysis_explanation": null, "end": 23565, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23547 }, { "analysis_explanation": null, "end": 23587, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23566 }, { "analysis_explanation": null, "end": 23596, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23591 }, { "analysis_explanation": null, "end": 23650, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23645 }, { "analysis_explanation": null, "end": 23763, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23716 }, { "analysis_explanation": null, "end": 23801, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23793 }, { "analysis_explanation": null, "end": 23812, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23803 }, { "analysis_explanation": null, "end": 23873, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23850 }, { "analysis_explanation": null, "end": 24011, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24005 }, { "analysis_explanation": null, "end": 24031, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24022 }, { "analysis_explanation": null, "end": 24071, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24063 }, { "analysis_explanation": null, "end": 24096, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24075 }, { "analysis_explanation": null, "end": 24134, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24126 }, { "analysis_explanation": null, "end": 24250, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24200 }, { "analysis_explanation": null, "end": 24268, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24263 }, { "analysis_explanation": null, "end": 24420, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24415 }, { "analysis_explanation": null, "end": 24462, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24436 }, { "analysis_explanation": null, "end": 24493, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24470 }, { "analysis_explanation": null, "end": 24558, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24547 }, { "analysis_explanation": null, "end": 24593, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24559 }, { "analysis_explanation": null, "end": 24639, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24603 }, { "analysis_explanation": null, "end": 24667, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24655 }, { "analysis_explanation": null, "end": 24693, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24680 }, { "analysis_explanation": null, "end": 24775, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24762 }, { "analysis_explanation": null, "end": 24795, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24788 }, { "analysis_explanation": null, "end": 24812, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24797 }, { "analysis_explanation": null, "end": 24868, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24857 }, { "analysis_explanation": null, "end": 24945, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24916 }, { "analysis_explanation": null, "end": 24986, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24975 }, { "analysis_explanation": null, "end": 25035, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25033 }, { "analysis_explanation": null, "end": 25091, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25059 }, { "analysis_explanation": null, "end": 25127, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25122 }, { "analysis_explanation": null, "end": 25170, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25165 }, { "analysis_explanation": null, "end": 25252, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25247 }, { "analysis_explanation": null, "end": 25290, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25266 }, { "analysis_explanation": null, "end": 25340, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25335 }, { "analysis_explanation": null, "end": 25397, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25391 }, { "analysis_explanation": null, "end": 25438, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25433 }, { "analysis_explanation": null, "end": 25473, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25468 }, { "analysis_explanation": null, "end": 25518, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25511 }, { "analysis_explanation": null, "end": 25629, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25614 }, { "analysis_explanation": null, "end": 25686, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25678 }, { "analysis_explanation": null, "end": 25728, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25715 }, { "analysis_explanation": null, "end": 25815, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25807 }, { "analysis_explanation": null, "end": 25839, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25834 }, { "analysis_explanation": null, "end": 25844, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25840 }, { "analysis_explanation": null, "end": 26003, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25992 }, { "analysis_explanation": null, "end": 26022, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26013 }, { "analysis_explanation": null, "end": 26088, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26061 }, { "analysis_explanation": null, "end": 26114, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26108 }, { "analysis_explanation": null, "end": 26168, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26163 }, { "analysis_explanation": null, "end": 26246, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26237 }, { "analysis_explanation": null, "end": 26274, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26268 }, { "analysis_explanation": null, "end": 26347, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26343 }, { "analysis_explanation": null, "end": 26407, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26402 }, { "analysis_explanation": null, "end": 26442, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26426 }, { "analysis_explanation": null, "end": 26467, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26443 }, { "analysis_explanation": null, "end": 26535, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26502 }, { "analysis_explanation": null, "end": 26576, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26566 }, { "analysis_explanation": null, "end": 26651, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26626 }, { "analysis_explanation": null, "end": 26706, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26696 }, { "analysis_explanation": null, "end": 26793, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26783 }, { "analysis_explanation": null, "end": 26824, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26798 }, { "analysis_explanation": null, "end": 26840, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26836 }, { "analysis_explanation": null, "end": 26903, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26878 }, { "analysis_explanation": null, "end": 26926, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26919 }, { "analysis_explanation": null, "end": 26966, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26956 }, { "analysis_explanation": null, "end": 26990, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26985 }, { "analysis_explanation": null, "end": 27176, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27172 }, { "analysis_explanation": null, "end": 27206, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27181 }, { "analysis_explanation": null, "end": 27277, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27273 }, { "analysis_explanation": null, "end": 27379, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27369 }, { "analysis_explanation": null, "end": 27475, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27453 }, { "analysis_explanation": null, "end": 27602, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27576 }, { "analysis_explanation": null, "end": 27644, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27638 }, { "analysis_explanation": null, "end": 27697, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27675 }, { "analysis_explanation": null, "end": 27800, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27778 }, { "analysis_explanation": null, "end": 27848, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27830 }, { "analysis_explanation": null, "end": 27873, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27867 }, { "analysis_explanation": null, "end": 27888, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27880 }, { "analysis_explanation": null, "end": 27985, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27981 }, { "analysis_explanation": null, "end": 28029, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28015 }, { "analysis_explanation": null, "end": 28061, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28055 }, { "analysis_explanation": null, "end": 28100, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28094 }, { "analysis_explanation": null, "end": 28197, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28190 }, { "analysis_explanation": null, "end": 28236, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28230 }, { "analysis_explanation": null, "end": 28265, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28253 }, { "analysis_explanation": null, "end": 28301, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28295 }, { "analysis_explanation": null, "end": 28327, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28320 }, { "analysis_explanation": null, "end": 28506, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28499 }, { "analysis_explanation": null, "end": 28518, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28511 }, { "analysis_explanation": null, "end": 28537, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28520 }, { "analysis_explanation": null, "end": 28625, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28618 }, { "analysis_explanation": null, "end": 28637, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28630 }, { "analysis_explanation": null, "end": 28694, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28687 }, { "analysis_explanation": null, "end": 28706, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28699 }, { "analysis_explanation": null, "end": 28902, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28893 }, { "analysis_explanation": null, "end": 28943, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28931 }, { "analysis_explanation": null, "end": 29021, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29017 }, { "analysis_explanation": null, "end": 29025, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29022 }, { "analysis_explanation": null, "end": 29076, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29061 }, { "analysis_explanation": null, "end": 29211, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29188 }, { "analysis_explanation": null, "end": 29250, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29241 }, { "analysis_explanation": null, "end": 29310, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29285 }, { "analysis_explanation": null, "end": 29361, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29352 }, { "analysis_explanation": null, "end": 29374, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29369 }, { "analysis_explanation": null, "end": 29428, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29419 }, { "analysis_explanation": null, "end": 29487, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29472 }, { "analysis_explanation": null, "end": 29517, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29511 }, { "analysis_explanation": null, "end": 29557, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29548 }, { "analysis_explanation": null, "end": 29573, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29561 }, { "analysis_explanation": null, "end": 29659, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29650 }, { "analysis_explanation": null, "end": 29686, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29678 }, { "analysis_explanation": null, "end": 29819, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29812 }, { "analysis_explanation": null, "end": 29907, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29900 }, { "analysis_explanation": null, "end": 29951, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29929 }, { "analysis_explanation": null, "end": 29988, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29981 }, { "analysis_explanation": null, "end": 30042, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30032 }, { "analysis_explanation": null, "end": 30111, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30104 }, { "analysis_explanation": null, "end": 30150, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30134 }, { "analysis_explanation": null, "end": 30214, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30192 }, { "analysis_explanation": null, "end": 30408, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30394 }, { "analysis_explanation": null, "end": 30445, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30438 }, { "analysis_explanation": null, "end": 30472, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30464 }, { "analysis_explanation": null, "end": 30482, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30473 }, { "analysis_explanation": null, "end": 30596, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30586 }, { "analysis_explanation": null, "end": 30773, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30767 }, { "analysis_explanation": null, "end": 30857, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30833 }, { "analysis_explanation": null, "end": 31010, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31005 }, { "analysis_explanation": null, "end": 31061, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31048 }, { "analysis_explanation": null, "end": 31105, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31082 }, { "analysis_explanation": null, "end": 31149, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31144 }, { "analysis_explanation": null, "end": 31232, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31227 }, { "analysis_explanation": null, "end": 31306, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31301 }, { "analysis_explanation": null, "end": 31333, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31311 }, { "analysis_explanation": null, "end": 31370, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31334 }, { "analysis_explanation": null, "end": 31391, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31383 }, { "analysis_explanation": null, "end": 31522, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31516 }, { "analysis_explanation": null, "end": 31689, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31681 }, { "analysis_explanation": null, "end": 31716, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31694 }, { "analysis_explanation": null, "end": 31795, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31787 }, { "analysis_explanation": null, "end": 31822, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31800 }, { "analysis_explanation": null, "end": 31860, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31852 } ]
[ "Intracellular polyamine pools, oligopeptide-binding protein A expression, and resistance to aminoglycosides in Escherichia coli.", "\nThe role of intracellular free polyamine (putrescine and spermidine) pools in multiple resistance to aminoglycoside antibiotics was investigated among in vitro selected kanamycin-resistant Escherichia coli J53 mutants expressing diminished oligopeptide-binding protein (OppA) levels and/or defective ornithine decarboxylase (ODC) activity. ", "The results suggest that diminished OppA content, but not defective ODC activity expression, increased the relative concentration of free spermidine as compared to the wild type strain. ", "Moreover, by adding exogenous polyamines or polyamine synthesis inhibitors to cultures with different mutant strains, a direct relationship between the intracellular OppA levels and resistance to kanamycin was revealed. ", "Collectively these results further suggest a complex relation among OppA expression, aminoglycoside resistance and polyamine metabolism." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0.008797653958944282, 0.005376344086021506, 0, 0 ]
0.002835
5
[ { "analysis_explanation": null, "end": 338, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 335 } ]
[ "My daughter Allison, is almost 4 months and has been on steroids for her lip H that ulcerated since Jan 3. (", "the h is on her lower lip and is on a litte of her chin, she also has one in front of her ear). ", "The steroids have worked great and the ulcer has healed and we are currently in the slow weaning process.. We may get a consult for laser, although I don't think I want to put her through that right now - I am thinking that if it starts to grow again, maybe we will, but I will probably make an appt now for a consult... My dr that we have been seeing has given us the name of Dr Goldberg in Hackensack, NJ .. Was wondering if anyone has any info on him? ", "Also what kind of questions should I ask or what information should I look for?", "\nThanks alot!", "\nLynn\n\nMission Statement:\nAn international charitable\norganization that networks families affected by a vascular birthmark, tumor, or syndrome to the appropriate medical professionals for evaluation and/or treatment,\nprovides informational resources as well as sponsors physician education, mobilizes medical missions trips, and supports research and programs that promote acceptance\nfor individuals with birthmarks.", "\n\nDISCLAIMER\nInformation accessed through the VBF is presented in summary form\nin order to impart general information relating to the diagnosis\nand treatment of vascular birthmarks. ", "Such information is not complete\nand should not be used as a substitute for a consultation or visit\nwith your physician or other health care provider. ", "Information accessed\nthrough VBF website is not exhaustive and does not cover every aspect\nof vascular birthmarks. ", "VBF makes no warranty as to the information's\ncompleteness, reliability or accuracy. ", "Should you have any health\ncare related questions regarding this matter, please see your physician\nor other health care provider promptly.", "\n\nInformation accessed through the VBF website is provided \"AS\nIS\" and without warranty, express or implied. ", "All implied warranties\nof merchantability and fitness for a particular use or purpose are\nhereby excluded. ", "VBF shall not be liable under any theory or indemnity.", "\nIn no event shall VBF be liable for any damages, direct or indirect,\nand all other damages, direct or indirect, special, incidental,\nconsequential or punitive, are hereby excluded even if VBF has been\nadvised of the possibility of such damages." ]
{ "pile_set_name": "Pile-CC" }
[ 0.009259259259259259, 0, 0.002197802197802198, 0, 0, 0, 0.005494505494505495, 0, 0.008695652173913044, 0.011764705882352941, 0, 0.009174311926605505, 0, 0.018518518518518517, 0.00816326530612245 ]
0.004885
5
[ { "analysis_explanation": null, "end": 19, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12 }, { "analysis_explanation": null, "end": 39, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24 }, { "analysis_explanation": null, "end": 105, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 100 }, { "analysis_explanation": null, "end": 593, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 582 }, { "analysis_explanation": null, "end": 607, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 597 }, { "analysis_explanation": null, "end": 611, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 609 }, { "analysis_explanation": null, "end": 776, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 753 } ]
[ "<?", "php\n\n/*\n * This file is part of Phraseanet\n *\n * (c) 2005-2014 Alchemy\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.", "\n */\n\nnamespace Alchemy\\Phrasea\\Metadata\\Tag;\n\nuse PHPExiftool\\Driver\\AbstractTag;\n\nclass TfWidth extends AbstractTag\n{\n protected $Id = 'tf-width';\n protected $Name = 'tf-width';\n protected $FullName = 'Phraseanet::tf-width';\n protected $GroupName = 'Phraseanet';\n protected $g0 = 'Phraseanet';\n protected $g1 = '';\n protected $g2 = '';\n protected $Type = '';\n protected $Writable = false;\n protected $Description = 'The width of the file (if available)';\n\n}\n" ]
{ "pile_set_name": "Github" }
[ 0, 0.01, 0.004081632653061225 ]
0.004694
5
[ { "analysis_explanation": null, "end": 65, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56 }, { "analysis_explanation": null, "end": 427, "entity_type": "IP_ADDRESS", "recognition_metadata": { "recognizer_identifier": "IpRecognizer_140094861343856", "recognizer_name": "IpRecognizer" }, "score": 0.6, "start": 425 } ]
[ " \n# Table of Contents\n\n 1. ", "Welcome to Hong Kong\n 2. ", "Exploring Hong Kong\n 3. ", "Top 10 Hong Kong Highlights\n 1. ", "The Peak\n 2. ", "Central's Statue Square\n 3. ", "Happy Valley Races\n 4. ", "Star Ferry\n 5. ", "Stanley\n 6. ", "Temple Street Night Market\n 7. ", "Heritage Museum\n 8. ", "Tai Long Wan Coastline\n 9. ", "Cheung Chau Island\n 10. ", "Big Buddha and Po Lin Monastery\n 4. ", "The Top 10 of Everything\n 1. ", "Moments in History\n 2. ", "Modern Buildings\n 3. ", "Walking Routes and Promenades\n 4. ", "Areas of Natural Beauty\n 5. ", "Ways to Experience the Real China\n 6. ", "Off the Beaten Track\n 7. ", "Places for Children\n 8. ", "Hong Kong for Free\n 9. ", "Nightclubs\n 10. ", "Restaurants\n 11. ", "Hong Kong Dishes\n 12. ", "Markets\n 13. ", "Festivals and Events\n 5. ", "Hong Kong Area by Area\n 1. ", "Hong Kong Island – Northwest\n 2. ", "Hong Kong Island – Northeast\n 3. ", "Hong Kong Island – South\n 4. ", "Tsim Sha Tsui\n 5. ", "Yau Ma Tei, Mong Kok and Prince Edward\n 6. ", "New Kowloon\n 7. ", "The New Territories\n 8. ", "Outlying Islands\n 9. ", "Macau\n 10. ", "Shenzhen\n 11. ", "Guangzhou\n 6. ", "Streetsmart\n 1. ", "Getting To and Around Hong Kong\n 2. ", "Practical Information\n 3. ", "Places to Stay\n 7. ", "Maps\n 8. ", "Acknowledgments\n 9. ", "Copyright\n\n 1. ", "Contents\n 2. ", "Cover\n 3. ", "How To Use this Guide\n\nDouble tap to zoom\n\n## Preferred application settings\n\nFor the best reading experience, the following application settings are recommended:\n\n * Colour theme: **_White background_**\n * Font size: **_At the smallest point size_**\n * Orientation: _**Landscape** (for screen sizes over 9\"), **Portrait** (for screen sizes below 9\")_\n * Scrolling view: _**[OFF]**_\n * Text alignment: **_Auto-justification [OFF]_** _(if the eBook reader has this feature)_\n * Auto-hyphenation: _**[OFF]** (if the eBook reader has this feature)_\n * Font style: **_Publisher default setting [ON]_** _(if the eBook reader has this feature)_\n\n_**Clockwise from top:** Junk boat in Victoria Harbour, tai chi practice, Clock Tower in Kowloon, Happy Valley Races, Ten Thousand Buddhas Monastery, Peak Tower, Po Lin Monastery_\n\nWELCOME TO HONG KONG\n\nA quiet island of fishing villages, which became a colonial outpost and then transformed into a hub of international trade, Hong Kong has a rich heritage and unique culture. ", "The ancient temples, bustling markets, tall skyscrapers, beautiful beaches and mountains combine to make it one of Asia's most exciting territories. ", "With Eyewitness Top 10 Hong Kong, it's yours to explore.", "\n\nWe love Hong Kong: the seething crowds, the futuristic harbourside cityscapes, the unashamed lust for success. ", "What could be better than shopping for designer fashion in **Tsim Sha Tsui** 's malls, looking down over the frenetic city from the cool heights of the **Peak** , riding the romantic **Star Ferry** between Kowloon and Hong Kong Island, breakfasting on Michelin-starred **dim sum** or joining the cheering crowds for a night at the **Happy Valley horse races**? ", "It's all here, packed into this tiny territory on China's Pearl River Delta.", "\n\nYet Hong Kong isn't all just superficial glitz. ", "Along with the neighbouring cities of **Macau** , **Shenzhen** and **Guangzhou** , there are centuries of history here; the population is a melange of Chinese, European, Indian and southeast Asian migrants. ", "Glimpse the different cultures inside smoky temples, at dawn tai chi sessions in the parks, in traditional **New Territory** villages, or amongst the bustling market stalls. ", "The packed calendar of events offers a similar mix, from the annual **Rugby Sevens** to the ear-shattering firework displays that ring in the **Chinese New Year**.", "\n\nThis guide is designed to bring together the best of everything the territory has to offer, from **Tai Long Wan** 's best beaches to the hottest nightclubs in **Lan Kwai Fong**. ", "There are tips throughout, plus 11 easy-to-follow itineraries, designed to tie together a clutch of sights in a short space of time. ", "Add inspiring photography and detailed maps, and you have the essential pocket-sized travel companion. **", "Enjoy the book, and enjoy Hong Kong.**", "\n\n# EXPLORING HONG KONG\n\nFor the sheer variety of things to see and do, visitors to Hong Kong are spoiled for choice. ", "Whether you are here for a short stay or just wanting a flavour of this great city, you need to make the most of your time. ", "From jaw-dropping cityscape views to remote tropical beaches, here are some ideas for two and four days of sightseeing in Hong Kong.", "\n\n* * *\n\n## Two Days in Hong Kong\n\n* * *\n\n### Day 1\n\nMorning\n\nBegin on Hong Kong Island with a dim sum breakfast, then follow Hollywood Road to the **Man Mo Temple**. ", "Continue to **Central's Statue Square** to admire the modern architecture.", "\n\n**Man Mo Temple** is dedicated to the gods of war and literature.", "\n\nAfternoon\n\nHead to **Stanley village** for low-key beaches and dinner. ", "Ascend **The Peak** for city views during the Symphony of Lights (8pm daily), before downing a nightcap at **Lan Kwai Fong**.", "\n\n**The Peak Tram** provides its passengers with some of the best views of Central's skyscrapers as it climbs to the top.", "\n\n### Day 2\n\nMorning\n\nCatch an early ferry to Lantau Island and ride on the Ngong Ping 360 cable car to the **Big Buddha and Po Lin Monastery**.", "\n\nAfternoon\n\nHead to **Kowloon Park** to people-watch, or on Sundays to see a martial art display at its Kung Fu Corner (2:30–4:30pm). ", "After shopping along **Nathan Road**, wander **Temple Street Night Market** for a souvenir and some alfresco dining at a _dai pai dong_. ", "Round off the evening with a cocktail at swanky **Felix**.", "\n\n* * *\n\n## Four Days in Hong Kong\n\n* * *\n\n### Day 1\n\nMorning\n\nAscend **The Peak** for glorious views of the city and its islands, and glimpse some of the world's most expensive properties.", "\n\nAfternoon\n\nCheck out **Hollywood Road** and **Man Mo Temple** before crossing south to **Stanley**. ", "End the day with an evening meal here or at beachside **Shek O** village.", "\n\n### Day 2\n\nMorning\n\nSpend the whole morning at **Kadoorie Farm**.", "\n\nAfternoon\n\nAfter lunch from **Tai Po's markets** spend a few hours at the **Heritage Museum** and **Ten Thousand Buddhas Monastery**, before heading to **Sai Kung** for a seafood meal.", "\n\n### Day 3\n\nMorning\n\nBegin the day at the **Bird Garden**, then wind south through Kowloon's fascinating markets to traditional stores along **Shanghai Street**.", "\n\nAfternoon\n\nExplore Nathan Road's shops, taking afternoon tea at **The Peninsula**. ", "Watch the Symphony of Lights from the **Waterfront promenade**, then head back to **Temple Street Night Market** to pick up some souvenirs, as well as food for dinner.", "\n\n### Day 4\n\nAll day\n\nSpend a full day either exploring **Lantau Island** or gambling in the casinos of **Macau**, and the evening at **Happy Valley Races**. ", "Celebrate a win or drown your sorrows afterwards at one of **Lan Kwai Fong**'s lively bars.", "\n\n**Happy Valley Racecourse** is an entertaining place to spend the evening.", "\n* * *\n\nTop 10 Hong Kong Highlights\n\nBig Buddha and Po Lin Monastery, Lantau Island\n\n## Top 10 Hong Kong Highlights\n\n1 | The Peak \n---|--- \n2 | Central's Statue Square \n---|--- \n3 | Happy Valley Races \n---|--- \n4 | Star Ferry \n---|--- \n5 | Stanley \n---|--- \n6 | Temple Street Night Market \n---|--- \n7 | Heritage Museum \n---|--- \n8 | Tai Long Wan Coastline \n---|--- \n9 | Cheung Chau Island \n---|--- \n10 | Big Buddha and Po Lin Monastery \n---|---\n Back to Top 10 Hong Kong Highlights\n\n# THE PEAK\n\nWith Hong Kong's most spectacular views, cooler climes and quiet wooded walks, it's no wonder Victoria Peak is so popular, in particular with tourists and the super rich, who occupy the exclusive properties clinging to its slopes. ", "The Peak Tram takes under 10 minutes to reach Victoria Gap, pinning you to your seat as it's hauled up the sheer slope at the end of a single cable (don't worry, its safety record is spotless).", "\n\n### NEED TO KNOW\n\n Bus 15C from Central Star Ferry • 2522 0922 • www.thepeak.com.hk\n\n **Peak Tram:** 7am–midnight daily; single/return HK$32/$45\n\n Google Map\n\n * If it is misty or there's low cloud, delay your visit as you'll miss the excellent views.", "\n * Avoid taking the tram on weekends and public holidays as the queues are extremely long.", "\n * In the Peak Tower, several restaurants overlook the harbour. ", "Lu Feng's local specialities are a must try. ", "For the fantastic sea views over to Lamma Island, dine or have a drink on the Peak Lookout's lovely garden terrace.", "\n\n## 1. ", "Peak Tower\n\n Google Map\n\nThe Peak Tram empties into an anvil-shaped mall that houses shops, restaurants and the Sky Terrace 428 viewing gallery. ", "Standing at 428 m (1,404 ft), this is the highest viewing platform in a city full of vertiginous observation points. ", "The commercial emphasis may grate, but children will enjoy Madame Tussaud's waxworks.", "\n\nThe entertainment and shopping complex, Peak Tower\n\n## 2. ", "World's Most Expensive Street\n\n Google Map\n\nPollock's Path, on the Peak, earned this title in 2013, in part thanks to 10 Skyhigh, the most expensive apartment ever sold in Hong Kong – for a record amount of HK$800 million.", "\n\n## 3. ", "Galleria\n\n Google Map\n\nAlthough the imposing Peak Tower mall is hardly sensitive to its grand setting, there is a good range of places to eat and drink inside its Galleria, with great views down onto the city and harbour, and across to Lamma Island.", "\n\n## 4. ", "Barker and Plantation Roads\n\n Google Map\n\n Google Map\n\nThese usually quiet (although pavement-free) roads are worth wandering for a peep at some of the Peak's more expensive properties. ", "Most of them have amazing harbour views. ", "But you would have to be a millionaire many times over just to afford a two-bedroom flat on one of these roads.", "\n\n## 5. ", "The Peak Lookout\n\n Google Map\n\nThis much-loved, upmarket drinking and dining spot boasts a fine terrace, great food, an excellent wine list and friendly ambience.", "\n\n## 6. ", "Pok Fu Lam Country Park\n\n Google Map\n\nFor a gentle half-hour ramble, head down Pok Fu Lam Reservoir Road, then catch a bus back into town.", "\n\nSerene view down the Pok Fu Lam Country Park\n\n## 7. ", "Victoria Peak Garden\n\n Google Map\n\nThe steep struggle up Mount Austin Road to these gardens is worth the effort for the amazing spectacle at the top. ", "The viewing platform looks across the channel to Lamma Island.", "\n\n## 8. ", "View near Summit\n\n Google Map\n\nThe summit itself is fenced off and covered by telecom masts, but the views from the edges of Victoria Peak Garden are excellent.", "\n\nAn excellent view of the city\n\n## 9. ", "Lugard and Harlech Roads\n\n Google Map\n\nThe effortless way to see most of the best views on offer from the Peak is on the shaded, well-paved, 3 km (2 mile) circular walk along Lugard Road and Harlech Road. ", "It also makes for a terrific jogging track with a tremendous view.", "\n\nA superb panoramic view of the city from the Lugard and Harlech Roads\n\n## 10. ", "Old Peak Road\n\n Google Map\n\nThis former footpath up the Peak, created before the Peak Tram arrived, is pleasant and shaded. ", "Surfaced, but incredibly steep, it is best saved for a descent. ", "Take a detour onto Tregunter Path near the bottom to avoid the traffic.", "\n\n### THE PEAK TRAM\n\nDespite the fact that a single steel cable hauls the tram up a long and incredibly steep track, the Peak Tram has had a faultless safety record since the service opened in 1888. ", "The most severe disruption to services came in the 1960s when torrents of water from an especially violent storm washed away part of the track.", "\n\n Back to The Peak\n\n Back to Top 10 Hong Kong Highlights\n Back to Top 10 Hong Kong Highlights\n\n# CENTRAL'S STATUE SQUARE\n\nStand in Central district's Statue Square and you're right in the region's financial, political, historical and social heart. ", "Among the steel and glass of the sleek modern skyscrapers surrounding the square are a few colonial remnants, including the handsome Neo-Classical Court of Final Appeal, outside which Hong Kong's usually low-key political demos take place. ", "Shopping, which is a much more popular Hong Kong pursuit than politics, is enjoyed in the numerous swanky boutiques opposite.", "\n\n### NEED TO KNOW\n\n Google Map\n\n * For a terrific bird's-eye view over Central and the harbour, head to the HKMA Information Centre on the 55th floor of Two IFC Tower. ", "Alternatively, try the wraparound terrace at Sevva bar and restaurant.", "\n * If you fancy picnicking in the square or in the nearby Chater Garden, try the fantastic pastries, cakes and quiches from the Mandarin Oriental's Cake Shop, which is at the edge of the square.", "\n\n## 1. ", "Bank of China Tower\n\n Google Map\n\nLooming over the HSBC building is the imposing, 70-storey Bank of China Tower. ", "Renowned architect I M Pei designed the dizzying 367-m- (1,205-ft-) high tower. ", "It doesn't please everyone – those who know about feng shui say it projects negative vibes onto other buildings.", "\n\nThe grand Bank of China Tower\n\n## 2. ", "Thomas Jackson Statue\n\n Google Map\n\nAppropriately, one of Hong Kong's few remaining statues, of a 19th-century HSBC banker, is in Statue Square. ", "The Japanese army removed one of Queen Victoria, which gave the square its name.", "\n\nStatue of Thomas Jackson in Statue Square\n\n## 3. ", "Chater Garden\n\n Google Map\n\nDespite the prime real-estate value of its site – on what was once the pitch of the Hong Kong Cricket Club – the small but well-tended Chater Garden sprang up instead of a skyscraper. ", "It's free to enter and makes a good place to enjoy a cold drink and rest tired legs.", "\n\nThe Chater Garden surrounded by skyscrapers\n\n## 4. ", "The Cenotaph\n\n Google Map\n\nStanding at the northern edge of Statue Square, the Cenotaph is a memorial to those who died in the two world wars.", "\n\n## 5. ", "Shopping Malls\n\n Google Map\n\nTwo of Hong Kong's most up-market shopping malls – the busy Landmark Centre and the less busy Prince's Building – sit next to Statue Square. ", "They are home to many exclusive and elegant boutiques, including Armani, Gucci and Prada.", "\n\n## 6. ", "Mandarin Oriental\n\n Google Map\n\nAt only 91 m (298 ft), it's hard to believe, but the Mandarin Oriental was once Hong Kong's tallest building. ", "Today its graceful exterior seems overwhelmed by the ceaseless traffic, but inside it's still one of Hong Kong's finest hotels.", "\n\n## 7. ", "HSBC Bank Headquarters\n\n Google Map\n\nOn its completion in 1985, Norman Foster's bold building was the most expensive ever built, costing more than HK$5bn. ", "The edifice is said to have the strongest feng shui in Hong Kong. ", "Rubbing the paws of the bank's handsome lions is said to bring good luck.", "\n\n## 8. ", "Former French Mission\n\n Google Map\n\nBehind the HSBC building, this handsome mid-19th-century redbrick edifice has served as a French Catholic mission, Hong Kong's first Government House and, until 2015, the Court of Final Appeal.", "\n\n## 9. ", "Sunday Filipino Fiesta\n\n Google Map\n\nHundreds of young Indonesians and Filipinos, mostly domestic workers enjoying their only day off, occupy almost every spare bit of public space throughout Central.", "\n\n## 10. ", "Court of Final Appeal\n\n Google Map\n\nThis Neo-Classical building – a rare survivor from the city's colonial period – housed the Legislative Council, Hong Kong's equivalent to a parliament. ", "The Court of Final Appeal moved here in 2015.", "\n\nAerial view of the historic building that now houses the Court of Final Appeal\n\n### DEMOCRACY'S TRICKY PATH\n\nDuring Handover negotiations, China was adamant that Hong Kong's Legislative Council would be as democratic under Chinese rule as under the British (in other words, it could be argued, hardly at all). ", "When Chris Patten, the last governor, tried introducing greater representation, the mainland press called him \"a serpent\".", "\n\n Back to Central's Statue Square\n\n Back to Top 10 Hong Kong Highlights\n Back to Top 10 Hong Kong Highlights\n\n# HAPPY VALLEY RACES\n\nFeel the earth move beneath thundering hooves as you cheer the finishers home in the ultimate Hong Kong night out. ", "Races have been held at Happy Valley – the widest stretch of flat land on Hong Kong Island, originally a swamp – since 1846. ", "Today, the action takes place beneath twinkling high-rises, making for one of the most atmospheric horse-racing tracks in the world.", "\n\n### NEED TO KNOW\n\n Less than 1 km (0.5 miles) south of Causeway Bay on Hong Kong Island • Meets Wed, and occasionally, Sat & Sun (Sep–Jul) • Dial 1817 for race details • www.hkjc.com • www.happyvalleyracecourse.com • Adm HK$10 (standing); HK$20 (seated)\n\n **Racing Museum:** 2966 8065; noon–7pm daily (to 9pm on race days)\n\n **Come Horseracing Tour:** 2316 2151, Adm HK$1120\n\n Google Map\n\n * A Tourist Ticket, available with a passport at the Badge Inquiry Office, will give you access to the upper seats.", "\n * Moon Koon Restaurant, on the second floor of the main stand, offers good, affordable Chinese food. ", "Advance booking is required on race nights (2966 7111 or online at www.hkjc.com).", "\n\nHappy Valley Racecourse\n\n## 1. ", "Wednesday Night Races\n\nThe most exciting scheduled races are usually on Wednesday evenings. ", "For the full atmosphere, jump on a Happy Valley-bound tram and bone up on the form in the Wednesday _Racing Post_ on the way. ", "Races are from 7:15pm to 11pm.", "\n\nThe horses in action at the racecourse\n\n## 2. ", "Happy Wednesday\n\nWith its many bars and restaurants, Wednesday nights here have become popular for mid-week partying. ", "Entertainment includes live music, DJs and street performers.", "\n\n## 3. ", "Racing Museum\n\nThe small and neat museum details Hong Kong's racing history and has a selection of art. ", "Learn the story of the old trade in prized Mongolian and Chinese ponies. ", "It is closed during race meetings.", "\n\nThe entrance of the Racing Museum\n\n## 4. ", "View from Moon Koon\n\nFor a fantastic track-side view, go to Moon Koon Restaurant. ", "Racing and dining packages are available.", "\n\n## 5. ", "Come Horseracing Tour\n\nSplendid Tours and Grey Line both run this tour during scheduled race meetings. ", "Tours include entry to the Members' Enclosure, a welcome drink, a buffet meal and guide service.", "\n\n## 6. ", "Silver Lining Skeleton\n\nSilver Lining, Hong Kong's most famous horse, was the first to win more than HK$1 million. ", "The equine skeleton takes pride of place in a glass cabinet at the Racing Museum.", "\n\n## 7. ", "Jockey Club Booths\n\nFor help and advice on placing bets go to the friendly Jockey Club officials at the booths between the main entrance and the racetrack. ", "The Jockey Club is the only organization allowed to take bets in Hong Kong. ", "The tax it collects makes up a small but significant percentage of government revenue, but is being threatened by illegal and online betting.", "\n\nThe friendly hosts of the Jockey Club\n\n## 8. ", "The Crowd\n\nHappy Valley has a 55,000 capacity, but is so popular that it sometimes sells out before the day. ", "The enthusiasm among the big-betting, chain-smoking punters is infectious. ", "Stand in the open next to the track, for the best atmosphere.", "\n\nA magnitude of spectators enjoying a race\n\n## 9. ", "Types of Bet\n\nWays to bet include guessing the winner; a place (picking 1st or 2nd, or 1st, 2nd or 3rd if seven or more horses race); a quinella (picking 1st and 2nd in any order); and a quinella place (any two of the first three horses).", "\n\n## 10. ", "Where to Bet\n\nBets are placed at the counters at the back of each floor of the main stand. ", "If you win, wait for a few minutes after the race, then go to the same counter to collect your winnings.", "\n\n### HONG KONG'S BIGGEST PAYOUT\n\nA then world-record total of US$92m was paid out at Happy Valley's sister track, Sha Tin, in 1997. ", "Over 350 bets of HK$10 each collected HK$2 million.", "\n\n Back to Happy Valley Races\n\n Back to Top 10 Hong Kong Highlights\n Back to Top 10 Hong Kong Highlights\n\n# STAR FERRY\n\nOne of Hong Kong's best-loved institutions, the Star Ferries have shuttled people between Kowloon and Hong Kong Island since 1888. ", "They are still used by commuters despite the advent of rail and road tunnels beneath the harbour. ", "A ferry ride offers a thrilling perspective on the towering skyscrapers and the jungle-clad hills of Hong Kong Island. ", "Take an evening voyage for the harbour's daily neon spectacle, A Symphony of Lights, when 47 buildings on both sides of the harbour put on a light and sound show.", "\n\n### NEED TO KNOW\n\n 2367 7065 • Ferries TST to Wan Chai: 7:20am–11pm daily; TST to Central: 6:30am–11:30pm daily • www.starferry.com.hk\n\n **A Symphony of Lights:** Every night at 8pm; www.tourism.gov.hk/symphony\n\n **Hong Kong Maritime Museum:** Central Pier No. ", "8. ", "3713 2500; www.hkmaritimemuseum.org; 9:30am–5:30pm Mon–Fri, 10am–7pm Sat, Sun & public hols\n\n Google Map\n\n * The Hong Kong Tourism Board (HKTB) office in the Tsim Sha Tsui Star Ferry building is the most convenient place to pick up brochures, get help and advice, and buy Star Ferry models and other souvenirs.", "\n\n## 1. ", "The Fleet\n\nIn the early days, four coal-fired boats went back and forth between Hong Kong and Kowloon. ", "Today, 12 diesel-powered vessels operate, each named after a particular star (with the night-time glare and pollution, the only stars you're likely to see from the harbour).", "\n\nThe fleet of ferries merge into the view\n\n## 2. ", "Clock tower\n\nStanding next to the Tsim Sha Tsui Star Ferry, the landmark clock tower is the last remnant of the old Kowloon railway terminus completed in 1915. ", "Until 1975, this was the poetic final stop for trains arriving from the mainland.", "\n\nThe historic landmark, Clock Tower\n\n## 3. ", "Star Ferry Crew\n\nMany Star Ferry crew members still sport old-fashioned uniforms, making popular photographic subjects. ", "Watch out, too, for the crewmen catching the mooring rope with a long billhook.", "\n\n## 4. ", "Skyline South\n\nAs you cross Victoria Harbour from Kowloon, on the far left you'll see the glass and flowing lines of the Convention Centre in Wan Chai and above it the 373-m (1,223-ft) tower of Central Plaza. ", "Further right are the Bank of China's striking zigzags, and the HSBC building. ", "However, the real giant is Two IFC, Hong Kong Island's tallest skyscraper.", "\n\nThe view across Victoria Harbour with Hong Kong Convention and Exhibition Centre\n\n## 5. ", "Hong Kong Maritime Museum\n\nOpened in 2013, this museum explores the vast maritime history and trade of the Pearl River Delta, from the Song Dynasty through to the present day, as well as the marine life of the South China Sea.", "\n\nThe exterior of the Hong Kong Maritime Museum\n\n## 6. ", "Star Ferry Routes\n\nThe ferries operate daily between Tsim Sha Tsui and Central every 6 to 12 minutes, and between Tsim Sha Tsui and Wan Chai every 8 to 20 minutes.", "\n\n## 7. ", "Sightseeing Bargain\n\nWith fares ranging from just HK$2.20 to HK$3.70, a crossing on a Star Ferry is one of Hong Kong's best sightseeing bargains.", "\n\n## 8. ", "Tours\n\nStar Ferries run several afternoon and evening ferry tours of the harbour on their \"Shining Star\" ferry, which is more comfortable than the regular ferry. ", "The Shining Star ferry has an air-conditioned top deck as well as a café.", "\n\n## 9. ", "Ocean Terminal\n\nJust north of the Tsim Sha Tsui terminal, Hong Kong's cruise ships dock, including the world's most famous liners. ", "Some US warships also moor here during port calls.", "\n\nA cruise ship at the Ocean Terminal\n\n## 10. ", "Skyline North\n\nAs you approach Kowloon, you'll see the Arts and Cultural Centre closest to the shore. ", "Behind it rises the grand extension of the Peninsula Hotel, with the huge ICC Tower gleaming to the west.", "\n\nThe grand view of Skyline North\n\n Back to Star Ferry\n\n Back to Top 10 Hong Kong Highlights\n Back to Top 10 Hong Kong Highlights\n\n# STANLEY\n\nOriginally a sleepy fishing haven, Stanley was the largest settlement on Hong Kong Island before the British moved in. ", "The modern town, hugging the southern coast, still makes a peaceful, pleasant escape from the bustle of the city. ", "Traffic is minimal, and the pace of life relaxed, with plenty of excellent places to eat, good beaches and a large market to search for cheap clothing, silks and souvenirs. ", "Stanley is also the place to glimpse colonial Hong Kong and an older Chinese tradition seen at the Tin Hau Temple.", "\n\n### NEED TO KNOW\n\n Buses 6, 6A, 6X, 66 or 260 from Exchange Square, Central\n\n **Market:** www.hk-stanley-market.com; 9am–6pm daily\n\n Google Map\n\n * If you hate crowds, avoid Stanley at weekends when the town and market become very busy and the buses to and from Central fill up.", "\n * Sit at the front of the top deck of the bus to fully appreciate the dramatic coast road out to Stanley.", "\n * For alfresco dining, The Boathouse on Stanley's waterfront offers modern European and American cuisine and sea views from the balcony seating.", "\n\nHiking above Stanley\n\n## 1. ", "Market\n\n Google Map\n\nReasonably priced clothes, shoes and accessories as well as plenty of tourist tat are to be found among Stanley's pleasant, ramshackle market stalls. ", "Although it's not the cheapest or best market in Hong Kong, it's worth visiting before heading to one of the seafront eateries.", "\n\nDolls and ceramic dishes for purchase at the Stanley market\n\n## 2. ", "Old Police Station\n\n Google Map\n\nThe handsome structure was built in 1859 and is Hong Kong's oldest surviving police station. ", "The Japanese used it as a headquarters during World War II. ", "It is now a supermarket.", "\n\n## 3. ", "Murray House\n\n Google Map\n\nShifted here from its original site in Central to make way for the Bank of China Tower, this 1843 Neo-Classical relic now houses several restaurants. ", "Adjacent Blake Pier is the departure point for ferries to remote Po Toi island.", "\n\nThe historic Murray House\n\n## 4. ", "Waterfront\n\n Google Map\n\nThe pretty waterfront makes for a pleasant promenade between the market area and Murray House. ", "The harbour was once home to a busy fleet of junks and fishing boats, but is now largely empty.", "\n\nLeisurely boats on the waterfront\n\n## 5. ", "Tin Hau Temple\n\n Google Map\n\nThis temple is one of the oldest in Hong Kong. ", "Lined with the grimacing statues of guards to the sea goddess Tin Hau, the interior of this 1767 temple is also one of the most evocative.", "\n\nThe intricate decoration of the Tin Hau Temple\n\n## 6. ", "Stanley Beach\n\n Google Map\n\nThis fine stretch of sand is perfect for a dip and a paddle. ", "It's the venue for the fiercely contested dragon boat races in June.", "\n\n## 7. ", "War Cemetery\n\n Google Map\n\nMost of the graves are the resting place of residents who died during World War II. ", "Others date back to early colonial days, when many succumbed to tropical illnesses.", "\n\n## 8. ", "Stanley Fort\n\n Google Map\n\nThe old British army barracks at the end of the peninsula is now occupied by the Chinese People's Liberation Army (closed to the public).", "\n\n## 9. ", "St Stephen's Beach\n\n Google Map\n\nAnother good stretch of sand, St Stephen's is also the place to organize sailing and canoeing. ", "Make use of the barbecue pits for an open-air lunch.", "\n\n## 10. ", "Pubs and Restaurants\n\n Google Map\n\nOne of Stanley's best attractions is its excellent range of restaurants and bars, including The Boathouse. ", "A host of eateries, from Italian to Vietnamese, line Stanley Main Road, facing the sea. ", "Murray House also has good restaurants.", "\n\nThe charming exterior of The Boathouse\n\n### THE WAR DEAD\n\nAfter Japan overran Hong Kong in , captured civilians suffered for three years under a regime of neglect, starvation and torture. ", "Many of those who died are buried at Stanley cemetery.", "\n\n Back to Stanley\n\n Back to Top 10 Hong Kong Highlights\n Back to Top 10 Hong Kong Highlights\n\n# TEMPLE STREET NIGHT MARKET\n\nBeneath the bleaching glare of a thousand naked light bulbs, tourists and locals alike pick their way among the stalls crowding the narrow lanes of Yau Ma Tei's Temple Street. ", "The overwhelming array of cheap goods includes clothes, shoes, accessories, designer fakes, copy CDs, bric-a-brac and a generous helping of junk. ", "Prices here may be a bit higher than in Shenzhen, just over the Chinese border, or in some of Hong Kong's less well-known markets, but Temple Street is unbeatable for atmosphere.", "\n\n### NEED TO KNOW\n\n The market opens at 4pm, but really gets going after 7pm and goes on until as late as midnight.", "\n\n Google Map\n\n * A good way to tackle the night market is to start at the top by taking the MTR to Yau Ma Tei (Exit C) and walk south from Portland Street. ", "This way you'll end up closer to the restaurants, hotels and bars of Tsim Sha Tsui when you've finished shopping.", "\n * Buy a snack from the _dai pai dong_ along the street.", "\n\nTemple Street Night Market\n\n## 1. ", "Fortune Tellers\n\nFortune tellers operate around the junction of Temple and Market streets. ", "Most are face and palm readers. ", "The caged finches are trained to pick a fortune card from the pack in return for some seeds.", "\n\n## 2. ", "Cantonese Opera Street Performers\n\nOn some evenings, musicians and singers perform popular Cantonese opera numbers next door to the fortune tellers.", "\n\nA Cantonese opera street performance\n\n## 3. ", "Dai Pai Dong\n\nTighter health regulations have made _dai pai dong_ food stalls a rare sight, but they are alive and well at Temple Street, selling a variety of Chinese snacks, savoury pancakes, fishballs, seafood kebabs and unspecified meat offerings.", "\n\nChinese street stalls, Dai Pai Dong\n\n## 4. ", "Reclamation St Canteens\n\nIf you haven't had your fill from the _dai pai dong_ , try the cheap noodles and rice dishes at the stalls on Reclamation Street. ", "Don't mind your neighbour's table manners; it's customary to drop or spit gristle and bone onto the table-tops.", "\n\n## 5. ", "Watches\n\nIt's likely to be a decent timekeeper but with no guarantee. ", "The local makes and Western fakes are usually good value for money. ", "One stall offers genuine secondhand watches.", "\n\nA watch stall\n\n## 6. ", "Clothes\n\nAmid the naff and poly-fabric horrors, good buys include cheap T-shirts, elaborate silks, beaded tops and cotton dresses. ", "Have a look at the stall on the corner of Kansu Street.", "\n\nBeautiful Chinese clothes for sale\n\n## 7. ", "Leather Goods\n\nLeather is not really Temple Street's strong point. ", "But belts are cheap, and there are plenty of leather handbags and shoulder bags, including attractive, fake Gucci, Elle and Burberry items. ", "Some counterfeits for sale here are more convincing than others.", "\n\n## 8. ", "Shoes\n\nFrom the very cheap flip-flops to the reasonable suede or leather shoes, bargain footwear is available almost everywhere on Temple Street, although the variety is not huge and the styles not that elegant. ", "A few stalls sell designer fakes.", "\n\n## 9. ", "Accessories\n\nCheap sunglasses are easy to find. ", "A variety of embroidered and beaded handbags and shoulder bags are also worth looking out for.", "\n\nA selection of sunglasses available in the market\n\n## 10. ", "Knick-knacks\n\nMao memorabilia, old posters, coins, opium pipes and jade are found on Public Square Street. ", "Temple Street's north end is rich in kitsch plastic Japanese cartoon merchandise, including Afro Ken and Pokémon, and lucky _maneki-neko_ cat figurines.", "\n\nA mascot of luck, maneki-neko cat figurine\n\n### HAGGLING\n\nRemember, prices given are mostly starting points and the mark-ups are significant. ", "The merchandise here is far cheaper in China, so haggle hard (but do it with a smile), and remember the vendor is making a profit whatever price you both agree on. ", "Begin below half the asking price and you should be able to get 50 per cent off most items.", "\n\n Back to Temple Street Night Market\n\n Back to Top 10 Hong Kong Highlights\n Back to Top 10 Hong Kong Highlights\n\n# HERITAGE MUSEUM\n\nThis modern museum, on the outskirts of Sha Tin in the New Territories, is one of Hong Kong's best. ", "Opened in 2000, the Hong Kong Heritage Museum has six permanent galleries and six changing galleries covering the culture, arts and natural history of Hong Kong and the New Territories. ", "Exciting audiovisual exhibits, a range of temporary exhibitions and a good interactive children's section make for a fun day out for visitors of all ages.", "\n\n### NEED TO KNOW\n\n 1 Man Lam Road, Sha Tin, New Territories • 2180 8188 • www.heritagemuseum.gov.hk • MTR to Kowloon Tong, then bus 80M or MTR to Che Kung Temple, then a 5-minute walk\n\n **Open** 10am–6pm Mon, Wed–Fri, 10am–7pm Sat, Sun & public hols • Adm for special exhibitions (free for permanent exhibition)\n\n Google Map\n\n * Combine a visit to the museum with a trip to the races at Sha Tin if you can.", "\n * There is a small café and gift shop in the lobby.", "\n\n## 1. ", "Architecture and Design\n\nThe Heritage Museum building is based on the traditional Chinese _si he yuan_ style, built around a courtyard. ", "The style is still visible in the villages of the New Territories.", "\n\nThe architectural style of traditional Chinese buildings\n\n## 2. ", "Orientation Theatre\n\nFor a brief overview of the museum, visit the Orientation Theatre on the ground floor opposite the ticket office.", "\n\n## 3. ", "Children's Discovery Gallery\n\nThe brightly coloured gallery is a vibrant, fun way to introduce children to local nature and archaeology, and the history of toys. ", "Interactive exhibits and the child-size 3-D models are very popular with young children.", "\n\nThe exciting children's Gallery of Discovery\n\n## 4. ", "Cantonese Opera Heritage Hall\n\nCantonese opera is an obscure subject. ", "However, the costumes, intricate stage settings and snatches of song from the elaborate operas of Guangdong and Guangxi on display in this gallery go some way towards illustrating this popular attraction.", "\n\nAn exhibit at the Cantonese Opera Heritage Hall\n\n## 5. ", "Thematic Exhibitions\n\nFive halls on the first and second floors house temporary exhibitions focusing on subjects varying from popular culture, contemporary art and social issues in Hong Kong, to traditional Chinese art and history.", "\n\n## 6. ", "Chao Shao-an Gallery\n\nThe delicate ink on scroll paintings of artist and one-time Hong Kong resident Chao Shao-an are known far beyond China. ", "There are dozens of fine examples on show in the gallery.", "\n\n## 7. ", "Courtyard\n\nFor fresh air and interesting surroundings, head to the shaded courtyard in the centre of the complex.", "\n\nThe courtyard in the complex\n\n## 8. ", "New Territories History\n\nExamples of the rich fauna and flora of the region, along with 6,000-year-old artifacts from the early days of human habitation in Hong Kong, chart both the natural and social changes of the region.", "\n\n## 9. ", "New Territories Culture\n\nLarge mock-ups of old maritime and village scenes recreate the pre-colonial days. ", "The growth of the new towns, such as Sha Tin, is also covered through photography and objects.", "\n\nThe history brought to life in the museums\n\n## 10. ", "TT Tsui Gallery of Chinese Art\n\nThe works of art dating from Neolithic times to the 20th century include porcelain, bronze, jade and stone artifacts, furniture, laquerware and religious statues.", "\n\nA statue of the Buddha in the TT Tsui Gallery of Chinese Art\n\n### HONG KONG'S EARLIEST SETTLERS\n\nThe New Territories History hall tells the scant story of Hong Kong's original inhabitants. ", "Bronze Age people left behind axe and arrowheads in various parts of the territory more than 4,000 years ago, along with some mysterious rock carvings. ", "Excavations on Lamma Island have turned up artifacts from an older Stone Age civilization, dating back about 6,000 years.", "\n\n Back to Heritage Museum\n\n Back to Top 10 Hong Kong Highlights\n Back to Top 10 Hong Kong Highlights\n\n# TAI LONG WAN COASTLINE\n\nAlthough only 40 km (25 miles) from Hong Kong Island, the remote, pristine beaches on the eastern edge of the rugged Sai Kung Peninsula, in the New Territories, seem like another country. ", "There is no rail link and few roads, so you will have to make an early start, taking a bus to Sai Kung town, another bus to Pak Tam Au, then walk the hilly 6-km (4-mile) footpath to the beach. ", "Alternatively, hire a junk. ", "The reward for your efforts will be stunning coastline, glorious surf, delightful hidden pools and shaded cafés.", "\n\n### NEED TO KNOW\n\n Take the frequent 92 bus from Diamond Hill KCR terminating at Sai Kung town, then the half-hourly 94 bus (or 96R on Sun) to Pak Tam Au. ", "Allow about 90 minutes from Kowloon or Central to the start of the path, plus at least an hour each way to hike to and from the beach • Daily junk hire from HK$5,500; see _Yellow Pages_ for listings\n\n Google Map\n\n * Buy the HKTB's _Discover Hong Kong's Nature_ for detailed information.", "\n * The only eating options are beach cafés offering a variety of local specialities and fried foods.", "\n * For picnic supplies, head to the well-stocked Wellcome supermarket in Sai Kung.", "\n\n## 1. ", "Beaches\n\n Google Map\n\nThere are three excellent beaches at Tai Long Wan. ", "Tai Wan is the most remote and unspoiled; the smallest beach, Ham Tin, has a good café and camping area; Tai Long Sai Wan is the busiest.", "\n\nA panoramic view of the beaches at Tai Long Wan\n\n## 2. ", "Natural Swimming Pools\n\n Google Map\n\nA lovely series of waterfalls and natural swimming pools is the area's best-kept secret. ", "Reach them from the path running alongside the small river at the northwestern end of Tai Long Sai Wan beach.", "\n\nAn scenic natural swimming pool\n\n## 3. ", "Beach Cafés\n\n Google Map\n\nNoodles, fried rice and hot and cold drinks are available from the modest, reasonably priced cafés on Tai Long Sai Wan and the Hoi Fung café at Ham Tin.", "\n\n## 4. ", "Ham Tin to Tai Long Path\n\n Google Map\n\nTake the steep 1-km (half-mile) path between Ham Tin and Tai Long Sai Wan for lovely views down onto Ham Tin, Tai Wan and the mountains behind.", "\n\nA picturesque sight\n\n## 5. ", "Surf Action\n\nTai Wan has reasonably good surf. ", "Bodyboarding should always be possible, and you may even be able to surf properly when storms raise bigger swells.", "\n\nVisitors surfing at the beach\n\n## 6. ", "Pleasure Junks\n\nMost privately hired junks drop anchor at Tai Long Sai Wan, and their passengers head to the beach in smaller craft, making this the busiest of the three beaches.", "\n\n## 7. ", "Hakka Fisherfolk\n\n Google Map\n\nTai Long village may have been first settled in prehistoric times. ", "It was a thriving Hakka fishing village until the 1950s, when most people migrated to the city or abroad. ", "Only a few elderly residents remain in this sleepy place.", "\n\nThe house of a Hakka fisherfolk\n\n## 8. ", "Camp Site\n\n Google Map\n\nThe area just east of Ham Tin village is the best place for overnight campers; it has flat ground, barbecue pits, public toilets and a stream for fresh water. ", "There are no hotels in the area.", "\n\n## 9. ", "Sharp Peak\n\n Google Map\n\nThe prominent 468-m (1,497-ft) summit of Sharp Peak is clearly visible from Ham Tin and Tai Wan. ", "The arduous climb up its very steep slopes rewards with spectacular views over the peninsula.", "\n\n## 10. ", "Ham Tin Bridge\n\n Google Map\n\nIf you want to keep your feet dry, the only way onto the beach from Ham Tin village is via a rickety bridge. ", "Marvel at the makeshift engineering from nailed-together driftwood and offcuts.", "\n\nThe adventurous Ham Tin Bridge\n\n### THE ROUTE OUT\n\nA good route out of Tai Long Wan is the scenic path winding southwest from Sai Wan village around High Island Reservoir. ", "Once you hit the main road outside Pak Tam Chung, there's a chance of picking up a bus or taxi back into Sai Kung town – but allow up to 5 hours walking just in case.", "\n\n Back to Tai Long Wan Coastline\n\n Back to Top 10 Hong Kong Highlights\n Back to Top 10 Hong Kong Highlights\n\n# CHEUNG CHAU ISLAND\n\nThis tiny, charming island, a half-hour high-speed ferry ride west of Hong Kong, makes a great escape from the heat and hassles of the city, except maybe at weekends when everyone else has the same idea. ", "The sense of an older, traditional Hong Kong is pervasive among the narrow streets, tiny shops and temples of this old pirate and fishing haven. ", "It's possible to see most of the island in a day, taking it in with some lovely secluded walks. ", "The seafood is cheap and there are small but excellent stretches of beach.", "\n\n### NEED TO KNOW\n\n Daily ferries hourly or half-hourly from Central Pier No. ", "5. ", "High-speed ferries take just 35 minutes • www.hkkf.com.hk\n\n Google Map\n\n * Hire bicycles from opposite the basketball courts close to Pak Tai Temple.", "\n * Cheung Chau's famous Bun Festival is held in early May, check www.hktb.com for dates.", "\n * If you've had your fill of seafood, try Morocco's (2986 9767), by the ferry pier, which serves decent Indian, Thai and Western (but not Moroccan) fare in the evenings.", "\n\n## 1. ", "Pak Tai Temple\n\n Google Map\n\nThis highly decorative, renovated 1783 temple is dedicated to Pak Tai, Cheung Chau's patron deity, who is credited with saving islanders from plague. ", "The temple is the centre for the annual Bun Festival celebrations, when mounds of buns are piled up to be offered to resident ghosts. ", "The festival dates from the time of plagues in the 19th century, which were considered to be the vengeance of those killed by local pirates.", "\n\nThe historical Pak Tai Temple\n\n## 2. ", "Harbour\n\n Google Map\n\nAlthough Hong Kong's commerical fishing industry has dwindled from its heyday, plenty of fishing boats still operate from Cheung Chau's typhoon shelter harbour. ", "Cheap cycle hire is available along the waterfront.", "\n\nThe colourful fishing boats in the harbour\n\n## 3. ", "Venerable Banyan Tree\n\n Google Map\n\nOn Tung Wan Road is an ancient tree that is thought to be the source of Cheung Chau's good fortune. ", "It is so revered by islanders that a restaurant opposite was knocked down instead of the tree to make way for a road.", "\n\nThe Banyan tree\n\n## 4. ", "Windsurfing Centre\n\n Google Map\n\nThe family of Olympic gold medallist Lee Lai-Shan operates the windsurfing centre and café near Tung Wan.", "\n\n## 5. ", "Tung Wan Beach\n\n Google Map\n\nThe island's finest beach is on the east coast, 150 m (500 ft) from the west coast's ferry pier. ", "It is tended by lifeguards and has a shark net.", "\n\nThe azure Tung Wan Beach\n\n## 6. \"", "The Peak\"\n\n Google Map\n\nA walk up the hill along Don Bosco and Peak roads will take you past some lovely old colonial houses and beautiful sea views. ", "The cemetery on Peak Road has especially fine vistas.", "\n\n## 7. ", "Pirate's Cave\n\n Google Map\n\nThe place where 19th-century buccaneer Cheung Po-tsai supposedly stashed his booty, this \"cave\" is more of a hole or crevice. ", "Take a torch to explore. ", "The sea views nearby make it worth the trip.", "\n\nThe exciting Pirate's Cave\n\n## 8. ", "Boatbuilding Yard\n\n Google Map\n\nAt the harbour's northern end is a busy yard where junks are built and nets mended. ", "Look out for the slabs of ice sliding along the overhead chute, down a mini helter-skelter and onto the boats.", "\n\n## 9. ", "Seafood Restaurants\n\n Google Map\n\nIf you want to dine on fish or shellfish, there's plenty of choice along the seafront on She Praya Road north and south of the ferry pier. ", "The restaurants are cheaper than other seafood centres such as Lamma. ", "Choose from the live tanks.", "\n\n## 10. ", "Ancient Rock Carving\n\n Google Map\n\nIn the Hong Kong region are several rock carvings in close proximity to the sea. ", "There are some near Tung Wan beach and Cheung Chau has one facing the sea. ", "Nothing is known of the people who carved out these shapes about 3,000 years ago.", "\n\nThe relic of great historical importance, an ancient rock carving\n\n### PATHS AND WALKS\n\nA footpath weaves around the southern edge of the island, taking in clifftop walks and a small Tin Hau Temple at Moring Beach. ", "Heading southwest will take you along Peak Road past the cemetery to Sai Wan harbour. ", "From here you can take a sampan shuttle back to the ferry pier.", "\n\n Back to Cheung Chau Island\n\n Back to Top 10 Hong Kong Highlights\n Back to Top 10 Hong Kong Highlights\n\n# BIG BUDDHA AND PO LIN MONASTERY\n\nOnce a humble house built in 1906 by three monks to worship the Buddha, Po Lin Monastery on Lantau Island is now a large and important temple. ", "Its crowning glory, the giant Buddha statue facing the monastery, is an object of veneration for devotees and one of Hong Kong's most popular tourist sights. ", "The statue dominates the area from a plinth reached by more than 260 steps. ", "On a clear day, the view across the valleys, reservoirs and peaks of Lantau makes the climb more than worthwhile.", "\n\n### NEED TO KNOW\n\n MTR to Tung Chung, then No. ", "23 bus, or No. ", "2 bus from Lantau Island's Mui Wo ferry terminal • MTR to Tung Chung, then Ngong Ping 360 Cable Car to the village.", "\n\n Monastery: 8am–6pm daily; Big Buddha: 10am–5:30pm daily; www.plm.org.hk\n\n Cable Car: 10am–6pm Mon–Fri, 9am–6:30pm Sat, Sun & hols; single/return HK$145/$210; www.np360.com.hk\n\n Google Map\n\n * Stay at the reasonably priced S G Davis Hostel (2985 5610) and rise early to see the sunrise from the summit of nearby Lantau Peak.", "\n\n## 1. ", "The Big Buddha\n\nStanding a lofty 34-m (112-ft) high, this mighty bronze statue is among the largest seated Buddha images in the world. ", "The statue, which was cast in more than 220 pieces, sits on a lotus throne – the Buddhist symbol of purity – and his right hand is raised, \"imparting fearlessness\".", "\n\nThe large bronze statue of Big Buddha\n\n## 2. ", "Monastery\n\nAttracted by its seclusion in Lantau's hills, Buddhist monks began arriving on Lantau in the early 20th century. ", "The Po Lin or \"precious lotus\" monastery really developed as a place for pilgrimage in the 1920s when the Great Hall was built and the first abbot appointed.", "\n\nA charming monastry\n\n## 3. ", "Orchid Garden\n\nBelow the Big Buddha, near the Po Lin Hall, lies this beautiful garden where fragrant blossoms, planted around the monastery, are cultivated.", "\n\n## 4. ", "Ngong Ping 360 Cable Car\n\nThe cable-car ride from Tung Chung to Po Lin is an attraction in itself. ", "The 4-mile (5.7-km), 25-minute journey provides sweeping views across the North Lantau Country Park and to the distant South China Sea _(seeNgong Ping 360 Cable Car)_.", "\n\nVisitors in the cable car\n\n## 5. ", "Great Hall\n\nThe main temple houses three large golden Buddha images. ", "Don't miss the ceiling paintings, the elaborate exterior friezes and the elegant lotus-shaped floor tiles.", "\n\nThe reverent golden Buddha statues of the Great Hall\n\n## 6. ", "Bodhisattvas\n\nOn each side of the staircase are statues of Buddhist saints. ", "They are venerated for deferring heaven in order to help mortals reach enlightenment.", "\n\nAn awe-inspiring statue of buddhist saints\n\n## 7. ", "Vegetarian Kitchen\n\nThe monastery's kitchen serves simple vegetarian meals to visitors from 11:30am to 4:30pm daily. ", "They don't have an extensive menu, but the ingredients used are tasty, seasonal and fresh.", "\n\n## 8. ", "Footpath Down to Tung Chung\n\nWalk down to Tung Chung MTR via the lovely 4-mile (7-km) wooded path through the Tung Chung Valley. ", "You'll pass smaller monasteries including Lo Hon, which serves vegetarian lunches.", "\n\n## 9. ", "Monks and Nuns\n\nYou may glimpse the robed, shaven-headed nuns and monks at prayer in the old temple behind the main one. ", "Entry is forbidden to tourists during the 3pm prayers.", "\n\n## 10. ", "Temple Gateway\n\nGuarded by twin lions, the temple gateway is said to replicate the southern gate to Buddhist heaven. ", "As found elsewhere in the temple, it is decorated with reverse swastikas, which is the holy sign of Buddhism. ", "The Chinese characters at the top read \"Po Lin Monastery\".", "\n\nThe ornate temple gateway\n\n### NEAR MISS AT THE BIG BUDDHA\n\nIn 2016, a plane coming in to Hong Kong's nearby airport aborted its landing and circled above the temple at 914 m (3,000 ft). ", "As the Buddha's head stands well above 762 m (2,500 ft), the pilot was instructed to fly higher and an investigation was launched.", "\n\n Back to Big Buddha and Po Lin Monastery\n\n Back to Top 10 Hong Kong Highlights\n* * *\n\nThe Top 10 of Everything\n\nA traditional Chinese dragon used in ceremonial dances\n\n## The Top 10 of Everything\n\n1 | Moments in History \n---|--- \n2 | Modern Buildings \n---|--- \n3 | Walking Routes and Promenades \n---|--- \n4 | Areas of Natural Beauty \n---|--- \n5 | Ways to Experience the Real China \n---|--- \n6 | Off the Beaten Track \n---|--- \n7 | Places for Children \n---|--- \n8 | Hong Kong for Free \n---|--- \n9 | Nightclubs \n---|--- \n10 | Restaurants \n---|--- \n11 | Hong Kong Dishes \n---|--- \n12 | Markets \n---|--- \n13 | Festivals and Events \n---|---\n Back to The Top 10 of Everything\n\n# MOMENTS IN HISTORY\n\n## 1. ", "4000 BC: Early Peoples\n\nFor many years, the popular version of history was that Hong Kong was a \"barren rock\" devoid of people when the British arrived. ", "In fact, archaeology now shows that scattered primitive clans had settled by the seaside on Hong Kong Island and the New Territories some six millennia ago. ", "Their diet was not politically correct by today's standards: bone fragments show they liked to eat dolphin.", "\n\n## 2. ", "AD 1127: Local Clans\n\nWhen marauding Mongols drove the Song dynasty emperor's family out of the imperial capital of Kaifeng, one princess escaped to the walled village of Kam Tin in the New Territories, where she married into the powerful Tang clan.", "\n\n## 3. ", "1841: The British Take Hong Kong Island\n\nIn a decisive move during the First Opium War (1839–42) between China and Britain, Captain Charles Elliot of the British Royal Navy landed on Hong Kong Island and planted the Union Jack flag on 25 January. ", "The 8,000-odd locals seem to take it in their stride, but China and Britain continued to fight over other Chinese trading cities. ", "The 1842 Treaty of Nanking ceded Hong Kong Island to the British.", "\n\n19th-century pirate\n\n## 4. ", "1860: Land Claim\n\nThe good times were rolling in Hong Kong, where the population had swollen to more than 86,000. ", "The island was becoming cramped, however, and after a series of further skirmishes between Britain and China, the Kowloon Peninsula and Stonecutter's Island were ceded to Britain by the Convention of Beijing.", "\n\n## 5. ", "1898: The 99-Year Lease\n\nBritain dug in, turning Hong Kong into a mighty fort. ", "Lyemun at the eastern end of the island bristled with guns and the world's first wire-guided torpedo. ", "Breathing space and water supplies were assured when, on 1 July, the 99-year lease of the New Territories was signed in Beijing.", "\n\n## 6. ", "1941: Japanese Occupation\n\nHong Kong had guns galore defending the sea, but the Japanese came by land. ", "They had little trouble breaching the aptly named Gin Drinkers Line – a motley string of pillboxes. ", "Hong Kong was surrendered two days before Christmas, beginning a brutal three-year occupation.", "\n\nJapanese soldiers captured by the British, 1945\n\n## 7. ", "1950: Economic Miracle\n\nThe territory's economic miracle began to unfold, as incoming refugees from China provided an eager workforce, and British rule kept things on an even keel. ", "Hong Kong's transformation into a manufacturing centre began.", "\n\n## 8. ", "1997: Handover\n\nFollowing the 1984 Sino-British joint Declaration, when Deng Xiaoping promised to preserve Hong Kong's autonomy under \"One Country, Two Systems\", Britain handed Hong Kong back to China at midnight on 30 June 1997. ", "The ceremony appeared an anticlimax after escalating political tensions.", "\n\nThe Handover ceremony, 1997\n\n## 9. ", "1998: Financial Crisis\n\nAsia's economic \"tigers\" were humbled, as years of living on borrowed money finally took their toll. ", "Hong Kong was not as badly hit as some countries, but the financial crisis took its toll nonetheless.", "\n\n## 10. ", "2014: Occupy Central Protests\n\nFollowing widespread protests demanding electoral reform in 2014, China plans to offer universal suffrage to Hong Kong citizens in 2017 – but only to elect candidates approved by Beijing.", "\n\n### TOP 10 MOVERS AND SHAKERS\n\n#### 1. ", "Jorge Alvares\n\nIn 1513, the Portuguese navigator Alvares becomes the first European to visit Hong Kong.", "\n\n#### 2. ", "Cheung Po-tsai\n\nThe Lantau-based pirate king Cheung Po-tsai wreaks havoc, plundering international traders in 1810.", "\n\n#### 3. ", "Lin Zexu\n\nCommissioner Lin Zexu is appointed by China in 1839, with the task of ending the trade in imported opium.", "\n\n#### 4. ", "Captain Charles Elliot\n\nFlag-planter Captain Charles Elliot claims Hong Kong Island for Britain and Queen Victoria in 1841.", "\n\n#### 5. ", "Sir Henry Pottinger\n\nPottinger becomes Hong Kong's first governor. ", "He turns a blind eye to illicit shipments of opium.", "\n\n#### 6. ", "Dr Sun Yat-sen\n\nThe reformer blasts China as \"chaotic and corrupt\" during a lecture at Hong Kong University in 1923. ", "Economic boycott of the colony follows.", "\n\n#### 7. ", "Rensuke Isogai\n\nIn 1941, the military commander begins his barbaric reign as Japan's wartime governor of Hong Kong.", "\n\n#### 8. ", "Deng Xiaoping\n\nThe Chinese premier sticks to his principles during Handover talks with Margaret Thatcher in 1984.", "\n\nDeng Xiaoping\n\n#### 9. ", "Chris Patten\n\nThe last British governor waved goodbye to Hong Kong in 1997.", "\n\n#### 10. ", "Tung Chee-hwa\n\nThe shipping magnate Tung Chee-hwa becomes the first Chief Executive of Hong Kong after the Handover.", "\n\n Back to Moments in History\n\n Back to The Top 10 of Everything\n Back to The Top 10 of Everything\n\n# MODERN BUILDINGS\n\n## 1. ", "HSBC Headquarters\n\n 1 Queen's Rd, Central\n\n Google Map\n\nSir Norman Foster's striking, Blade Runner-esque edifice cost a whopping HK$5.2bn, making it the world's priciest building when it opened in 1985. ", "The headquarters of the Hong Kong and Shanghai Banking Corporation are reputed to have some of the best feng shui around – the building sits on a rare confluence of five \"dragon lines\" and enjoys unimpeded harbour views. ", "The soaring atrium, filled with natural light, feels like a cathedral. ", "Guarding the building's entrance are two lion statues named Stephen and Stitt.", "\n\nHSBC Headquarters atrium\n\n## 2. ", "Bank of China Tower\n\n 1 Garden Rd, Central\n\n Google Map\n\nThis one is also famous in feng shui circles, but more for dishing it out than possessing it – the glass-skinned tower shoots bad vibes at the old Government House and other colonial entities. ", "Its knife-like edges were the inspiration of American-Chinese master architect I M Pei. ", "The 70-storey, 367-m (1,205-ft) stack of prisms opened in 1990.", "\n\n## 3. ", "Hong Kong International Airport\n\n Google Map\n\nAnother of Norman Foster's designs. ", "His glass-dominated passenger terminal, which opened in July 1998, is impressive. ", "The airport is built on the specially flattened island of Chek Lap Kok.", "\n\n## 4. ", "International Commerce Centre\n\n 1 Austin Rd West, Kowloon\n\n Google Map\n\nAt 484 m (1,588 ft) in height and with 108 storeys, this is Hong Kong's tallest building. ", "It houses the world's highest hotel, the Ritz-Carlton, Hong Kong and the sky100 Observation Deck.", "\n\n## 5. ", "Two IFC Tower\n\n Exchange Square, Central • 55/F HKMA Information Centre: 10am–6pm Mon–Fri, 10am–1pm Sat • Photo ID required\n\n Google Map\n\nThe Two International Finance Centre Tower soars above Victoria Harbour. ", "At 412 m (1,352 ft), it was Hong Kong's tallest building until it was overtaken in 2010 by the International Commerce Centre. ", "There is a large, upmarket shopping mall at its base. ", "The Hong Kong Monetary Authority (HKMA) Information Centre offers spectacular views.", "\n\nTwo IFC Tower\n\n## 6. ", "Tsing Ma Bridge\n\n Google Map\n\nThe suspension bridge stretches from Tsing Yi Island to Lantau, 2.2 km (1.5 miles) long. ", "A striking sight, especially when lit up at night, the double-decker bridge carries both the road and rail links to Chek Lap Kok airport. ", "It was opened in May 1997 by former UK Prime Minister Margaret Thatcher, having taken five years to build at a cost of HK$7.14bn. ", "Take the MTR to Tsing Yi or catch an airport bus (but not the airport train) to view it. ", "There's also a viewing platform at Ting Kau _(seeTsing Ma Bridge Lookout Point)_.", "\n\nTsing Ma Bridge at dusk from Tsing Yi island\n\n## 7. ", "Lippo Towers\n\n 89 Queensway, Admiralty\n\n Google Map\n\nThese knobbly megaliths look like they have koalas clinging to their sides – a reflection of the origins of the original antipodean owner, jailbird Alan Bond.", "\n\n## 8. ", "Cheung Kong Centre\n\n 2 Queen's Rd, Central\n\n Google Map\n\nThis building is big, boxy and glassy. ", "The top floor is the office of business magnate Li Ka-shing. ", "Note how it's built perfectly parallel to the adjoining Bank of China for optimal feng shui.", "\n\n## 9. ", "Central Plaza\n\n Google Map\n\nConfusingly, this is in Wan Chai, not Central _(seeCentral Plaza)_. ", "The building has 78 storeys and at 374 m (1,227 ft) it is the third-tallest tower in Hong Kong. ", "At night the neon rods at the top of the building change colour every 15 minutes.", "\n\nCentral Plaza\n\n## 10. ", "HK Convention and Exhibition Centre\n\n 1 Expo Drive, Wan Chai\n\n Google Map\n\nSite of the official Handover ceremony in 1997, the Centre sprawls across a huge area over the harbour and was designed to resemble a bird in flight.", "\n\n Back to Modern Buildings\n\n Back to The Top 10 of Everything\n Back to The Top 10 of Everything\n\n# WALKING ROUTES AND PROMENADES\n\n## 1. ", "The Peak Circuit\n\n Google Map\n\nThis loop around Victoria Peak takes about an hour to complete at a gentle pace. ", "Formed by Harlech and Lugard roads, the circuit offers jaw-dropping city panoramas to the north, boundless sea views to the south, and glimpses of the many millionaires' homes among the greenery en route _(seeThe Peak)_.", "\n\nViews of the skyscrapers of Central from the Peak Circuit\n\n## 2. ", "Temple Street Night Market\n\n Google Map\n\nAllow plenty of time, not for the distance (Temple Street is no more than half a mile end to end), but to explore the pageantry of hawker stalls, fortune tellers, medicine men and opera singers that set up along here every night _(seeTemple Street Night Market)_.", "\n\n## 3. ", "The MacLehose Trail\n\n Google Map\n\nIt spans over 100 km (60 miles) across the New Territories, so only bona fide outdoor types will attempt the whole length. ", "But certain sections are easily accessible (try the lovely part around the High Island Reservoir) for visitors who value the prospect of being back at the hotel bar by nightfall. ", "Information can be found on the HKTB website _(seeTravellers with Specific Needs)_.", "\n\n## 4. ", "Central to Western via Hollywood Road\n\n Google Map\n\nCentral's futuristic office towers and concrete canyons give way to the low-rise charm of antique shops, galleries and bars the further west you go, ending up in Western's archetypal Chinese shopping streets and docksides. ", "A must _(seeHong Kong Island – Northwest)._", "\n\n## 5. ", "The Hong Kong Land Loop\n\n Google Map\n\nAlmost all of Central's prestigious commercial towers are part of the portfolio of one company, Hong Kong Land, which has thoughtfully connected its properties with aerial walkways. ", "The buildings include Jardine House, Mandarin Oriental, Prince's Building and the Landmark Centre. ", "Do the circuit, if only for the ethereal experience of experiencing downtown Hong Kong without ever touching the ground.", "\n\n## 6. ", "Cultural Centre Promenade\n\n Google Map\n\nThis walkway from the Kowloon Star Ferry, past the InterContinental, is notable for great views of Hong Kong Island's towers. ", "See these lit to music nightly at 8pm in the Symphony of Lights show _(seeWaterfront Promenade)_.", "\n\n## 7. ", "Nathan Road\n\n Google Map\n\nA joyously tacky and tawdry strip, the Golden Mile, Hong Kong's own Broadway, runs up the Kowloon peninsula, passing hotels and tourist shops at the upscale southern end, before downgrading into the sleazy karaoke lounges and low-rent storefronts of central Kowloon. ", "Just don't buy any of the cheap electronics along the way _(seeThe Golden Mile)._ ", "If you need a respite from the hectic street life, stop off at Kowloon Park.", "\n\nNeon signs on Nathan Road\n\n## 8. ", "The Praya, Cheung Chau\n\n Google Map\n\nThis island _praya_ (or waterfront road) is everything the main drag of a backwater fishing town should be: a rambling tableau of fresh catches, boats tying up, market stalls and skipping kids. ", "Look out for the splendid hand-pulled water carts that are the island's only fire engines _(seeCheung Chau Island)_.", "\n\nFishing boats at Cheung Chau\n\n## 9. ", "The Central Green Trail\n\n Google Map\n\nJust minutes from the towering banks, malls and offices of downtown, this signposted, hour-long trail from the Peak Tram terminus at Hong Kong Park opens up a lush hillside world of trees, ferns and rocks. ", "A beautiful, shady walk that offers an alternative to taking the tram to the top.", "\n\n## 10. ", "Victoria Park\n\n Google Map\n\nOne of the city's larger green sites, Victoria Park is best visited in the early morning, when tai chi devotees exercise and it is at its most peaceful. ", "Throughout the day there are people-watching opportunities and restful walks, away from the urban bustle _(seeVictoria Park)_.", "\n\n Back to Walking Routes and Promenades\n\n Back to The Top 10 of Everything\n Back to The Top 10 of Everything\n\n# AREAS OF NATURAL BEAUTY\n\n## 1. ", "Cape D'Aguilar\n\n Google Map\n\nIt may be only 11 km (7 miles) directly south of Hong Kong's busy Central district, but Cape D'Aguilar feels like another world. ", "The wild coastline has wave-lashed rock formations and a marine life so rich that researchers have discovered 20 new species in its waters.", "\n\n## 2. ", "Hoi Ha Wan\n\n Google Map\n\nThe long inlets and sheltered coves of this marine park in northern Sai Kung are made for snorkelling. ", "The water is full of stony coral and diverse species of colourful reef fish.", "\n\n## 3. ", "Mai Po Marsh\n\n Google Map\n\nDeclared a Ramsar site (that is, a wetland of international importance) in 1995, Mai Po is still one of China's most important bird sanctuaries, with hundreds of resident and migratory species recorded here, including many endangered ones. ", "Other wildlife that live here include otters, civet cats, bats and amphibians _(seeMai Po Marsh)_. ", "Tours organized by WWF on weekends.", "\n\nSea birds at Mai Po Marsh nature reserve\n\n## 4. ", "Bride's Pool\n\n Google Map\n\nThe pool is a popular picnic spot. ", "Weekends are best avoided, but visit midweek and, with luck, you will have this glorious, wooded course of rockpools and cascades all to yourself _(seeBride's Pool)_.", "\n\n## 5. ", "Pat Sin Range\n\n Google Map\n\nHong Kong's countryside achieves a quiet grandeur among the empty valleys and sublime uplands of Pat Sin (\"eight spirits\"). ", "Peaks range up to 639 m (2,095 ft), and the views are humbling.", "\n\n## 6. ", "Jacob's Ladder\n\n Google Map\n\nTake these steep steps up the rock from Three Fathom's Cove, and enter an expanse of remote uplands and boulder-strewn paths, leading, in the north, to Mount Hallowes. ", "There are exquisite views of the Tolo Channel.", "\n\n## 7. ", "Sha Lo Tung\n\n Google Map\n\nThis hidden valley in the New Territories is probably the closest Hong Kong comes to the stereotypical idea of a classical Chinese landscape, with its old paddy fields, deserted villages, flowing streams and ancient woods. ", "Magical.", "\n\n## 8. ", "Dragon's Back\n\n Google Map\n\nThis undulating ridge snakes down Hong Kong Island's south-east corner, with plunging slopes, poetic sea views and (past Pottinger's Gap) deep wooded valleys and beaches.", "\n\nWalkers on the Dragon's Back\n\n## 9. ", "Tai Long Wan\n\n Google Map\n\nOn the Sai Kung Peninsula, survive the knuckle-whitening ascent of Sharp Peak (all loose rocks and narrow paths), and the land plunges down to your well-earned reward: the sparkling waves and white sand beaches of Hong Kong's finest bay, Tai Long Wan.", "\n\nWhite sand beaches of Tai Long Wan\n\n## 10. ", "Ma On Shan\n\n Google Map\n\nThe plateaus and grassy slopes that surround the 702-m-(2,303-ft-) high Ma On Shan (\"Saddle Mountain\") allow for splendid panoramic views of the mountainous countryside, without the insidious intrusion of city skyline in the distance. ", "The effect is truly majestic and worth the climb _(seeMa On Shan)_.", "\n\nThe peak of Ma On Shan\n\n Back to Areas of Natural Beauty\n\n Back to The Top 10 of Everything\n Back to The Top 10 of Everything\n\n# WAYS TO EXPERIENCE THE REAL CHINA\n\n## 1. ", "Spend a Night at the Opera\n\n www.cantoneseopera.hk\n\nCantonese opera might sound discordant to the untrained ear, but make no mistake, this is a fine and ancient art. ", "It combines song, mime, dancing, martial arts and fantastic costumes and make-up, and can go on for 6 hours or more. ", "Contact the Tourist Board for details of performances.", "\n\nOpera singer\n\n## 2. ", "Feast on Dim Sum\n\nDim sum is commonly translated as \"touch the heart\", and after a few plates of these delicious meat- or vegetable-filled dumplings, it is easy to see why. ", "The small steamed snacks are delivered on trolleys in bamboo baskets.", "\n\n## 3. ", "Ride on a Junk\n\n Tours depart from Tsim Sha Tsui Pier 2 & Central Pier 9 • Harbour Discovery tour: noon–5pm daily (hourly); Stanley Village tour: noon Sat & Sun; evening cruises: 6:30–10:45pm daily • Advance booking advisable • 2116 8821 • Adm • www.aqualuna.com.hk\n\n Google Map\n\nWe've all seen the iconic images of junks, blood-red batwing sails unfurled as the sun sets over Victoria Harbour. ", "Hand built in the Hong Kong shipyard of an 80-year-old master craftsman, the _Aqua Luna_ is one of the last remaining sailing junks.", "\n\nTraditional junk, Victoria Harbour\n\n## 4. ", "Visit a Market\n\nHong Kong's wet markets can bring on instant culture shock for those tourists who are more used to the more orderly atmosphere of home supermarkets. ", "Wander through the street stalls, past often gruesome butchers and fishmongers, as hawkers yell and housewives bargain.", "\n\n## 5. ", "Go for a Traditional Tonic\n\n Cnr Luard and Hennessy rds, Wan Chai\n\n Google Map\n\nFor a taste of the real China, try a bowl of tonic tea from a streetside stall. ", "These bitter brews are concocted from herbs according to traditional Chinese medicinal principles of whether they are \"cooling\" or \"heating\". ", "The Lo Cha Di Yat Ka counter in Wan Chai labels all its offerings in English.", "\n\n## 6. ", "Try Foot Reflexology\n\n 1/F Lai Shing Bldg, 13–19 Sing Woo Rd (and three other branches) • 2893 0199\n\n Google Map\n\nVice-like hands seek out pressure points linked to vital organs. ", "The procedure is painful, and you might be embarrassed about your feet, but you will feel so good when they stop. ", "Reflexologists abound in Happy Valley. ", "Try On Wo Tong.", "\n\n## 7. ", "Experience Unbelievable Gall\n\n Hillier St, Sheung Wan • 2543 8032\n\n Google Map\n\nShe Wong Lam in the northeast of Hong Kong Island is the best place to sup on snake wine, a traditional winter tonic. ", "The speciality is a fiery brew containing the gallbladders of five deadly snakes.", "\n\n## 8. ", "Practice Tai Chi\n\n Google Map\n\nTurn up at The Garden of Stars in front of the Museum of Art _(seeThe Garden of Stars)_ in Tsim Sha Tsui at 8am on Mondays, Wednesdays and Fridays to enjoy an hour-long instruction in this gentlest of martial arts.", "\n\nChi Lin Nunnery, Kowloon\n\n## 9. ", "Aim for Everything Zen\n\n Google Map\n\nFor a modern take on ancient China, check out the Chi Lin Nunnery in Kowloon. ", "This gorgeous replica of a seven-hall Tang dynasty (AD 618–907) complex took 10 years to build, using traditional techniques and materials. ", "Bliss out listening to the nuns chanting to the Sakyamuni Buddha _(seeChi Lin Nunnery)_.", "\n\n## 10. ", "Watch a Lion Dance\n\nLions are thought to ward off evil and bring luck, which explains why the opening of a new building often features a fascinating display of youths dancing beneath a stylized lion's head. ", "These performances are commonly seen around Chinese New Year.", "\n\nLion dance\n\n### TOP 10 WAYS TO PAMPER YOURSELF\n\n#### 1. ", "Spa-ing Bout\n\n 2696 6682\n\nCheck into the Peninsula for a stress-busting retreat at the luxurious spa.", "\n\n#### 2. ", "Rubbed the Right Way\n\n On Wo Tong • 2893 0199\n\nGo for a deep-tissue Chinese massage and get the blood circulating.", "\n\nChinese massage\n\n#### 3. ", "Male Pampering\n\n 3717 2797\n\nThe Bliss Spa at W Hong Kong offers a range of treatments for men.", "\n\n#### 4. ", "In a Lather\n\n 2825 4088\n\nA Shanghai-style shave at the Mandarin Oriental will leave your face feeling like a baby's bottom.", "\n\n#### 5. ", "Love Potion No. ", "9\n\nBoost your staying power with a tonic drink from one of the many kerbside Chinese medicine shops.", "\n\n#### 6. ", "Geomancing the Stone\n\n Raymond Lo • 2736 9568\n\nSet your house and garden in tune with the elements with a private feng shui consultation.", "\n\n#### 7. ", "Pins and Needles\n\n On Wo Tong • 2893 0199\n\nLoosen up with a relieving acupuncture session.", "\n\n#### 8. ", "Detoxify\n\n 2143 6288\n\nThe 45-minute detox warming body wrap at the Spa L'Occitane is divine.", "\n\n#### 9. ", "Put Your Feet Up\n\n 2825 4888\n\nFans rave about the traditional Shanghai pedicure from the spa at the Mandarin Oriental.", "\n\n#### 10. ", "The Doctor Is In\n\n Dr Troy Sing • 2526 7908\n\nTry some alternative medicine from a traditional Chinese doctor.", "\n\n Back to Ways to Experience the Real China\n\n Back to The Top 10 of Everything\n Back to The Top 10 of Everything\n\n# OFF THE BEATEN TRACK\n\n## 1. ", "Largo do Lilau, Macau\n\n Mandarin's House: 10 Travessa de António da Silva • Open 10am–6pm Mon, Tue & Thu–Sun • www.wh.mo/mandarinhouse/en\n\n Google Map\n\nThis tiny cobbled square was one of the earliest districts settled by Portuguese, and there's a distinctly European flavour to the surrounding shuttered windows and stuccoed façades. ", "Head to the beautifully restored 19th-century Mandarin's House nearby for a taste of Classical Chinese architecture.", "\n\nMandarin's House in Largo do Lilau, Macau\n\n## 2. ", "Pineapple Dam\n\n Google Map\n\nThis is also known as Shing Mun Reservoir. ", "There's an easy 2-hour walk here through the woodland around the water, with the chance to see macaques and birds. ", "Bring lunch and make use of the barbecue sites, or extend your hike to Tai Mo Shan or Tai Po town.", "\n\n## 3. ", "Wing Wah Noodles\n\n A89 Hennessy Road, Wan Chai • 2527 7476\n\n Google Map\n\nEveryone in Hong Kong has a favourite wonton noodle restaurant but this really is one of the best. ", "A tiny, long-running affair whose crowd of chairs and tables makes for cosy dining. ", "Their stock is excellent and the noodles are just right – soft but still resilient.", "\n\n## 4. ", "Hong Kong Cemetery\n\n Wong Nai Chung Road, Causeway Bay • Open 7am–6pm daily\n\n Google Map\n\nRising in terraces up the hillside opposite the racetrack, these cemeteries provide a snapshot of the people – Muslims, Christians, Parsees and Jews – who once settled this busy outpost. ", "The Protestant section is the most atmospheric, overgrown with trees and crowded with Victorian-era mausoleums.", "\n\nHong Kong Cemetery\n\n## 5. ", "Sung Wong Toi\n\n Ma Tau Chung Road, Kowloon City\n\n Google Map\n\nThough lacking in drama, Sung Wong Toi is a rare reminder that Hong Kong history far predates the British arrival in 1842. ", "This boulder is the sole surviving fragment of a terrace once frequented by the last Song dynasty prince, who fled here to escape the 12th-century Mongol invasion of China.", "\n\n## 6. ", "Bowen Road\n\n Google Map\n\nA short, exhausting walk uphill from busy Queens Road East in Wan Chai, Bowen Road is a narrow concrete strip that runs through unexpectedly thick forest, where traffic noise from below mingles with the humming of cicadas. ", "Lovers' Rock, a phallic-shaped boulder poking rudely up through the treeline here, is a focus for the Maidens' Festival in August.", "\n\n## 7. ", "Nam Koo Terrace\n\n 55 Ship Street, Wan Chai\n\n Google Map\n\nReputedly the most haunted place in Hong Kong, this spooky, uninhabited, mouldering old Chinese mansion sits uncomfortably in the shadows of Wan Chai's towering skyscrapers, draped in strangler figs and the stalking grounds for an unlikely number of feral cats. ", "Though a protected building, redevelopment plans are a real threat.", "\n\n## 8. ", "Three Lamps District\n\n Google Map\n\nA bustling market area in the back lanes of northern Macau. ", "Lanes radiating out from the Rotunda de Carlos da Maia are choked by stalls selling clothing, vegetables and all manner of daily necessities. ", "On the periphery are some low-key temples and the Art Deco façade of the Red Market, where you can buy live meat for the cooking pot.", "\n\n## 9. ", "Tsang Tai Uk\n\n Near Lion Rock Tunnel Road, Sha Tin Wai\n\n Google Map\n\nThis small, old, Hakka clan mansion is strangely overlooked by visitors, despite being an easy walk from Sha Tin's Heritage Museum. ", "Built by the Tsang family between the 1840s and the1860s, the complex is well-preserved, with fortress-like walls and protective \"tiger-fork\" spikes on the roofs. ", "Parts are still lived in today.", "\n\n## 10. ", "Lo Pan Temple\n\n 15 Ching Lin Terrace, Kennedy Town • 2802 2880\n\n Google Map\n\nA short walk uphill from the Belcher's Bay Park tram stop, this small temple dates from 1884 and is the only one in Hong Kong dedicated to Lo Pan, the patron deity of carpenters. ", "The two halls sport a gorgeous, ornate roof, decorated with figures made at the famous ceramics centre of Shiwan, in China.", "\n\nLo Pan Temple\n\n Back to Off The Beaten Track\n\n Back to The Top 10 of Everything\n Back to The Top 10 of Everything\n\n# PLACES FOR CHILDREN\n\n## 1. ", "Science Museum\n\n Google Map\n\nThere is lots of hands-on stuff here, providing a fun and educational introduction to many facets of science. ", "Any child with a healthy dose of curiosity will spend hours pushing buttons, pulling levers and marvelling at gadgets _(seeScience Museum)._", "\n\nExhibit at the Science Museum\n\n## 2. ", "Ocean Park\n\n Google Map\n\n\"Connecting people with nature\" is what it's all about at Ocean Park. ", "The Giant Panda Habitat and the marine Atoll Reef and Sea Jelly Spectacular exhibits will keep children engrossed for hours. ", "Older kids will love the supervised sessions where you can touch some of the animals. ", "The park also features nearly 30 exciting rides, including The Dragon rollercoaster and Raging River water ride, plus a cable car.", "\n\nThe Dragon rollercoaster at Ocean Park\n\n## 3. ", "Zoological and Botanical Gardens\n\n Albany Rd, Central • 6am–7pm daily • www.lcsd.gov.hk/en/parks/hkzbg\n\n Google Map\n\nFounded in 1864, a modicum of Victorian gentility survives here in the wrought-iron bandstand and shrub-lined paths. ", "Not, however, in the monkey house, where the world's largest collection of red-cheeked gibbons swing about the enclosure. ", "Also look out for the orangutans, lemurs and 280 species of birds here.", "\n\n## 4. ", "Hong Kong Disneyland\n\n Lantau Island, served by its own MTR station • 1-830-830 for hours and today's tickets • Adm • www.hongkongdisneyland.com for advance booking\n\n Google Map\n\nDesigners wisely used feng shui in the design of Disney's latest Asian venture, but otherwise there are few nods to local culture. ", "Adventureland, Fantasyland and Tomorrowland lie beyond Main Street, USA.", "\n\nParade at Disneyland\n\n## 5. ", "Ngong Ping 360 Cable Car\n\n Google Map\n\nThe spectacular 25-minute cable-car journey from the hustle and bustle of the city, across open water and up the steep hillside from Tung Chung to the Big Buddha at Po Lin, is the best ride in town _(seeNgong Ping 360 Cable Car)_.", "\n\nNgong Ping 360 Cable Car\n\n## 6. ", "Dolphin Watching\n\n 2984 1414 • Bus pick-up 8:50am at the Kowloon Hotel or boat pick-up 9:30am at Tung Chung New Development Pier, Lantau • Wed, Fri, Sun • Adm • www.hkdolphinwatch.com\n\n Google Map\n\nBe quick, because the sorry state of Hong Kong's waters is killing off the rare Indo-Pacific hump-back dolphins, which here in the Pearl River delta are a pale-pink colour.", "\n\n## 7. ", "Lions Nature Education Centre\n\n Tsiu Hang, Sai Kung, New Territories • 2792 2234 • 9:30am–4:30pm Wed–Mon • www.afcd.gov.hk\n\n Google Map\n\nThe Lions Nature Education Centre is more fun than it sounds, with fruit orchards, an arboretum, rock gardens and, best of all, an insectarium. ", "The Centre promotes nature education, field studies and ecotours for schools, organisations and the public.", "\n\n## 8. ", "Tram Tour\n\n Google Map\n\nRock, rattle and roll along the front of Hong Kong Island, or take a detour around Happy Valley. ", "Hong Kong's trams may be crowded, slow and noisy, but they are terrific for sightseeing _(seeGetting Around by Tram)_.", "\n\n## 9. ", "Kowloon Park\n\n Google Map\n\nThe green lungs of Tsim Sha Tsui _(seeKowloon Park)_ have a huge indoor-outdoor swimming pool, lots of gardens and children's favourite, the Avenue of Comic Stars with life-size statues.", "\n\nAvenue of Comic Stars, Kowloon Park\n\n## 10. ", "Hong Kong Wetland Park\n\n Tin Shui Wai, New Territories • 3152 2666 • 10am–5pm Wed–Mon • Adm • www.wetlandpark.gov.hk\n\n Google Map\n\nThis landscaped wetlands area on the border with China has bird hides, a butterfly garden, lily ponds and a mangrove circuit featuring mudskippers and fiddler crabs. ", "There is also a great, informative walk-through environmental display.", "\n\n Back to Places for Children\n\n Back to The Top 10 of Everything\n Back to The Top 10 of Everything\n\n# HONG KONG FOR FREE\n\n## 1. ", "Parks and Gardens\n\nHong Kong's varied parks and gardens are all free. ", "The pick of the sights include Hong Kong Park, with its excellent walk-through Edward Youde Aviary and the nearby Zoological and Botanical Gardens; the traditional Nan Lian Garden opposite Chi Lin Nunnery; and historic Kowloon Walled City Park, once the site of a lawless housing estate and now a peaceful garden.", "\n\nNan Lian Garden, Kowloon\n\nCrested Pigeon, Edward Youde Aviary\n\n## 2. ", "Harbour Views\n\nAdmire Hong Kong's busy harbour and dynamic architecture from a number of free viewpoints: The Peak offers the most impressive panoramas; Central Plaza's 46th-floor Sky Lobby in Wan Chai, though not a formal viewing platform, offers great views; or watch the evening light show from the Tsim Sha Tsui waterfront.", "\n\n## 3. ", "Mid-Levels Escalator\n\nFor an effortless, free ride uphill through the busy market and entertainment district, catch the unique Mid-Levels Escalator between Central and SoHo _(seeThe Escalator)_. ", "You are rewarded with great views of historic architecture and vignettes of street life in the lanes below. ", "Get off to shop for trinkets along the way on Hollywood Road.", "\n\n## 4. ", "Aberdeen Harbour Ferry\n\nHiring a junk for a half-hour ride around Aberdeen Harbour is a time-honoured way of glimpsing life on Hong Kong's largest fishing fleet, but bargain-hunters can enjoy a shorter version for free by catching a ferry out to one of the famous floating restaurants – you don't need to be intending to dine.", "\n\n## 5. ", "Macau's Casinos\n\nMacau's many casinos – there are 40 at the latest count – could prove to be a serious drain on your finances, but entry is free and they make splendid places to people-watch. ", "Try the Grand Lisboa for ridiculous ostentation, the Sands Cotai Central for routine glitz, the Venetian for its scale and film-set canals, and the Kam Pek Casino for hard-bitten Chinese punters.", "\n\n## 6. ", "Martial Arts\n\nMartial arts are part of Hong Kong's culture but, despite what you'll see in the movies, the real thing tends to be hidden away from public view. ", "You can strike lucky in the nearest park at dawn, or catch the free 2-hour shows held at Kowloon Park's Kung Fu Corner every Sunday afternoon.", "\n\nMartial artists in Kowloon Park\n\n## 7. ", "Hiking\n\nHong Kong is covered in hiking trails; some of them are surprisingly tough and all wind through large swathes of the territory that have so far escaped development. ", "Hong Kong Island's Dragon's Back trail offers an accessible, relatively easy introduction, and ends with a beach and supper at Shek O.\n\n## 8. ", "Temples\n\nHong Kong's many temples are free to visit (although change for the collection box is appreciated). ", "Try the Man Mo Temple on Hollywood Road, the Tin Hau Temple off Nathan Road in Yau Ma Tei or the Wong Tai Sin Temple in eastern Kowloon.", "\n\n## 9. ", "Camping\n\n www.afcd.gov.hk\n\nSurprisingly, for a city where even cramped, budget accommodation usually comes at a premium, there are 41 free campsites spread across Hong Kong's New Territories, and some of them are in spectacular settings. ", "The downsides are that they operate on a first-come-first-served basis, are all fairly remote and have only basic facilities.", "\n\nCamping on Han Tin Wan beach\n\n## 10. ", "Cultural Events\n\nHead out to the foyer of the Hong Kong Cultural Centre for free performances which mostly take place on Saturday afternoons and occasional weekday lunchtimes. ", "The Fringe Club hosts free exhibitions and events. ", "There are also various free events in the area around the Hong Kong Observation Wheel on the waterfront.", "\n\n### TOP 10 MONEY-SAVING TIPS\n\n#### 1. ", "Food Stalls\n\nFor the cheapest meals, eat at the food stalls at the indoor produce markets.", "\n\nFood stalls at a produce market\n\n#### 2. ", "Museum Wednesdays\n\nMost of Hong Kong's museums offer free admission on Wednesdays.", "\n\n#### 3. ", "Happy Valley Races\n\nAt only HK$10 for entry, Happy Valley Races offers an inexpensive night out.", "\n\n#### 4. ", "Chungking Mansions\n\n www.chungkingmansions.com.hk\n\nThe best deals on budget accommodation are offered by the basic hostels in Chungking Mansions.", "\n\n#### 5. ", "Star Ferry\n\nThe cheapest way to cross Hong Kong harbour is aboard the Star Ferry, which boasts spectacular views.", "\n\n#### 6. ", "Octopus Card\n\n www.octopus.com.hk/en\n\nSave time and money on Hong Kong's public transport system with an Octopus Card.", "\n\n#### 7. ", "Happy Hour\n\nMany of Hong Kong's bars and clubs offer relatively inexpensive drinks during daily happy hours.", "\n\n#### 8. ", "Hotel Shuttles\n\nA free shuttle service runs from the Airport Express stations in Kowloon and Central to and from local hotels.", "\n\n#### 9. ", "Shenzhen Airport\n\nShenzhen airport offers cheaper flights into China than those from Hong Kong.", "\n\n#### 10. ", "Markets and Malls\n\nFor the best prices on electronics, clothes, antiques and souvenirs, check out dedicated markets and malls.", "\n\n Back to Hong Kong for Free\n\n Back to The Top 10 of Everything\n Back to The Top 10 of Everything\n\n# NIGHTCLUBS\n\n## 1. ", "Felix\n\n Google Map\n\nThe shining pinnacle of Hong Kong bars is set in Kowloon's famous Peninsula Hotel. ", "Philippe Starck designed Felix, and the result is coolness incarnate. ", "Let the experience envelop you, from the dedicated elevators and their light effects, to the elegantly-designed restrooms. ", "The harbour views are an added bonus. ", "If you plan to visit just one bar in Hong Kong, make this the one _(seeFelix)_.", "\n\n## 2. ", "Ozone at the Ritz-Carlton\n\n Ritz-Carlton Hong Kong, 1 Austin Rd W • 2263 2270\n\n Google Map\n\nTaking the honours as the highest bar in Hong Kong, Ozone sits on floor 118 of the Ritz-Carlton, with outdoor seating and impressive Victoria Harbour views.", "\n\nStylish interior at Ozone at the Ritz-Carlton\n\n## 3. ", "Magnum\n\n 3&4/F, 1 Wellington St, Central • 2116 1602\n\n Google Map\n\nLocated in the heart of Central, Magnum Club is a two-storey monolith featuring transparent staircases, a bubble-like DJ booth and state-of-the-art sound system. ", "There's a great bar with a glitter ball suspended above (try the signature Magnum Club cocktail), an upstairs stage and, if the crowd gets too much, a rooftop terrace. ", "Don't miss the gold-plated toilets.", "\n\n## 4. ", "Dragon-i\n\n Google Map\n\nTwo completely different rooms are meticulously-designed – merging Chinese, Japanese and American aesthetics. ", "The Red Room dining room becomes a VIP lounge for the famous as the evening progresses, with everyone else sinking into the booths in the bronze and mirrored \"Playground\", drinking powerful cocktails. ", "This is a nightspot for the stylish set, so you'll need to dress accordingly _(seeDragon-i)_.", "\n\n## 5. ", "Volar\n\n Basement, 38–44 D'Aguilar St • 2810 1510\n\n Google Map\n\nIf you're in the mood to dance head to this intimate and loud basement venue that has become something of a nightlife institution since opening in 2004. ", "Strips of LED neon lights run across the ceiling and walls and there is a state-of-the-art sound system. ", "Enjoy a variety of dance music on Volar's two dance floors, including hip hop, house, electronica and more.", "\n\n## 6. ", "Rúla Búla\n\n Google Map\n\nThe name of this hip place derives from an Irish saying meaning uproar and commotions. ", "It has a trendy urban warehouse feel, with exposed steal beams and unpainted walls. ", "Sip inventive cocktails and dance into the early hours to a mix of hip hop, pop and house music _(seeRúla Búla)_.", "\n\n## 7. ", "Play\n\n 1 On Hing Terrace, Central\n\n Google Map\n\nHong Kong's largest single-floor nightclub lies in the heart of Central. ", "It is split into three distinctive rooms, including two main rooms and a champagne bar. ", "Top DJs and Asia's finest cocktail mixologists keep the trendy club clientele partying into the early hours of the morning.", "\n\n## 8. ", "Drop\n\n 39–43 Hollywood Rd • 2543 8856\n\n Google Map\n\nThis super-hip venue is one of the best clubs in Hong Kong. ", "Set up by resident DJ Joel Lai, it is the place to go to dance and see Hong Kong's \"beautiful people\". ", "Though small in size, it has a large bar and is extremely popular, due in part to the special club events, happy hours and top DJs. ", "It has a sister club in Shanghai.", "\n\nPlush bar area at Drop\n\n## 9. ", "Di Vino\n\n 73 Wyndham St, Central • 2167 8883\n\n Google Map\n\nThis tunnel-shaped wine bar and restaurant, crammed with beautiful people, makes the perfect start to any evening. ", "There are special prices on early-evening aperitifs and around 40 wines available by the glass. ", "The menu offers bar snacks and memorable Italian food designed for sharing.", "\n\n## 10. ", "Fly\n\n G/F 24–30 Ice House St, Central • 2810 9902\n\n Google Map\n\nPlayfully designed, this smart but unstuffy club with a contemporary interior is great for a night of non-stop electronic music. ", "The thumping Turbosound system pumps out a mix of international DJ tunes, ranging from house and electronic to dubstep and drum 'n' bass.", "\n\n Back to Nightclubs\n\n Back to The Top 10 of Everything\n Back to The Top 10 of Everything\n\n# RESTAURANTS\n\n## 1. ", "Caprice\n\n Google Map\n\nA two Michelin-starred restaurant with views of the harbour, this is fine French dining at its most sumptuous; expect outstanding cuisine, excellent Bordeaux and Burgundy wines and lavish decor. ", "Set-menu lunches draw a strong business crowd, while evenings and weekend lunches are definitely \"see and be seen\" affairs _(seeCaprice)_.", "\n\nThree-Michelin-starred Caprice\n\n## 2. ", "L'Atelier de Joël Robuchon\n\n Google Map\n\nL'Atelier is a highly contemporary venue decorated in bright scarlet with high-top seats arranged around an open kitchen. ", "The set menu options combine classic French culinary traditions with distinctive Asian influences without ever becoming \"fusion\". ", "This restaurant is simply outstanding, as its three Michelin stars imply, and is renowned especially for meat and seafood dishes _(seeL'Atelier de Joël Robuchon)_.", "\n\n## 3. ", "T'ang Court\n\n Google Map\n\nThe food at T'ang Court, Langham Hotel's three Michelin-starred restaurant, continues to astonish. ", "Peerless creativity and insistence on _wok chi_ (wok cooking at the highest achievable temperature) are the keys to its greatness. ", "The restaurant is spread over two floors – upstairs is quieter while the lower floor is open plan.", "\n\n## 4. ", "8½ Otto e Mezzo Bombana\n\n Google Map\n\nThis superb contemporary Italian restaurant was upgraded from two to three Michelin stars in 2011, the first Italian restaurant outside Italy to achieve that recognition. ", "Chef Umberto Bombana, dubbed \"The King of White Truffles\", weaves his culinary magic using only the freshest ingredients. ", "The name is taken from Italian director Federico Fellini's 1963 Oscar-winning autobiographical film _(see8½ Otto e Mezzo Bombana)_.", "\n\n## 5. ", "Kung Tak Lam\n\n Google Map\n\nVegetarians unable to face another helping of the kind of food that passes for much meat-free cuisine in Hong Kong will praise Kung Tak Lam. ", "This light and airy Shanghainese does things with vegetables that could not even be imagined by most vegetarian restaurants elsewhere. ", "Most patrons are locals, but the staff are extra helpful with foreign visitors. ", "Other branches are in Tsim Sha Tsui and Sha Tin, but this 10th-floor location has excellent harbour views _(seeKung Tak Lam)_.", "\n\n## 6. ", "The Verandah\n\n Google Map\n\nFrom its epic Sunday brunches through to romantic, candle-lit dinners, this Southside patrician enjoys impeccable service and a well-deserved lead over nearby competition. ", "The elegant interior has views through shuttered windows of treetops and the sea. ", "Go for the fresh oysters and the Grand Marnier soufflé _(seeThe Verandah)_.", "\n\nThe Verandah\n\n## 7. ", "Spices\n\n Google Map\n\nOpened in 1987, this popular eatery is set in a colonial-style building, with bamboo and teak elements, attached to The Repulse Bay hotel. ", "Sip cocktails and dine on classic Asian cuisine at a table in the landscaped garden, which overlooks the bay _(seeSpices)_.", "\n\n## 8. ", "Island Tang\n\n Google Map\n\nThe 1920s period decor and Cantonese teahouse menu appear smart and simple, though ingredients such as bird's nest and abalone hint at high standards. ", "Superior dim sum, good Peking duck and roast meats are served here, along with plenty of vegetarian options. ", "Island Tang also boasts an impressive wine cellar with some good vintages.", "\n\n## 9. ", "Lung King Heen\n\n Google Map\n\nThe world's first Chinese to earn three Michelin stars is a beautifully-styled modern Cantonese restaurant. ", "Lung King Heen means \"View of the Dragon\" and the inside is designed to replicate a Chinese landscape. ", "It is particularly strong on seafood dishes and dim sum, which can be enjoyed while taking in the splendid harbour views _(seeLung King Heen)_.", "\n\n## 10. ", "Gaddi's\n\n Google Map\n\nRoyalty, Hollywood stars and heads of state have all been known to dine here. ", "In terms of French cuisine in the city, Gaddi's is the holy grail. ", "Expect the highest level in every area: from the sophisticated menu to ultra-attentive service. ", "If you are a fan of _haute cuisine_ , you've found your heaven _(seeGaddi's)_.", "\n\nDuck liver and baby salad, Gaddi's\n\nOpulent dining room at Gaddi's\n\n Back to Restaurants\n\n Back to The Top 10 of Everything\n Back to The Top 10 of Everything\n\n# HONG KONG DISHES\n\n## 1. ", "Cha Siu\n\nThis is virtually Hong Kong's national dish. ", "The name literally means \"fork roast\". ", "The tender fillets of pork are roasted and glazed in honey and spices, and hung in the windows of specialist roast meat shops. _", "Cha siu_ is classically served thinly sliced, with steamed rice and strips of vegetables.", "\n\nPlate of _cha siu_\n\n## 2. ", "Moon Cake\n\nMade of moist pastry and various fillings, including lotus, taro, adzuki bean, whole egg yolk and occasionally coconut, the delicacy also has a quirky history: revolutionaries in imperial China used to smuggle messages to each other hidden in the cake's dense filling.", "\n\nTraditional moon cake\n\n## 3. ", "Steamed Whole Fish\n\nIn Hong Kong, fish is almost always dressed very simply, using only peanut oil, soya sauce, chives and coriander. ", "To maximize freshness, restaurants keep tanks of live fish, which are prepared to order.", "\n\n## 4. ", "Hainan Chicken\n\nComprising chunks of steamed chicken, served slightly warm or cold, dipped in an aromatic oil made with spring onions and ginger, this dish has become everyday comfort food. ", "It is traditionally accompanied by a rich chicken broth, a few vegetables and rice steamed in chicken stock for flavour.", "\n\n## 5. ", "Brisket of Beef\n\nRequiring up to 8 hours of slow cooking, preparation of this Hong Kong classic is an art. ", "Households and restaurants guard their individual recipes, but all involve the classic five Chinese spices, rock sugar and tangerine peel. ", "It's served in an earthenware pot as a main course, or as a topping for rice or noodles. ", "Given the dish's richness, it is particularly enjoyed during the cooler winter months.", "\n\n## 6. ", "Wontons\n\nDone properly, these marvellous prawn and pork Chinese ravioli are poached in a stock made from shrimp roe, aniseed and other spices, and served with fresh egg noodles and soup.", "\n\n## 7. ", "Water Spinach\n\nThe leafy, hollow-stemmed vegetable can be prepared with various seasonings, from the quotidian oyster sauce to garlic and shrimp paste. ", "At its best when stir-fried with potent chillies and semi-fermented tofu.", "\n\nFried water spinach with chilli\n\n## 8. ", "Fish Balls\n\nA daily food for many Hong Kongers, either on skewers as snacks or served with noodles in broth to make a meal. ", "Traditional restaurants eschew machine production methods, and still shape these balls of minced fish, white pepper and other spices by hand, before poaching them in seafood or chicken stock.", "\n\nFish balls in curry sauce\n\n## 9. ", "Salt and Pepper Crusted Squid\n\nYou may have encountered the disastrous and greasy travesty of fried squid served up in Western Chinatowns. ", "Banish that unpleasant memory from your mind, and prepare to discover the gloriously crisp original. ", "Fresh squid is scored, lightly battered and flash fried with lots of salt, white pepper, chilli and garlic. ", "The result is an addictive combination of tangy textures.", "\n\n## 10. ", "Lai Wong Bau\n\nChinese bread is shaped into buns, not loaves, and steamed rather than baked – giving it a beautifully soft and fluffy quality (no gritty whole grains here). ", "There are many varieties of Chinese sweet bun, but _lai wong bau_ is the reigning favourite, the kind of treat that children will clamour for. ", "These buns are filled with a mixture of milk, eggs, coconut and sugar. ", "Try them piping hot on a cold winter morning.", "\n\n### TOP 10 DIM SUM (DUMPLINGS)\n\nDim sum in steaming baskets\n\n#### 1. ", "Har Gow\n\nPrawns wrapped in a rice-flour casing and then steamed – like a very plump, transparent ravioli.", "\n\n#### 2. ", "Siu Mai\n\nTraditional minced pork and shrimp parcels, topped with a dab of crab roe or diced carrot.", "\n\n#### 3. ", "Seen Juk Guen\n\nSoy pastry, crisp fried with a vegetable filling. ", "A savvy alternative to the common spring roll.", "\n\n#### 4. ", "Gai Jaht\n\nChicken and ham wrapped in soya-bean sheets, served in rich sauce.", "\n\n#### 5. ", "Lohr Bahk Goh\n\nShredded Chinese radish, pan-fried with chives, dried shrimp and Chinese salami, then steamed to form a \"cake\".", "\n\n#### 6. ", "Cheung Fun\n\nRolls of rice pastry, filled with shrimp, pork or beef, and smothered in sweet soy sauce.", "\n\n#### 7. ", "Chiu Chow Fun Gohr\n\nSoft, pasty-style dumplings filled with chopped nuts, minced pork and pickled vegetables.", "\n\n#### 8. ", "Chin Yeung Laht Jiu\n\nGreen pepper stuffed with minced fish and prawns and served in a classic black-bean sauce.", "\n\n#### 9. ", "Ji Ma Wu\n\nDecadent, treacle-like dessert made from sugar and mashed sesame. ", "It is served warm from the trolley.", "\n\n#### 10. ", "Ma Lai Goh\n\nWonderfully light and fluffy steamed sponge cake, made with eggs, brown sugar and walnuts.", "\n\n Back to Hong Kong Dishes\n\n Back to The Top 10 of Everything\n Back to The Top 10 of Everything\n\n# MARKETS\n\n## 1. ", "Temple Street\n\n Google Map\n\nThis atmospheric market comes alive at night. ", "Hundreds of stalls are jam-packed by 9pm, offering pirated goods and all manner of junk. ", "It used to be known as Men's Street, and many stalls still stock less-than-fashionable attire. ", "Venture past the market and you'll stumble onto a lamplit coterie of fortune tellers and possibly an impromptu Chinese Opera recital _(seeTemple Street Night Market)_.", "\n\nMarket trader selling masks at Temple Street Market\n\n## 2. ", "Apliu Street Flea Market\n\n Google Map\n\nThis flea market at Sham Shui Po is a treasurehouse of secondhand household goods and utter junk, strewn either side of the pavement in makeshift stalls. ", "It's the most fun of Hong Kong's street markets, not least because you just might uncover one of the genuine vintage collectables that occasionally surfaces here. ", "It's also a good place to pick up pre-loved mobile phones and electronic gadgetry _(seeApliu Street Flea Market)_.", "\n\n## 3. ", "Jardine's Bazaar and Jardine's Crescent\n\n Jardine's Bazaar, Causeway Bay, Hong Kong Island • 11am–8pm\n\n Google Map\n\nAn open-air market area in the heart of Causeway Bay, one of Hong Kong's busiest shopping districts. ", "All sorts of goodies here, from run-of-the-mill fashion shops to traditional barbers and Chinese medicine sellers. ", "Try a glass of fresh soy bean milk.", "\n\n## 4. ", "Ladies' Market\n\n Google Map\n\nNo designer labels – unless they're fake. ", "What you'll find here is inexpensive women's clothing from lingerie to shoes. ", "There's a decent selection of jeans, plus cheap food and knick-knacks galore _(seeLadies' Market)._", "\n\nShoppers at Ladies' Market\n\n## 5. ", "Jade Market\n\n Google Map\n\nAs you might suppose, jade sellers abound – more than 450 of them at the last count. ", "Don't attempt to buy the top-grade stuff unless you're an expert and know what you are doing. ", "But there are plenty of cheaper pieces to be found _(seeJade Market)_.", "\n\nPendant, Jade Market\n\n## 6. ", "Stanley Market\n\n Stanley Market Rd, Hong Kong Island • 10am–6pm\n\n Google Map\n\nFull of tourists of the badge-sporting, flag-following variety, this can still be a fun place to shop. ", "If you're not claustrophobic, join the hordes thronging the narrow lanes to hunt for bargains _(seeStanley)._", "\n\n## 7. ", "Tai Yuen Street Toy Market\n\n Wanchai\n\n Google Map\n\nThe stalls on this street sell not just the latest trendy items, but also traditional Chinese and Western toys, as well as pieces from Hong Kong's pre-1980s past when it was a centre of toy manufacturing. ", "Find anything from cheap and cheerful stocking fillers to expensive collectables here.", "\n\n## 8. ", "Flower Market\n\n Flower Market Rd, Prince Edward • 9:30am–7:30pm\n\n Google Map\n\nBreath in the scent from dozens of little flower shops _(seeFlower Market)_. ", "Many of them sell not just roses and tulips, but orchids and exotic blooms too, along with subtle arrangements and auspicious houseplants.", "\n\n## 9. ", "Gage Street\n\n Google Map\n\nIt's a shock to find Gage Street's crush of down-to-earth market stalls just a stone's throw from Central's sophisticated boutiques. ", "You might want to avoid the confrontational butcher's shops, but it's worth a visit to see how ordinary Hong Kongers buy their groceries.", "\n\n## 10. ", "Cat Street\n\n Google Map\n\nThe name refers to the Chinese slang for \"odds and ends\". ", "The market here and on nearby Hollywood Road are chock-full of antique and curio shops. ", "This is the place to come for silk carpets, elegant Chinese furniture, Ming dynasty ceramic horsemen and Maoist kitsch.", "\n\nTraditional dolls on Cat Street\n\n Back to Markets\n\n Back to The Top 10 of Everything\n Back to The Top 10 of Everything\n\n# FESTIVALS AND EVENTS\n\n## 1. ", "Chinese New Year\n\n Three days from the first day of the first moon, usually late Jan or early Feb\n\nHong Kong's most celebrated festival is a riot of neon and noise. ", "Skyscrapers on both sides of the harbour are lit up to varying degrees, depending on the vicissitudes of the economy; fireworks explode over the harbour, shops shut down and doormen suddenly turn nice, hoping for a handout of _lai see_ (lucky money).", "\n\n## 2. ", "Spring Lantern Festival (Yuen Siu)\n\n The 15th day of the lunar calendar (end Feb)\n\nAlso known as Hong Kong's Valentine's Day, this festival marks the end of the traditional Chinese New Year celebrations. ", "Beautiful glowing lanterns are hung in parks and flower markets, and couples stroll hand in hand.", "\n\n## 3. ", "Art Basel Hong Kong\n\n Mar (dates vary) • www.artbasel.com\n\nThis significant festival in the contemporary art world sees galleries from all over Asia and the Asia-Pacific come together. ", "Highly regarded, it gives new and established artists a pivotal platform from which to showcase their work.", "\n\n## 4. ", "Ching Ming\n\n First week of Apr\n\nAlso known as the grave-sweeping festival, _ching ming_ means \"clear and bright\". ", "This is when Chinese families visit the graves of their ancestors to clear them of any weeds and wilted flowers. ", "Many people also light incense and burn paper money.", "\n\n## 5. ", "Tin Hau Festival\n\n The 23rd day of the 3rd moon (Apr or May)\n\nThis is the big one if you make your living from the sea. ", "Fishermen make floral paper offerings to Tin Hau, the goddess of the sea, hoping for fine weather and full nets. ", "The best celebrations are at the temples at Stanley, Joss House Bay or Tin Hau Temple Road.", "\n\n## 6. ", "Cheung Chau Bun Festival\n\n The 6th day of the 4th moon (April or May), Cheung Chau\n\nFor four days, the island disappears under clouds of incense smoke and exuberant crowds. ", "Highlights include a parade of children in period costumes, and a thrilling midnight race to scale 8-m- (26-ft-) high towers made of buns.", "\n\n## 7. ", "Dragon Boat Festival (Tuen Ng)\n\n The 5th day of the 5th moon (May or early June); various venues\n\nDrums thunder and paddles churn the waters of Hong Kong as garish craft vie for the top prize. ", "The festival honours Qu Yuan, a 3rd-century poet-statesman who drowned himself to protest against corrupt rulers.", "\n\nChinese dragon at Tin Hau Festival\n\n## 8. ", "Hungry Ghost Festival (Yue Laan)\n\n Jul, various locations\n\nFrom the 14th day of the seventh moon, the Chinese believe the gates of hell are thrown open and the undead run riot on earth for a month. ", "Lots more \"hell money\" goes up in smoke, as do various hillsides. ", "This is not a good time for hiking.", "\n\n## 9. ", "Mid-Autumn Festival\n\n The 15th night of the 8th moon (Aug); try Victoria Park\n\nCelebrated since the time of the early Tang Dynasty in the 7th century this family festival features colourful lantern displays in parks, the mass consumption of yolk-centred moon cakes and an extraordinary Fire-dragon Dance in Tai Hang district, where a 67-m-long dragon is run through the lanes at night.", "\n\nLanterns, Mid-Autumn Festival\n\n## 10. ", "Christmas Day\n\n 25th Dec\n\nNot a traditional Chinese festival, of course, but Hong Kongers have heartily embraced the more commercial aspects of Christmas.", "\n\n### TOP 10 SPORTING EVENTS\n\n#### 1. ", "Standard Chartered Hong Kong Marathon\n\n 2577 0800 • www.hkmarathon.com • Jan/Feb\n\nThe gruelling race covers the entire city.", "\n\n#### 2. ", "Lunar New Year Cup\n\n Hong Kong Stadium • www.hkfa.com • Feb\n\nA Hong Kong football team goes head to head against international competition.", "\n\n#### 3. ", "Rugby Sevens\n\n www.hksevens.com • Mar/Apr\n\nFast rugby and beer-fuelled mayhem.", "\n\n#### 4. ", "International Dragon Boat Races\n\n Sha Tin • May/Jun\n\nFestive boats compete on the Shing Mun River and other locations, including Victoria Harbour.", "\n\n#### 5. ", "Cricket Sixes\n\n Kowloon Cricket Club • www.hkcricket.org • Oct\n\nTop players take part in action around the stumps. ", "Check website as the event has been cancelled in the past.", "\n\n#### 6. ", "HK Badminton Open\n\n Hong Kong Colisseum • 2504 8318 • www.hkopenbadminton.org • Nov\n\nInternational badminton stars.", "\n\n#### 7. ", "Oxfam Trailwalker\n\n 2520 2525 • Nov\n\nA gruelling walk over MacLehose Trail.", "\n\n#### 8. ", "Macau Grand Prix\n\n www.macau.grandprix.gov.mo • Nov\n\nFormula 3 action in the former Portuguese enclave.", "\n\nMacau Grand Prix\n\n#### 9. ", "Hong Kong Open\n\n www.ubshkopen.com • Nov\n\nPrestigious annual golf tournament.", "\n\n#### 10. ", "International Races\n\n Sha Tin Racecourse • 2695 6223 • www.sha-tin.com • Dec\n\nSpectacular, high-profile equine competition.", "\n\n Back to Festivals and Events\n\n Back to The Top 10 of Everything\n* * *\n\nHong Kong Area by Area\n\nView of Central's skyline from Victoria Peak\n\n## Hong Kong Area by Area\n\n1 | Hong Kong Island – Northwest \n---|--- \n2 | Hong Kong Island – Northeast \n---|--- \n3 | Hong Kong Island – South \n---|--- \n4 | Tsim Sha Tsui \n---|--- \n5 | Yau Ma Tei, Mong Kok and Prince Edward \n---|--- \n6 | New Kowloon \n---|--- \n7 | The New Territories \n---|--- \n8 | Outlying Islands \n---|--- \n9 | Macau \n---|--- \n10 | Shenzhen \n---|--- \n11 | Guangzhou \n---|---\n Back to Hong Kong Area by Area\n\n# HONG KONG ISLAND – NORTHWEST\n\nFrom the corporate vanities of Central district's glass towers, through the vodka bars and galleries of SoHo, and spilling down flagstone lanes to the raucous shophouses and old docksides of Western, the Island's northwest potently concentrates all of Hong Kong's surreal contradictions. ", "In the concrete gullies between futuristic banks and statement office blocks you'll find traditional street markets, temples and herbalists, all carrying on like some Hollywood dream of old Chinatown. ", "These are some of the most mercantile streets in human history. ", "A shot of snake-bile wine, or a fierce macchiato? ", "In this part of the city, you can have it all.", "\n\n## 1. ", "Exchange Square\n\n Google Map\n\nAs the name suggests, Exchange Square houses Hong Kong's red-carpeted financial engine room, although the stock exchange is not open to visitors. ", "However, the peaceful square outside it, dominated by a large fountain, is a great place to picnic. ", "Near the fountain are sculptures by Henry Moore and Dame Elisabeth Frink. ", "The square's tallest building, Two IFC Tower, was designed by Cesar Pelli.", "\n\nWater Buffalo by Elisabeth Frink, Exchange Square\n\n## 2. ", "Hong Kong Park\n\n Google Map\n\nThis park's open spaces and mature trees make an excellent escape, particularly the strikingly elegant (and free) walk-through aviary. ", "The flowing streams and lush plant life of this improbable mini-rainforest are a peaceful and shaded home to scores of exotic bird species. ", "The park also has lakes, a large conservatory, a viewing tower and the free Museum of Teaware, inside Flagstaff House.", "\n\nHong Kong Park and aviary\n\n## 3. ", "Former Government House\n\n Google Map\n\nThis grand old building served as the British governor's residence from 1855 until 1997, when the last governor, Chris Patten, handed Hong Kong back to China. ", "Patten's successor, Tung Chee-hwa, cited bad feng shui created by the needle-like Bank of China Tower as one reason not to move in, opting to remain in his house on the Peak. ", "Back in the 1940s, the occupying Japanese added the Shinto-style towers to the Georgian structure, which at one time enjoyed harbour views. ", "It is used for official functions, and only open occasionally to the public – contact HKTB.", "\n\n## 4. ", "The Escalator\n\n Google Map\n\nA wonderful feature of Hong Kong is its 792-m- (2,598-ft-) long string of escalators, which links all the roads between Queen's Road and Conduit Street. ", "It's the best way for pedestrians to get around the steep districts of Central, the Mid-Levels and SoHo. ", "The Escalator runs uphill until midnight, except during the morning rush hour, when it runs downhill.", "\n\n## 5. ", "SoHo\n\n Google Map\n\nSince the late 1990s SoHo (so-called for being the area south of Hollywood Road) has been transformed from a sleepy district of traditional Chinese shops into a thriving area for hip bars, cafés and restaurants. ", "Elgin, Shelley and Staunton streets are excellent places to find a drink or bite to eat at any time of day.", "\n\n## 6. ", "Sheung Wan and Western\n\n Google Map\n\nThe older, more traditional Chinese areas of town, just west of Central's sleek corporate headquarters and the smart shops, are worth exploring by foot. ", "The reward is a fascinating array of shops, mostly wholesalers, selling dried seafood (the pervading smell here), ginseng, edible swallows' nests, snakes, arcane herbal ingredients and paper offerings for the dead. ", "Try the streets around Bonham Strand.", "\n\n## 7. ", "Lan Kwai Fong\n\n Google Map\n\nNot much to look at during the day, Lan Kwai Fong (or Orchid Square) only really starts to buzz at night when office workers, including plenty of city suits, come here to unwind at its many restaurants, bars and clubs. ", "The street is packed with revellers on Fridays. ", "The partying spills across to tiny Wing Wah Lane, just across D'Aguilar Street, with bars and a decent selection of good-value Thai, Malay and Indian restaurants.", "\n\n## 8. ", "The Waterfront\n\n Hong Kong Observation Wheel: Open 10am–11pm daily; Adm; www.hkow.hk\n\n Google Map\n\nTurn right out of the Central Star Ferry for some open waterside space and benches with good views across to Kowloon. ", "To the east is the 60-m (197-ft) high Hong Kong Observation Wheel, a Ferris wheel that offers great views of the harbour. ", "The waterfront hosts A Symphony of Lights, the laser-and-sound show that lights up the buildings around the harbour every evening at 8pm.", "\n\nThe Waterfront, seen from across the harbour in Kowloon\n\n## 9. ", "Man Mo Temple\n\n Western end, Hollywood Rd\n\n Google Map\n\nThe gloomy red-and-gold interior of the Man Mo Temple, dating back to the 1840s, is always thick with sandalwood smoke from the giant incense spirals hanging overhead, which take a couple of weeks to burn through. ", "The temple is dedicated to two deities, Man (the god of literature) and Mo (the god of war). ", "Some of the scenes from the 1960 film version of Richard Mason's _The World of Suzie Wong_ were filmed here.", "\n\nMan Mo Temple\n\n## 10. ", "Hollywood Road\n\n Google Map\n\nThis mecca for Chinese antiques and curios may no longer offer the bargains it once did, but Hollywood Road's eastern end is still jammed with shops selling ancient ceramics, mammoth ivory carvings and delicate snuff bottles. ", "The stalls and shops on Upper Lascar Row are a good hunting ground for old coins, antiques, trinkets, kitsch and curios. ", "Some art galleries have also opened here.", "\n\nBuddha figure, Hollywood Road\n\n### PLAGUE\n\nIn the 19th century, Hong Kong, like many other parts of the world in history, suffered devastating plagues incubated in filthy, crowded slums. ", "It was also in Hong Kong where, in 1894, the source of the plague was identified, almost simultaneously, by two doctors. ", "The discovery of the bacteria went on to revolutionize prevention and treatment of plague.", "\n\n### A DAY IN CENTRAL\n\n### Morning\n\nFrom Des Voeux Road take the tram westwards from Central and jump off outside the handsome colonial building housing **Western Market**. ", "Browse among the ground-floor trinkets or select a pattern from the many bolts of material on the first floor. ", "The nearby **Fung Shing** restaurant serves excellent dim sum.", "\n\nThe streets around nearby **Bonham Strand** contain dried-seafood shops, Chinese apothecaries, and paper offering shops. ", "Head uphill to the atmospheric **Man Mo Temple** , then east past the antique shops of **Hollywood Road** , browsing the stalls as you go.", "\n\nBreak for lunch or a drink in one of the many restaurants and bars on the streets to the south of **SoHo** or below Hollywood Road in **Lan Kwai Fong**.", "\n\n### Afternoon\n\nCheck out the fresh produce market stalls around the **Escalator** and **Graham Street** before hitting **Statue Square**, the Island's colonial heart.", "\n\nChoose to visit the **up-market malls**, or for some peace and harbour views head to Queen's Pier. ", "For altitude and a spectacular city perspective go up to the HKMA Information Centre on the 55th floor of **Two IFC Tower**.", "\n\nQuiet and shade are found in the nearby **Hong Kong Park**.", "\n\n Back to Hong Kong Island – Northwest\n\n Back to Hong Kong Area by Area\n\n# Colonial Relics\n\n## 1. ", "St John's Cathedral\n\n 4–8 Garden Road\n\n Google Map\n\nResembling a parish church more than a cathedral, St John's, completed in 1849, is the oldest Anglican church in east Asia.", "\n\nNave of St John's Cathedral\n\n## 2. ", "George VI Statue\n\n Google Map\n\nThis statue, erected in 1941 in Hong Kong's Zoological and Botanical Gardens, commemorated 100 years of British rule.", "\n\nGeorge VI statue\n\n## 3. ", "Colonial Street Names\n\n Google Map\n\nMost colonial buildings have been sacrificed to new development, but the colonial legacy is preserved in many of the roads named after royals (Queen's Road), politicians (Peel Street), military officers (D'Aguilar, Pedder) and public servants (Bonham, Des Voeux).", "\n\n## 4. ", "Old Letter Box\n\n Google Map\n\nA few traditional green, cast-iron post boxes bearing the British royal cipher remain. ", "There is one at the northern end of Statue Square.", "\n\n## 5. ", "Former Military Hospital\n\n Bowen Road\n\n Google Map\n\nBroken into separate units – some abandoned – the huge, grand old building, built from 1903 to 1906 between Bowen and Borrett roads, used to serve as a military hospital.", "\n\n## 6. ", "Hollywood Road Police Station\n\n Google Map\n\nBastions of colonial law and order, the Police Station (1864) and the old Victoria Prison (1841) still stand.", "\n\n## 7. ", "Flagstaff House\n\n Hong Kong Park\n\n Google Map\n\nBuilt in the mid-1840s, Flagstaff House is one of the oldest colonial buildings on the island and houses the free Museum of Teaware.", "\n\n## 8. ", "Duddell Street\n\n Off Ice House St\n\n Google Map\n\nWhile not spectacular, the gas lamps and old steps of Duddell Street date back to the 1920s and 1870s respectively.", "\n\n## 9. ", "Court of Final Appeal\n\n Google Map\n\nThe elegant 1911 Neo-Classical building served as the city's Supreme Court and then as its Legislative HQ until the Court of Final Appeal relocated here in 2015.", "\n\n## 10. ", "Former French Mission\n\n Battery Path\n\n Google Map\n\nThis red-brick building was built in 1843 as the home of the first governor of Hong Kong. ", "Restyled as the French Mission HQ in 1917, it later housed the Court of Final Appeal.", "\n\nThe handsome Former French Mission\n\n Back to Hong Kong Island – Northwest\n\n Back to Hong Kong Area by Area\n\n# Up-Market Malls And Boutiques\n\n## 1. ", "The Landmark Centre\n\n Pedder St\n\n Google Map\n\nA modern mall with conspicuous consumables from the likes of Chanel, Dior, Zegna, Paul Smith, Prada, Vuitton, Bulgari and Tiffany.", "\n\nLuxury boutiques at The Landmark Centre\n\n## 2. ", "Harvey Nichols\n\n Pacific Place, 88 Queensway, Admiralty\n\n Google Map\n\nDesigner clothes, cosmetics, gifts and food at the Hong Kong branch of the luxury British department store.", "\n\n## 3. ", "Lane Crawford\n\n IFC Mall, 8 Finance St\n\n Google Map\n\nUpmarket clothing, with concessions from most big Western designer brands, house-ware, beauty products, glass and porcelain, and Asia's largest women's shoe shop.", "\n\n## 4. ", "The Prince's Building\n\n Statue Square & Des Voeux Rd\n\n Google Map\n\nNot as many top names as the Landmark Centre next door, but the bright, airy and less crowded Prince's Building is worth a visit if big-name clothes and accessory designers are your thing.", "\n\n## 5. ", "G.O.D.\n\n 48 Hollywood Rd, Central\n\n Google Map\n\nGoods of Desire is an ultra-hip store that offers an off-beat selection of Chinese-inspired furnishings, accessories and clothing.", "\n\n## 6. ", "Gucci\n\n The Landmark Centre, G1\n\n Google Map\n\nThis beautiful temple to the brand of Gucci is tended by elegant assistants. ", "It's merely a question of whether you can afford to worship here.", "\n\n## 7. ", "Dragon Culture\n\n 231 Hollywood Rd\n\n Google Map\n\nAntiques shop with pottery from most dynasties, bamboo carvings and snuff bottles.", "\n\n## 8. ", "Lock Cha Tea Shop\n\n G/F K.S.Lo Gallery, Hong Kong Park, Admiralty • Closed second Tue of the month\n\n Google Map\n\nAround 100 varieties of tea, along with traditional and modern teaware, is sold by experts in a colonial-era building. ", "Try the tasty dim sum.", "\n\n## 9. ", "Shanghai Tang\n\n 1 Duddell St, Central\n\n Google Map\n\nLocal entrepreneur David Tang is behind this international brand, which takes a smart twist on traditional Chinese clothes and ornaments. ", "Jackets and kitsch Mao watches are staples.", "\n\n## 10. ", "Two IFC\n\n 8 Finance St, Central\n\n Google Map\n\nHong Kong's smartest mall features a selection of top brands, including an Apple Store. ", "There is also a superb supermarket and a cinema.", "\n\n Back to Hong Kong Island – Northwest\n\n Back to Hong Kong Area by Area\n\n# Bars And Clubs\n\n## 1. ", "MO Bar\n\n The Landmark Mandarin Oriental, 15 Queen's Rd, Central • 2132 0077\n\n Google Map\n\nThe glamorous bar at the legendary Mandarin Oriental is the place to go for cocktails, and all-day dining. ", "It is also a sophisticated night spot.", "\n\nThe smart interior of MO Bar at the Mandarin Oriental\n\n## 2. ", "Café Gray Deluxe\n\n 49/F The Upper House Hotel, Pacific Place, 88 Queensway • 3968 1106\n\n Google Map\n\nThis swanky cocktail and wine lounge at the swish Upper House Hotel has superb harbour views.", "\n\n## 3. ", "Sense 99\n\n 2/F, 99 Wellington St, Central • 9466 4695\n\n Google Map\n\nHong Kong's favourite hangout with live music. ", "Rub shoulders with musicians and artists in this pre-war venue off the main strip.", "\n\n## 4. ", "Dragon-i\n\n UG/F The Centrium, 60 Wyndham St • 3110 1222\n\n Google Map\n\nThe most happening club in Central, where models, movers and shakers and celebrities from Jackie Chan to Sting have been spotted.", "\n\n## 5. ", "The Globe\n\n 45–53A Graham St, Central • 2543 1941\n\n Google Map\n\nHong Kong's best beer bar serves locally micro-brewed beers and rare tap beers from around the world.", "\n\n## 6. ", "Ginger\n\n G/F, 12 On Wo Lane, Central • 2868 0486\n\n Google Map\n\nWhiskey writer Tony Leung's bar has a wide range of beers, cocktails and, of course, whiskeys. ", "Upstairs is a cosy lounge with leather armchairs.", "\n\n## 7. ", "Sevva\n\n 25/F Prince's Building, 10 Chater Rd, Central • 2537 1388\n\n Google Map\n\nBonnie Gokson's beautifully designed bar and restaurant is among the city's most stylish hangouts.", "\n\n## 8. ", "Rúla Búla\n\n G/F, 58–62 D'Aguilar Street, Lan Kwai Fong, Central • 9020 9670\n\nThis hip club is popular with expats and features great DJs, a large dance floor and excellent signature cocktails.", "\n\n## 9. ", "Fringe Club\n\n 2 Lower Albert Rd, Central • 2521 7251\n\n Google Map\n\nHong Kong's alternative arts venue offers a respite from Lan Kwai Fong's rowdier beer halls. ", "It hosts live music, theatre and exhibitions.", "\n\n## 10. ", "Zoo Bar\n\n 33 Jervois St, Sheung Wan • 3583 1200\n\n Google Map\n\nPioneering the trendification of this area, the Zoo Bar is a natural pit stop for anyone after a good time. ", "Though it is a gay bar, everyone is welcome.", "\n\n Back to Hong Kong Island – Northwest\n\n Back to Hong Kong Area by Area\n\n# Restaurants\n\n## 1. ", "Lei Garden\n\n Shop 3008, 3/F IFC Mall • 2295 0238 • $$$\n\n Google Map\n\nThis multi-award-winning chain-restaurant serves modern Cantonese food as it should be – light, delicate and subtle.", "\n\n## 2. ", "Lung King Heen\n\n Four Seasons Hotel, 8 Finance St, Central • 3196 8880 • $$$\n\n Google Map\n\nExecutive chef Chan Yan Tak is the mastermind behind this contemporary Cantonese restaurant, which has earned three Michelin stars _(seeLung King Heen)_.", "\n\nLung King Heen dining room\n\n## 3. ", "Island Tang\n\n Shop 222, The Galleria, 9 Queen's Rd, Central • 2526 8798 • $$$\n\n Google Map\n\nCantonese dishes and Chinese _haute cuisine_ at Sir David Tang's restaurant _(seeIsland Tang)_.", "\n\n## 4. ", "8½ Otto e Mezzo Bombana\n\n 202 Landmark Alexandria, 5–17 Des Voeux Rd, Central • 2537 8859 • $$$\n\n Google Map\n\nThree Michelin stars says it all, for this is Italian gastronomy of the highest quality _(see8½ Otto e Mezzo Bombana)_.", "\n\n## 5. ", "L'Atelier de Joël Robuchon\n\n 315 & 401 The Landmark, Central • 2166 9000 • $$$\n\n Google Map\n\nSuperstar chef Joël Robuchon picks up Michelin stars almost wherever he sets up a restaurant. ", "Expect perfectly executed French classics with a hint of Asian flair _(seeL'Atelier de Joël Robuchon)_.", "\n\n## 6. ", "The Mandarin Grill & Bar\n\n Mandarin Oriental, 5 Connaught Rd • 2825 4004 • $$$\n\n Google Map\n\nThe interior may have been revamped by Sir Terence Conran, but the menu still features English classics and premium seafood. ", "It's held its Michelin star since 2009.", "\n\n## 7. ", "Jimmy's Kitchen\n\n 1–3 Wyndham St • 2526 5293 • $$\n\n Google Map\n\nA favourite for its naff decor and retro menu, Jimmy's has been dishing out comfort food since 1928.", "\n\n## 8. ", "Yung Kee\n\n 32–40 Wellington St • 2522 1624 • $$$\n\n Google Map\n\nFrom its headset-toting waitresses to its efficient poultry kitchen (try the roast goose), Yung Kee is a riotous operation.", "\n\n## 9. ", "Caprice\n\n 6/F Four Seasons Hotel, 8 Finance St • 3196 8860 • $$$\n\n Google Map\n\nHead chef Vincent Thierry and his team prepare modern French food in an open kitchen at this superb restaurant _(seeCaprice)_.", "\n\n## 10. ", "Kau Kee\n\n 21 Gough St • No credit cards • Closed Sun • $\n\n Google Map\n\nHumble Kau Kee was once offered millions of dollars for its beef brisket noodle recipe. ", "Taste it and see why. ", "This is a place of pilgrimage for foodies around the city and beyond.", "\n\n#### **Price Categories**\n\nFor a three-course meal for one with half a bottle of wine and extra charges. ", "Prices are quoted in Hong Kong dollars.", "\n\n* * *\n\n**$** under $250 **$$** $250–600 **$$$** over $600\n\n Back to Hong Kong Island – Northwest\n\n Back to Hong Kong Area by Area\n Back to Hong Kong Area by Area\n\n# HONG KONG ISLAND – NORTHEAST\n\nThe east of the island was the first to take up the population pressures of the nascent colonial capital of Victoria, and until the late 1970s had a low-rent reputation. ", "Some of that survives in the haggard pole-dancing clubs and tattoo parlours of Wan Chai, where Richard Mason wrote _The World of Suzie Wong_ and generations of sailors have nursed hangovers. ", "But today, you're more likely to run into Starbucks. ", "You'll see Hong Kongers at their most fevered at the Happy Valley night races, while Causeway Bay is lit by the neon of restaurants and boutiques. ", "There are surprises among the warehouses and offices of Quarry Bay and Wan Chai – live jazz, microbreweries and dance clubs.", "\n\n## 1. ", "Convention and Exhibition Centre\n\n 1 Expo Drive, Wan Chai • 2582 8888 • www.hkcec.com\n\n Google Map\n\nThis building looks a bit like the Sydney Opera House might if its roof had just been swatted by a giant hammer. ", "The vision of its designers was that the flowing lines would evoke a bird in flight. ", "It is certainly a study in contrast, with the upthrust towers scratching the sky all around it. ", "There was a race against time to finish stage two of the $5 billion complex in time for the 1997 Handover ceremony. ", "Britain's loss and China's gain is commemorated with a big black obelisk. ", "The venue also hosts occasional raves and pop concerts.", "\n\nConvention and Exhibition Centre\n\n## 2. ", "Noonday Gun\n\n Waterfront near the Causeway Bay typhoon shelter • To fire gun (HK$ 33,000): 2599 6111\n\n Google Map\n\nImmortalized in Noël Coward's famous song about \"Mad Dogs and Englishmen\", the famous cannon has been fired at midday every day since 1860. ", "Bigwigs pay for the privilege of firing it, with the money going to charity. ", "Otherwise, a gunner dressed in traditional military attire does the honours.", "\n\nThe famous Noonday Gun\n\n## 3. ", "Central Plaza\n\n 18 Harbour Rd, Wan Chai\n\n Google Map\n\nPerhaps the developers figured \"Central Plaza\" had more cachet than \"Wan Chai Plaza\", or perhaps Wan Chai _is_ central if you're talking about the mid-point of the waterfront. ", "Anyway, Central Plaza is Hong Kong's third-tallest building (after Two IFC Tower and ICC Tower), standing at 374 m (1,227 ft).", "\n\n## 4. ", "Lockhart Road\n\n Google Map\n\nMade famous in Richard Mason's novel _The World of Suzie Wong,_ Wan Chai's sinful strip is these days an odd blend of girlie bars with doddery _mama-san_ who saw action during the Vietnam War, down-at-heel discos, mock-British pubs and super-trendy bars and restaurants. ", "The road is almost always being dug up, which adds to the hubbub.", "\n\n## 5. ", "Tin Hau Temple\n\n 10 Tin Hau Temple Rd, Causeway Bay • Open 7am–5pm daily\n\n Google Map\n\nNot the biggest or best-known temple to the Chinese sea goddess, but certainly the most accessible. ", "This was once the waterfront, believe it or not. ", "There is usually a handful of worshippers burning incense and paying respects, although it may be packed during Chinese festivals.", "\n\nStatues of different gods at the Tin Hau Temple\n\n## 6. ", "Victoria Park\n\n Google Map\n\nHong Kong's largest urban park opened in 1957 and features a statue of the British monarch, which an \"art activist\" once redecorated with red paint. ", "There are tennis courts, lawn bowling greens and a swimming pool. ", "It's also the venue for the Chinese New Year Flower Market, and every Sunday at noon would-be politicians can stand up and shoot their mouths off at the forum.", "\n\nSkyscrapers around Victoria Park\n\n## 7. \"", "Old\" Wan Chai\n\n Google Map\n\nThis could almost be labelled Hong Kong's \"Little Thailand\". ", "Dozens of Thai mini-marts and hole-in-the-wall Thai restaurants have sprung up amid Wan Chai market in the narrow warren of lanes that run between Johnston Road and Queen's Road East. ", "You can find the same dishes here for a quarter of what you'll pay in Thai restaurants just blocks away.", "\n\n## 8. ", "Happy Valley Races\n\n Google Map\n\nFrom September to mid-July the thud of hooves on turf rings out most Wednesday nights from this famous racetrack – once a malaria-ridden swamp – where Hong Kong's gambling-mad public wager more money per meeting than at any other track in the world _(seeHappy Valley Races)_.", "\n\n## 9. ", "Hopewell Centre\n\n 183 Queen's Rd East, Wan Chai • The Grand Buffet: 2506 0888 • www.hopewellcentre.com\n\n Google Map\n\nConstruction mogul Gordon Wu has built roads in China and half-built a railway in Bangkok, but this remains his best-known edifice. ", "The 64-storey cylinder makes diners dizzy in its revolving restaurant, The Grand Buffet, which, aside from the view, features one of the best buffet spreads in town. ", "Nighttimes are most spectacular so be sure to book well in advance.", "\n\n## 10. ", "Causeway Bay Typhoon Shelter\n\n Google Map\n\nDown-at-heel gin palaces and barnacle-encrusted hulks rub gunwales with multimillion-dollar yachts in this packed haven from the \"big winds\" that regularly bear down on the South China coast. ", "There are also quaint houseboats with homely touches like flower boxes permanently anchored behind the stone breakwater. ", "The impressive edifice to the left as you look out to sea is the Royal Hong Kong Yacht Club.", "\n\nCauseway Bay Typhoon Shelter\n\n### SUN, MOON AND STAR STREETS\n\nHong Kong's history is reflected in its bilingual street names. ", "For some streets the pronunciation is simply transliterated from Chinese to English, or the other way. ", "Other streets have names whose meaning is translated, while some have two unrelated names. ", "Wandering around Wan Chai you may come across Sun Street, Moon Street and Star Street, and branching off them is Electric Street. ", "The latter was the site of a power station which began operations in 1890. ", "Sun, Moon and Star Streets provided accommodation to the workers.", "\n\n### A DAY IN NORTHEAST HONG KONG ISLAND\n\n### Morning\n\nStart off with a brisk stroll through **Hong Kong Park**, a green haven surrounded on all sides by thrusting towers of glass and concrete. ", "Chances are you'll see several well-dressed couples awaiting their turn to be married at the Cotton Tree Drive Marriage Registry. ", "Take time for a look through the Edward Youde Aviary, a spectacular creation of mesh arches replete with Southeast Asian birdlife.", "\n\nMake your way down past Citibank's imposing black towers to **Pacific Place** for a coffee and some window-shopping. ", "Keep heading towards the harbour and you will see to your right the elegant sweep of the **Convention and Exhibition Centre**. ", "Enjoy the harbour panorama through soaring glass walls.", "\n\n### Afternoon\n\nReturn to Wan Chai for lunch. **", "Lockhart Road** is as good a place as any. ", "The sleazy joints are still slumbering, and there is decent pub grub, Thai, Mexican and Chinese food on offer _(seePlaces to Eat and Drink)_.", "\n\n**Hennessy Road** is the place to jump on a tram to **Causeway Bay** , due east of Wan Chai, or you may prefer to go one stop on the MTR. ", "If you want to go shopping, take the **Times Square** exit, and start exploring from there. ", "Then leave the crush and chaos behind with a leisurely afternoon stroll through **Victoria Park** , and perhaps a cocktail in Totts, the eyrie atop **The Excelsior**.", "\n\n Back to Hong Kong Island – Northeast\n\n Back to Hong Kong Area by Area\n\n# Places To Shop\n\n## 1. ", "Sogo\n\n 555 Hennessy Rd, Causeway Bay\n\n Google Map\n\nWith a fine range of mostly Japanese goods, Sogo is very popular among locals. ", "Stock up on Japanese food in the basement supermarket.", "\n\nSogo Japanese department store\n\n## 2. ", "Aeon\n\n Kornhill Plaza, 2 Kornhill Rd, Quarry Bay\n\n Google Map\n\nOne of Japan's biggest department-store chains. ", "Lower rents to the east of the island translate into cheaper fashion, food and household goods.", "\n\n## 3. ", "Eslite\n\n Hysan Place, 500 Hennessy Rd, Causeway Bay\n\n Google Map\n\nThe largest bookstore in town and the first overseas branch of the Taiwanese chain famous for staying open till late at night. ", "It also stocks stationery, gadgets and music.", "\n\n## 4. ", "Lee Gardens\n\n 33 Hysan Ave, Causeway Bay\n\n Google Map\n\nHermès, Ralph Lauren, Gucci, Christian Dior and Cartier all reside here; Lee Gardens is the one-stop shop for the well-heeled.", "\n\n## 5. ", "Mezzanine\n\n 13–15 Yik Yam St, Happy Valley\n\n Google Map\n\nFashion designer to the stars Vivian Luk has opened her own couture store offering Oscar-style evening and especially bridal gowns.", "\n\n## 6. ", "D-mop\n\n Shop 3, 2–4 Kingston St, Causeway Bay\n\n Google Map\n\nCool multi-brand store carrying popular fashion-forward Japanese labels, such as moussy, SLY, and BLACK, as well as its own collection of clothing and accessories.", "\n\n## 7. ", "Spring Garden Lane\n\n Spring Garden Lane, Wan Chai\n\n Google Map\n\nHead to this fun market for a bargain. ", "Export-quality clothing is sold at rock-bottom prices.", "\n\n## 8. ", "Good Old Days\n\n 4/F World Trade Centre, Causeway Bay\n\n Google Map\n\nA reminder of how quirky Hong Kong can be, this tiny store sells nothing but vintage classic watches.", "\n\n## 9. ", "Island Beverley\n\n 1 Great George St, Causeway Bay\n\n Google Map\n\nAn arcane arcade stuffed with tiny boutiques featuring the creations of Japanese and Korean designers.", "\n\n## 10. ", "Fortress\n\n 7/F & 8/F Times Square, 1 Matheson St, Causeway Bay\n\n Google Map\n\nThis is the best chain to buy the latest electronics, sold at reasonable prices and with reliable guarantees.", "\n\nFortress electronics store\n\n Back to Hong Kong Island – Northeast\n\n Back to Hong Kong Area by Area\n\n# Places To Eat And Drink\n\n## 1. ", "Tasty Congee and Noodle Wantun Shop\n\n G/F, 21 King Kwong St, Happy Valley • 2838 3922 • $\n\n Google Map\n\nFor many this is the best place to go for beef fried noodles and piping-hot _congee_ (rice porridge). ", "The dim sum is also highly rated.", "\n\n## 2. ", "Petrus\n\n 56/F Island Shangri-La Hong Kong, Pacific Place, 88 Queensway, Admiralty • 2820 8590 • $$$\n\n Google Map\n\nPetrus serves contemporary French cuisine and boasts panoramic harbour views.", "\n\nElegant interior at Petrus\n\n## 3. ", "22 Ships\n\n 22 Ship St, Wan Chai • 2555 0722 • $$\n\n Google Map\n\nOne of Hong Kong's hottest tables for modern tapas creations by Jason Atherton. ", "No reservations.", "\n\n## 4. ", "Tai Lung Fung\n\n 5 Hing Wan St, Wan Chai • 2572 0055 • $$\n\n Google Map\n\nThis quirky local bar with an old-school Hong Kong decor attracts a young and artsy clientele.", "\n\n## 5. ", "Yat Tung Heen\n\n 2/F Great Eagle Centre, 23 Harbour Rd, Wan Chai • 2878 1212 • $$\n\n Google Map\n\nDrawing a strong local crowd, this award-winning Cantonese restaurant is famed for its soups and seafood dishes.", "\n\n## 6. ", "Kung Tak Lam\n\n World Trade Center 1001, 280 Gloucester Rd, Causeway Bay • 2890 3127 • $$\n\n Google Map\n\nGood vegetarian restaurants can be hard to find in Hong Kong. ", "The light, Shanghainese-style dishes here stand out from the competition _(seeKung Tak Lam)_.", "\n\n## 7. ", "The Pawn\n\n 62 Johnston Rd, Wan Chai • 2866 3444 • $$\n\n Google Map\n\nThis popular old Chinese pawnbrokers, converted into a bar-restaurant, has atmosphere in spades. ", "Serves modern European cuisine with a British twist by chef Tom Aikens.", "\n\n## 8. ", "Bo Innovation\n\n 2/F J Residence, 60 Johnston Rd, Wan Chai • 2850 8371 • $$$\n\n Google Map\n\nAwarded three Michelin stars, this highly modern Chinese restaurant attracts a hip clientele.", "\n\n## 9. ", "One Harbour Road\n\n Grand Hyatt, 1 Harbour Rd, Wan Chai • 2584 7722 • Closed Sun • $$$\n\n Google Map\n\nFor home-style Cantonese food at its most pure and subtle, with no fusion or foreign influences, head to One Harbour Road.", "\n\n## 10. ", "Classified\n\n 13 Yuk Sau St, Happy Valley • 2857 3454 • $$\n\n Google Map\n\nHappy Valley has a host of trendy wine bars and eateries, including this outpost of the famous chain serving freshly-baked bread, artisan cheeses, gourmet coffee and specialist wines.", "\n\nSee restaurant price categories\n\n Back to Hong Kong Island – Northeast\n\n Back to Hong Kong Area by Area\n Back to Hong Kong Area by Area\n\n# HONG KONG ISLAND – SOUTH\n\nDespite the slow creep of floodlit housing estates to the east and west, the south of Hong Kong Island (or \"Southside\" as everyone calls it) retains more than enough rugged coastline, wooded upland and sequestered beach to startle anyone whose preconception of Hong Kong was wholly urban. ", "Traffic from the city passes through the Aberdeen Tunnel and enters a bright and shiny landscape of golf clubs, opulent homes and marinas. ", "There is good swimming at Repulse and Deep Water bays, and even, at Big Wave Bay, some acceptable surf. ", "Over at Stanley, stallholders set out their coral beads and antique opium pipes, while at isolated Shek O, media types snap up beachfront village houses. ", "The Dragon's Back ridge, plunging down the southeast corner, offers some of the island's best walking.", "\n\n## 1. ", "Aberdeen Harbour\n\n Google Map\n\nResidential blocks crowd Aberdeen's small, lovely harbour, which is still filled with high-prowed, wooden fishing boats, despite the fact that overfishing and pollution have decimated the Hong Kong fishing industry. ", "Ignore the ugly town centre and instead photograph the tyre-festooned sampans, or walk to the busy wholesale fish market at the western end of the harbour and watch the catches being loaded onto trucks and vans.", "\n\n## 2. ", "Floating Restaurants\n\n Google Map\n\nAlso in Aberdeen Harbour are two giant floating restaurants, which are popular but garish, production-line eateries. ", "The more famous, The Jumbo, is said to have served more than 30 million people. ", "Prices are not especially attractive, nor are the culinary achievements. ", "Free ferries shuttle between these restaurants, and pushy sampan handlers also lie in wait for meandering tourists. ", "Take one of these boats if you want a good view of the harbour. ", "However, for quality seafood, head to Stanley or Repulse bay _(seeThe Verandah)_, or take a ferry from Aberdeen to Lamma Island _(seeRainbow Seafood, Lamma)_.", "\n\nThe Jumbo floating restaurant\n\n## 3. ", "Ocean Park\n\n 3923 2323 • Open times vary. ", "Check website for details • Adm • www.oceanpark.com.hk\n\n Google Map\n\nThis long-established theme park responded to the arrival of Disneyland on Lantau Island with a major refurbishment and a corresponding surge in popularity. ", "There is more than enough to keep children and adults alike busy for a whole day. ", "There are more than 30 permanent rides and animal attractions, ranging from rollercoaster rides to giant pandas and great aquatic displays, such as Atoll Reef, which recreates the habitats and sea life of a coral reef _(see alsoOcean Park)_.", "\n\nDolphin topiary, Ocean Park\n\n## 4. ", "Deep Water Bay\n\n Google Map\n\nThere's an almost Mediterranean air to the lovely beach and waterfront of Deep Water Bay, a popular place for beach lovers and the well-to-do who settle in the Bay's upmarket housing. ", "The smallish beach is protected by lifeguards and a shark net, and the water is usually clean. ", "As with most beaches in Hong Kong, it gets crowded in fine weather.", "\n\n## 5. ", "Ap Lei Chau\n\nSupposedly the most densely populated island in the world, Ap Lei Chau (or Duck Tongue Island), opposite the Aberdeen waterfront, is crowded with a forest of high-rise apartment buildings. ", "Bargain hunters may find a visit to the many discount outlets at the southern end of the island worthwhile _(seeHorizon Plaza)_. ", "Close to the ferry pier are some small family businesses, boatyards and temples that have survived the modern developments.", "\n\n## 6. ", "Stanley\n\n Google Map\n\nA former busy fishing village, Stanley was one of the largest towns on the island before the British arrived and placed a fort on its strategic peninsula. ", "Relics from both eras remain, but Stanley's many excellent seafront restaurants and its extensive market are justifiably the main draws for visitors _(seeStanley)_.", "\n\nStreet sign\n\n## 7. ", "Repulse Bay\n\n Google Map\n\nAnother popular destination, Repulse Bay's beach is clean and well-tended, if sometimes over-crowded with thousands of visitors. ", "Eating and drinking choices range from small cafés on the beach to The Verandah, a classy restaurant run by the same group as the Peninsula Hotel in Tsim Sha Tsui. ", "Try afternoon tea here. ", "The Hong Kong Life Guards Club at the far southern end of the beach is also worth a look for its scores of statues of gods and fabulous beasts.", "\n\nRepulse Bay\n\n## 8. ", "Dragon's Back\n\n Google Map\n\nThis 6-km (4-mile) walk looks daunting on the map, but the route along the gently ascending ridge of the Dragon's Back will mean not too much huffing and puffing for the reasonably fit. ", "The reward is unbeatable views down to the craggy coastline of the D'Aguilar Peninsula, Big Wave Bay and genteel Shek O. At a gentle pace the walk should take about 3 hours, enough time to have built up a good appetite when you arrive in Shek O. Take plenty of water, especially in the summer.", "\n\nWalkers on the Dragon's Back ridge\n\n## 9. ", "Shek O\n\n Google Map\n\nRemote and undeveloped, the village of Shek O is worth the relatively lengthy train and bus ride necessary to reach it. ", "The serenity is upset only at weekends by droves of sun worshippers heading for its lovely beach. ", "A short walk to the small headland leads to striking rock formations, pounding waves and cooling South China Sea breezes. ", "Surfing and body boarding are often viable on Big Wave Bay, a short walk or taxi ride north. ", "Head to the Cococabana, a lovely bar and Mediterranean-style restaurant, for a post-ramble drink and a bite to eat.", "\n\nRocky coastline, Shek O\n\n## 10. ", "Chinese Cemetery\n\n Google Map\n\nStretching away on the hill above Aberdeen, the Chinese Cemetery is a great place for taking photographs, both of the cemetery itself and of the harbour beneath. ", "Negotiating the steep, seemingly endless steps is quite an undertaking, though, especially on a hot day.", "\n\nSteep steps at the Chinese Cemetery\n\n### A CIRCULAR TOUR\n\n### Morning\n\nThis circular tour of Hong Kong Island is perfectly feasible in one day if you start early enough.", "\n\nFrom Central, jump on an Aberdeen-bound bus, alighting close to **Aberdeen harbour**. ", "Haggle for a sampan harbour tour offered by one of the pushy touts on the waterfront. ", "Don't expect any informative commentary from the driver. ", "Keep a look out for Aberdeen's few remaining houseboats.", "\n\nAvoid the production-line floating restaurants and opt instead for lunch at **Repulse Bay** , which is just a 15-minute bus ride away. ", "Enjoy the beach and a swim, then eat either at one of the beachfront cafés or up-market **The Verandah**. ", "Alternatively, head to the supermarket behind The Verandah and create your own picnic to eat on the beach.", "\n\n### Afternoon\n\nJust a short hop further south along the coast, the lovely town of **Stanley** is certainly worth a visit. ", "If you haven't yet eaten, the restaurants here are excellent, some with sea views. ", "Lose a couple of hours browsing for clothes and souvenirs in **Stanley market**, though admittedly it is not one of Hong Kong's best or cheapest markets.", "\n\nIf you want to get some walking in, take a short bus or taxi ride to **Tai Tam country park**. ", "A path leads through to Wong Nai Chung Gap, from where buses and taxis head back into the city.", "\n\n Back to Hong Kong Island – South\n\n Back to Hong Kong Area by Area\n\n# Designer Outlets In Ap Lei Chau\n\n## 1. ", "Horizon Plaza\n\n 2 Lee Wing St, Ap Lei Chau\n\n Google Map\n\nThis shabby, high-rise building on the edge of the island of Ap Lei Chau is home to a number of outlets for discount clothing, warehouse furniture, antiques and home furnishings. ", "Start with an energizing coffee from the café in Tree on the top floor, before making your way down through the many stores. ", "A taxi from Aberdeen is probably the simplest way to reach it.", "\n\n## 2. ", "Joyce Warehouse\n\n 21/F Horizon Plaza\n\n Google Map\n\nThe extensive selection of clearance designer wear from the stores of Hong Kong chain Joyce are perhaps the main reward for struggling out to Horizon Plaza. ", "You get discounts of 60 per cent on the likes of Armani.", "\n\n## 3. ", "Replay\n\n 19/F Horizon Plaza\n\n Google Map\n\nA samples and warehouse shop from the high street brand with limited stocks of casual clothes, but great discounts, often around 80 per cent.", "\n\n## 4. ", "Inside\n\n 15/F Horizon Plaza\n\n Google Map\n\nA modest warehouse outlet of a smart interior furnishings chain. ", "There's a small range of clearance items at discounts that can be as high as 90 per cent.", "\n\n## 5. ", "The Birdcage\n\n 16/F Horizon Plaza\n\n Google Map\n\nThis one offers mostly original Chinese antiques and curios sourced by the owners of the quirky Birdcage shop on the mainland. ", "Items range from portable antiques and collectables to furniture.", "\n\n## 6. ", "i.t.", "\n\n 5/F Horizon Plaza\n\n Google Map\n\nOff-season contemporary fashion lines by emerging Asian designers are sold here at discount prices.", "\n\n## 7. ", "Lane Crawford Outlet\n\n 25/F Horizon Plaza\n\n Google Map\n\nSlow-moving items and old stock from Hong Kong's trendy department store are on sale here at lower than original prices.", "\n\nLane Crawford Outlet\n\n## 8. ", "Old Shanghai\n\n 15/F Horizon Plaza\n\n Google Map\n\nTraditional Chinese furniture, made without screws or nails, is sold here. ", "Look out for a range of sofas, TV cabinets, coffee tables and the like. ", "Pieces can be customized to meet your requirements, made to order or even made according to your designs.", "\n\n## 9. ", "Indigo Living & Kids\n\n 6/F Horizon Plaza\n\n Google Map\n\nIndigo does contemporary furniture and homewares with an Asian twist, with Indigo Kids the place for children's bedrooms and nursery furniture at a discount. ", "They also offer design consultancy and furniture rental services.", "\n\n## 10. ", "Ralph Lauren Factory Outlet\n\n 18/F Horizon Plaza\n\n Google Map\n\nChoose from a range of last season's accessories and clothes by powerhouse Ralph Lauren. ", "This is one of several outlets scattered through the Horizon Plaza mall.", "\n\n Back to Hong Kong Island – South\n\n Back to Hong Kong Area by Area\n\n# Places To Eat And Drink\n\n## 1. ", "The Verandah\n\n 109 Repulse Bay Rd, Repulse Bay • 2292 2822 • Closed Mon • $$$\n\n Google Map\n\nIndisputably Southside's premier venue, The Verandah, with its sea views and old colonial grandeur, is the place for big-budget romancing _(seeTop 10 Dim Sum)_.", "\n\n## 2. ", "Cococabana\n\n G/F, Shek O Beach Bldg, Shek O Village • 2812 2226 • $$\n\n Google Map\n\nLocated in the tiny bohemian enclave of Shek O and overlooking the beach, this eatery serves Provençal food. ", "Although this is not a cheap option, the service can be slow.", "\n\n## 3. ", "Pickled Pelican\n\n 90 Stanley Main St, Stanley • 2813 4313 • $$\n\n Google Map\n\nReliable, tasty English pub food is served with speciality beers and a wide choice of Scotch whiskies here.", "\n\nTables in the street, Pickled Pelican\n\n## 4. ", "Spices\n\n G/F The Arcade, 109 Repulse Bay Rd, Repulse Bay • 2292 2821 • $$\n\n Google Map\n\nOne of the best places for alfresco dining in Hong Kong, Spices serves well-executed Thai and Indian curries in a lush garden setting. ", "It offers a relaxed atmosphere and good service.", "\n\n## 5. ", "The Boathouse\n\n 88 Main St, Stanley • 2813 4467 • $$\n\n Google Map\n\nService could be better, but this is remedied by sitting upstairs or at the pavement tables with views out to sea, eating the contemporary European and North American cuisine.", "\n\n## 6. ", "Mijas\n\n 102 Murray House, Stanley Plaza • 2899 0858 • $$\n\n Google Map\n\nEnd a satisfying day in Stanley at this atmospheric Spanish restaurant. ", "Romantics will gravitate towards the balcony tables at sunset.", "\n\n## 7. ", "The Ocean\n\n Shop 216, The Pulse, 28 Beach Rd, Repulse Bay • 2889 5939 • $$$\n\n Google Map\n\nWith one Michelin star and striking ocean views, Olivier Bellin's restaurant specializes in sustainably-sourced seafood and offers five- and eight-course tasting menus.", "\n\n## 8. ", "Happy Garden\n\n 786 Shek O Village • 2809 4165 • $\n\n Google Map\n\nLong running cheap-and-cheerful Thai canteen, just off Shek O's beach. ", "Excellent _pad thai_ and satay.", "\n\n## 9. ", "Smuggler's Inn\n\n 90A Stanley Main St • 2813 8852 • $\n\n Google Map\n\nStanley's gentrification has bypassed this place, which is a relic of the days when British soldiers from Stanley Fort blew half their wages here.", "\n\n## 10. ", "Stanley Cave\n\n B/F 25, Stanley Market Rd • 2677 7007 • $\n\n Google Map\n\nEscape the heat by visiting this café-bakery and snack bar, in a basement steps away from the seafront promenade. ", "There's outdoor seating too.", "\n\nSee restaurant price categories\n\n Back to Hong Kong Island – South\n\n Back to Hong Kong Area by Area\n Back to Hong Kong Area by Area\n\n# TSIM SHA TSUI\n\nOn one level, Tsim Sha Tsui (universally truncated to \"TST\" in a merciful gesture to non-Cantonese speakers) is still a parody of a tourist quarter in an Asian port: its tailors and camera salesmen do not suffer fools, and its hostess bars are the scene of many a ruinous round of drinks. ", "But there is also much more to Tsim Sha Tsui than that. ", "There is a profusion of world-class cultural venues, galleries and museums, such as the Museum of History and the Science Museum. ", "There are hotels – the Langham, the Peninsula, the InterContinental – of jaw-dropping luxury. ", "And every product and service the human mind can conceive of can be found in the monolithic Harbour City shopping mall.", "\n\n## 1. ", "The Golden Mile\n\n Google Map\n\nThis strip that stretches up Nathan Road from the wsaterfront could be more accurately dubbed the \"neon mile\". ", "It is less glitzy than Central and comprises mainly bars, restaurants, tailors, camera and electronic shops and the odd desultory topless bar. ", "The crowds are sometimes so great that walking the Golden Mile becomes a major challenge.", "\n\nNeon signs on the Golden Mile\n\n## 2. ", "The Peninsula\n\n Google Map\n\nThe last word in luxury service and accommodation. ", "This venerable hotel sits like a proud old dowager, gazing sedately across at the vertiginous Hong Kong Island skyline. ", "The cheapest rooms start where many other luxury hotels stop, although special offers sometimes apply. ", "A night in the opulent Peninsula suite will set you back almost the price of a small car. ", "It boasts eight bars and restaurants, including the Philippe Starck-designed Felix and French stalwart Gaddi's. ", "If you desire, you can swoop onto the roof by helicopter or be collected by Rolls-Royce _(seeThe Peninsula)_.", "\n\n## 3. ", "Museum of History\n\n 100 Chatham Rd South • 2724 9042 • Open 10am–6pm Mon & Wed–Fri, 10am–7pm Sat & Sun • Adm (free Wed)\n\n Google Map\n\nThis museum was built at a cost of almost HK$390 million, half of which was spent on its _pièce de résistance_ , the Hong Kong Story, which attempts to chronicle the 400 million-odd years since Hong Kong coalesced from the primordial ooze. ", "The story is told across eight galleries containing more than 4,000 exhibits, which vividly outline the natural environment, folk culture and historical development of Hong Kong.", "\n\nExhibit at the Museum of History\n\n## 4. ", "Space Museum\n\n Cultural Centre Complex, 10 Salisbury Rd • 2721 0226 • Open 10am–9pm Sat & Sun, 1–9pm Mon & Wed–Fri • Closed for renovation till end of 2016 • Adm (free Wed)\n\n Google Map\n\nWhen you've had enough of history, come and peek into the future. ", "This odd-looking dome in the heart of Tsim Sha Tsui includes an Omnimax theatre and interactive exhibits.", "\n\n## 5. ", "Cultural Centre\n\n 10 Salisbury Rd • 2734 2009 • Open 9am–11pm daily; Box office: 10am–9:30pm daily\n\n Google Map\n\nWith a peerless view beckoning across the water, the geniuses in charge decided to build the world's first windowless building, and covered it for good measure in public toilet-style pink tiles. ", "Wander around and marvel at one of the great architectural debacles of the 20th century. ", "That said, it hosts some good dance and theatre productions, as well as some free foyer performances.", "\n\nThe monolithic Cultural Centre with the clock tower in front\n\n## 6. ", "The Garden of Stars\n\n Cnr of Salisbury Rd & Chatham Rd South • East Tsim Sha Tsui MTR Exit P1 • www.avenueofstars.com.hk\n\n Google Map\n\nThe TST waterfront is being redeveloped and during this time both the Museum of Art and the Avenue of the Stars will be closed until late 2018. ", "However, a selection of the iconic statues, notably the one of Bruce Lee, can be found at this park until then.", "\n\nStatue of Bruce Lee\n\n## 7. ", "Science Museum\n\n 2 Science Museum Rd • 2732 3232 • Open 10am–9pm Sat & Sun, 10am–7pm Mon–Wed & Fri • Adm (free Wed)\n\n Google Map\n\nThere are some fascinating interactive displays here if you don't mind fighting your way through the giggling, pushing throngs of schoolchildren. ", "There are enough buttons to push, gadgets to grapple with and levers to tweak to satisfy even the most hard-to-please kids. ", "Basic principles of science are explained in an entertaining manner, inviting hands-on exploration for both the young and young-at-heart.", "\n\n## 8. ", "Kowloon Mosque\n\n 105 Nathan Rd • 2724 0095 • Open 5am–10pm daily • Jumah (Friday) prayers at 1:15pm\n\n Google Map\n\nWhen the muezzin calls the faithful to prayer, the Jamia Masjid Islamic Centre is where you'll find most of Hong Kong's Muslims. ", "You can stop by for a look, but take your shoes off and be respectful. ", "Entry to the inner part is not permitted unless you are a Muslim coming for prayer.", "\n\n## 9. ", "Clock Tower\n\n Google Map\n\nThe Kowloon-Canton Railway, which now ends at Hung Hom, used to finish at this clock tower, as did the rather more famous Orient Express. ", "From here, you can walk for more than a kilometre around the Tsim Sha Tsui water-front and spot the occasional optimistic fisherman dangling a line in the harbour.", "\n\n## 10. ", "Kowloon Park\n\n Haiphong Rd • Open 5am–midnight daily\n\n Google Map\n\nIf the multitudes of hawkers in Tsim Sha Tsui become too much for you, then venture through the park gates, find a well-shaded bench and watch the world go by. ", "There's a big swimming pool (which is something of a gay cruising zone), an aviary and a pond with flamingos and other aquatic birdlife _(seeKowloon Park)_.", "\n\nKowloon Park\n\n### CHUNGKING MANSIONS\n\nFollowing a major refit, this Hong Kong icon is no longer the sleazy, vermin-infested firetrap it used to be. ", "Even so, the massive maze of a building remains infamous in many ways, not least for the fast-turnover shops, canteens and hustlers crowding its cavernous lobby, and the warren of cramped, budget accommodation filling the upper floors. ", "But if you're after a dirt-cheap suitcase for those unplanned purchases, a discount phone-card or plug adaptor, or superb Indian food (try the restaurants on the 3rd floor), Chungking Mansions can deliver.", "\n\n### A MORNING OUT\n\n### Morning\n\nCatch the **Star Ferry** to Tsim Sha Tsui.", "\n\nAs you come in, check out the vast West Kowloon Reclamation site to the left, home of the shiny, silver **International Commerce Centre**. ", "The 108-floor monolith houses hotels, apartments and a viewing deck.", "\n\nIf you're still standing after the stampede to disembark (be wary of pyjama-clad old ladies), saunter past the old **Clock Tower** , pause to take in one of the world's most breathtaking views, then cross Salisbury Road and stop for tea at **The Peninsula**.", "\n\nFrom here, brave the crush and bustle of **The Golden Mile**. ", "Unless you want a new suit or dress, do not make eye contact with the legion of touts who never listen to the word \"no\". ", "Walk straight by. ", "They are merciless if they sense weakness.", "\n\n### Afternoon\n\nWhen you've had enough of the smog-shrouded streets, hawkers and being jostled, cross Haiphong Road into **Kowloon Park**. ", "There is plenty of space here to take a breather and do some serious people-watching.", "\n\nYou'll probably be getting peckish by now. ", "Head back down Nathan Road to one of the excellent Indian restaurants in **Chungking Mansions** , or for something less hectic, The Peninsula has a host of culinary options.", "\n\n Back to Tsim Sha Tsui\n\n Back to Hong Kong Area by Area\n\n# Spots To People-Watch\n\n## 1. ", "Tao Heung\n\n Star Mansion, 3 Minden Rd • 8300 8084 • $\n\n Google Map\n\nCome here early and join the Cantonese at their best – tucking into a tasty, fresh and made-to-order dim sum breakfast with their families, or just sitting quietly with a pot of tea and a newspaper.", "\n\nTao Heung\n\n## 2. ", "Chungking Mansions\n\n Google Map\n\nThe lobby is crowded with African entrepreneurs, businessmen from the Indian subcontinent and nervous-looking backpackers queuing for lifts up to their hostels _(seeChungking Mansions)_.", "\n\n## 3. ", "The Lobby at The Peninsula\n\n Google Map\n\nOpulent Neo-Classical setting for a rather fabulous afternoon tea with the territory's smart set: scones, cucumber sandwiches, petit fours, a string quartet, the works _(seeThe Peninsula)_.", "\n\n## 4. ", "Kowloon Park\n\n Google Map\n\nOne of the best places in all Hong Kong to visit at dawn, when tai chi and martial arts practitioners hone their skills among the sculptures and fig trees _(seeKowloon Park)_.", "\n\n## 5. ", "Felix\n\n Google Map\n\nIf the wallet won't stand up to a meal, just take a drink at the bar and watch everyone watching everyone else _(seeFelix)_.", "\n\n## 6. ", "Harbour City\n\n Google Map\n\nA people-watcher's paradise. ", "This massive labyrinth of interconnected malls has plenty of cafés and benches from which to enjoy the world passing by.", "\n\n## 7. ", "Waterfront Promenade\n\n Salisbury Rd\n\n Google Map\n\nWalking east from the Star Ferry, you will meet tai chi adepts, culture vultures and local ladies with their tiny dogs. ", "The promenade is very popular for the harbour's Symphony of Lights show, at 8pm daily.", "\n\n## 8. ", "The Langham Hotel\n\n 8 Peking Rd • 2375 1133\n\n Google Map\n\nUnderstated and elegant, the Langham attracts similar clientele, such as screen star Michelle Yeoh, perhaps on her way to T'ang Court.", "\n\n## 9. ", "Star Ferry Pier\n\n Google Map\n\nInspiring place to take in Hong Kong's bustle and watch the iconic ferries and their passengers.", "\n\n## 10. ", "Heritage 1881\n\n 2A Canton Rd\n\n Google Map\n\nHeritage 1881 is the name given to the super-swanky, revamped former Hong Kong Marine Police headquarters. ", "It features a boutique hotel, bars and restaurants, and designer shops attracting smart customers.", "\n\nBoutiques at Heritage 1881\n\n Back to Tsim Sha Tsui\n\n Back to Hong Kong Area by Area\n\n# Places To Shop\n\n## 1. ", "Harbour City\n\n Canton Rd\n\n Google Map\n\nThere are at least 450 shops in this vast agglomeration of malls stretching the length of Canton Road. ", "It comprises the Ocean Terminal, Ocean Centre and Golden Gateway complexes.", "\n\nHarbour City shopping mall\n\n## 2. ", "Granville Road\n\n Google Map\n\nGreat for souvenir T-shirts, all manner of big-label knock-offs and factory seconds, as well as good-value clothing from chain stores like Bossini and Giordano.", "\n\n## 3. ", "Joyce\n\n G106 Gateway Arcade, Harbour City\n\n Google Map\n\nFounder Joyce Ma is a Hong Kong fashion icon. ", "Her flagship store is in Central, but the Harbour City outlet is also impressive.", "\n\n## 4. ", "Rise Commercial Building\n\n 5–11 Granville Circuit\n\n Google Map\n\nIt doesn't look much from outside, but inside this mall you will discover a trendsetter's utopia.", "\n\n## 5. ", "Beverley Commercial Centre\n\n 87–105 Chatham Rd South\n\n Google Map\n\nThe original beacon of cool in Tsim Sha Tsui, with floor after floor of mini-boutiques from local designers.", "\n\n## 6. ", "The Peninsula Hong Kong Arcade\n\n 1–17 Nathan Rd, Kowloon\n\n Google Map\n\nA selection of fashionable designer boutiques, jewellers and bespoke tailors is located in the Peninsula Hotel.", "\n\n## 7. ", "Toys 'R' Us\n\n Shop OTG23 G/F, Ocean Terminal\n\n Google Map\n\nProbably their biggest branch in Hong Kong. ", "Kids will love it.", "\n\n## 8. ", "Chow Tai Fook\n\n Park Lane Shopper's Boulevard, 123 Nathan Rd\n\n Google Map\n\nOne of Hong Kong's major jewellery chains, home to a dazzling display of gold, silver, jewels and price tags.", "\n\nChow Tai Fook jewellery store\n\n## 9. ", "Fortress\n\n Shop 335–7, Level 3, Ocean Centre\n\n Google Map\n\nIf you're after electronic goods and baffled by the sheer number of shops around TST, chain-store Fortress is a good bet. ", "Other shops may advertise cheaper prices, but not all dealers are honest.", "\n\n## 10. ", "Sam's Tailor\n\n Burlington Arcade, 94 Nathan Rd\n\n Google Map\n\nPortraits of former clients, including princes, presidents and pop stars, look on as the third generation of the Melwani family measures you for a well-priced, well-fitting suit that will be ready in two to three days.", "\n\n Back to Tsim Sha Tsui\n\n Back to Hong Kong Area by Area\n\n# Places To Drink\n\n## 1. ", "The Lobby Lounge\n\n 18 Salisbury Rd\n\n Google Map\n\nSome of the best harbour views in Hong Kong are to be found in the bar of the superb Hotel InterContinental. ", "The aspect more than make up for the price of the drinks.", "\n\nThe Lobby Lounge, with superb views across the harbour\n\n## 2. ", "Kowloon Taproom\n\n 24 Ashley Rd\n\n Google Map\n\nA great selection of craft beers from local microbreweries, both bottled and on tap, makes this bar a must visit for beer lovers.", "\n\n## 3. ", "The Bar\n\n 1/F The Peninsula Hotel\n\n Google Map\n\nThis up-market watering hole serves as a delightful refuge from the Kowloon crowds – but prepare to pay through the nose for drinks.", "\n\n## 4. ", "Eyebar\n\n 30/F iSquare, 63 Nathan Rd\n\n Google Map\n\nUninterrupted Victoria Harbour views are highlighted with double-height windows and a telescope on the rooftop bar's terrace.", "\n\n## 5. ", "Ned Kelly's Last Stand\n\n 11A Ashley Rd\n\n Google Map\n\nThis place has been here forever, as has the jazz band. ", "Come here for an opportunity to get your feet tapping to tunes by the crustiest, most grizzled bunch of musicians this side of New Orleans.", "\n\n## 6. ", "Aqua Spirit\n\n 29/F, 1 Peking Rd\n\n Google Map\n\nSit in a cubbyhole facing the window and sip a glass of bubbly as you watch the harbour light up.", "\n\n## 7. ", "Dada Bar & Lounge\n\n 2/F De Luxe Manor, 39 Kimberley Rd\n\n Google Map\n\nA gorgeous cocktail and wine bar, Dada Lounge is decorated in truly over-the-top style with Alice in Wonderland over-sized chairs, chandeliers and horse-head motifs.", "\n\n## 8. ", "Aqua Luna\n\n Tsim Sha Tsui Pier 1\n\n Google Map\n\nLie back on your day bed with a drink in hand on the ultimate harbour cruise; the _Aqua Luna_ is the last traditional vessel to be built in Hong Kong. ", "Daily sailings depart from Tsim Sha Tsui Pier 1 _(seeRide on a Junk)_.", "\n\n## 9. ", "Fatt's Place\n\n G/F 2 Hart Ave\n\n Google Map\n\nThis casual beer bar has a great selection of international ales and lagers by the bottle or on tap. ", "Happy hour runs from 3 to 9pm daily.", "\n\n## 10. ", "Sky Lounge\n\n 18/F Sheraton Hotel, 20 Nathan Rd\n\n Google Map\n\nAnother very comfortable location from which to enjoy the nightly cross-harbour light show below with a glass of something chilled to hand.", "\n\n Back to Tsim Sha Tsui\n\n Back to Hong Kong Area by Area\n\n# Places to Eat\n\n## 1. ", "Oyster and Wine Bar\n\n 18/F Sheraton Hotel, 20 Nathan Rd • 2732 6945 • $$$\n\n Google Map\n\nA sublime view and oysters so fresh they flinch when you squeeze a lemon on them.", "\n\n## 2. ", "Felix\n\n 28/F The Peninsula Hotel • 2696 6778 • $$$\n\n Google Map\n\nThe cosmopolitan cuisine is fantastic, the view is better and the bar is crammed with the rich and famous. ", "Check out the interesting Philippe Starck-designed urinals, where you face wall-to-ceiling glass windows and get a stunning view of Hong Kong.", "\n\n## 3. ", "Morton's of Chicago\n\n 4/F Sheraton Hotel • 2732 2343 • $$$\n\n Google Map\n\nA carnivore's paradise. ", "Huge slabs of steak aged and cooked to perfection.", "\n\n## 4. ", "Cuisine, Cuisine\n\n The Mira Hotel, 118 Nathan Rd • 2315 5222 • $$$\n\n Google Map\n\nMichelin-recommended Cantonese cuisine fuses modern and traditional in an elegant setting.", "\n\n## 5. ", "Nobu\n\n 2/F Hotel InterContinental, 18 Salisbury Rd • 2313 2323 • $$$\n\n Google Map\n\nEnjoy fine dining at one of the world's most famous Japanese restaurants.", "\n\nThe bar at Nobu\n\n## 6. ", "Gaddi's\n\n 1/F The Peninsula Hotel • 2696 6763 • $$$\n\n Google Map\n\nImpeccable French cuisine, irreproachable service and famous patrons have earned Gaddi's its reputation as one of Asia's finest restaurants _(seeGaddi's)_.", "\n\n## 7. ", "The Delhi Club\n\n Floor 3, Block C, Chungking Mansions • 2368 1682 • $\n\n Google Map\n\nA low-key setting for some superb, inexpensive, filling Indian curries, this is a worthy reason to push through the touts and crowds filling Chungking Mansions' lobby.", "\n\n## 8. ", "Wildfire\n\n 2 Knutsford Terrace • 3690 1598 • $$\n\n Google Map\n\nA great place for pizza and pasta, Wildfire has terrace seating at the front and a rear courtyard garden. ", "It is a popular weekend brunch spot. ", "Branches also at the Peak, Causeway Bay and Sai Wan Ho.", "\n\n## 9. ", "T'ang Court\n\n 1–2/F Langham Hotel, 8 Peking Rd, Kowloon • 2132 7898 • $$$\n\n Google Map\n\nThis elegant restaurant, which recently gained its third Michelin star, serves delicate Cantonese cuisine _(seeT'ang Court)_.", "\n\n## 10. ", "Hutong\n\n 28/F, 1 Peking Rd • 3428 8342 • $$$\n\n Google Map\n\nUpdated Northern Chinese classics are served in this restaurant with magnificent views. ", "Try the signature Red Lantern Crispy Soft Shell Crabs.", "\n\nSee restaurant price categories\n\n Back to Tsim Sha Tsui\n\n Back to Hong Kong Area by Area\n Back to Hong Kong Area by Area\n\n# YAU MA TEI, MONG KOK AND PRINCE EDWARD\n\nThe tourist glitz of Tsim Sha Tsui starts to get more engrossing and authentic in the area between Yau Ma Tei and Prince Edward. ", "With a dense population, Mong Kok and Yau Ma Tei are always brimming with activity, and many of their busy streets are full of buzzing markets. ", "To the north, where open fields once stood, lies the calmer and more upscale residential district of Prince Edward. ", "Come to this delightful heartland of Hong Kong to explore the variety of cuisines served at its numerous restaurants and to shop at the bustling market.", "\n\n## 1. ", "Flower Market\n\n Google Map\n\nNear Prince Edward is a vibrant flower market which is at its brightest in the morning _(seeFlower Market)_. ", "The stalls and shops lining the entire length of Flower Market Road sell a wide variety of exotic flowers. ", "It is a wonderfully colourful sight and a good place to take photographs. ", "The market is especially exciting to visit during the Chinese New Year celebrations.", "\n\nStalls of colourful flowers at the Flower Market\n\n## 2. ", "Temple Street Night Market\n\n Google Map\n\nVisit the chaotic, crowded night market on Temple Street as much for the spectacle as for the shopping experience _(seeTemple Street Night Market)_.", "\n\n## 3. ", "Tin Hau Temple\n\n 2385 0759 • Open 8am–5pm daily\n\n Google Map\n\nThe Tin Hau Temple in Yau Ma Tei is divided into three sections. ", "Only one of these is actually devoted to Tin Hau, the sea goddess, who is Hong Kong's favourite deity and essentially its patron. ", "Admittedly, it is neither the oldest nor the grandest temple in the territory, but it is pretty nonetheless. ", "The other two sections are dedicated to Shing Wong, the god of the city, and To Tei, the god of the earth. ", "Officially, no photography is allowed anywhere inside the temple. ", "English-speaking visitors should head for a couple of stalls at the far end of the temple, where they can have their fortunes told in English.", "\n\nDoor detail, Tin Hau Temple\n\n## 4. ", "Bird Garden\n\n Yuen Po St\n\n Google Map\n\nThe pretty Bird Garden is where local folk, mostly elderly, take their birds to sing and get some fresh air with other birds. ", "Set up in 1997 for local bird lovers, it is laid out in the style of a traditional Chinese garden. ", "Fresh bird food, in the form of live grasshoppers, is fed to the birds by their owners through the cage bars with chopsticks.", "\n\nBird cages in the Bird Garden\n\n## 5. ", "Reclamation Street Market\n\n Google Map\n\nIf you haven't seen a Hong Kong produce market in full swing, you could do worse than wander down Reclamation Street. ", "The market sells predominantly fresh fruit and vegetables, and will provide some good photo opportunities. ", "The squeamish, however, may want to avoid wandering inside the municipal wet-market building where livestock is freshly slaughtered and expertly eviscerated on the spot.", "\n\n## 6. ", "West Kowloon Reclamation\n\n Google Map\n\nThe reclaimed land of West Kowloon is a jumble of road intersections and messy building sites, as planners argue over exactly what will fill it. ", "Rising 484 m (1,588 ft) over everything, the huge International Commerce Centre opened in 2010 as the tallest building in Hong Kong, topping Two IFC. ", "Its sky100 Observation Deck provides the highest indoor viewing platform in the city, with great harbour views.", "\n\nInternational Commerce Centre\n\n## 7. ", "Jade Market\n\n Kansu St\n\n Google Map\n\nThe small, covered Jade Market is worth a quick forage even if you're not intending to buy any jade. ", "Dozens of stalls sell jewellery, small animals (many representing characters from the Chinese zodiac) and beads in jade. ", "There will be few bargains on sale, particularly to those without a knowledge of good jade, but there's plenty of cheap jade here if you just want to own some trinkets _(seeJade Market)_.", "\n\nJewellery stall, Jade Market\n\n## 8. ", "Boundary Street\n\n Google Map\n\nHistory is visible in the ruler-straight line of Boundary Street, which marked the border between British Hong Kong and China between 1860 and 1898. ", "The lower part of the Kowloon Peninsula was ceded (supposedly in perpetuity) by China to the British, who wanted extra land for army training and commerce. ", "The British then became worried over water shortages and wanted yet more land to protect Hong Kong Island from the threat of bombardment from newly invented long-range artillery. ", "In 1898 the border was moved again to include the entire New Territories, this time on a 99-year lease _(see4000 BC: Early Peoples)_.", "\n\n## 9. ", "Shanghai Street\n\n Google Map\n\nThe whole area around Shanghai and Reclamation streets is a traditional Chinese neighbourhood, if somewhat less vibrant and seedier than it once was. ", "Interesting nooks and shops include funeral parlours, herbalists, health-tea shops, paper-kite shops and, at 21 Ning Po Street, a shop selling pickled snakes.", "\n\n## 10. ", "Ladies' Market\n\n Google Map\n\nThe term \"ladies\" is somewhat out of date, as there's plenty more than women's clothing here. ", "The shopping area consists of three parallel streets: Fa Yuen Street, crammed mostly with sports goods and trainer shops; Tung Choi Street (the former ladies' market); and Sa Yeung Choi Street, specializing in consumer electronics. ", "Market-stall prices are cheap, and shop prices are better than those on Hong Kong Island. ", "The crowds here can be tiring, though, especially on hot days _(seeLadies' Market)_.", "\n\nLadies' Market, Tung Choi Street\n\n### THE TRIADS\n\nOvercrowded Mong Kok is the heartland of the Hong Kong triad gangs. ", "The triads originated in 17th-century China as secret societies who tried to reinstall the Ming dynasty after the Manchus took over. ", "Though they have been given a romantic image in literature and the cinema, the modern-day reality is of sleaze and slayings. ", "Tourists are unlikely to be a target, however, so don't be put off visiting this exciting district.", "\n\n### DOWN THE PENINSULA\n\n### Morning\n\nTake the MTR to Prince Edward to start at the top of the Kowloon Peninsula, near the old Chinese border at **Boundary Street**. ", "Take Exit B2 and head to the **Bird Garden** via the flower shops and stalls in the **Flower Market**. ", "Testament to the Chinese love of exotic goldfish, the stalls at the top of Tung Choi Street sell a surprising variety of these pets.", "\n\nMultitudes of cheap shops and market stalls are found a short walk away to the south on the streets below **Argyle Street** and east of **Nathan Road**. ", "Pedestrians also abound – some 150,000 souls live in every square kilometre of this part of the Peninsula.", "\n\nCrossing Nathan Road, head to the **Jade Market** for jewellery and figurines. ", "If you want the best choice of jade, arrive before lunchtime because some of the stallholders pack up after this.", "\n\n### Afternoon\n\nTake a breather in the small, pleasant square across the way and watch the world go by with the elderly locals, or peep inside the busy **Tin Hau Temple**. ", "Then break for a rough-and-ready cheap Chinese lunch in the covered canteens on the corner of **Pak Hoi** and **Temple streets**.", "\n\nAfter lunch explore the produce stalls along **Reclamation Street** and the old Chinese district around **Shanghai Street**.", "\n\n Back to Yau Ma Tei, Mong Kok and Prince Edward\n\n Back to Hong Kong Area by Area\n\n# Funky Shops\n\n## 1. ", "King Wah Building\n\n 628 Nathan Rd\n\n Google Map\n\nHead to this uncrowded mall for funky street clothing, great accessories, handbags and cool watches. ", "There's genuine vintage denim and other 1970s and 1980s rarities, plus kitsch Japanese cartoon ephemera aplenty.", "\n\n## 2. ", "In's Point\n\n 530–538 Nathan Rd\n\n Google Map\n\nExplore three floors of toy shops selling mostly Japanese anime figurines. ", "There's also a Lego shop and one especially dedicated to legendary martial artist, Bruce Lee.", "\n\n## 3. ", "Izzue\n\n 26 Sai Yeung Choi St\n\n Google Map\n\nHigh-end clothing chain for urban warriors and fashionistas in search of the perfect outfit for a night out.", "\n\n## 4. ", "Sony Pro Shops\n\n Sim City, Chung Kiu Commercial Building, 47–51 Shan Tung St\n\n Google Map\n\nHead to the Sony Vaio, Walkman and PlayStation Pro shops for the latest audio and video gems among Sim City's computer shops.", "\n\n## 5. ", "Mongkok Computer Centre\n\n 8A Nelson St\n\n Google Map\n\nThe deals on computer hardware and software are not as good as those in Sham Shui Po, but this is convenient for a huge selection of games and accessories.", "\n\nMongkok Computer Centre\n\n## 6. ", "Sasa Cosmetics\n\n MOKO, 193 Prince Edward Rd W, Mong Kok\n\n Google Map\n\nConveniently located outlet of an extensive Hong Kong chain selling cosmetics of every type at very low prices. ", "Perfume is a bargain here.", "\n\nSasa Cosmetics\n\n## 7. ", "Ban Fan Floriculture\n\n 28 Flower Market Rd\n\n Google Map\n\nThe porcelain and ceramic vases and wickerwork flower baskets are not likely to win awards for style or design, but the choice is impressive and the prices are reasonable.", "\n\n## 8. ", "Chan Chi Kee Cutlery\n\n 316–318 Shanghai St\n\n Google Map\n\nCheap, sturdy woks, steamers, choppers and pretty much every thing else you might desire for the well-equipped kitchen.", "\n\n## 9. ", "Sandra's Pearls\n\n Jade Market stall, Kansu St\n\n Google Map\n\nReliable one-stop shop in the jade market for pearls, beads and jewellery of all sorts. ", "Open between 11am and 4pm.", "\n\n## 10. ", "Sneaker Street\n\n Fa Yuen St\n\n Google Map\n\nSports enthusiasts will be in their element here. ", "With a high concentration of sports shops, this is the place to be if you're looking for sports shoes, particularly rare or special editions.", "\n\n Back to Yau Ma Tei, Mong Kok and Prince Edward\n\n Back to Hong Kong Area by Area\n\n# Cheap Chinese Eats\n\n## 1. ", "Majesty Chinese Restaurant\n\n 3/F Wu Sang House, 655 Nathan Rd • 2397 3822 • $\n\n Google Map\n\nThis bright, informal restaurant serves excellent and inexpensive dim sum breakfasts and dinners.", "\n\n## 2. ", "Tai Ping Koon\n\n 19–21 Mau Lam St • 2384 3385 • $$\n\n Google Map\n\nHong Kong's version of Western food at a branch of a century-old chain. ", "Try the \"Swiss\" (sweet) sauce chicken wings or the roasted young pigeon.", "\n\n## 3. ", "Yee Shun Milk Company\n\n 63 Pilkem St • 2730 2799 • $\n\n Google Map\n\nSteamed milk puddings, flavoured custards and other local sweets abound at this popular restaurant.", "\n\n## 4. ", "Chuen Cheung Kui\n\n 33 Nelson St • 2396 0672 • $$\n\n Google Map\n\nHakka home-style cooking, which means salt-baked chicken and stewed belly pork with preserved greens are house specialities.", "\n\n## 5. ", "Saint's Alp Teahouse\n\n 5 Jordan Rd • 2374 0398 • No credit cards • $\n\n Google Map\n\nQuirky snacks and an intriguing menu of teas in a modern Taiwan-style Chinese teahouse, which is one of an extensive chain.", "\n\n## 6. ", "Tim Ho Wan\n\n G/F Olympian City 2, 18 Hoi Ting Rd, Tai Kok Tsui • 2332 2896 • $\n\n Google Map\n\nCrowds queue up for the Michelin-star-rated lotus-leaf rice packets, _cha siu_ (barbecued pork) baked buns, persimmon cakes and _fun goh_ (pork and shrimp) dumplings served here.", "\n\nCrowd outside Tim Ho Wan\n\n## 7. ", "Ah Long Pakistan Halal Food\n\n 95B Woosung St • 2385 3382 • No credit cards • $\n\n Google Map\n\nA good bet if you fancy a decent spicy curry, although the surroundings aren't terribly pretty.", "\n\n## 8. ", "Veggie Family\n\n B/F, Ching Wah Building, 143 Sai Yee St, Mong Kok • 2393 8012 • $\n\n Google Map\n\nThe friendly staff, generous helpings and tasty veggie recipes attract not just vegetarians but a wide clientele to this restaurant.", "\n\n## 9. ", "The Lobby Lounge\n\n 4/F The Eaton Hotel, 380 Nathan Rd • 2710 1863 • $$\n\n Google Map\n\nDeserves a mention for its glass atrium, outdoor seating, terrific coffee and afternoon tea menus.", "\n\n## 10. ", "Light Vegetarian\n\n 13 Jordan Rd • 2384 2833 • $\n\n Google Map\n\nThere are Cantonese mock-meat dishes on the à la carte menu, but for the best deal, opt for the ample lunchtime buffet, which includes desserts and a pot of tea.", "\n\nSee restaurant price categories\n\n Back to Yau Ma Tei, Mong Kok and Prince Edward\n\n Back to Hong Kong Area by Area\n Back to Hong Kong Area by Area\n\n# NEW KOWLOON\n\nNew Kowloon was home to the international airport of Hong Kong, Kai Tak, from 1925 until 1998. ", "The site has not been allowed to lie fallow, with the former terminal having been converted into the largest golf driving range in the world. ", "In the neighbouring streets there are excellent budget dining options and seconds outlets, for this is where the locals go bargain-hunting. ", "Cultural attractions can also be found to the north, in the Tang dynasty-style architecture of the Chi Lin Nunnery or in the joyful chaos of Wong Tai Sin Temple.", "\n\n## 1. ", "Wong Tai Sin Temple\n\n Chuk Un • 2327 8141 • Open 7am–5:30pm daily\n\n Google Map\n\nA noisy, colourful affair, Wong Tai Sin is always crowded and aswirl with incense smoke. ", "Legend holds that Wong Tai Sin (originally known as Huang Chuping), who was born in Zhejiang province around AD 328, could see the future and make wishes come true. ", "The temple opened in 1921, after a Taoist priest brought a sacred portrait of Huang to Hong Kong. ", "The stylized architecture of the temple contrasts sharply with the surrounding concrete boxes. ", "Worshippers from the three main Chinese religions – Taoism, Buddhism and Confucianism – flock here, not to mention tens of soothsayers hawking their services. ", "Behind the temple is an ancient tomb that still baffles historians.", "\n\nColourful Wong Tai Sin Temple\n\n## 2. ", "Lion Rock\n\n Google Map\n\nOne of the best places to view this fascinating landmark is, conveniently, from outside Wong Tai Sin temple. ", "Find the open area near the fortune-tellers' stalls where you can look straight up at what, from this angle, resembles the head of a lion. ", "Those feeling energetic may be tempted to scale its heights. ", "Take lots of water, and be warned – the top section is not for the faint-hearted.", "\n\nLion Rock, resembling a lion's head\n\n## 3. ", "Kowloon Walled City Park\n\n Google Map\n\nOne of Hong Kong's most picturesque parks began life in 1847 as a Chinese fort. ", "A legal oversight by the British left it under Chinese control after the New Territories were leased to Britain. ", "It was levelled during World War II, and a ghetto called the Walled City sprang up in its place. ", "This bizarre place was a magnet for Triads, drug dealers and heroin addicts _(seeThe Most Densely Populated Place on the Planet)_. ", "It was pulled down in 1992 and replaced by the park. ", "A photography display in the almshouse by the entrance tells the story.", "\n\nBonsai, Kowloon Walled City Park\n\n## 4. ", "Chi Lin Nunnery\n\n Chi Lin Drive, Diamond Hill • 2354 1888; Restaurant: 3658 9388 • Open 9am–4:30pm daily\n\n Google Map\n\nIt is said that not a single nail was used in the construction of this lavish replica of a Tang dynasty (AD 618–907) place of worship. ", "The nunnery opened in 2000, funded by donations from wealthy families. ", "The hall and side wings house impressive statues, including those of Sakyamuni Buddha and the Bodhisattva Guanyin. ", "Opposite the nunnery, lies the Nan Lian Garden, also designed on Tang dynasty principles. ", "Artfully arranged rocks, trees, bridges and pavilions conceal its location in the middle of a busy traffic circle. ", "Do not miss the Chi Lin vegetarian restaurant, which is run by the nuns.", "\n\nPagoda in Nan Lian Garden, opposite Chi Lin Nunnery\n\n## 5. ", "Lei Yue Mun\n\n Google Map\n\nOnce a fishing village, Lei Yue Mun translates as \"carp gate\", although the only fish you're likely to see nowadays are in the excellent seafood restaurants that line the waterfront. ", "This is the closest point between Hong Kong Island and Kowloon, but don't be tempted to swim across the channel – if the pollution doesn't kill you, you'll be whisked away by the strong currents.", "\n\n## 6. ", "Oriental Golf City\n\n Kai Tak Runway, Kai Fuk Rd • 2522 2111 • Open 7am–midnight daily • Adm\n\n Google Map\n\nThis is, reputedly, the biggest driving range in the world, with more than 200 bays. ", "Whack away to your heart's content – unless you're well-connected or seriously rich, this is as close as you'll get to a golf course in Hong Kong.", "\n\n## 7. ", "Apliu Street Flea Market\n\n Apliu Street • Open 11am–8pm\n\n Google Map\n\nThis huge street market is full of all sorts of strange junk and pirated goods. ", "You'll feel like you're on another planet here – this is as \"local\" as Hong Kong gets. ", "It includes perhaps the world's biggest collection of secondhand electrical appliances. ", "Occasionally you can spot the odd retro turntable or radio, but most of it is rubbish _(seeApliu Street Flea Market)_.", "\n\n## 8. ", "Fat Jong Temple\n\n 171–175 Shatin Pass Rd, Wong Tai Sin • Open 10am–6:30pm Tue–Sun\n\n Google Map\n\nAlthough it is one of the most famous Buddhist sites in Hong Kong, the Fat Jong Temple is little-visited by foreigners. ", "Making it well worth the journey to see are the striking colour scheme (with red pillars standing out from the white walls), ornate decorations and magnificent Buddha sculptures. ", "The temple somehow manages to be busy and serene at the same time.", "\n\n## 9. ", "Lei Cheng Uk Tomb\n\n 41 Tonkin St, Sham Shui Po • Open 10am–6pm Fri–Wed\n\n Google Map\n\nThe Han burial tomb (AD 24–220) can barely be seen through a scratched sheet of Perspex. ", "Still, it's one of Hong Kong's earliest surviving historical monuments housed within its own museum, so act suitably impressed.", "\n\n## 10. ", "Hau Wong Temple\n\n Junction Rd • Open 8am–5pm daily\n\n Google Map\n\nQuaint and tiny, Hau Wong Temple is hardly worth a special trip, but take a look if you're in the area. ", "It was built in the 1730s, however there seem to be a number of legends surrounding its origins. ", "It's usually fairly quiet unless a festival is in full swing.", "\n\nEntrance to tiny Hau Wong Temple\n\n### THE MOST DENSELY POPULATED PLACE ON THE PLANET\n\nMore than 50,000 poor souls once inhabited the Kowloon Walled City, a place of few laws, but plenty of disease and criminality. ", "In the 1950s the Triads moved in and governed in their own ruthless style. ", "Before 1992 it was one of the few places left in Hong Kong with opium addicts puffing away on divans.", "\n\n### AN AFTERNOON IN NEW KOWLOON\n\n### After Lunch\n\nCatch the MTR to **Wong Tai Sin Station** and brave the crowds of earnest worshippers at the **temple**. ", "Some of the fortune-tellers in the nearby stalls speak English. ", "Try to bargain them down to a third or quarter of the price given. ", "Some use numbered sticks, others prefer curved bits of wood known as Buddha's lips.", "\n\nIf you're feeling fit, tackle **Lion Rock**. ", "It's a demanding climb, but the views are superb. ", "The steep inclines towards the top are for the stout of heart only. ", "Take plenty of water.", "\n\nA 10-minute taxi ride will take you to the **Kowloon Walled City Park**, Hong Kong's loveliest urban park. ", "This tranquil green space contains eight different gardens.", "\n\n### Late Afternoon\n\nBy late afternoon you should have worked up an appetite, so take a cab to the seafood restaurants on the waterfront at **Lei Yue Mun**. ", "Watch the sun paint the skyscrapers pink and orange as it sinks into the harbour, while you crack open crabs and munch on giant shrimps, all washed down with wine or an icy Tsing Tao beer.", "\n\nWith huge stone lions guarding its front door, one restaurant that is difficult to miss in Lei Yue Mun is **Kong Lung Seafood**. ", "Here you can feast on a range of tasty dishes, including deep-roasted crab and steamed abalone with orange crust.", "\n\n Back to New Kowloon\n\n Back to The Top 10 of Area by Area\n\n# Places To Shop\n\n## 1. ", "Golden Computer Arcade\n\n 146–152 Fuk Wa St, Sham Shui Po\n\n Google Map\n\nSpread across four chaotic floors is computer equipment available at good prices. ", "Take care – many of the PS4 games and manga figurines available here are knock-offs.", "\n\n## 2. ", "Dragon Centre\n\n 37K Yen Chou St, cnr Cheung Sha Wan Rd, Sham Shui Po\n\n Google Map\n\nSoaring glassy mall in the midst of Sham Shui Po's grime and dust. ", "Good food hall, computer stuff and even an ice rink.", "\n\n## 3. ", "i.t.", "\n\n Shop LG2–02, Festival Walk, Kowloon Tong\n\n Google Map\n\nThis smart, minimalist outlet stocks stylish Japanese and American street clothes and accessories.", "\n\n## 4. ", "Yuet Tung China Works\n\n 3/F Kowloon Bay Industrial Centre, 15 Wang Hoi Rd, Kowloon Bay\n\n Google Map\n\nOne of the last places in Hong Kong still making Cantonese ceramics – tableware, decorative, personalized or monogrammed. ", "Orders may take four weeks but shipping can be arranged.", "\n\n## 5. ", "Lancôme\n\n G18 Festival Walk, Kowloon Tong • 2265 8665\n\n Google Map\n\nUbiquitous luxury French cosmetics brand. ", "Take your pick from the skin check-up or the 45-minute VIP consultation, or go straight for a 1-hour facial in a private cabin.", "\n\nLancôme\n\n## 6. ", "Page One\n\n Shop LG1–30, Festival Walk, Kowloon Tong\n\n Google Map\n\nA massive branch of Hong Kong's great bookshop chain, this gets top marks for stacking books with the covers facing outwards, making them much easier to browse. ", "It has a good coffee shop, too.", "\n\nPage One bookshop\n\n## 7. ", "Yu Chau Street and Nam Cheong Street\n\n Google Map\n\nThe small shops that line these two streets sell an enormous range of laces, zippers, ribbons, beads and buttons – a wider choice than you might have imagined could exist.", "\n\n## 8. ", "BEYORG Beyond Organic\n\n Shop UG17, Festival Walk, Kowloon Tong\n\n Google Map\n\nOrganic, sweet-smelling goodies to pamper yourself with here. ", "One of a number of branches across town.", "\n\n## 9. ", "agnès b. Délices\n\n Shop 20 Festival Walk, Kowloon Tong • 2265 8990 • $\n\n Google Map\n\nThe French fashion chain has opened a classy chocolate store and café. ", "A heaven for chocoholics, it serves the sweetest treats in the area.", "\n\n## 10. ", "Millies\n\n Shop F26, 1/F, Telford Plaza I, Kowloon Bay\n\n Google Map\n\nOne of the Hong Kong outlets of the largest retailer of women's shoes in China. ", "It stocks a great range of shoes, particularly its own label.", "\n\n Back to New Kowloon\n\n Back to The Top 10 of Area by Area\n\n# Places To Eat And Drink\n\n## 1. ", "Cambo Thai\n\n 25 Nga Tsin Long Rd, Kowloon City • 2716 7318 • $$\n\n Google Map\n\nKowloon City is famous for its cheap and tasty Thai food. ", "Be warned that you may need a cold beer to accompany the spicy beef salad.", "\n\n## 2. ", "TeaWood\n\n Shop G11, Festival Walk, Kowloon Tong • 2336 0277 • $\n\n Google Map\n\nThis forest-themed café serves Taiwanese-style snacks and a wide selection of teas and coffees.", "\n\n## 3. ", "Exp\n\n Shop 23, Festival Walk, Kowloon Tong • 2265 8298 • $\n\n Google Map\n\nA well-priced option serving Western and Asian favourites. ", "Specializing in pizza, spaghetti and noodles, all with an interesting twist.", "\n\n## 4. ", "Chong Fat Chiu Chow Restaurant\n\n 60–62 South Wall Rd, Kowloon City • 2383 3114 • $$\n\n Google Map\n\nIf you want to try traditional Chiu Chow seafood, this restaurant serves some of the best. ", "Go for the tasty crab or goose dishes.", "\n\n## 5. ", "Wing Lai Yuen Sichuan Noodles\n\n 15–17 Fung Tak Road • 2726 3818 • $\n\n Google Map\n\nTraditional Sichuan food in a plain setting. ", "The dan dan noodles are the most delicious thing on the menu.", "\n\n## 6. ", "Kong Lung Seafood\n\n 62 Hoi Pong Rd West, Lei Yue Mun • 2775 1552 • $$\n\n Google Map\n\nYou can't miss this place – two huge stone lions guard the front door. ", "This is a good bet for decent, fresh seafood. ", "The deep-roasted crab and the steamed abalone with citrus reticulata rate highly.", "\n\n## 7. ", "Tso Choi Koon\n\n 17–19A Nga Tsin Wai Rd, Kowloon City • 2383 7170 • No credit cards • $\n\n Google Map\n\nWith a name that translates to \"rough food\", this is one for those prepared to take some culinary risks to experience the real Hong Kong. ", "The adventurous dishes include sautéed pig's intestines and fried pig's brains.", "\n\n## 8. ", "Wang Jia Sha\n\n Shop G23, Festival Walk, Kowloon Tong • 2265 8488 • $$\n\n Google Map\n\nThis small chain offers an extensive range of dim sum.", "The chefs, brought in from the mainland, produce their own Shanghai-style take on them.", "\n\n## 9. ", "House of Canton\n\n Shop LG/F 40 Festival Walk, Kowloon Tong • 2265 7888 • $$\n\n Google Map\n\nThe full range of Cantonese dishes, from abalone to an exhaustive assortment of dim sum snacks, is available here.", "\n\n## 10. ", "Amaroni's Little Italy\n\n Shop LG1–32 Festival Walk, Kowloon Tong • 2265 8818 • $$\n\n Google Map\n\nHong Kongers love Italian, and they have taken this place to their heart. ", "Share the classic Italian dishes and make yourself at home.", "\n\nAmaroni's Little Italy\n\nSee restaurant price categories\n\n Back to New Kowloon\n\n Back to The Top 10 of Area by Area\n Back to Hong Kong Area by Area\n\n# THE NEW TERRITORIES\n\nAs a name, the New Territories is quite suggestive of frontier country – and in colonial times this was indeed the place where pith-helmeted sahibs went on tiger shoots, threw tennis parties and wrote memoirs. ", "Today, much of the region is suburban rather than rural: more than a third of the population of Hong Kong lives here, in dormitory towns dotted across \"the NT\", as it is abbreviated by the locals. ", "But to the north are the largest expanses of open country to be found in Hong Kong, including the important Mai Po Marsh, and there are centuries-old temples and settlements here, too. ", "At the northern extremity of the New Territories is the border with \"mainland\" China.", "\n\n## 1. ", "Ten Thousand Buddhas Monastery\n\n East Rail Line to Sha Tin, take north exit and follow signs • 2691 1067 • Open 9am–5:30pm daily\n\n Google Map\n\nThe Buddhas in question are stacked on shelves in the main hall of this hillside sanctuary at Pai Tau Tsuen, Sha Tin. ", "In fact, there are more like 13,000 Buddha images now. ", "The monastery comprises five temples, two pavilions and an elegant nine-storey pagoda. ", "Take a deep breath before you enter the grounds – there are 400-odd steps to negotiate.", "\n\nPagoda, Ten Thousand Buddhas Monastery\n\n## 2. ", "Sha Tin Racecourse\n\n Racecourse MTR • 1817 • No children • www.entertainment.hkjc.com • Adm\n\n Google Map\n\nHong Kong's most famous horseracing track is at Happy Valley on Hong Kong Island, but the people who live in this part of the world are so mad about horseracing that they built a second racetrack in the New Territories. ", "More than 85,000 punters have been known to pack Sha Tin's $500-million world-class track, where record-breaking sums are wagered on Saturday and Sunday afternoons between September and June. ", "The racecourse was redeveloped for the 2008 Olympic Games so that the dressage and show jumping events could be held here.", "\n\nPunters at Sha Tin Racecourse\n\n## 3. ", "Amah Rock\n\n East Rail Line to Tai Wai\n\n Google Map\n\nThis odd tower of rocks near Lion Rock Tunnel, when viewed from a certain angle, looks eerily like a woman with a baby on her back – hence the name. ", "Legend holds that the amah's husband sailed overseas to find work, while she waited patiently for his return. ", "When a storm sank his boat, she was so grief-stricken she turned to stone. ", "An alternative interpretation is that the rock was created as an ancient phallic symbol.", "\n\nAmah Rock\n\n## 4. ", "Hong Kong Railway Museum\n\n 13 Shung Tak St, Tai Po • East Rail Line to Tai Po Market, then follow signs • 2653 3455 • Open 10am–6pm Mon, Wed–Sun\n\n Google Map\n\nTai Po's museum is not one of Hong Kong's best, but trainspotters will like it. ", "Old coaches sit on tracks outside what used to be Tai Po Market Station. ", "Inside is a tolerably interesting account of the city. ", "Guided tours are also available.", "\n\n## 5. ", "Lam Tsuen Wishing Trees\n\n Lam Tsuen Village • MTR to Tai Po Market, then Bus 64 towards Kadoorie Farm and Kam Tin\n\n Google Map\n\nPeople used to throw wishes, written on weighted strips of paper, from the branches of these trees. ", "The practice was banned after the overloaded limbs broke off, so now wishes are pinnned on a nearby board instead.", "\n\nWishes left at Lam Tsuen Wishing Trees\n\n## 6. ", "Kadoorie Farm\n\n Lam Kam Rd, Tai Po • Bus 64K from Tai Po Market East Rail Line • 2483 7200 • Open 9:30am–5pm daily (last adm 4pm) • www.kfbg.org.hk • Adm\n\n Google Map\n\nSet up by local moguls Lord Lawrence and Sir Horace Kadoorie in 1951 to provide work for some 300,000 penniless refugees, Kadoorie Farm and Botanic Garden is now a centre for conservation and environmental awareness, promoting biodiversity in Hong Kong. ", "Its 148 hectares (365 acres) of land include a deer haven and butterfly house.", "\n\n## 7. ", "Heritage Museum\n\n Google Map\n\nSha Tin's museum vies with the revamped Museum of History in Kowloon for the title of Hong Kong's best museum _(seeHeritage Museum)_.", "\n\n## 8. ", "Yuen Yuen Institute\n\n MTR to Tsuen Wan, then minibus 81 • 2492 2220 • Open 8:30am–5pm daily\n\n Google Map\n\nThis temple complex is popular with Buddhists, Confucianists and Taoists alike. ", "It's usually full of worshippers, so be respectful. ", "The main building is a replica of Beijing's Temple of Heaven. ", "The notices outside carry the latest soothsayers' wisdom on which signs in the Chinese horoscope are set for an auspicious year. ", "Try the tasty vegetarian food in the Institute's restaurant.", "\n\nYuen Yuen Institute\n\n## 9. ", "Tin Hau Temple\n\n Hang Hau MTR, then minibus 16 towards Po Toi O • Open 8am–5pm daily\n\n Google Map\n\nAt the far end of Clearwater Bay sits the oldest of Hong Kong's temples dedicated to the sea goddess Tin Hau. ", "The descent to it through a patch of forest is eerily quiet. ", "Inside the temple, spirals of incense drop ash onto models of fishing boats.", "\n\n## 10. ", "Tsing Shan Monastery\n\n Castle Peak, Tuen Mun • West Rail Line to Tuen Mun • Open 6am–6pm Mon–Sun\n\n Google Map\n\nThe 2-km (1-mile) walk from the nearby light railway station is hard, but this is a nice outing to relieve stress if the bustle of Hong Kong is getting to you. ", "Suck in some fresh sea air and let the chanting of the monks soothe your soul.", "\n\n### SAVING THE SANCTUARY\n\nThe New Territories' Mai Po Marsh is a world-class site of ecological significance, with more than 90,000 birds stopping there on migratory routes each winter. ", "Kingfishers, herons and cormorants abound, and the marsh is one of the last habitats for the near-extinct black-faced spoonbill and Saunders' gull. ", "Hong Kong's premier birdwatchers' paradise has been the subject of fierce debate and hard-fought battles between staunch environmentalists and developers desperate for scarce new land. ", "The environmentalists, fortunately, have the upper hand. ", "The biggest danger is pollution and industrial waste seeping into the marsh from factories at nearby Deep Water Bay.", "\n\n### A DAY IN THE NEW TERRITORIES\n\n### Morning\n\nTake the MTR to **Kowloon Tong** , then switch to the East Rail Line train. ", "Get off at **Tai Po Market** station, and take the 64 bus or a taxi to **Lam Tsuen**. ", "This is home to the **Wishing Trees**. ", "Buy a red paper strip from nearby stalls, write down your wish, then affix it to the adjacent boards.", "\n\nHead back to the East Rail Line, and proceed to Fanling station. ", "Take the 54K bus to Lung Yeuk Tau, start of the **Lung Yeuk Tau Heritage Trail**. ", "This takes you through the five famous walled villages of the New Territories, which were built by ancient clans as safe havens from bandits. ", "The walk takes a couple of hours, and provides a fascinating insight into what life once was like in these parts.", "\n\n### Afternoon\n\nTake a bus or taxi back to the East Rail Line, and travel on to **Sha Tin station**. ", "A short cab ride away is the **Lung Wah Hotel** , on 22 Ha Wo Che Street, which isn't a hotel any more, but a restaurant. ", "This eating house has been going strong for more than 50 years, so they must be doing something right (though don't expect polite service).", "\n\nIf you are in **Sha Tin** on a weekend between September and June, head off to the **racecourse** for an evening of thundering hooves.", "\n\nOn weekdays or out of the racing season, check out Sha Tin's excellent places to shop at New Town Plaza.", "\n\n Back to The New Territories\n\n Back to Hong Kong Area by Area\n\n# Historic Villages And New Towns\n\n## 1. ", "Sai Kung\n\n Google Map\n\nQuaint fishing village turned expatriate haunt. ", "Pubs with names such as The Boozer and the Duke of York are offset by old Chinese men playing mahjong in tiny cafés.", "\n\nMarket stalls, selling fish straight off the boat, line the waterfront at Sai Kung\n\n## 2. ", "Tsuen Wan\n\n Google Map\n\nThis is the terminus of the MTR line and a perfect example of new town overcrowding. ", "Worth a look just to see Hong Kong life at its bleakest.", "\n\n## 3. ", "Sha Tin\n\n Google Map\n\nLess grim version of Tsuen Wan, with a massive shopping centre. ", "Home to Hong Kong's second racetrack.", "\n\n## 4. ", "Fanling\n\n Google Map\n\nFanling's Tang Chung Ling ancestral hall belongs to the foremost clan in the New Territories. ", "The Lung Yeuk Tau Heritage Trail is nearby.", "\n\n## 5. ", "Sheung Shui\n\n Google Map\n\nHome to another of the main local clans, the Liu. ", "From here, it's a quick cab ride to Lok Ma Chau, one of the border crossings with China, where the towering skyline of Shenzhen looms through the smog. ", "This is the location of another ancestral hall.", "\n\n## 6. ", "Tsang Tai Uk\n\n Google Map\n\nThis stronghold of the Tsang clan dates back to 1848 and is built in typical Hakka style, with thick walls and a defensive tower in each corner. ", "Dozens of families still live here.", "\n\n## 7. ", "Kam Tin\n\n Google Map\n\nThe name of this town means \"brocade field\", although little farming takes place here these days. ", "Nearby are two traditional walled villages, Kat Hing Wai and Shui Tau.", "\n\n## 8. ", "Ping Kong\n\n Google Map\n\nOff the beaten track, and therefore its walled village is less busy than others. ", "The tiny Tin Hau Temple was featured in Jackie Chan's cult martial arts comedy _Project A_.", "\n\n## 9. ", "Tap Mun Chau\n\n Ferry 8:30am–6:30pm daily\n\n Google Map\n\nOne of the New Territories' best-kept secrets. ", "Picturesque little island where villagers watch the world go by from their quaint homes.", "\n\n## 10. ", "Tai Po\n\n Google Map\n\nIts market and Railway Museum are worth a quick look, before making your way to scenic Plover Cove.", "\n\n Back to The New Territories\n\n Back to Hong Kong Area by Area\n\n# Areas Of Natural Beauty\n\n## 1. ", "Plover Cove\n\n Google Map\n\nThis isn't actually a cove, at least, not any more. ", "In fact it's a massive reservoir which was created by building a dam across the mouth of the bay, then pumping all the seawater out and pumping in fresh water from China. ", "Hike or bike the trails. ", "Maps from HKTB.", "\n\nIdyllic Plover Cove\n\n## 2. ", "Bride's Pool\n\n Google Map\n\nStunning waterfalls plunge into the pool amid the lush forest. ", "Take a camera and wear sensible shoes.", "\n\n## 3. ", "Tai Po Kau\n\n Google Map\n\nThis forest reserve near the Chinese University is popular with serious birdwatchers and hikers.", "\n\n## 4. ", "San Mun Tsai\n\n Google Map\n\nA charming fishing village perched between verdant hills and sparkling Plover Cove. ", "Check out the local fisherfolks' floating homes with their dodgy wiring.", "\n\n## 5. ", "Tai Mo Shan\n\n Google Map\n\n\"Big fog-shrouded mountain\" is the translation, although on many days the peak of Hong Kong's tallest mountain is visible. ", "It reaches 957 m (3,139 ft) – quite a hike to the top, but superb views await the intrepid.", "\n\n## 6. ", "Mai Po Marsh\n\n www.wwf.org.hk\n\n Google Map\n\nThe marsh on the western edge of the New Territories is a bird sanctuary and nature reserve _(seeMai Po Marsh)_.", "\n\n## 7. ", "Clearwater Bay\n\n Google Map\n\nVarious walks and beaches are on offer here. ", "From Tai Au Mun, you can walk to the less than inspiringly named Clearwater Bay Beach One and Beach Two or Lung Ha Wan (Lobster Bay). ", "There are occasional shark sightings during the summer, so beware before taking a swim.", "\n\n## 8. ", "Long Ke Wan\n\n Google Map\n\nRelatively inaccessible little gem of a beach. ", "Don't get too carried away with the view as you descend the vertiginous goat track, or you may find yourself at the bottom sooner than you intended.", "\n\n## 9. ", "Ma On Shan\n\n Google Map\n\nThe mountain's name means \"saddle\", a reference to its shape. ", "Popular with hikers _(seeMa On Shan)_.", "\n\n## 10. ", "Tai Long Wan\n\n Google Map\n\nHong Kong's finest beach, on the beautiful Sai Kung Peninsula. ", "Take a good map and lots of water before setting off _(seeTai Long Wan Coastline)_.", "\n\nTurquoise waters of Tai Long Wan\n\n# Places To Shop\n\n## 1. ", "IKEA\n\n L6 HomeSquare, 138 Sha Tin Rural Committee Rd, Sha Tin\n\n Google Map\n\nEven those who are not normally fans of the Swedish chain will find the wide array of made-in-China goods attractive.", "\n\n## 2. ", "Citylink Plaza\n\n Sha Tin Station\n\n Google Map\n\nThis mall offers a wider range of more affordable brands than the nearby New Town Plaza.", "\n\n## 3. ", "New Town Plaza\n\n 18–19 Sha Tin Centre Street, Sha Tin\n\n Google Map\n\nThis is the place to come to in Sha Tin for designer brands and high-end shopping. ", "There are also cinemas and plenty of restaurants and a rose garden. ", "An added attraction is Snoopy's World for kids, a small outdoor theme park featuring all the _Peanuts_ characters.", "\n\n## 4. ", "Overjoy Porcelain Factory\n\n 1/F Block B, Kwai Hing Industrial Building, 10 Chun Pin St, Kwai Chung • 2487 0615\n\n Google Map\n\nThere are hundreds of patterns on offer, making this the perfect place to buy your dinner service.", "\n\n## 5. ", "Tai Po's Produce Markets\n\n East Rail Line to Tai Po Market Station, then follow signs to temple\n\n Google Map\n\nTai Po is packed with atmospheric markets; those outside Fu Shin Street's Man Mo Temple are the best.", "\n\nStall at Tai Po's Produce Markets\n\n## 6. ", "UNIQLO\n\n Shop 225, 2/F New Town Plaza, Sha Tin\n\n Google Map\n\nHigh-quality, but affordable Japanese clothing store. ", "It has 18 branches all over Hong Kong.", "\n\n## 7. ", "Marks & Spencer\n\n Shop 428, 438, 4/F New Town Plaza, Sha Tin\n\n Google Map\n\nSensible shoes, comfortable underwear and comfort food for homesick Britons.", "\n\nMarks & Spencer\n\n## 8. ", "Bossini\n\n A107–A108, Level 1 New Town Plaza, Sha Tin\n\n Google Map\n\nBig branch of the cut-price chain store. ", "Stock up on comfy cotton T-shirts, socks and khakis.", "\n\n## 9. ", "Hang Heung Bakery\n\n 66 Castle Peak Rd, Yuen Long\n\n Google Map\n\nHong Kong's most popular baker of \"wife cakes\", a flaky pastry filled with red-bean paste. ", "These traditional confections are _de rigueur_ at Chinese wedding ceremonies.", "\n\n## 10. ", "Wing Wah Bakery\n\n 86 Castle Peak Rd, Yuen Long\n\n Google Map\n\nHong Kong's premier purveyor of moon cakes. ", "These rich pastry treats are eaten during the Mid-Autumn festival. ", "The egg yolks in the centre represent the full moon, although other fillings are available.", "\n\n Back to The New Territories\n\n Back to Hong Kong Area by Area\n\n# Places To Drink\n\n## 1. ", "After 5\n\n Shop A, 5 Mei Sun Ln, Tai Po • 2663 3551\n\n Google Map\n\nThe most popular of Tai Po's few Western-style bars, with cold beers from around the world. ", "Steer clear of the overpriced wine list. ", "If you're hungry, try the stewed pork hock.", "\n\n## 2. ", "Anthony's Ranch\n\n 28 Yi Chun St, Sai Kung • 2791 6113\n\n Google Map\n\nWatch sports over an ice-cold beer while chewing on \"Real Texas Smoke House\" food such as barbecue ribs, brisket and pulled pork.", "\n\n## 3. ", "The Picture House\n\n 66 Yi Chun Street, Sai Kung\n\nThis little place serves wines and cocktails, along with flat breads, salads and Western-style snacks.", "\n\n## 4. ", "Poets\n\n G/F 55 Yi Chun St, Sai Kung • 2791 7993\n\n Google Map\n\nDon't let the name fool you. ", "Loud discussions about the previous night's Premier League football matches are more likely than pompous declamations in iambic pentameter at this British-style pub.", "\n\n## 5. ", "The Boozer\n\n 57 Yi Chun St, Sai Kung\n\n Google Map\n\nMuch of Sai Kung's expatriate population can be found playing darts or watching sport on flat-screen TVs, while eating food brought in from the numerous neighbouring restaurants.", "\n\n## 6. ", "Bacco\n\n 21 Man Nin St, Sai Kung • 2574 7477\n\n Google Map\n\nFor a more sophisticated experience head to Bacco, where you can sample their extensive list of wines by the bottle or the glass. ", "Upstairs is JoJo, an Indian restaurant run by the same management team.", "\n\n## 7. ", "Regal Riverside Hotel\n\n 34–36 Tai Chung Kiu Rd, Sha Tin • 2649 7878\n\n Google Map\n\nThree bars are on offer at this monolithic hotel – one lively and sports-oriented, the others more casual with great cocktail menus. ", "All offer a respite from a hard day's shopping in New Town Plaza.", "\n\n## 8. ", "Tikitiki Bowling Bar\n\n 4/F, Centro, 1A Chui Tong Rd, Sai Kung\n\n Google Map\n\nThis is a perfect place for a family outing. ", "The decor is stylish and it features a restaurant, two bars and ten bowling lanes. ", "There's also a DJ, and live bands perform too.", "\n\n## 9. ", "Casa Tapas Bar\n\n G/F Sui Yat, Hoi Pong Square, Sai Kung • 2440 9288\n\nHead here for a modern take on tapas, washed down with craft beers, ciders and boutique wines. ", "There is also live music and outside seating just steps from the waterfront.", "\n\nCasa Tapas Bar\n\n## 10. ", "Padstow\n\n 112 Pak Sha Wan, Sai Kung • 2335 5515\n\nThere is a lovely colonial feel to this two-storied, balconied building, painted sky blue. ", "Upstairs, the sea-view tables offer a perfect spot to enjoy a drink. ", "Good for weekend brunches.", "\n\n Back to The New Territories\n\n Back to Hong Kong Area by Area\n\n# Cheap Eats\n\n## 1. ", "Pepperoni's\n\n 1592 Po Tung Rd, Sai Kung • 2791 1738 • $$\n\n Google Map\n\nOne of the first decent Western-style restaurants in Sai Kung, it serves huge portions and has a relaxed ambience. ", "Offers pizza, pasta, nachos, calamari alongside a good wine selection.", "\n\nPepperoni's\n\n## 2. ", "New Tak Kee Seafood Restaurant\n\n 55 See Cheung St, Sai Kung • 2792 0006 • $$\n\n Google Map\n\nBuy your seafood from the market opposite or straight from the boats at the dock and simply pay the restaurant HK$70 per dish to cook it in your choice of Cantonese style.", "\n\n## 3. ", "Lardos Steak House\n\n G/F 4B Hang Hau Village, Tseung Kwan O, Sai Kung • 2719 8168 • $$ (set lunch menu under $100)\n\n Google Map\n\nSteaks are cooked to perfection by an owner who supplies Hong Kong's best hotels with their meat.", "\n\n## 4. ", "Ali-Oli Bakery Café\n\n 11 Sha Tsui Path, Sai Kung • 2791 2348 • $\n\nThis small bakery serves big breakfasts and pasta dishes, as well as the usual café fare, including sandwiches and croissants.", "\n\n## 5. ", "Fuk Man Road\n\n Sai Kung • $\n\n Google Map\n\nThis road runs from the centre of town to the bus stations and is lined with noodle restaurants for the locals; dishes are usually served with brisket or offal so be careful what you order.", "\n\n## 6. ", "Yau Ley\n\n High Island, Sai Kung • No credit cards • 2791 1822 (booking rec) • www.yauleyseafood.com.hk • $$ (set menu only)\n\n Google Map\n\nFabulous seafood set menus in a little restaurant nestling in Sha Kiu village, reachable by road, hiking, ferry or the restaurant's boat.", "\n\n## 7. ", "Balcony\n\n 3/F Kowloon Panda Hotel, 3 Tsuen Wah St, Tsuen Wan • 2409 3226 • $$\n\n Google Map\n\nStuff yourself with cut-price pasta from the set menus and marvel at the mediocre service.", "\n\n## 8. ", "AJ's Sri Lankan Cuisine\n\n 14 Sai Kung Hoi Pong St • 2792 2555 • Closed Mon • $$\n\n Google Map\n\nLight and tasty curries from the Indian Ocean can be enjoyed at Hong Kong's only Sri Lankan restaurant.", "\n\n## 9. ", "Honeymoon Dessert\n\n 10A–C Po Tung Road, Sai Kung • 2792 4991 • $\n\n Google Map\n\nGood-sized portions of various traditional desserts, with durian eaters segregated so as not to offend others with the strong smell of the fruit. ", "Open until late.", "\n\n## 10. ", "Shaffi's Indian\n\n 14 Fau Tsoi St, Yuen Long • 2476 7885 • $\n\n Google Map\n\nThis long-standing Indian diner is considered a Hong Kong institution. ", "Founded in 1972, the restaurant would serve curries to the British soldiers at their Shek Kong base. ", "It offers tasty and affordable lunchtime set menus.", "\n\n Back to The New Territories\n\n Back to Hong Kong Area by Area\n\n# Restaurants\n\n## 1. ", "Jaspa's\n\n 13 Sha Tsui Path, Sai Kung • 2792 6388 • $$\n\n Google Map\n\nGood fusion food, friendly staff and lots of antipodean wines at reasonable prices. ", "Part of a chain.", "\n\n## 2. ", "Tung Kee Seafood Restaurant\n\n 9/F, 96–102 Man Nin St, Sai Kung • 2792 7453 • $$\n\n Google Map\n\nPoint at what you want from the huge range of sea creatures swimming in waterfront tanks and haggle a bit. ", "They bag it and cook it for you. ", "One of the best seafood meals in Hong Kong.", "\n\n## 3. ", "Loaf On\n\n 49 Market St, Sai Kung • 2792 9966 • $$\n\n Google Map\n\nSai Kung's first Michelin-starred restaurant serves authentic Cantonese cuisine. ", "Some locals claim the seafood dishes are the equal of any Hong Kong restaurant.", "\n\n## 4. ", "Royal Park Chinese\n\n 2/F Royal Park Hotel, 8 Pak Hok Ting St, Sha Tin • 2694 3939 • $$\n\n Google Map\n\nClassy Cantonese cooking – not an easy thing to find in Sha Tin. ", "Specialities include dim sum, seafood and crispy chicken.", "\n\n## 5. ", "Tao Heung\n\n Shop A, Fuller Garden, 8 Chui Lok St, Tai Po • 8300 8127 • $\n\n Google Map\n\nBright, noisy dim sum restaurant in Tai Po, serving all the favourites: _har gau_ prawn dumplings, _cheung fun_ rice rolls and crispy _cha siu_ pastries.", "\n\n## 6. ", "Sham Tseng Yue Kee Roasted Goose Restaurant\n\n 9 Sham Tseng San Tsuen, Sham Tseng • 2491 0105 • $$\n\n Google Map\n\nLocals can't get enough of the stewed goose intestines, though the less exotic roast goose with salt and pepper is a better bet for tourists.", "\n\n## 7. ", "The Terrace\n\n 168 Che Keng Tuk Rd, Sai Kung • 2792 1436 • $$$\n\n Google Map\n\nA child-friendly restaurant that serves good Italian food. ", "Its terrace, after which it is named, offers a lovely view over the marina.", "\n\n## 8. ", "Sha Tin 18\n\n 18 Chak Cheung St, Sha Tin • 3723 7932 • $$\n\n Google Map\n\nIn the Sha Tin Hyatt Regency Hotel, this stylish Chinese restaurant is especially good for southern Chinese seafood and meat dishes. ", "There is a large outdoor terrace.", "\n\n## 9. ", "Tai Wing Wah\n\n 2–6 On Ning Rd, Yuen Long • 2476 9888 • $\n\n Google Map\n\nSpecializes in dim sum brunches and Poon Choi – a traditional New Territories casserole.", "\n\n## 10. ", "One Thirty-One\n\n 131 Tseng Tsau Village, Shap Sze Heung, Sai Kung • 2791 2684 • Closed Mon • $$$\n\n Google Map\n\nAccessible by road or private boat, this restaurant serves fixed menus from its own organic farm. ", "Book ahead.", "\n\nOne Thirty-One\n\nSee restaurant price categories\n\n Back to The New Territories\n\n Back to Hong Kong Area by Area\n Back to Hong Kong Area by Area\n\n# OUTLYING ISLANDS\n\nHong Kong is often perceived as a city rather than an archipelago, but there are 260 islands in the group and, assuming you can haul yourself out of the downtown bars and boutiques, some of the territory's most sublime experiences await you here. ", "Now that it is connected to the city by bridge, the largest of the islands, Lantau, is losing the quirky languor it once had, but the smaller islands offer plenty of compensation. ", "From the narrow lanes of Cheung Chau to the outdoor raves of Lamma's Power Station Beach, Hong Kong's islands give you many opportunities to lose yourself.", "\n\n## 1. ", "Lantau: Mui Wo\n\n Ferries from Hong Kong Island\n\n Google Map\n\nSilvermine Bay, as the British named Mui Wo, is a good starting point from which to explore Lantau, though not the island's most beautiful spot. ", "Most of the restaurants and bars, plus a supermarket, are around the corner from the ferry pier. ", "There is also a beach 5 minutes' walk away. ", "Enjoy a beer or stock up for a picnic before walking, cycling or beachcombing.", "\n\nMui Wo beach, Lantau\n\n## 2. ", "Lantau: Tai O\n\n Google Map\n\nLying on the far western coast of Lantau, the pretty village of Tai O is worth the long haul from downtown Hong Kong. ", "Sitting in a tidal estuary, this is one of the last places in Hong Kong where you can see the traditional stilt housing of southern Chinese fishing villages. ", "Some are as small as dolls' houses. ", "For an authentic Hong Kong consumable, buy a jar of shrimp paste, a powerful type of fish sauce created by fermenting shrimp and spices in a barrel in the sun. ", "It's actually much better than it sounds.", "\n\n## 3. ", "Lantau: Sunset Peak\n\n Google Map\n\nFor the reasonably fit, Sunset Peak offers the finest views on Lantau. ", "The 934-m (3,063-ft) high mountain, Hong Kong's second highest, commands great views across Hong Kong, down onto the international airport, Po Lin Monastery and the lovely wooded valleys of this sparsely inhabited terrain. ", "Hardy souls stay at the nearby Youth Hostel and head up the peak for Hong Kong's most spectacular sunrise. ", "Obviously all this only applies in clear conditions.", "\n\nThe view from Sunset Peak, Lantau\n\n## 4. ", "Lantau: Trappist Monastery\n\n Google Map\n\nThe chapel, next to a dilapidated old dairy farm, is open to visitors willing to observe the silence of the monastery. ", "Apart from that, there's not much to see at the monastery itself, but it's a good excuse for a gentle woodland walk to or from Discovery Bay. ", "The monastery is also served by a ferry pier, with infrequent _kaido_ (small ferry) services to Discovery Bay and the island of Peng Chau, which has many seafood restaurants.", "\n\nAn aerial view of Discovery Bay on Lantau\n\n## 5. ", "Lamma: Sok Kwu Wan\n\n Regular ferries from Hong Kong Island\n\n Google Map\n\nDon't expect many sights in Lamma's main area of development on the east coast of the island. ", "Sok Kwu Wan is known mainly for its quarry and the wall-to-wall seafood restaurants along its harbour front. ", "The seafood tanks are a sight in themselves, however, with some monster-sized fish and crustaceans. ", "There's not much to differentiate the restaurants, although the standard is generally very good. ", "Have a look at the pretty Tin Hau Temple at the end of the main street. ", "The lovely 5-km (3-mile) circular walk to the sleepy, remote village and beach at Yung Shue Ha is recommended for the reasonably fit.", "\n\nSeafood in Sok Kwu Wan\n\n## 6. ", "Lamma: Yung Shue Wan\n\n Regular ferries from Hong Kong Island\n\n Google Map\n\nThe western coast of Lamma also has a harbour, with lots of bars and eating choices along the endearingly ramshackle main street of the village. ", "Watch villagers, resident expats and fellow visitors wander by, before hitting the well-kept beach at Hung Shing Ye, which is a 20-minute walk to the southwest.", "\n\n## 7. ", "Cheung Chau Island\n\n Google Map\n\nThis former pirate haven retains much of its traditional character, from the small-scale shipyards at the harbour's edge to the old temples and shrines that dot its narrow alleys. ", "With many of its inhabitants still being fishermen, it's a good destination for cheap seafood. ", "There are also a couple of excellent beaches _(seeCheung Chau Island)_.", "\n\nAn aerial view of Cheung Chau's verdant coastline\n\n## 8. ", "Tap Mun\n\n Ferries from Wong Shek and Ma Liu Shui\n\n Google Map\n\nTo the north of the Sai Kung Peninsula, tiny Tap Mun, also known as \"grass island\", is another remote destination with only a couple of daily connections with the mainland. ", "The rewards are striking rock formations, pounding seas, a herd of cattle and relative seclusion. ", "The island's Tin Hau Temple is surprisingly large and beautiful. ", "Take a picnic, as there are few eating opportunities. ", "Nor is there any accommodation on the island, so be sure to catch that last ferry.", "\n\n## 9. ", "Po Toi\n\n Ferry from Stanley or Aberdeen Tue, Thu, Sat, Sun & public hols\n\n Google Map\n\nGetting to this barely inhabited outcrop of rock south of Hong Kong Island is most easily accomplished by taking the small ''kaito'' ferries that run from Stanley and Aberdeen. ", "It's worth the effort for the secluded walks and spectacular cliff views over the South China Sea. ", "Round off your day with a meal at the island's only restaurant, Ming Kee Seafood.", "\n\nA rock formation on Po Toi\n\n## 10. ", "Peng Chau\n\n Ferries from Hong Kong Island\n\n Google Map\n\nThis tiny island remains in many ways a traditional coastal community. ", "You wander among its narrow alleys, tiny shops and temples to the gentle soundtrack of a distant game of mahjong or Cantonese opera leaking from an old radio. ", "However, there's no beach, and few eating choices, though the seafood is cheap.", "\n\n### Lantau's Pink Dolphins\n\nThe endangered dolphins of the Pearl River Delta can usually be found at play near the coast of Lantau. ", "A guided boat trip to see them is certainly worthwhile. ", "Learn about the lives of these creatures and the threats they face, including pollution, overfishing and lethal boat propellers and hydrofoils. ", "Tours leave at least four times a week _(seeDolphin Watching)_.", "\n\n### A DAY ON LANTAU\n\n### Morning\n\nMake a reasonably early start for Lantau from the outlying islands ferry terminal on Hong Kong Island. ", "After disembarking at **Mui Wo** , take the No.1 bus from outside the ferry pier to the old fishing village of **Tai O** on the far northwestern coast.", "\n\nTake in the sights and smells of this ancient settlement before catching the No. ", "21 bus to Ngong Ping for the **Big Buddha and Po Lin Monastery** , or take a ride in the **Ngong Ping 360 Cable Car**.", "\n\nHave a vegetarian lunch at the monastery, or take a picnic. ", "The area around Ngong Ping is great for gentle rambles with a view, as well as some serious hill climbing up Lantau Peak.", "\n\n### Afternoon\n\nIf time still permits, take the bus back towards Mui Wo, but jump out at the fantastic, clean and usually deserted beach at **Cheung Sha** (ask the driver to let you know when). ", "Spend a relaxed afternoon paddling, swimming and sunbathing on this glorious stretch of golden sand.", "\n\nFrom here it's a short ride back into Mui Wo. ", "Slake your afternoon hunger at **The Stoep at High Tide** , which offers South African and Mediterranean food.", "\n\nBefore catching the return ferry, squeeze in a drink at the **China Bear** , a convivial bar near the ferry pier.", "\n\n Back to Outlying Islands\n\n Back to Hong Kong Area by Area\n\n# Photo Opportunities\n\n## 1. ", "Tai O Village, Lantau\n\n Google Map\n\nThe old fishing village on the remote northwest coast is the last settlement in the territory with a significant number of stilt houses, some almost as small as play houses _(seeLantau: Tai O)_.", "\n\n## 2. ", "Any Ferry Aft Deck\n\nGain some perspective on the dramatic skyline of the islands. ", "The Star Ferries offer the best chance to capture the dramatic skyscrapers of central Hong Kong.", "\n\n## 3. ", "Hatted Hakka Women\n\nThe large woven hats draped with a black cotton fringe come from the Hakka people, once a distinct ethnic group in the region. ", "Many women wear these traditional hats around Hong Kong, though not all wearers are ethnic Hakka.", "\n\n## 4. ", "Cheung Chau Harbour\n\n Google Map\n\nHandsome, high-prowed fishing boats, squat sampans and busy boatyards are just some of the sights found here _(seeCheung Chau Harbour)_.", "\n\n## 5. ", "Big Buddha on Lantau\n\n Google Map\n\nIf the landscape wasn't enough, the mighty Buddha cements this island's photogenic status _(seeBig Buddha on Lantau)_.", "\n\nBig Buddha statue on Lantau Island\n\n## 6. ", "Ngong Ping 360 Cable Car\n\n Lantau Island • 3666 0606 • Adm • www.np360.com.hk\n\n Google Map\n\nThe 25-minute cable-car ride provides one of the best photo opportunities in Hong Kong. ", "From the car, you can see out over Lantau North Country Park, the South China Sea, Hong Kong International Airport, the Tung Chung Valley and the rest of the surrounding area _(seeNgong Ping 360 Cable Car)_.", "\n\n## 7. ", "Lamma Restaurants' Seafood Tanks\n\nThe restaurants display the subject of their menus alive and swimming in outdoor fish tanks. ", "You'll see some edible leviathans here – from monster grouper fish to giant lobsters and an array of other fidgeting crustacea and teeming sea life _(seeLamma: Sok Kwu Wan)_.", "\n\n## 8. ", "View of Airport from Lantau Peak\n\n Google Map\n\nTake a powerful lens on a clear day to get decent shots of the airport from Lantau Peak. ", "The summit also offers terrific views down onto the monastery and surrounding country.", "\n\n## 9. ", "Hong Kong Airport Planespotters Platform\n\n Google Map\n\nThere's no official viewing area at the airport, so take a taxi or walk to the small hill (the only natural part of this man-made island) just opposite Tung Chung town. ", "There's a footpath to the summit and its pagoda.", "\n\n## 10. ", "Tsing Ma Bridge Lookout Point\n\n Google Map\n\nIf big construction projects are your subjects of choice, then head to the free Airport Core Programme Exhibition Centre in Ting Kau. ", "The viewing platform on the roof offers a great opportunity to photograph the elegant Tsing Ma and Ting Kau bridges.", "\n\n Back to Outlying Islands\n\n Back to Hong Kong Area by Area\n\n# Places To Eat And Drink\n\n## 1. ", "Tin Yin Dessert, Cheung Chau\n\n 9 Tai Hing Tai Rd • No credit cards • Closed Mon • $\n\n Google Map\n\nWaterside canteen serving refreshing and unusual treats – try the sago with jelly and coconut milk.", "\n\n## 2. ", "China Bear, Lantau\n\n G/F, Mui Wo Centre • 2984 9720 • $$\n\n Google Map\n\nMissed the ferry? ", "Never mind. ", "Nip around the corner for the cheap lunch specials and 30 kinds of bottled and draught beer.", "\n\nChina Bear, Lantau\n\n## 3. ", "McSorley's Ale House, Lantau\n\n Shop G11A, G/F D'Deck, Discovery Bay • 2987 8280 • $$\n\n Google Map\n\nPopular with home-sick expats craving the taste of familiar dishes, such as fish and chips, pies, curries and hearty Sunday roasts. ", "There's also Guinness and a choice of real ales to wash it all down.", "\n\n## 4. ", "Cheung Chau Windsurfing Centre Outdoor Café, Cheung Chau\n\n 1 Hai Pak Rd, Cheung Chau • 2981 8316 • Closed D and Wed • $\n\n Google Map\n\nThe \"all-day\" breakfast, snacks and mainly Western starters are good enough, but not as good as the view.", "\n\n## 5. ", "The Stoep at High Tide, Lantau\n\n Shop 2, Riverwalk, 6 Ngan Kwong Wan Rd, Mui Wo • 2980 2699 • $\n\n Google Map\n\nLocated on the waterfront, this restaurant serves popular Mediterranean and South African dishes. ", "Try the cold, Cape-style curried fish.", "\n\n## 6. ", "Rainbow Seafood, Lamma\n\n 16–20 First Street, Sok Kwu Wan • 2982 8100 • $$\n\n Google Map\n\nOne of Lamma's better places for a full seafood splurge with a harbour view. ", "Very popular with the locals.", "\n\n## 7. ", "Bookworm Café, Lamma\n\n 79 Yung Shue Wan Main Street • 2982 4838 • $\n\n Google Map\n\nThis place wears its organic, veggie and vegan heart on its sleeve, with its twee slogans to peace, love and tofu on its walls. ", "The service is friendly and the fresh food and fruit juices are exceptional.", "\n\n## 8. ", "Lamma Seaview Man Fung Seafood, Lamma\n\n 5 Main St, Yung Shue Wan • 2982 0719 • $$$\n\nNeither the best nor the cheapest seafood on Lamma, but the setting – overlooking the bay – is superb.", "\n\n## 9. ", "Cheung Kee, Cheung Chau\n\n 83 Praya St • 2981 8078 • No credit cards • $\n\n Google Map\n\nSomewhat shabby premises, but the noodles, dumplings and wontons are just right. ", "There's no signage in English, but it's easy to find, just by the ferry pier – look for the sign \"1959\".", "\n\n## 10. ", "Ming Kee Seafood, Po Toi\n\n Tai Wan • 2849 7038 • No credit cards • $$\n\n Google Map\n\nRun by a restaurateur and his daughters, this is Po Toi's best restaurant. ", "Reach it by junk or from Stanley and Aberdeen _(seePo Toi)_.", "\n\nSee restaurant price categories\n\n Back to Outlying Islands\n\n Back to Hong Kong Area by Area\n Back to Hong Kong Area by Area\n\n# MACAU\n\nGambling is indisputably the main scene in Macau – it claims to earn more revenue from its 30-odd casinos than Las Vegas does – catering mainly to weekend visitors from Hong Kong and, increasingly, mainland China. ", "However, the Portuguese also had 400 years of rich history here, leaving behind whole districts of cobbled lanes and impressive Iberian architecture. ", "The indigenous cuisine, which fuses together Chinese and Portuguese elements, is another draw.", "\n\n## 1. ", "Avenida da República\n\n Google Map\n\nThe graceful boughs of banyan trees stretch over this elegant avenue, shading its candy-coloured pageant of colonial-era architecture. ", "Unlike in Hong Kong, many of Macau's historic piles survive in excellent condition. ", "At the gorgeous fort-turned-hotel of Pousada de São Tiago, the road becomes Rua de S. Tiago da Barra; follow it to the A-Ma Temple and the Maritime Museum.", "\n\nA-Ma Temple, near Avenida da República\n\n## 2. ", "Guia Lighthouse\n\n Google Map\n\nThe most visible of Macau's landmarks has kept its lonely vigil on Guia Hill since 1638, its flashing beacon beckoning to everyone from Portuguese traders to ferocious pirates and marauding Dutch navy boats. ", "Catch the cable car up the hill, take in the 360-degree panorama from Macau's highest point and enjoy a leisurely stroll back down.", "\n\nGuia Lighthouse, Macau's highest point\n\n## 3. ", "Ruinas de São Paulo\n\n Museum of Sacred Art: Open 9am–6pm daily (last adm 5:30pm); closed Tue pm\n\n Google Map\n\nThe façade and mosaic floor are all that remain of Macau's grandest church, perched atop a flight of stone steps and propped up by a viewing platform. ", "In its heyday, it was hailed as the greatest monument to Christianity in the East. ", "It caught fire during a typhoon in 1835, and only due to structural work in the early 1990s did the façade survive. ", "Portuguese influence is evident in the artifacts in the Museum of Sacred Art's collection.", "\n\nRuinas de São Paulo\n\n## 4. ", "Largo do Senado\n\n Leal Senado: 163 Avenida Almeida Ribeiro. ", "Open 9am–9pm Tue–Sun\n\n Google Map\n\nBrightly painted Colonial buildings and slightly psychedelic paving make this square in the heart of Macau a favourite with photographers. ", "At one end sits the Leal Senado, or Loyal Senate, now the seat of the municipal government but once the Portuguese headquarters. ", "It was thus named because Macau refused to recognize the 17th-century Spanish occupation of Portugal.", "\n\nThe colourful Largo do Senado\n\n## 5. ", "Cultural Centre\n\n Avenida Xian Xing Hai • 2870 0699 • Open 11am–7pm daily • www.ccm.gov.mo\n\n Google Map\n\nThis elegant building was designed and constructed in time for the December 1999 Handover to China. ", "In fact, the actual ceremony took place behind the centre in a temporary structure designed to look like a giant Chinese lantern. ", "The centre is the focal point for the Macau Arts Festival in March. ", "The only mystery is why there is what appears to be a ski jump on the roof.", "\n\n## 6. ", "Protestant Cemetery\n\n Open 8:30am–5:30pm daily\n\n Google Map\n\nMore interesting than it sounds – indeed, you might find yourself spending hours wandering this grave-dotted grove, reading inscriptions to plague-doomed sailors and colonial adventurers. ", "Those at rest include painter George Chinnery (the Mandarin Oriental's bar in Hong Kong is named after him) and Robert Morrison, the first Protestant to venture to China in search of converts.", "\n\n## 7. ", "Camões Garden and Grotto\n\n Praça de Luís de Camões • Open 6am–10pm daily\n\n Google Map\n\nThe author of the 16th-century Portuguese epic _The Lusiads_ may never have visited Macau, but don't try telling the local Portuguese. ", "Luís Vaz de Camões specialized in overblown, patriotic verse – a bust of him peers through the grotto's gloom. ", "Old men take their caged birds to the gardens in the morning.", "\n\n## 8. ", "Fortaleza do Monte\n\n Open 7am–7pm daily\n\n Google Map\n\nThese walls bounded the original Portuguese settlement in Macau – a well-stocked fort – which its inhabitants boasted could withstand years of siege. ", "The sternest test came in 1622 when the Dutch, who had coveted Macau for years, made their move, only to be decisively beaten. ", "The Portuguese military was based here up until 1966, at which point Portugal decided it was more politic to be administrators of Macau rather than gun-toting colonialists.", "\n\n## 9. ", "Dom Pedro V Theatre\n\n Largo de Santo Agostinho • Macau Tourism Office for performance details: 2833 3000 • Open 10am–6pm Wed–Mon\n\n Google Map\n\nThe first Western-style lyric theatre in the East, the Dom Pedro opened in 1858 designed in Neo-Classical style. ", "It is still used to host performances. ", "The hike up the hill is worth it for a look at a piece of theatrical history.", "\n\nFaçade of Dom Pedro V Theatre\n\n## 10. ", "St Joseph's Seminary and Church\n\n Rua do Seminario • Church: 10am–5pm daily; Seminary: closed to the public\n\n Google Map\n\nThe Jesuits constructed this chapel between 1746 and 1758, modelled on the Church of the Gesù in Rome. ", "Its dedication plaque lists Portuguese King João V, Macau Bishop Hilario de St Rosa and Chinese Qing-dynasty Emperor Qian Long. ", "The original bells still ring out, and fascinating Catholic artifacts can be found within.", "\n\nOrnate altar, St Joseph's Seminary\n\n### MACAU'S HISTORY\n\nMacau was settled by the Portuguese in 1557 as a trading base and centre for Christianity. ", "Colonial coats of arms can still be seen in Fortaleza do Monte. ", "Macau was nearly taken by the Dutch in 1622, and struggled to survive for the next 250 years. ", "The Portuguese tried to re-establish power in the mid-19th century, annexing neighbouring islands Taipa and Coloane. ", "It could never compete with Hong Kong, however, and gambling, opium and prostitution remained the main draws. ", "Mao rejected a Portuguese attempt to return the enclave in the 1970s, but it was eventually handed back to China in 1999.", "\n\n### A DAY IN MACAU\n\n### Morning\n\nCatch a taxi to the **Ruinas de São Paulo** in the heart of Macau, pose for a picture on the steps in front, then lose yourself in the surrounding streets full of Chinese and antiques shops. ", "The red lacquered trunks and cabinets, old teak tables and chairs are all cheaper than in Hong Kong's antiques shops.", "\n\nWhen your feet start to protest, take a cab across the causeways to Coloane island and a lunch at **Fernando's**. ", "Get a large jug of piquant sangria in, then go for the fried chicken, garlic prawns, clams and sardines. ", "The bread is hot and moreish, and the Portuguese salad is simplistic bliss.", "\n\n### Afternoon\n\nWalk off lunch on **Hac Sa Beach** or wobble your way to the minibus outside Fernando's and travel to **Taipa Village** , with its picturesque houses and shops.", "\n\nThen grab another taxi and head to the **Macau Tower** for magnificent views of Macau and across the sea to Taipa, Coloane and the Cotai Strip. ", "If you're feeling adventurous, you could try the Skywalk around the outer rim or even the bungee jump from the Observation Deck.", "\n\nIf you have the stamina, make your way to **Avenida Dr Sun Yat Sen** and its many bars for a night on the tiles or head to the swish bars and casinos of the **Cotai Strip** _(seeCity of Dreams)_.", "\n\n Back to Macau\n\n Back to Hong Kong Area by Area\n\n# The Best Of The Rest\n\n## 1. ", "Macau Tower\n\n Nam Van Lakes area • 2893 3339\n\n Google Map\n\nDominating Macau's skyline, this tower was built by casino mogul Dr Stanley Ho. ", "At 338 m (1,107 ft), it just beats the Eiffel Tower and forms the centre of a convention and restaurant complex. ", "The Skywalk and the glass-floored revolving restaurant are not for the faint of heart.", "\n\nMacau Tower, above Nam Van Lake\n\n## 2. ", "Pousada de Coloane\n\n Cheoc Van Praia, Coloane • 2888 2143\n\n Google Map\n\nMacau's first beachfront hotel is a top spot for a few cold drinks when the sun is shining.", "\n\n## 3. ", "Lou Lim Ieoc Garden\n\n 10 Estrada de Adolfo Loureiro • 6am–9pm daily\n\n Google Map\n\nShady trees, benches and lotus ponds; a good place to unwind.", "\n\n## 4. ", "Macau Museum\n\n Fortaleza do Monte • 2835 7911 • 10am–6pm Tue–Sun • Adm (free on Tue and 15th of each month)\n\n Google Map\n\nGood displays on the history and architecture of the region.", "\n\n## 5. ", "São Domingos\n\n Largo do Domingos • 10am–6pm daily\n\n Google Map\n\nThe pale yellow late 16th-century Spanish-style church towers over the Largo do Senado square. ", "White ants forced major renovations in the mid-1990s. ", "More than 300 sacred works of art are in the bell tower's museum.", "\n\n## 6. ", "A-Ma Temple\n\n Rua do Almirante Sergio • 7am–6pm daily\n\n Google Map\n\nImages of junks decorate this pretty collection of halls dedicated to the patron deity of sailors, after whom the name \"Macau\" is derived.", "\n\n## 7. ", "Rua da Felicidade\n\n Google Map\n\nThe \"street of happiness\" once teemed with brothels, hence its bestowed name. ", "It's now a quaint thoroughfare full of cheap eateries.", "\n\n## 8. ", "Maritime Museum\n\n Largo do Pagode da Barra • 2859 5481 • 10am–6pm Wed–Mon (last adm 5:30pm) • Adm\n\n Google Map\n\nThis is the place to head if you are interested in learning about Macau's colourful seagoing past.", "\n\n## 9. ", "Pousada de São Tiago\n\n Avenida da República • 2837 8111\n\n Google Map\n\nThe beautiful hotel _(seePousada de São Tiago)_ overlooking the bay began life in the 17th century as a Portuguese fort hewn from the rock.", "\n\n## 10. ", "Hac Sa Beach\n\n Coloane\n\n Google Map\n\nBlack-mineral-sand beach. ", "Enjoy a stroll around the headland to the Grand Coloane Resort for a drink.", "\n\n Back to Macau\n\n Back to Hong Kong Area by Area\n\n# Places To Gamble\n\n## 1. ", "Sands Cotai Central\n\n Estrada do Istmo • 2886 6888 • 24 hours daily\n\n Google Map\n\nThis resort combines 4 hotels, 20 dining options, shopping and gambling on a vast scale.", "\n\n## 2. ", "Sands\n\n Largo de Monte Carlo 203 • 2888 3388 • 24 hours daily\n\n Google Map\n\nThe first of the Vegas-style mega-casinos to arrive on the waterfront.", "\n\n## 3. ", "StarWorld Macau\n\n Avenida da Amizade • 2838 3838 • 24 hours daily\n\n Google Map\n\nThis luxurious hotel has a distinctive Asian style and a large casino with an impressive LED wall. ", "There are live shows every night.", "\n\n## 4. ", "City of Dreams\n\n Estrada de Istmo, Cotai Strip • 8868 6688 • 24 hours daily\n\n Google Map\n\nThis opulent mega-casino is aimed at those with a penchant for ostentatious interiors and deluxe facilities.", "\n\n## 5. ", "Grand Lisboa\n\n Avenida de Lisboa • 2828 3838 • 24 hours daily\n\n Google Map\n\nWhen casino mogul Dr Stanley Ho's original Lisboa hotel began to look dowdy, he built this extravagant party palace, complete with a giant casino and 15 restaurants, next door. ", "Nowhere says \"Macau bling\" quite like this huge golden tower.", "\n\nExtravagant Grand Lisboa hotel\n\n## 6. ", "The Venetian\n\n Estrada da Baía de N Senhora da Esperança, Taipa • 2882 8888 • 24 hours daily\n\n Google Map\n\nThe full Las Vegas experience has been transported to the tropics. ", "Live shows and big-brand shopping along air-conditioned streets provide a welcome break from gambling.", "\n\nIndoor shopping at The Venetian\n\n## 7. ", "MGM Grand\n\n Avenida Dr Sun Yat Sen, NAPE • 8802 8888 • 24 hours daily\n\n Google Map\n\nAn astonishing rippling façade, a fancy spa and a vast gambling hall in the style of a Portuguese town square can be found at MGM Grand.", "\n\n## 8. ", "Wynn\n\n Rua Cidade de Sintra, NAPE • 2888 9966 • 24 hours daily\n\n Google Map\n\nThis is one of the most lavish casinos in Macau. ", "The interior is decked out with floral carpets, extravagant chandeliers and plenty of colour.", "\n\n## 9. ", "Kam Pek Casino\n\n 51 Rua de Foshan • 24 hours daily\n\n Google Map\n\nThe loyal clientele of local punters here can be rude to tourists and flashy Hong Kongers.", "\n\n## 10. ", "Macau Jockey Club\n\n Estrada Gov Albano da Oliveira, Taipa • 2882 0868 • Race meetings Wed or Thu & Sat–Sun • Adm\n\n Google Map\n\nA bit less glamorous than its high-tech, cashed-up Hong Kong counterpart, but just as much fun.", "\n\n Back to Macau\n\n Back to Hong Kong Area by Area\n\n# Cafés, Bars And Clubs\n\n## 1. ", "Vida Rica Bar\n\n Mandarin Oriental Macau, Avenida Dr Sun Yat Sen\n\n Google Map\n\nGreat for watching Macau's movers and shakers, this extravagantly styled bar has an arty interior and fabulous harbour views.", "\n\nVida Rica Bar at the Mandarin Oriental Macau\n\n## 2. ", "SKY 21\n\n 21/F, AIA Tower, 251A–301 Avenida Comercial de Macau\n\n Google Map\n\nOn the top floor of an office block near the centre, SKY 21 has three sections – a dining area, a live music venue, plus a roof terrace with great views across the city and the sea. ", "Splurge, party, mingle, or simply spend some time under the stars.", "\n\n## 3. ", "Club CUBIC\n\n Level 2, The Boulevard, City of Dreams, Cotai\n\n Google Map\n\nRather fabulous Hong Kong-owned club, with live DJs and cocktails at the weekend. ", "A good place for celebrity-spotting.", "\n\n## 4. ", "360 Café\n\n 60/F Macau Tower, Lago San Vai\n\n Google Map\n\nThis revolving bar, restaurant and café at the top of the Macau Tower boasts peerless views over the old city, the sea and islands.", "\n\n## 5. ", "Oskar's Bar\n\n G/F Holiday Inn Hotel, Rua de Pequim\n\n Google Map\n\nA mix of tourists and locals gather at this typical hotel-style bar, as well as the odd exponent of the world's oldest profession. ", "Major sports events are shown on flat-screen TVs.", "\n\n## 6. ", "Vasco\n\n 2/F Grand Lapa Hotel, Avenida da Amizade\n\n Google Map\n\nEnjoy tasty tapas-style fare and imaginative cocktails at Vasco. ", "Best for a quiet evening drink.", "\n\n## 7. ", "CheChe Café\n\n B/F, 70A Rua Tomás Vieira\n\n Google Map\n\nA low-key joint frequented by both locals and expats who come to socialize and have fun.", "\n\n## 8. ", "D2\n\n Macau Fisherman's Wharf, Edf. ", "New Orleans III\n\n Google Map\n\nOne of the city's liveliest dance clubs, D2 features a mix of music, with bar-top pole dancers at weekends.", "\n\n## 9. ", "Flame Bar\n\n Level 2, Hard Rock Hotel, City of Dreams, Cotai\n\n Google Map\n\nA fine selection of cocktails and an irrepressibly upscale party vibe feature at this lounge and club. ", "Great fun if your credit card is up to it.", "\n\n## 10. ", "Casablanca Café\n\n Av. ", "Dr Sun Yat Sen\n\n Google Map\n\nThere's a pool table, lots of red velvet and posters recalling the famous film. ", "Enjoy the in-house music, but resist the temptation to say \"play it again, Sam\" to the staff.", "\n\n Back to Macau\n\n Back to Hong Kong Area by Area\n\n# Places To Eat\n\n## 1. ", "The Eight\n\n 2/F Grand Lisboa, Avenida de Lisboa • 8803 7788 • $$$\n\n Google Map\n\nEnjoy superb Chinese food at this modern, lavish restaurant with three Michelin stars. ", "One of 15 dining options at the Grand Lisboa.", "\n\n## 2. ", "A Lorcha\n\n Rua do Almirante Sergio 289 • 2831 3193 (booking rec) • $$\n\n Google Map\n\nA fine proponent of Macanese cooking, which blends the cuisines of East and West. ", "Specialities include the spicy grilled African chicken, _bacalhau_ (baked codfish) and _caldo verde_ (potato purée soup).", "\n\n## 3. ", "Litoral\n\n Rua do Almirante Sergio 261 • 2896 7878 • $$\n\n Google Map\n\nThis is the best Macanese restaurant in town – try the excellent African Chicken or stuffed prawns.", "\n\n## 4. ", "Solmar\n\n Avenida da Praia Grande 512 • 2857 4391 • $$\n\n Google Map\n\nAn old favourite among locals. ", "Try the rich seafood soup with chunks of codfish that melt in your mouth.", "\n\n## 5. ", "Ou Mun\n\n 12 Travesa de Sao Domingos • 2837 2207• $$\n\n Google Map\n\nThe best place in town for heart-starting morning coffee and pastries.", "\n\n## 6. ", "Robuchon au Dôme\n\n 43/F Grand Lisboa, Avenida de Lisboa • 8803 7878 • $$$\n\n Google Map\n\nThis exquisite fine-dining parlour boasts not only three Michelin stars but also superlative city views.", "\n\n## 7. ", "Clube Militar de Macau\n\n Avenida da Praia Grande 975 • 2871 4000 • $$\n\n Google Map\n\nBuilt to cater for army bigwigs, the Military Club is one of the best examples of classical European architecture in Asia. ", "Gourmet Portuguese cuisine and vegetarian options available.", "\n\n## 8. ", "Espaco Lisboa\n\n Rua dos Gaivotas 8, Coloane • 2888 2226 • $$\n\n Google Map\n\nTucked away in a Coloane village and presided over by the Portuguese chef-owner, this rustic restaurant is a reminder of pre-development, sleepy Macao.", "\n\n## 9. ", "Tim's Kitchen\n\n Hotel Lisboa, 2–4 Avenida de Lisboa • 8803 3682 • $$$\n\n Google Map\n\nWith one Michelin star, this Cantonese restaurant is less flashy than some of the glitzy ones in town, but its delicious signature seafood dishes are highly regarded.", "\n\n## 10. ", "Fernando's\n\n Praia Hac Sa 9, Coloane • 2888 2264 (booking recommended) • No credit cards • $$\n\n Google Map\n\nThis is the perfect place for a long, lazy lunch. ", "Succulent roast chicken, grilled sardines, killer sangria and garlic prawns to die for. ", "Shady, outdoor seating for cooler days.", "\n\nOutdoor seating at Fernando's\n\nSee restaurant price categories\n\n Back to Macau\n\n Back to Hong Kong Area by Area\n Back to Hong Kong Area by Area\n\n# SHENZHEN\n\nWithin living memory, Shenzhen, just across the border of the New Territories, was a minor township in communist China, its communal fisheries set in extraordinary juxtaposition to capitalist Hong Kong. ", "Yet Shenzhen (or \"Shumchun\") has gone from backwater to boom town in the space of 20 years. ", "The reason for this dramatic transformation is the city's status as a free-trading Special Economic Zone, which has created wealth and attracted schemers, tricksters and beggars from all over China. ", "To them, Shenzhen is an ersatz Hong Kong; to the visitor, the tawdry commercialism of Shenzhen offers an intriguing glimpse of the brave new China. ", "It is an enjoyable place, assuming you maintain a strong sense of irony.", "\n\n## 1. ", "Luo Hu Commercial City\n\n By border stn\n\nRight by the border station, this large mall is the most convenient place to shop in Shenzhen. ", "Inside its teeming five storeys are virtually all the consumer goods you could ever desire, in exhaustive and exhausting quantities. ", "The brands are either Chinese (often of solid build) or fake Western (take your chances). ", "Countless stalls sell all manner of clothes, footwear, jewellery, watches, accessories and electronic goods. ", "A huge textiles market is on the fifth floor. ", "Expect to haggle over prices: offer no more than 10 per cent of the first asking price to start with.", "\n\nInterior of the five-storey Luo Hu Commercial City\n\n## 2. ", "Dong Men District\n\n A couple of miles N of Luo Hu\n\n Google Map\n\nIf you have the energy to tackle it, a vast expanse of clothes shops awaits you in the sprawling Dong Men district. ", "Remember, however, that clothes such as men's shirts will be cut for the Asian figure, so try them on before buying. ", "At the eastern edge of Dong Men is a footbridge leading to another huge fabric market, which is located above a food market. ", "There is no English signposting here, though, so be sure to have the destination written down in Chinese.", "\n\n## 3. ", "Fairy Lake Botanical Garden\n\n Liantang District • 2573 8430 • Open 4am–9:30pm (Museum: 9am–5pm) • Adm (free before 8am and after 6pm) • www.szbg.ac.cn\n\n Google Map\n\nNine kilometres (six miles) east of the border crossing, lies the 500-hectare (1235-acre) garden around Fairy Lake (Xianhu in Chinese). ", "With 8,000 tropical species and 12 themed sub-gardens, it's a lovely place to see Southeast Asia's flora. ", "Visit the Paleontological Museum and hire a boat on the lake or explore the Hongfa Buddhist Temple in the hills above.", "\n\nFairy Lake Botanical Garden\n\n## 4. ", "China Folk Culture Village\n\n Overseas Chinese Town • 2660 0626 • Open 10am–9pm daily • Adm (includes Splendid China)\n\n Google Map\n\nFull-size re-creations of traditional villages are peopled by well-groomed, eternally happy folk representing different ethnic Chinese groups. ", "An anthropologist's nightmare perhaps, but it will give you some idea of China's diverse cultural and ethnic melting pot.", "\n\nFolk Culture performer\n\n## 5. ", "Window of the World\n\n Overseas Chinese Town • 2660 8000 • Open 9am–10:30pm daily • Adm • en.szwwco.com\n\n Google Map\n\nComplimenting Shenzhen's appetite for theme parks, the surreal Window of the World is a reduction (literally and metaphorically) of the real world. ", "Mount Fuji becomes a 6-m (20-ft) slag heap, tourists pose in Thai national dress in front of the Taj Mahal and, poignantly, Manhattan retains its World Trade Center. ", "Live shows are put on at set times on most \"continents\". ", "There's also a Grand Canyon flume ride and an indoor ski slope with artificial snow.", "\n\n## 6. ", "Happy Valley\n\n Overseas Chinese Town • 2694 9184 • Open 9:30am–9pm Mon–Fri, 9am–9pm Sat & Sun • Adm • en.sz.happyvalley.cn\n\n Google Map\n\nThis theme park gives Hong Kong's Ocean Park a run for its money, with the bonus of a tidal pool, adrenalin-inducing rides such as the Space Shot, an assault course and martial arts demonstrations. ", "Weekends are best avoided as the queues are long.", "\n\n## 7. ", "Splendid China\n\n Overseas Chinese Town • 2660 0626 • Open 10am–6pm daily • Adm (includes China Folk Cultural Village)\n\n Google Map\n\nOn show here are the architectural wonders of China, including re-creations of Beijing's Imperial Palace, the Terracotta Warriors of Xi'an and the Great Wall.", "\n\nMiniature architectural model on display at Splendid China\n\n## 8. ", "Mission Hills Golf Club\n\n Mission Hills Rd, Guanlan town • Reservations: 2802 0888 • Regular shuttle buses from HK, Kowloon, Shenzhen and Guangzhou • www.missionhillschina.com\n\n Google Map\n\nMany Hong Kong executives come across the border to play at this 5-star, 216-hole golf club. ", "The resort also has 51 tennis courts.", "\n\nGolfers at Mission Hills Golf Club\n\n## 9. ", "Bargain Beauty Treatments\n\nWhen you reach breaking point with all the shopping malls and theme parks, rest and refresh yourself with an exceptionally cheap foot or back massage. ", "A vast range of treatments is available at Luo Hu Commercial City. ", "Hotel health centres offer the assurance of professional reflexology and traditional massage.", "\n\n## 10. ", "Shenzhen Bay Park\n\n Binhai Dadao and Wanghai Lu\n\n Google Map\n\nMore than 10 km (6.2 miles) of the Shenzhen Bay shoreline has been turned into a park with cycling paths and free Wi-Fi in some areas. ", "On a clear day you can see all the way to Hong Kong.", "\n\n Back to Shenzhen\n\n Back to Hong Kong Area by Area\n\n# Places To Eat And Drink\n\n## 1. ", "Xingli\n\n 116 Fuhua San Rd, Futian • 2222 2222 • ¥¥¥\n\n Google Map\n\nThe Chinese restaurant at the swanky Ritz-Carlton Hotel offers delicate Chiu Chow cuisine, originating from the Chaoshan region of China, as well as a selection of Cantonese and Schezuan dishes.", "\n\n## 2. ", "Jingyi Chaguan\n\n 7/F Jingtang Dasha, 3038 Bao'an Nan Lu, Luo Hu • 2558 6555 • ¥\n\n Google Map\n\nElegant vegetarian teahouse restaurant that attracts Buddhist monks as well as resident foreigners. ", "Try the dim sum.", "\n\n## 3. ", "Golden Peninsula Chiu Chow\n\n Block B, 1/F Lido Hotel, 2007 Dong Men Nan Lu, Luo Hu • 8225 9988 • ¥¥\n\n Google Map\n\nA central location that's easy to find, a clear English menu and polite staff all make this one of the best Chinese restaurants in town.", "\n\n## 4. ", "Zhongfa Yuan\n\n 2012 Chungfeng Rd, Luohu • 8222 9318 • No credit cards • ¥¥\n\n Google Map\n\nThis restaurant has a few branches around Shenzhen and serves authentic Uighur cuisine. ", "Expect lots of lamb, noodles and freshly baked flatbreads.", "\n\n## 5. ", "Nanyuan Lu\n\n Nanyuan Lu, Futian • ¥\n\n Google Map\n\nLike most major cities in China, Shenzhen has an active Muslim community. ", "This row of restaurants serves up delicious mutton kebabs, pilau rice and naan breads to hungry tourists and locals alike.", "\n\n## 6. ", "360°\n\n 31F Shangri-La Hotel, 1002 Jianshe Lu • 8396 1380 • ¥¥¥\n\n Google Map\n\nWith great views of Shenzhen, especially at night, the revolving restaurant atop the Shangri-La Hotel has excellent steaks and a good collection of fine wines.", "\n\nRevolving restaurant, 360°\n\n## 7. ", "Laurel Restaurant\n\n Shop 5010, 5/F Luo Hu Commercial City • 8232 3668 • ¥¥\n\n Google Map\n\nThis terrific classic Cantonese restaurant tends to be packed all day, but it's worth the wait.", "\n\n## 8. ", "The Terrace\n\n Seaworld Square, Shekou • 2682 9105 • ¥¥\n\n Google Map\n\nLively restaurant with a bar and nightclub that serves Thai food in the Shekou district, which is the harbourside bolthole of Shenzhen's expats.", "\n\n## 9. ", "Gold Coast\n\n Hai Bin Commercial Building, Seaworld Square, Shekou • 2667 6968 • ¥¥\n\n Google Map\n\nOne of the best places in town to enjoy a steak along with good Aussie wine.", "\n\n## 10. ", "McCawley's\n\n Shop No.118 Seaworld Square, Shekou • 2668 4496 • ¥\n\n Google Map\n\nIrish pub chain that serves good pub grub and imported beers, including Guinness.", "\n\nSee restaurant price categories\n\n Back to Shenzhen\n\n Back to Hong Kong Area by Area\n Back to Hong Kong Area by Area\n\n# GUANGZHOU\n\nChina's two great revolutions, republican and communist, were born in Guangzhou, which indicates the temperament of this sprawling southern Chinese capital. ", "Far distant from Beijing, the city has gone its own wilful way, and there is still the insouciance of a people who answer to no one. ", "The modern city is at the mercy of miasmic smog and yammering traffic, but it also has enormous personality, from the soaring Canton Tower, with the world's highest Ferris wheel, to the Han dynasty tombs, plentiful temples, and the charm of Shamian Island's faded 19th-century terraces.", "\n\n## 1. ", "Wandering Among the Gei\n\n Google Map\n\nPerhaps the simplest yet most worthwhile thing to do in Guangzhou is to wander aimlessly along its _gei_ , the narrow alleys between the ancient ramshackle houses in the older parts of town. ", "The streets from Shamian Island up as far as Liwan District are especially interesting. ", "Strolling down these byways gives a sense of the everyday life that has carried on here for hundreds of years. ", "Absorb yourself in the minutiae of domestic life and small-scale industries, such as beauty treatments, maybe in the form of eyebrow plucking with a simple piece of cotton.", "\n\nA Guangzhou _gei_\n\n## 2. ", "Shamian Island\n\n Metro Huangsha\n\n Google Map\n\nThe small islet in southwest Guangzhou long served as the main gateway to China, the only place where merchants and diplomats were allowed to do business with the Empire. ", "Today it's a leafy haven, well restored and beautified, with good accommodation and dining options, as well as quiet riverside walks.", "\n\nWalkers admire a sculpture on a leafy Shamian Island path\n\n## 3. ", "Hua Lin Temple and Jade Market\n\n North of Xiajiu Lu, east of Wen Nan Wen Lu, metro Changshou Lu • Temple: Open 8am–5pm daily\n\n Google Map\n\nAn extensive jade market surrounds the Buddhist temple of Hua Lin, which is also worth a quick visit. ", "The jade on sale is cheaper than in Hong Kong, although you'll need to be an expert to separate the rare real jade from the fake. ", "Several antiques stores and jade and amber sellers can be found west of Kangwang Zhong Lu and north of Changshang Xi Lu.", "\n\nBuddha statue, Hua Lin Temple\n\n## 4. ", "Chen Clan Academy\n\n 34 Enlong Li, Zhongshan Qi Lu, metro Chen Clan Academy • 8181 4559 • Open 8:30am–5:30pm daily • Adm\n\n Google Map\n\nWith Chen being the most common family name in the area, it's no surprise that the many groupings of local Chens built a vast temple in the 1890s. ", "It's worth a look if you haven't visited the ancestral halls in the New Territories. ", "The most impressive feature is the ornate friezes on the roof, depicting Confucian moral tales. ", "There are also displays of jade, bone and other crafts, some for sale. ", "The leafy courtyards give peace and shade.", "\n\n## 5. ", "Nanyue Tomb\n\n 867 Jiefang Bei Lu • Open 9am–5:30pm daily (last adm 4:45pm) • Adm\n\n Google Map\n\nA well-presented museum preserves the burial tomb and artifacts of one of the kings of the Southern Yue, who ruled the area in the 2nd century BC. ", "Well signposted in Chinese and English, the tomb offers a glimpse of a culturally sophisticated society. ", "Fine ceramic pillows and some exquisite packaging materials from later dynasties feature among the displays.", "\n\n## 6. ", "Guangdong Museum of Art\n\n Luhu Lu 13, Ersha Island • 8735 1468 • Open 9am–5pm Tue–Sun • www.gdmoa.org • Adm\n\n Google Map\n\nThis is probably still the largest art museum in China. ", "The exhibitions cover both ancient and contemporary Chinese art.", "\n\n## 7. ", "Yuexiu Park\n\n Park: Metro Yuexiu Park; open 6am–9pm daily • Museum: open 9am–5pm daily; Adm\n\n Google Map\n\nThis lovely park contains a sculpture of the _Five Rams_ , the symbol of Guangzhou, and a monument to Sun Yat-sen, the revered \"father of modern China\". ", "The Municipal Museum, tracing the history of Guangzhou, is housed in the Zhen Hai Tower, the last remnant of the city's 14th-century walls.", "\n\n_Five Rams_ , Yuexiu Park\n\n## 8. ", "Temples of Filial Piety and Six Banyan Trees\n\n Both on Liurong Lu • Filial Piety: 5am–5:30pm; Six Banyan Trees: 9am–5pm daily • Adm\n\n Google Map\n\nThe Temple of Filial Piety (Guangxiao Si) was a royal temple as far back as the 2nd century BC, and is thought to have served as a Buddhist shrine since the 4th century AD. ", "However, the buildings that stand here today were built in the 17th century. ", "Come and sit beneath venerable, ancient fig trees in quiet courtyards. ", "The nearby Temple of the Six Banyan Trees (Liurong Si) has the oldest and largest pagoda in Guangzhou, standing at 55 m (180 ft) in height but, sadly, the banyan trees have died.", "\n\nTemple of the Six Banyan Trees\n\n## 9. ", "White Cloud Mountain\n\n Google Map\n\nOverlooking the city haze is a huge wooded area dominated by a series of ridges and peaks, which offers open space and fresh air.", "\n\n## 10. ", "River Trips\n\n Google Map\n\nEscape the fumes and look back on the city from the river. ", "A number of operators offer cruises. ", "Try an evening trip on the _White Swan_ , a lovely old masted yacht.", "\n\n Back to Guangzhou\n\n Back to Hong Kong Area by Area\n\n# Places To Eat And Drink\n\n## 1. ", "Ming Ge Court\n\n Langham Place Hotel, 638 Xingang Dong Rd, Haizhu • 8916 3588 • ¥¥¥\n\n Google Map\n\nThe menu at Ming Ge Court features high-class traditional Chinese dishes, which are served in modern yet culturally apt surroundings.", "\n\n## 2. ", "The Paddy Field\n\n Central Plaza, 38 Huale Lu • 8360 1379 • ¥\n\n Google Map\n\nOne of the most popular expatriate hangouts, this cheekily named restaurant offers authentic, traditional Irish fare. ", "After a diet of noodles, rack of lamb with mint sauce can come as a shock.", "\n\n## 3. ", "Haidilao Hotpot\n\n 5/F Grandbuy Bldg, 395 Zhongshan 4 Lu • 8302 7255 • ¥\n\n Google Map\n\nOn the corner of the pedestrianized Beijing Lu, this restaurant gives an excellent introduction to fiery Sichuan cuisine. ", "Hotpot can be ordered with a yin/yang style divider for those unsure about spicy food.", "\n\n## 4. ", "Guangzhou\n\n 2 Wen Chang Nan Lu • 8138 0388 • ¥\n\n Google Map\n\nThe oldest and most famous restaurant in the city, Guangzhou is almost always busy. ", "Guests can choose from a massive menu of Cantonese dishes.", "\n\n## 5. ", "I by Inagiku\n\n 5/F W Guangzhou Hotel, 26 Xiancun Lu, Tianhe • 6680 7830 • ¥¥\n\n Google Map\n\nThis large Japanese restaurant is cleverly laid out, with different areas serving different styles of food. ", "The place offers great views of the city and an all-you-can-eat option.", "\n\n## 6. ", "Baiyun Xuan\n\n Bayun Hotel, 367 Huanshi Donglu • 8333 3998 • ¥¥\n\n Google Map\n\nA great opportunity to try – among other Cantonese and Chaozhou specialities – sweet-and-sour pork _(tang cu li ji)_ as it should be.", "\n\n_Tang cu li ji_ (sweet-and-sour pork)\n\n## 7. ", "Fo World Sushishe\n\n 2–8 Niu Nai Chang Jie • 8440 7261 • ¥\n\n Google Map\n\nLocated south of the river, Fo World Sushishe is considered one of the best places to try Cantonese vegetarian cuisine.", "\n\n## 8. ", "Orient Express\n\n 1 Shamian Bei Lu, Shamian Island • 8121 8882 • ¥¥\n\n Google Map\n\nEnjoy good French cuisine in a luxury train carriage or in the garden at this Gallic-owned brasserie.", "\n\n## 9. ", "1920 Restaurant and Bar\n\n 4/F, 1, Jianshe Liu Ma Lu • 8388 1142 • ¥¥\n\n Google Map\n\nExpats and locals alike enjoy food with a strong German influence. ", "There's also an outdoor terrace near the river.", "\n\n## 10. ", "G Bar\n\n Grand Hyatt Guangzhou, 12 Zhujiang West Rd • 8396 1234 • ¥¥\n\n Google Map\n\nThis impressive lounge is a stellar spot for pre- or post-dinner drinks while enjoying fine city views.", "\n\nSee restaurant price categories\n\n Back to Guangzhou\n\n Back to Hong Kong Area by Area\n* * *\n\nStreetsmart\n\nNeon signs illuminating Portland Street, Kowloon\n\n## Streetsmart\n\n1 | Getting To and Around Hong Kong \n---|--- \n2 | Practical Information \n---|--- \n3 | Places to Stay \n---|---\n Back to Streetsmart\n\n# GETTING TO AND AROUND HONG KONG\n\n## Arriving by Air\n\n**Hong Kong International Airport** is on Chek Lap Kok, off Lantau Island, about 30 km northwest of downtown. ", "Airport buses and taxis run around the clock, with the MTR's Airport Express train (6am–12:45pm; HK$115) providing the fastest way to reach Kowloon and Central.", "\n\n**Macau International Airport** sits on the east side of Taipa, about 5 km from the old city, handling traffic from China and Southeast Asia. ", "Buses and taxis connect with the centre (15 min), and there's an adjacent ferry terminal for rapid transfers to Hong Kong (1 hr).", "\n\n**Shenzhen International Airport** offers better-value flights to the rest of China compared to flying from Hong Kong. ", "Buses connect the airport with China Travel Service branches in Kowloon (2–3 hr) and Hong Kong Island (2–3 hr).", "\n\n**Guangzhou Baiyun International Airport** is one of China's busiest; it's 30 km from Guangzhou city, best reached on metro line number 3.", "\n\nHong Kong's national carrier is **Cathay Pacific** , offering direct flights to the US, Europe, UK, Australia, China and Southeast Asia.", "\n\n## Arriving by Train\n\nHong Kong's long-distance train station is **Hung Hom** , just east of Tsim Sha Tsui in Kowloon. **", "MTR Intercity** trains arriving from China terminate here, as do East Rail MTR services from the border at Shenzhen.", "\n\nGuangzhou has multiple stations, but **Guangzhou East** (reached on the city's metro) is where to catch direct trains to Hung Hom. ", "Shenzhen's main train station, where traffic arrives from across China, is at Lo Wu (Luo Hu), immediately across the border from Hong Kong. ", "However, high-speed train services from China arrive at the Shenzhen North station and cross at the Futian border crossing. ", "To reach Hong Kong from either, simply walk across the border and ride the MTR East Rail line to Hung Hom. ", "Macau has no rail services.", "\n\n## Arriving by Bus\n\nHong Kong has no long-distance bus stations, but **China Travel Service** run a direct coach service to Shenzhen airport (2–3 hr) and a few hotels in Guangzhou (3–4 hr).", "\n\nShenzhen's biggest long-distance bus station is at Futian, handling traffic from all over China. ", "There is a border crossing with Hong Kong here, linked to Hong Kong via the Futian MTR station. ", "Macau also lacks a bus station.", "\n\n## Arriving by Ferry\n\nThe Hong Kong–Macau Ferry Terminal at Sheung Wan on Hong Kong Island, and the China Ferry Terminal on Canton Road, Tsim Sha Tsui, both offer fast catamaran services to Macau. ", "Ferry transfers also operate between Hong Kong International Airport and Macau, Guangzhou and Shenzhen International Airport.", "\n\nMacau's two seaports are the central **Jetfoil** terminal on Avenida da Amizade, and the Taipa Temporary Terminal, next to the airport on Taipa. ", "Regular ferries run to Hong Kong, Guangzhou and Shenzhen.", "\n\nShenzhen's main port is at Shekou, about 10 km west of the Lo Wu border crossing with Hong Kong.", "\n\n## Getting Around by MTR\n\nHong Kong's **MTR** rail network has ten lines and a light-rail system, covering Hong Kong Island's north shore and Kowloon, the New Territories, the airport and northern Lantau Island. ", "Services run daily 6am–midnight, and fares range from HK$4 to HK$60, depending on distance; the Airport Express costs HK$105 to HK$115 each way (multiple tickets are discounted). ", "An **Octopus card** stored-value ticket gives a small discount on all fares.", "\n\nExcept Macau, **Shenzhen** and **Guangzhou** have extensive metro networks.", "\n\n## Getting Around by Bus\n\n**Hong Kong City Buses** run from 6am to midnight daily (with a few all-night services). ", "Route itineraries are displayed at each stop, with numbers and destinations shown in Chinese and English at the front of the bus. ", "Octopus cards are valid on all services.", "\n\nMacau's buses (7am– 11pm daily) are also comprehensive and very inexpensive; most routes cost just MOP$2.8 to MOP$6.4 and you will need the exact change. ", "Public buses in Shenzhen and Guangzhou are crowded and slow – it's better to take the metro.", "\n\n## Getting Around by Tram\n\nDouble-decker **trams** run along Hong Kong Island's north shore between Kennedy Town and Shau Kei Wan, and cost about HK$2.30 a ride – pay the exact amount as you get off, or swipe your Octopus card. **", "The Peak** Tram is a funicular railway running from Central to the Peak Tower complex.", "\n\n## Getting Around by Taxi\n\nColour-coded **taxis** are everywhere in Hong Kong: red for downtown, green in the New Territories and blue on Lantau Island. ", "They are relatively good value for money at HK$22 to hire, then HK$1.60 per 200 m; expect to pay in excess of HK$350 from the airport. ", "Excess luggage and the cross-harbour tunnels incur surcharges.", "\n\nA taxi ride in Macau costs upwards of MOP$15, but the place is so small that fares rarely come to more than MOP$30. ", "Meter-run taxis are inexpensive in Guangzhou and Shenzhen.", "\n\n## Getting Around by Ferry\n\nAside from the **Star Ferry** across Victoria Harbour, **First Ferries** run services to Lantau, Lamma and Cheung Chau islands from the outlying islands ferry terminal in Central. **", "Hong Kong and Kowloon Ferry** operates from Central to Lamma and Peng Chau, while **Fortune Ferry** serves Po Toi Island and Lamma from Hong Kong Island's south coast. ", "Octopus cards are valid on most ferries.", "\n\n## Getting Around on Foot\n\nHundreds of kilometres of hiking trails weave across Hong Kong. ", "Many are run by the **Agriculture, Fisheries and Conservation Department (AFCD)**.", "\n\n### DIRECTORY\n\n### ARRIVING BY AIR\n\n#### Cathay Pacific\n\n cathaypacific.com\n\n#### Guangzhou Baiyun International Airport\n\n gbiac.net/en/byhome\n\n#### Hong Kong International Airport\n\n hongkongairport.com\n\n#### Macau International Airport\n\n macau-airport.com/en\n\n#### Shenzhen International Airport\n\n eng.szairport.com\n\n### ARRIVING BY TRAIN\n\n#### Guangzhou East\n\n 1 Dongzhan Lu\n\n#### Hung Hom\n\n On Wan Rd, Hung Hom\n\n### ARRIVING BY BUS\n\n#### China Travel Service\n\n ctshk.com\n\n### ARRIVING BY FERRY\n\n#### Jetfoil\n\n turbojet.com.hk/en\n\n### GETTING AROUND BY MTR\n\n#### Guangzhou Metro\n\n cs.gzmtr.com/ckfwEnglish\n\n#### MTR\n\n mtr.com.hk\n\n#### Octopus Card\n\n octopus.com.hk\n\n#### Shenzhen Metro\n\n szmc.net\n\n### GETTING AROUND BY BUS\n\n#### Hong Kong City Buses\n\n nwstbus.com.hk\n\n### GETTING AROUND BY TRAM\n\n#### The Peak\n\n thepeak.com.hk\n\n#### Trams\n\n hktramways.com\n\n### GETTING AROUND BY TAXI\n\n#### Taxis\n\n taxihongkong.com\n\n### GETTING AROUND BY FERRY\n\n#### First Ferries\n\n nwff.com.hk\n\n#### Fortune Ferry\n\n fortuneferry.com.hk (Chinese only)\n\n#### Hong Kong and Kowloon Ferry\n\n hkkf.com.hk\n\n#### Star Ferry\n\n starferry.com.hk\n\n### GETTING AROUND ON FOOT\n\n#### Agriculture, Fisheries and Conservation Department (AFCD)\n\n afcd.gov.hk\n\n Back to Getting To and Around Hong Kong\n\n Back to Streetsmart\n Back to Streetsmart\n\n# PRACTICAL INFORMATION\n\n## Passports and Visas\n\nCitizens of the US, Canada, Australia, New Zealand and most European countries only need a valid passport to enter Hong Kong for a stay of up to 90 days; British passport holders can stay 180 days. ", "Your passport must be valid for at least one month after you intend to leave. ", "Most visitors may stay in Macau for at least 30 days without a visa; and citizens of Schengen area EU states are allowed 90 days.", "\n\nAll foreign nationals require a **visa** to enter mainland China; these should be obtained through Chinese embassies and consulates in your own country beforehand, but visa regulations can change, so always check the latest requirements.", "\n\nFive-day visas for Shenzhen (¥168) are available at Shekou Port, Huanggang Port and the Lo Wu (Luo Hu) crossing, but not at Futian. ", "A 72-hour transit visa is available at Guangzhou airport for those arriving on international flights who have proof of onward air travel to a third country (so you can't be on a round-trip from Hong Kong). ", "Do not attempt to travel beyond the visa's permitted area, and check the latest information before travelling.", "\n\n## Customs Regulations and Immigration\n\nHong Kong and Macau are free ports and only levy **customs** duties on spirits and tobacco. ", "In Hong Kong, visitors over 18 years old are allowed to import 1 litre of spirits of 30% ABV or higher (no limit on alcohol less than 30%); plus 25 g of tobacco products. ", "Macau allows the duty-free import of 125 g of tobacco products and 1 litre of spirits.", "\n\nVisitors to China can import 200 cigarettes or 20 cigars or 250 g of tobacco, plus 1.5 litres of alcoholic beverages over 12% ABV, and up to the equivalent of US$5000 in foreign currency. ", "You cannot export anything of cultural importance (this may apply to antiques), nor any endangered animal or plant products.", "\n\n## Travel Safety Advice\n\nVisitors can get up-to-date travel safety information from the **Foreign and Commonwealth Office** in the **UK** , the **Department of State** in the **US** and the **Department of Foreign Affairs and Trade** in **Australia**.", "\n\n## Travel Insurance\n\nHong Kong, Macau and southern China are safe places, but visitors may encounter respiratory illnesses, traffic accidents and opportunistic theft. ", "You are advised to take out comprehensive travel and health insurance.", "\n\n## Health\n\nNo vaccinations are required for Hong Kong, Macau or China, except for yellow fever if you're coming from an area where the disease is endemic. ", "There are hospitals, clinics and dentists across the region with English-speaking staff. ", "There is no free health care for visitors, so you'll have to recoup the costs for any consultations, treatment and prescriptions through your travel insurance policy.", "\n\nPollution is a major health issue. ", "Tap water is best avoided, and locally caught seafood is unsafe to eat (most restaurants import theirs). ", "Poor air quality, tropical humidity and crowded conditions contribute to the spread of respiratory complaints.", "\n\nSeawater quality varies, and toxic algal blooms can make swimming ill-advised. ", "Rare shark sightings off Hong Kong cause panic; stick to beaches that are netted and well patrolled.", "\n\nDon't underestimate the stifling summer temperatures, when you should carry a bottle of water and avoid too much activity during the hottest part of the day. ", "Wear cool, light, loose cotton clothing, with a hat. ", "In winter, when temperatures can drop below 20 ºC, bring a light sweater and a waterproof.", "\n\n## Personal Security\n\nKeep a close hold on personal possessions, using a hotel safe if provided and not flashing valuable items around. ", "Backpackers staying in dormitory accommodation may have their luggage robbed by unscrupulous fellow travellers. ", "Don't wander the back streets at night; take a taxi. ", "Women are unlikely to face sexual harassment, except perhaps in expat-heavy bars and clubs. ", "Be careful crossing the road; traffic rules are ignored by many and accidents involving pedestrians are common.", "\n\nAnyone caught eating or drinking on Hong Kong's spotless MTR system can expect to be heckled by irate fellow passengers, or even fined by the police.", "\n\nA tough line is taken on illegal drugs; if convicted you can face time in prison, and China has executed foreign nationals for drug trafficking.", "\n\nHong Kong police wear blue uniforms; many speak English or will call for assistance if they don't. ", "Chinese police also wear blue uniforms but are unlikely to be bilingual.", "\n\n## Currency and Banking\n\nLocal currencies are the Hong Kong dollar (HK$), the pataca (MOP$) in Macau, and the Chinese yuan (¥RMB). ", "The ¥RMB is worth more than the HK$, which in turn is worth fractionally more than the MOP$. HK$ are accepted in Macau but ¥RMB are needed for mainland China.", "\n\nAs it's one of the world's financial hubs, you're rarely far away from a bank or an ATM in Hong Kong, and they are similarly common in Macau and China. ", "Credit and debit cards are widely accepted by ATMs, and in hotels, restaurants and shops that see plenty of foreign custom, but at smaller businesses you'll need cash. ", "Both banks and money exchangers (which are only plentiful in the downtown areas of Hong Kong) often give poor exchange rates compared with using an ATM – though check with your own bank about any transaction fees. ", "In an emergency, money can be wired through local banks or **Western Union**.", "\n\n## Communications\n\nHong Kong's country code is 852; local phone numbers are eight digits long with no area codes. ", "Calls within Hong Kong are free on private landlines; many hotel lobbies have telephones for local use. ", "Coin- or credit card-operated public phone boxes cost HK$1 minimum.", "\n\nSeveral local companies sell local pay-as-you-go SIM cards, though none is better-value than the **Discover Hong Kong Tourist SIM Card** , which is available from the 1010 outlet at the airport, tourist offices and convenience stores across the city.", "\n\nHong Kong is well-connected to the Internet, with fast, free Wi-Fi available at the airport and most cafés, bars and public parks. ", "Hong Kong Central Library, an enormous complex by Hong Kong Park in Causeway Bay, has both free Wi-Fi and hundreds of desktop terminals available, though these tend to get booked out by students.", "\n\nMacau's country code is 853; local phone numbers are eight digits long, with no area codes, and the situation for landlines and mobiles is the same as in Hong Kong. ", "Wi-Fi is not as widespread, but there are free terminals at the tourist office in Largo do Senado.", "\n\nChina's country code is 86; the city code is 0755 for Shenzhen, and 020 for Guangzhou. ", "Most phone numbers are nine digits long. ", "A Hong Kong SIM card may work here, if not, buy a Chinese one from any China Mobile shop or street kiosk, and top it up with a _chongzhi ka_ (prepaid card).", "\n\nFree internet access is availiable via Wi-Fi in many cafés and some accommodation; hotel rooms are sometimes supplied with ADSL sockets too. ", "Internet cafés are on the decline, and ID requirements make them difficult for foreigners to use. ", "Expect some news and social media sites, such as Facebook and Twitter, to be blocked unless you have a VPN.", "\n\nThe Hong Kong postal service is rapid and efficient. ", "Local mail takes one to two days. ", "Zone 1 air mail (all of Asia except Japan) takes three to five days. ", "Zone 2 (the rest of the world) takes five to seven days. ", "The **General Post Office** operates a poste restante service.", "\n\nThe Chinese postal service is fairly fast and efficient, although overseas rates are pricey and sending parcels home always involves plenty of inspections and form-filling. ", "Be warned that International Express Mail (EMS) is unreliable, despite offering registered delivery and online tracking services.", "\n\n## TV, Radio and Newspapers\n\nEnglish-language terrestrial TV channels include ATV World and TVB Pearl in Hong Kong, and CCTV 9 in China, offering a bland mix of news and entertainment.", "\n\nRTHK is Hong Kong's publicly funded but editorially independent radio broadcaster. ", "RTHK 3 has news, finance and current affairs; RTHK 4 plays Western and Chinese classical music; and RTHK 6 broadcasts BBC World Service programming.", "\n\nHong Kong's **_South China Morning Post_** provides conservative coverage of local, Chinese and world news, while the **_Standard_** tabloid offers a more irreverent spin. ", "Over the border, the **_China Daily_** gives a sugar-coated view of China, but can be hard to find.", "\n\nLocal listings magazines include the bi-monthly **_Time Out Hong Kong_**.", "\n\n## Opening Hours\n\nHong Kong's office hours are 9am–5pm Mon–Fri and 9am–12:30pm Sat.", "Most shops open daily but not usually before 10am, staying open until 7pm or later. ", "Official hours in Macau are Mon–Fri 9am–1pm and 3pm–5pm, and 9am–1pm Sat. ", "China's opening times are 9am–5pm Mon–Fri for banks and offices, with some opening through the weekend too, though with reduced services (banks might not offer foreign exchange then, for instance). ", "Shops in China open early and close late.", "\n\nAcross the region, everything closes for the first three days of the Chinese New Year (late Jan or early Feb), with reduced hours for the rest of the two-week-long festival. ", "Other days when you might find government offices and businesses shut are New Year's Day (1 Jan), Qingming (4 or 5 Apr), May Day (1 May), the Dragon Boat Festival (late May or Jun), the Mid-Autumn Festival (late Sep) and National Day (1–3 Oct, China only).", "\n\n## Time difference\n\nHong Kong, Macau and China are 8 hours ahead of Greenwich Mean Time and 13 hours ahead of US Eastern Standard Time.", "\n\n## Electrical Appliances\n\nMains electricity in Hong Kong, Macau and China runs at 220V, 50Hz, so North American electrical devices will need converters. ", "Plugs are British-style three square pins in Hong Kong but two round pins in Macau and China, though many Chinese plug sockets are universal. ", "Adapters are sold at street stalls.", "\n\n## Driving Licence\n\nOverseas driving licences are valid in Hong Kong for visitors staying for fewer than 12 months. ", "Heavy traffic, expensive car rental and cheap public transport mean that there is little incentive to drive. ", "Foreign licences are not valid in China.", "\n\n## Weather\n\nSet just inside the tropics, Hong Kong, Macau and southern China share the same weather pattern. ", "Summers (June–Sept) are torrid with temperatures hovering around 30 ºC (86 ºF) and typhoons that bring destructive winds and heavy rainfall; flights and ferries can be cancelled at short notice. ", "Winters (Dec–March) are relatively cool and dry, with daytime temperatures sometimes as low as 15 ºC (59 ºF).", "\n\n## Information\n\nThe **Hong Kong Tourism Board (HKTB)** has three conveniently located branches open daily 8am–8pm: at the Star Ferry Terminal in Tsim Sha Tsui; near Exit F, Causeway Bay MTR station; and in a converted rail carriage outside the Peak Mall. ", "Maps are available at bookshops.", "\n\nThe **Macau Government Tourist Office** is situated on the west side of Largo do Senado (daily 9am–6pm), at the Jetfoil Terminal (daily 9am–10pm) and in Hong Kong at the Macau Ferry Terminal, Sheung Wan (9am–6pm). ", "They have a limited number of brochures and are useful for organizing discounted hotel bookings.", "\n\nThe China Travel Service in Hong Kong can handle visas, transport and accommodation bookings; once in China, your hotel is the best place to seek local information.", "\n\n## Travellers with Specific Needs\n\nHong Kong is the only place in the region with a widespread understanding of people with specific needs; the **HKTB** website has an informative \"Accessible Hong Kong\" section. ", "They offer information about facilities in Macau, Shenzhen and Guangzhou, though these are limited.", "\n\n## Language\n\nThe Hong Kong region is primarily Cantonese-speaking. ", "Mandarin Chinese is the official language of education and business, and is also widely understood. ", "English is spoken and used on signage all over the city, though less so in the New Territories.", "\n\nA decreasing number of people speak Portuguese in Macau. ", "In Shenzhen and Guangzhou, street signs are in English, but you'll need some spoken Chinese or a phrasebook to get far on your own.", "\n\n## Shopping\n\n**Hong Kong** has no sales taxes except on cars, cosmetics, alcohol and tobacco. ", "However, there is a premium on style, so any big-brand fashion items are expensive. ", "The advent of internet shopping also means that electronic gadgets are unlikely to be good value either. ", "If you do spot a bargain, insist on an international warranty and be very careful not to be scammed; unscrupulous dealers along Nathan Road are notorious for switching the model they've shown you with an inferior, or faulty item.", "\n\nLocally made clothing is good value in Hong Kong. ", "Brands such as **Baleno** or **Giordano** offer smart-casual wear, and a clutch of long-established tailors can run up formal suits or dresses within a few days. ", "For cheap clothing, try the markets at Sham Shui Po; for discounted designer wear head to the outlets on Ap Lei Chau.", "\n\nHollywood Road is where to find antiques and modern art, though these command high prices and any apparent bargains will be reproductions or fakes. ", "For souvenir-quality items try Cat Street.", "\n\nIt's worth trying to haggle at small businesses, such as the many independent computer and electrical accessories stores, at the Temple Street Night Market, and stores on Cat Street.", "\n\n**Shenzhen** used to be a popular destination for bargain-conscious Hong Kongers, but nowadays prices have risen and it's not always a good place to shop. ", "At the border, Luo Hu Commercial City sells just about everything, but is best for clothing; buy cut-price electronics at the SEG Computer Market, Futian district; and try the Dongmen district for curios, clothes and fabric.", "\n\nPirated gear, imitations and outright fakes are rife everywhere, so know your subject and bargain hard.", "\n\n## Eating and Drinking\n\nHong Kong is one of the best places in the world to eat, with restaurants on almost every corner offering everything from indigenous Cantonese and regional Chinese cooking to international cuisine. ", "Cheapest are the _chaa chan tengs_ (\"tea canteens\"), stalls at indoor markets, and local fast-food chains such as Fairwood and Tsui Wah, which serve one-dish rice or noodle dishes.", "\n\nBarbecued pork ( _cha siu_ ) and wonton noodle soup are Hong Kong's signature dishes; many Cantonese restaurants also serve dim sum ( _yum cha_ ) breakfasts, where you order a variety of small dumplings and pastries with Chinese tea. ", "Lunchtime all-you-can-eat buffets are offered by many hotels, with the area around Central, SoHo and Lan Kwai Fong a hotbed of foreign cuisine, including Egyptian, British, Russian, French, Spanish and Vietnamese. ", "Causeway Bay is the focus for Thai food, while Chungking Mansions is famous for its good-value Indian restaurants.", "\n\nShenzhen's food is nothing special, but Guangzhou has some superb Cantonese restaurants, while Macanese cuisine fuses local Chinese and colonial Portuguese flavours.", "\n\nTea is the traditional Chinese beverage – both green and fermented – with dark _bo lei_ (pu'er) the favourite accompaniment to a dim sum meal. ", "Coffee was rarely drunk in the past, but globalization has brought a café culture.", "\n\nMost of Hong Kong's bars offer long happy hours or promotions before a certain time of evening. ", "Avoid the hostess bars in Wan Chai and Tsim Sha Tsui, unless you want to pay steep cover charges on top of your already expensive drinks.", "\n\n## Trips and Tours\n\nThe **Hong Kong Tourist Board** offers a raft of good-value options, from guided tours of Kowloon's markets to courses in tai chi and excursions to traditional villages. ", "The **China Travel Service (CTS)** can organize visas, tours and packages to Macau and mainland China. **", "Splendid Tours** specialize in excursions around Hong Kong, Macau, Shenzhen and Guangzhou. ", "Package coach tours covering the region can be booked through **Gray Line Tours**. ", "Explore the coast with day and night **harbour cruises** , some with drinks, either on refitted ferries or aboard the Aqua Luna wooden junk. ", "Various companies offer **junks** for private charter around Hong Kong's many islands. **", "Guided Walks** for all levels explore Hong Kong's architecture, heritage, wildlife and countryside.", "\n\n## Where to Stay\n\nWith plenty of accommodation in Hong Kong, there is always somewhere to stay at short notice, but to save money you'll need to book well in advance, especially around holidays and major sporting events. ", "Always expect high prices for what you get, and to pay a premium for space. ", "At the budget end of things, rooms are barely big enough for the bed. ", "Breakfast is seldom included except at top-of-the-range places. ", "A 3 per cent government tax and a 10 per cent service charge will be added to the bill at all but the cheapest guesthouses.", "\n\nThere are two central **YHA** youth hostels in Hong Kong, which have dorms, self-catering kitchens and a few private rooms.", "\n\nHong Kong has whole apartment buildings – such as the notorious **Chungking Mansions** in Tsim Sha Tsui – filled with private hostels and guesthouses. ", "Though the buildings themselves might be intimidating, many of the places to stay are well-run and offer good-value dorms, doubles and even basic en suites, though conditions are extremely cramped.", "\n\nSlightly better rooms, facilities and higher prices are offered by various church and international organizations such as the **YMCA** and Scouts.", "\n\nHotels range from fairly basic business models and quirky boutique brands up to some of the world's best, featuring stunning harbour views and prices to match.", "\n\nMacau has a good range of hotels including some staggeringly opulent casino-resorts, but very few real budget options. ", "Prices are lower than in Hong Kong, and rooms larger. ", "Shenzhen's options are largely business-oriented, well-equipped and no more expensive than a budget guesthouse in Hong Kong, if you stick to the domestic chains.", "\n\n### DIRECTORY\n\n### PASSPORTS AND VISAS\n\n#### Visas\n\n immd.gov.hk\n\n fsm.gov.mo/psp/eng/EDoN.html\n\n visaforchina.org\n\n### CUSTOMS REGULATIONS AND IMMIGRATION\n\n customs.gov.hk\n\n customs.gov.mo\n\n english.customs.gov.cn\n\n### EMBASSIES AND CONSULATES\n\n#### Australia\n\n 23/F, 25 Harbour Road, Wan Chai\n\n hongkong.china.embassy.gov.au\n\n#### Canada\n\n 9/F, 25 Westlands Road, Quarry Bay\n\n canadainternational.gc.ca/hong_kong\n\n#### China\n\n 3/F, 26 Harbour Road, Wan Chai\n\n fmcoprc.gov.hk/eng\n\n#### UK\n\n 1 Supreme Court Road, Admiralty\n\n gov.uk/government/world/hong-kong\n\n#### US\n\n 26 Garden Road, Central\n\n hk.usconsulate.gov\n\n### TRAVEL SAFETY ADVICE\n\n#### Australia: Department of Foreign Affairs and Trade\n\n dfat.gov.au\n\n#### UK: Foreign and Commonwealth Office\n\n gov.uk/foreign-travel-advice\n\n#### US: Department of State\n\n travel.state.gov\n\n### HEALTH\n\n#### Adventist\n\n Hospital, 40 Stubbs Rd, Happy Valley\n\n 3651 8888\n\n#### CanAm International Medical Center\n\n Garden Hotel, 368 Huanshi Donglu, Guangzhou\n\n 020 83866988\n\n#### Guangzhou fire, ambulance and police\n\n 119, 120, 110\n\n#### Hong Kong & Macau fire, ambulance and police\n\n 999\n\n#### Hospital Centre S. Januário\n\n Estrada do Visconde de S. Januário, Macau\n\n 2831 3731\n\n#### Island Emergency Station of Hospital Centre S. Januário\n\n Macau University of Science and Technology, Avenida Wai Long, Taipa\n\n 2899 2230\n\n#### Princess Margaret Hospital\n\n Princess Margaret Hospital Road, Lai Chi Kok, Kowloon\n\n 2990 1111\n\n#### Queen Mary Hospital\n\n 102 Pok Fu Lam Road, Hong Kong Island\n\n 2255 3838\n\n#### Shenzhen Hospital\n\n University of Hong Kong Shenzhen Hospital, 1 Haiyuan 1st Road, Futian District\n\n 0755 86913333\n\n### CURRENCY AND BANKING\n\n#### Exchange rates\n\n xe.com\n\n#### Western Union\n\n westernunion.com/hk\n\n### COMMUNICATIONS\n\n#### Discover Hong Kong Tourist SIM card\n\n discoverhongkong.com\n\n#### General Post Office\n\n 2 Connaught Place, Central, Hong Kong\n\n hongkongpost.hk\n\n Largo do Senado: Edificio Sede da DSC, Macau\n\n 2832 3666\n\n### TV, RADIO AND NEWSPAPERS\n\n#### China Daily\n\n chinadaily.com.cn\n\n#### South China Morning Post\n\n scmp.com\n\n#### Standard\n\n thestandard.com.hk\n\n#### Time Out Hong Kong\n\n timeout.com.hk\n\n### INFORMATION\n\n#### Asia Expat\n\n hongkong.asiaxpat.com\n\n#### City Weekend Guangzhou\n\n cityweekend.com.cn/guangzhou\n\n#### Hong Kong Outdoors\n\n hkoutdoors.com\n\n#### Hong Kong Tourism Board (HKTB)\n\n 2508 1234\n\n discoverhongkong.com\n\n#### Macau City Guide\n\n cityguide.gov.mo\n\n#### Macau Government Tourist Office\n\n macautourism.gov.mo\n\n#### Old Hong Kong\n\n gwulo.com\n\n### SHOPPING\n\n#### Baleno\n\n baleno.com\n\n#### Giordano\n\n giordano.com\n\n#### Hong Kong\n\n discoverhongkong.com/eng/shop\n\n#### Shenzhen\n\n shenzhenshopper.com\n\n### EATING AND DRINKING\n\n#### Hong Kong Clubbing\n\n hkclubbing.com\n\n#### Open Rice Restaurant Reviews\n\n openrice.com/en/hongkong\n\n### TRIPS AND TOURS\n\n#### China Travel Service\n\n ctshk.com/english\n\n#### Gray Line Tours\n\n grayline.com.hk\n\n#### Guided walks\n\n walkhongkong.com\n\n jasonwordie.com\n\n#### Harbour cruises\n\n starferry.com.hk/harbourtour\n\n aqualuna.com.hk\n\n#### Hong Kong Tourist Board\n\n discoverhongkong.com\n\n#### Junks\n\n islandjunks.com.hk\n\n saffron-cruises.com\n\n#### Splendid Tours\n\n splendid.hk\n\n### ACCOMMODATION\n\n#### Asia Rooms Hotel Bookings\n\n asiarooms.com\n\n#### China Trip Hotel Bookings\n\n english.ctrip.com\n\n#### Chungking Mansions\n\n chungkingmansions.com.hk\n\n#### Hong Kong Hotels Association\n\n hkha.org\n\n#### YMCA\n\n ymcahk.org.hk\n\n#### Youth Hostel Association China\n\n yhachina.com\n\n#### Youth Hostel Association Hong Kong\n\n yha.org.hk\n\n Back to Practical Information\n\n Back to Streetsmart\n Back to Streetsmart\n\n# PLACES TO STAY\n\nSuper Luxury Hotels\n\nLuxury Hotels\n\nMid-Range Hotels in Hong Kong\n\nMid-Range Hotels in Macau & China\n\nValue-for-Money Hotels\n\nCheap Sleeps\n\nLong-Stay Hotels\n\nGreat Escapes\n\n## Super Luxury Hotels\n\n### The Langham\n\n 8 Peking Rd, Tsim Sha Tsui, Kowloon • 2375 1133 • www.langhamhotels.com • $$\n\nRestrained opulence reigns throughout. ", "There's a good gym, pool and sauna, and many top-quality restaurants, including the impressive two-Michelin-starred T'ang Court, which is decked out like a Mongolian tent.", "\n\n### The Venetian\n\n Estrada da Baía de N Senhora da Esperança, Taipa, Macau • 2882 8888 • www.venetianmacao.com • $$\n\nMacau's most spectacular resort-casino is a recreation of the Las Vegas dream of Italy, but with sampans among the gondolas. ", "The mega-resort is suites only, and has a themed shopping mall designed to look like the canals of Venice, a 1,800-seat theatre and all the dining options you could want.", "\n\n### The Grand Hyatt\n\n 1 Harbour Rd, Wan Chai • 2588 1234 • www.hongkong.grand.hyatt.com • $$$\n\nNext to the Convention Centre and the premier choice for unbridled luxury in Wan Chai, the Grand Hyatt has looked after world-famous guests including former US President Bill Clinton. ", "Rooms have a modern feel, and include all the high-tech mod-cons.", "\n\n### Hotel InterContinental Hong Kong\n\n 18 Salisbury Rd, Kowloon • 2721 1211 • www.hongkong-ic.intercontinental.com • $$$\n\nPopular with the rich and famous, the splendid, modern InterContinental is consistently voted among Asia's best hotels. ", "Two-thirds of the huge, beautifully appointed rooms offer fantastic harbour views.", "\n\n### Island Shangri-La\n\n Pacific Place, Central • 2877 3838 • www.shangri-la.com • $$$\n\nThe grandiose lobby, huge chandeliers and stunning mural adorning the atrium are a prelude to the elegantly decorated rooms, with terrific Peak or harbour views.", "\n\n### The Landmark Mandarin Oriental\n\n 15 Queen's Rd Central • 2132 0188 • www.mandarinoriental.com • $$$\n\nA stylish conversion of former offices has created some of the largest rooms in Asia, all with circular sunken baths, HD TVs and Wi-Fi. ", "The two-floor luxury spa is one of the city's best.", "\n\n### The Mandarin Oriental HK\n\n 5 Connaught Rd, Central • 2522 0111 • www.mandarinoriental.com • $$$\n\nIn an excellent location in the heart of the financial district, this fashionable hotel overlooks Victoria Harbour. ", "The bustling public areas are one of the territory's most popular meeting places, while the rooms have an elegant atmosphere and a modern, luxurious design, which incorporates every high-tech convenience.", "\n\n### The Peninsula\n\n Salisbury Rd, Kowloon • 2920 2888 • www.peninsula.com • $$$\n\nHong Kong's original luxury offering opened in 1928 and is still one of the city's best-loved hotels. ", "Overlooking Victoria Harbour, the Neo-Classical Peninsula is famous for restrained luxury and excellent service _(seeThe Peninsula)_.", "\n\n Back to Places to Stay\n\n## Luxury Hotels\n\n### The Excelsior\n\n 281 Gloucester Rd, Causeway Bay • 2894 8888 • www.excelsiorhongkong.com • $$\n\nThe smart, modern and friendly Excelsior offers pretty much every in-room and hotel facility imaginable, as you'd expect from the Mandarin Oriental's sister.", "\n\n### Banyan Tree Macau\n\n Galaxy Macau Resort, Avenida Marginal Flor de Lotus, Cotai Strip • 8883 6888 • www.banyantree.com/en/china/macau • $$$\n\nWith great views of Macau's skyline, this magnificent resort hotel is supremely luxurious in style and amenities. ", "Both the award-winning restaurants and the Indonesian-themed spa are of the highest quality.", "\n\n### Garden Hotel Guangzhou\n\n 368 Huangshi Dong Lu, Guangzhou • 8333 8989 • www2.gardenhotel.com • ¥¥¥\n\nThe cavernous lobby gives a sense of the size of this imposing 1,000-plus room five-star hotel, boasting its own up-market shopping mall and good eating and drinking options. ", "Weekend rates can be much lower.", "\n\n### Hullett House\n\n 2A Canton Rd, Tsim Sha Tsui • 3988 0000 • $$$\n\nThe blend of superb colonial architecture and contemporary interiors make this Hong Kong's top boutique hotel. ", "Located in the beautiful former head quarters of the Marine Police, there are ten exquisitely designed suites with superb facilities as well as a fabulous stone terrace overlooking the Heritage 1881 courtyard.", "\n\n### Ritz-Carlton, Guangzhou\n\n 3 Xing An Rd, Guangzhou • 3813 6688 • www.ritzcarlton.com • ¥¥¥\n\nOne of the city's finest luxury hotels is located in Pearl River City opposite the Guangzhou Tower.luxury and classic Ritz-Carlton service.", "\n\n### Ritz-Carlton, Hong Kong\n\n International Commerce Centre, 1 Austin Rd West, Kowloon • 2263 2263 • www.ritzcarlton.com • $$$\n\nThe views are incredible from Hong Kong's tallest building. ", "The quality of design and in-room technology make it the epitome of modern luxury. ", "It also features the \"highest bar in the world\".", "\n\n### Shangri-La Hotel Shenzhen\n\n Jianshe Lu, Shenzhen • 8233 0888 • www.shangri-la.com • ¥¥¥\n\nClose to the main shopping areas and railway station, the Shangri-la makes a great escape from Shenzhen's seething retail madness. ", "The rooftop pool is perfect for relaxing.", "\n\n### The Upper House\n\n Pacific Place, 88 Queensway, Central • 2918 1838 • www.upperhouse.com • $$$\n\nThis hotel has beautifully styled rooms with superb views and great facilities. ", "Café Gray Deluxe restaurant and lounge on the 49th floor is a regular watering hole for Hong Kong's fashionable set.", "\n\n Back to Places to Stay\n\n## Mid-Range Hotels in Hong Kong\n\n### The Eaton Hotel\n\n 380 Nathan Rd • 2782 1818 • www.eaton-hotel.com • $$\n\nThe best option in the Yau Ma Tei/Jordan area. ", "Rooms are smart and the lobby offers a flood of natural light, outdoor seating and an oasis of greenery.", "\n\n### Empire Hotel Kowloon\n\n 62 Kimberley Road, Tsim Sha Tsui • 3692 2222 • www.empirehotel.com.hk • $$\n\nThis very smart hotel with a modern gym and a lovely atrium pool is a complete contrast to its threadbare sister in Wan Chai. ", "Rooms are equipped with the latest internet and audiovisual gadgetry. ", "The location is perfect for Tsim Sha Tsui shopping and dining.", "\n\n### Hyatt Regency\n\n 18 Hanoi Rd, Tsim Sha Tsui • 2311 1234 • $$\n\nLocated in one of Kowloon's tallest towers, this impressive hotel is aimed at both business and leisure travellers. ", "Rooms on the upper floors boast exceptional views out over Hong Kong and the hotel provides a great location for all the attractions on offer around Kowloon.", "\n\n### The Luxe Manor\n\n 39 Kimberley Rd, Tsim Sha Tsui • 3763 8888 • www.theluxemanor.com • $$\n\nThis stylish Kowloon boutique hotel combines eclectic, almost surreal, decor with high-tech features. ", "The rooms are decorated with painted picture frames, which climb the walls onto the ceiling and other funky touches.", "\n\n### The Mira\n\n 118 Nathan Rd, Tsim Sha Tsui • 2368 1111 • www.themirahotel.com • $$\n\nChic, slick, futuristic and maybe lacking a little soul; however you cannot help admiring the redesign of this well-maintained business hotel. ", "The infinity-edge pool and luxury spa are definite attractions.", "\n\n### Regal Airport Hotel\n\n 9 Cheong Tat Rd, Chek Lap Kok • 2286 8888 • www.regalhotel.com • $$\n\nHong Kong's largest hotel links directly to the airport terminal and features large rooms with avant-garde interior designs. ", "Seven restaurants and bars provide a plethora of cuisine choices.", "\n\n### The Wesley\n\n 22 Hennessy Rd, Wan Chai • 2866 6688 • www.ozohotels.com • $$\n\nComfortable beds in modern rooms with city views and a central location make this a good choice on the island. ", "Also has a small gym and high tech check-in and information screens in the lobby.", "\n\n Back to Places to Stay\n\n## Mid-Range Hotels in Macau & China\n\n### Holiday Inn\n\n 82–86 Rua de Pequim, Macau • 2878 3333 • www.holidayinn.com • $\n\nClose by Lisboa's many casinos and convenient for the centre of Macau. ", "Rooms (with cable TV) are blandly furnished but there's a good range of facilities, including gym, pool, sauna and a decent restaurant for Cantonese and Szechuan food.", "\n\n### Best Western Shenzhen Felicity Hotel\n\n 1085 Heping Lu, Shenzhen • 2558 6333 • www.bwsz.net • ¥¥\n\nThis good-value hotel is reasonably well located and even boasts its own art gallery. ", "Standards are high and guests can take advantage of the four restaurants as well as the gym, pool and sauna. ", "On line bookings are cheaper.", "\n\n### Crowne Plaza Hotel and Suites Landmark, Shenzhen\n\n 3018 Nanhu Lu, Shenzhen • 8217 2288 • www.ihg.com • ¥¥\n\nClose to the railway station, this hotel offers lovely rooms and extensive facilities, including a health club, a gym and indoor pool.", "\n\n### Guangdong Victory Hotel\n\n 53 Shamian Bei Jie, Guangzhou • 8121 6688 • www.vhotel.com • ¥¥\n\nFormerly the Victoria Hotel, this hotel occupies two sites on Shamian Island – the main Neo-Classical block and the original colonial building. ", "Facilities include several restaurants, a swimming pool and a sauna.", "\n\n### Hotel Royal Macau\n\n Estrada da Vitoria 2–4, Macau • 2855 2222 • www.hotelroyal.com.mo • $$\n\nThe Hotel Royal is one of Macau's oldest hotels and it shows. ", "That said, it is clean and well run, although the rooms offer little more than the basics. ", "It has an indoor pool, gym (with some ageing equipment) and sauna. ", "It's also close to the heart of town and within sight of the pretty Guia Lighthouse.", "\n\n### Ole Tai Sam Un Hotel\n\n 43–45 Rua da Caldeira, Macau • 2893 8818 • oletaisamunhotel.com • $$\n\nLocated close to Macau's historic centre, this hotel offers well-equipped, modern rooms with hardwood floors and tasteful decor. ", "The breakfast buffet includes a good variety of options. ", "Senado Square is a 10 minute walk away.", "\n\n### The Panglin Hotel\n\n 2002 Jiabin Lu, Lowu, Shenzhen • 2518 5888 • www.panglin-hotel.com • ¥¥\n\nSmart and modern, this is one of Shenzhen's superior hotels, about 4 km (2 miles) from the railway station. ", "Rooms are decent and have cable TV. ", "Services include station shuttle bus, babysitting and 24-hour room service. ", "Numerous dining options; Sky Paradise buffet on the 50th floor is Shenzhen's highest revolving restaurant.", "\n\n Back to Places to Stay\n\n## Value-for-Money Hotels\n\n### 2 Macdonnell Road\n\n 2 Macdonnell Rd, Central • 2132 2132 • www.twomr.com.hk • $$\n\nWith pleasant rooms, a good Central location and excellent views across the Zoological and Botanical Gardens to the city and harbour, Macdonnell Road offers good value apartments. ", "Maid service, free local calls, use of gym, satellite and cable TV, kitchenette and Central shuttle bus are all included in the price. ", "Long-stay packages also available.", "\n\n### BP International House\n\n 8 Austin Rd, Tsim Sha Tsui • 2376 1111 • www.bpih.com.hk • $$\n\nThe boxy rooms with ugly 1980s wallpaper have smallish beds, but the place is clean, efficient and can be cheap, and has lovely views over Kowloon Park.", "\n\n### The Empire Hotel\n\n 33 Hennessy Rd, Wan Chai • 3692 2111 • www.empirehotel.com.hk • $$\n\nMarooned between the area's two main roads, the Empire is right in the heart of Wan Chai so you're paying for location rather than luxury, as the cheap fittings will constantly remind you. ", "Still, the prices are competitive, the service isn't bad and there's a rooftop pool, plus a gym and free broadband internet access.", "\n\n### The Harbourview\n\n 4 Harbour Rd, Wan Chai • 2911 1358 • theharbourview.com.hk • $$\n\nThis modest Chinese YMCA-run hotel charges a premium for the location, but low-season discounts are available. ", "Rooms are comfortable and well-appointed. ", "Two restaurants and a gym.", "\n\n### Rosedale on the Park\n\n 8 Shelter St, Causeway Bay • 2127 8888 • hongkong.rosedalehotels.com • $$\n\nThis self-styled \"cyber boutique hotel\" offers reasonable value over-looking Victoria Park. ", "The look is sleek and modern. ", "The rooms are small but well laid-out and there is a range of business services.", "\n\n### The Salisbury YMCA\n\n 41 Salisbury Rd, Tsim Sha Tsui • 2268 7000 • www.ymcahk.org.hk • $$\n\nDon't be put off by the initials. ", "For value, views and location, the always-popular YMCA, next door to the posh Peninsula, can't be beaten. ", "The well-furnished rooms are spacious, equipped with laptop ports, and satellite and cable TV. ", "A swimming pool, sauna, gym and an indoor climbing wall round off the facilities. ", "Family suites are terrific.", "\n\n### Shamrock\n\n 223 Nathan Rd • 2735 2271 • www.shamrockhotel.com.hk • $$\n\nThe rather severe lobby opens onto Nathan Road, and the dishevelled lifts lead up to big rooms with satellite TV and air conditioning, and it has a business centre.", "\n\n### The Wharney\n\n 57–73 Lockhart Rd, Wan Chai • 2861 1000 • www.wharney.com • $$\n\nRight in the increasingly smart centre of Wan Chai, the Wharney offers decent surroundings, a revamped gym and pool, sauna, business centre and a couple of restaurants. ", "Rooms are well-appointed but a bit small.", "\n\n Back to Places to Stay\n\n## Cheap Sleeps\n\n### Bradbury Hall Hostel\n\n Chek Keng, Sai Kung, New Territories • 2328 2458 • www.yha.org.hk • $\n\nAs you might expect from its remote location, this hostel has basic, barrack-like dorms. ", "Those with tents may want to walk on and pitch camp at Tai Long Wan's lovely beaches nearby.", "\n\n### Bradbury Jockey Club Youth Hostel\n\n 66 Tai Mei Tuk, New Territories • 2662 5123 • www.yha.org.hk • $\n\nThis very pleasant hostel by the reservoir makes for a good base or stop-off for walkers exploring the beautiful Plover Cove area. ", "Air-conditioned singles, doubles or dorms are available.", "\n\n### Caritas Bianchi Lodge\n\n 4 Cliff Rd, Yau Ma Tei, Kowloon • 2388 1111 • www.caritas-chs.org.hk • $\n\nLike Booth Lodge next door, there's only a chapel and restaurant-cum-café to amuse you here. ", "Still, the rooms are large by any standards. ", "The hotel is run by the Social Welfare Bureau of the Roman Catholic Church.", "\n\n### Chungking House, Chungking Mansions\n\n Block 4A/5F, 40 Nathan Rd, Tsim Sha Tsui • 2739 1600 • www.chungkinghouse.com • $\n\nStaying at the mansions is popular with some budget travellers but not so with others _(seeChungking Mansions)_. ", "The dingy hallways lead to dozens of guesthouses offering cheap accommodation in an excellent location. ", "Oppressive but fascinating, this is Hong Kong's cultural melting pot. ", "Chungking House has large rooms and is a great option.", "\n\n### Holy Carpenter Guest House\n\n 1 Dyer Ave, Hung Hom, Kowloon • 2362 0301 • www.holycarpenter.org/holyHotel/index.htm • $\n\nRun by the Sheng Kung Hui Holy Carpenter Church, this is a pleasant alternative to the dingier guesthouse offerings in Chungking and Mirador, but stuck out in boring old Hung Hom. ", "Facilities in double and triple rooms are basic but include TV, phone, bathroom, shower and air conditioning.", "\n\n### Sze Lok Yuen Hostel\n\n Tai Mo Shan, Tseun Wan, New Territories • 2488 8188 • www.yha.org.hk • $\n\nA very basic hikers' crash-pad, Sze Lok Yuen is close to the summit of Tai Mo Shan, Hong Kong's tallest peak. ", "The views of the surrounding mountains are spectacular, but its dorm rooms have no fans or air conditioning. ", "The altitude cools things down though in all but the hottest months. ", "Camping is also permitted here.", "\n\n### YHA Mei Ho House Youth Hostel\n\n Block 41, Shek Kip Mei Estate, Sham Shui Po, Kowloon • 3728 3500 • www.yha.org.hk • $\n\nA fully renovated public resettlement block from 1954, this hostel has en-suite air-conditioned doubles, family rooms and dorms. ", "There is an on-site store, café, shared kitchen and laundry.", "\n\n### Booth Lodge\n\n 11 Wing Sing Lane, Yau Ma Tei, Kowloon • 2771 9266 • www.salvationarmy.org.hk/en/services/booth • $$\n\nAir-conditioned rooms with a shower, bath, fridge, phone and TV are merely adequate, but the location and prices are great at this Salvation Army-run hotel.", "\n\n Back to Places to Stay\n\n## Long-Stay Hotels\n\n### The Bay Bridge\n\n 123 Castle Peak Rd, Yau Kom Tau, Tsuen Wan, Kowloon • 2945 1111 • www.baybridgehongkong.com • HK$16,000–$28,000 per month\n\nGiven the Tseun Wan location, these smart studio and suite apartments are not for those who must be at the centre of things. ", "Facilities include a gym and outdoor pool.", "\n\n### Chi Residences\n\n 138 Connaught Rd West, Sai Ying Pun • 3443 6888 • www.chi-residences.com • HK$39,800–HK$62,000 per month\n\nThe beautifully appointed rooms here are decorated in a contemporary style and have views of Victoria Harbour. ", "Chi Residences manage several properties in other locations in Hong Kong.", "\n\n### J Plus Boutique Hotel\n\n 1–5 Irving St, Causeway Bay • 3196 9000 • www.jplushongkong.com • Studio from HK$24,000 and suite from $33,000 per month\n\nHong Kong's first boutique hotel, the interior was originally by the French designer Philippe Starck and has since been revamped by his protégés. ", "The studios and one-room suites are the perfect blend of comfort and luxury and come equipped with kitchens and washing machines.", "\n\n### Ovolo Sheung Wan\n\n 222 Hollywood Rd, Sheung Wan • 2165 1000 • www.ovolohotels.com • HK$36,000 per month\n\nThese swanky modern residences are well-located close to the heart of Central. ", "They have all the facilities of a deluxe hotel, including kitchenettes, free super-fast Wi-Fi, Apple TV and in-room washing machine and tumble dryer.", "\n\n### Shama Central\n\n 26 Peel St, Central\n\n 2103 1713 • www.shama.com • HK$35,800–$96,000 per month\n\nCentrally located above a bustling produce market, this modern block offers cosy studios and spacious apartments with smart furnishings, daily maid service, Wi-Fi internet access, self-service laundry and a gym.", "\n\n### Yes Inn\n\n 4/F, 10 Anchor St, Tai Kok Tsui, Kowloon • 3427 6000 • www.yesinn.com • HK$12,500–$22,000 per month\n\nBright, small and inexpensive serviced apartments in a residential area. ", "The cheaper options have TV and complimentary Wi-Fi, but no kitchenette.", "\n\n Back to Places to Stay\n\n## Great Escapes\n\n### Jockey Club Mount Davis Youth Hostel\n\n Mount Davis Path, Kennedy Town • 2817 5715 • www.yha.org.hk • $\n\nPopular budget option for the more adventurous, this lovely and friendly hostel sits atop Mount Davis at the western edge of Hong Kong Island. ", "The surroundings are peaceful and beautiful, and the staff are helpful. ", "A little out of the way so you may need to take a taxi there.", "\n\n### Pousada de Coloane\n\n Praia de Cheoc-Van, Coloane Island, Macau • 2888 2143 • www.hotelpcoloane.com.mo • $\n\nThis tiny, remote hotel lies at the far end of Coloane, overlooking a small, pretty beach. ", "It boasts a nice swimming pool, deck area and an attractive Portuguese-style restaurant and bar. ", "Room fittings are showing their age, but are well equipped.", "\n\n### San Va\n\n 65–67 Rua da Felicidade, Macau • www.sanvahotel.com • No credit cards • $\n\nStep back in time with this genuine 1920s guesthouse. ", "Rooms have ceiling fans and wash basin, and all other facilities are shared. ", "San Va is clean, romantic and lovingly run.", "\n\n### Grand Coloane Resort\n\n Estrada de Hac Sa 1918, Ilha de Coloane, Macau • 2887 1111 • www.grandcoloane.com • $$\n\nAll rooms come with their own terrace and sea views. ", "There's a small sandy beach and an 18-hole golf course. ", "You can also practise your swing on the ocean driving range with balls that float.", "\n\n### Harbour Plaza Resort City\n\n 18 Tin Yan Rd, Tin Shui Wai, New Territories • 2180 6688 • www.harbour-plaza.com • $$\n\nOut in the New Territories, this extensive resort complex offers a vast array of sports and recreation facilities, including cinemas, shops, gyms, sports tracks and courts, Chinese and international restaurants, and nearby historical and beauty spots. ", "All rooms include the basics with a small lounge area.", "\n\n### Hong Kong Gold Coast Hotel\n\n 1 Castle Peak Rd, Kowloon • 2452 8888 • www.sino-hotels.com • $$\n\nThis 10-hectare (24-acre) resort offers sea views from its well-equipped rooms. ", "The accommodation complex is unlovely from outside, but recreation facilities include pool, pitch-and-putt golf course, tennis courts and running track.", "\n\n### The Warwick\n\n East Bay, Cheung Chau • 2981 0081 • $$\n\nA cheap alternative to city living, magical Cheung Chau's only major hotel offers fine sea views next to good beaches with windsurf and kayak hire. ", "Great coastal walks are around the headland. ", "The exterior is 1960s municipal.", "\n\n### Pousada de São Tiago\n\n Avenida de República, Fortaleza de São Tiago de Barra, Macau • 2837 8111 • www.saotiago.com.mo • $$$\n\nConverted from an old Portuguese fort hewn from the rock in the 17th century, this tiny hotel looking across the bay to mainland China is a picturesque delight. ", "The comfortable, Portuguese-style rooms are heavily but beautifully decorated.", "\n\n### Tai O Heritage Hotel\n\n Shek Tsai Po Street, Tai O, Lantau Island • 2985 8383 • $$$\n\nHoused in an 110-year-old former colonial police station, this beautiful hotel is the perfect base from which to explore the sleepy fishing town on Tai O and Lantau Island beyond. ", "The five rooms and four suites are all individually decorated in an elegant, colonial style.", "\n\n### White Swan Hotel\n\n 1 Southern St, Shamian Island, Guangzhou • 8188 6968 • www.whiteswanhotel.com • ¥¥¥\n\nOverlooking the Pearl River on sleepy Shamian Island, this opulent hotel is the place to relax in Guangzhou.", "\n\n#### **Price Categories**\n\nFor a standard, double room per night (with breakfast if included), taxes and extra charges.", "\n\n* * *\n\n**$** under HK$1,000 **$$** HK$1,000–2,500 **$$$** over HK$2,500 \n **¥** under ¥400 **¥¥** ¥400–1000 **¥¥¥** over ¥1000\n\n Back to Places to Stay\n\n Back to Streetsmart\n\n# Maps\n\n• The following maps are also accessible from the Table of Contents.", "\n\n• To zoom in and out on the both main map and the thumbnails, first double-tap and then pinch and spread, if your device allows.", "\n\n• For optimum viewing, use the screen-lock function on your device and make sure you have installed the latest software updates.", "\n\nzoom northwest\n\nzoom northeast\n\nzoom southwest\n\nzoom southeast\n\nzoom west\n\nzoom east\n\n## Acknowledgments\n\n**Author**\n\nLiam Fitzpatrick, Jason Gagliardi, Andrew Stone\n\n**Additional contributor** David Leffman \n**Publishing Director** Georgina Dee \n**Publisher** Vivien Antwi \n**Design Director** Phil Ormerod \n**Editorial** Michelle Crane, Rachel Fox, Freddie Marriage, Alison McGill, Fíodhna Ní Ghríofa, Scarlett O'Hara, Sally Schafer, Beverly Smart, Hollie Teague \n**Cover Design** Richard Czapnik \n**Design** Richard Czapnik, Sunita Gahir, Bharti Karakoti, Marisa Renzullo, Jaynan Spengler, Vinita Venugopal \n**Picture Research** Susie Peachey, Ellen Root, Lucy Sienkowska, Oran Tarjan \n**Cartography** Jasneet Arora, Suresh Kumar, James Macdonald Cartography derived from Bartholomew Digital Database \n**DTP** Jason Little, George Nimmo \n**Production** Linda Dare \n**Factchecker** Charles Young \n**Proofreader** Ruth Reisenberger \n**Indexer** Kathryn O'Donoghue \n**Illustrator** Lee Redmond \n**First edition created by** Blue Island Publishing, London\n\n**DIGITAL OPERATIONS, DELHI** \n**Head of Digital Operations, Delhi** Manjari Hooda \n**Assistant Producer** Suruchi Kakkar \n**Editor** Suruchi Bhatia\n\n**Revisions** Hansa Babra, Tom Deas, Rebecca Flynn, Sumita Khatwani, Payal Sharotri, Farah Sheikh\n\n**Commissioned Photography** Nigel Hicks, David McIntyre, Rough Guides/Tim Draper, Rough Guides/Karen Trist, Chris Stowers\n\n**PICTURE CREDITS** \nThe publisher would like to thank the following for their kind permission to reproduce their photographs: \n**123RF.com:** danielvfung; Fedor Selivanov. ", " \n**4Corners:** Claudio Cassaro; Guido Cozzi; Günter Gräfenhain; Huw Jones; Luigi Vaccarella. ", " \n**Alamy Images:** Agencja Fotograficzna Caro; Asia Photopress; Andrew Barnes; Carlo Bollo; Andrew Cawley; Pak Hung Chan; Pavlos Christoforou; Charles Crust; Cultura Creative; Foto; FPLA; Glyn Genin; Hemis; Hemis/Degas Jeanne-Pierre; John Henshall; imageBROKER/Ingo Schulz; ImageRite; Islandspics HK; JoeFoxBerlin; JTB Media Creation; Moon Yin Lam; Andrew Linscott; Jon Lord; Arnel Manalang; Stefano Politi Markovina; Hilke Maunder; Kees Metselaar; My Favourite Lens; Prisma Bildagentur AG/Vidler Steve; Radharc Images/Joe Fox; Radharc Images/Joe Fox; Robert Harding Picture Library/Ian Trower; RosaIreneBetancourt; Paul Rushton; Peter Scholey; Jose Luis Stephens; Travel Pictures; Ian Trower; Vinicius Valle; Ron Yue. ", " \n**Amaroni's Little Italy** \n**Casa Sai Kung** \n**Castelo Concepts** \n**Corbis:** Bettmann; Massimo Borchi; Dallas and John Heaton; Destinations; Victor Fraile; Robert Harding World Imagery/Gavin Hellier; James Marshall; Wally McNamee; Redlink/Lo Mak; Ian Trower; 145/Ocean/Wilfred Y Wong; xPACIFICA. ", " \n**Dreamstime.com:** Steve Allen; Au_yeung225; Baoshengrulai; Bjeayes; Evgenia Bolyukh; Olteanu Calin; Cheechew; Acon Cheng; Dmitry Chulov; Earnesttse; Eddiekwokcf; Efired; Galinasavina; Dejia Gao; Jorg Hackemann; Hannamariah; Xin Hua; Hupeng; Jingaiping; Mike K; Kewuwu; Kiankhoon; Stanislav Komogorov; Sergii Koval; Kwokfai; Nohead Lam; Lance Lee; Yiu Tung Lee; Keng Po Leung; Logray; Mooindy; Roland Nagy; Matee Nuserm; Ohmaymay; Leung Cho Pan; Patrickmak039; Paulwongkwan; Sean Pavone; William Perry; Pindiyath100; Pixattitude; Plotnikov; Poupaep; Saiko3p; Nick Kee Son; Stbernardstudio; StrippedPixel; Szefei; Torsakarin; Wing Ho Tsang; Thor Jorgen Udvang; Jeremy Wee; Ho Nam Wong; Xishuiyuan; Yourlettertome; Jess Yu; Lai Ching Yuen; Ziggymars; Zkruger. ", " \n**Drop** \n**Fernando's** \n**Four Seasons Hotel Hong Kong** \n**Getty Images:** AFP/Mike Clarke; AFP/Philippe Lopez; Doug Armand; Virginie Blanquart; Mike Clarke; Victor Fraile; Universal History Archive; Stefan Irvine; jalvaran; John Hudson Photography; Ross Kinnaird; Loic Lagarde; Paul Lakatos; Lonely Planet Images; Maremagnum; Thomas Reucker; rexlam; Lars Ruecker; Harald Sund. ", " \n**Grand Lisboa** \n**Hong Kong Heritage Museum** \n**Hongkong Land Limited:** www.dadokit.com. ", " \nHotel InterContinental, Hong Kong \n**Island Shangri-La** \n**Mandarin Oriental, Macau** \n**One Thirty-One** \n**Ritz-Carlton, Hong Kong** \n**Robert Harding Picture Library:** Amanda Hall; Mel Longhurst; Fumio Okada; David Sellwood; Ian Trower. ", " \n**Shangri-La International Hotel Management Limited** \n**SuperStock:** Juzant; Iain Masterton; Steve Vidler. ", " \n**The Hong Kong Jockey Club** \n**The Landmark Mandarin Oriental** \n**The Peninsula Hotel Limited Hong Kong** \n**The Venetian Macao:** Visual Media.", "\n\n**Front Cover – Alamy Stock Photo:** Gavin Hellier.", "\n\nAll other images are: © Dorling Kindersley. ", "For further information see www.dkimages.com.", "\n\nAs a guide to abbreviations in visitor information blocks: **Adm** = admission charge.", "\n\n**To find out more, please contact:** \n**in the USspecialsales@dk.com** \n**in the UKtravelguides@uk.dk.com** \n**in Canadaspecialmarkets@dk.com** \n**in Australiapenguincorporatesales@penguinrandomhouse.com.au**\n\nFirst American edition, 2002 \nPublished in the United States by \nDK Publishing, 345 Hudson Street, \nNew York, New York 10014\n\nCopyright 2002, 2018 © Dorling Kindersley Limited \nA Penguin Random House Company \nISBN: 9781465471321\n\nReprinted with revisions 2005, 2006, 2009, 2011, 2013, 2015, 2016, 2018\n\nThis abridged Digital Edition published in 2018 \nISBN: 9781465484932\n\nAll rights reserved. ", "No part of this publication may be reproduced, stored in or introduced into a retrieval system, or transmitted in any form, or by any means (electronic, mechanical, photocopying, recording or otherwise) without the prior written permission of the copyright owner.", "\n\nWithin each Top 10 list in this ebook, no hierarchy of quality or popularity is implied. ", "All 10 are, in the editor's opinion, of roughly equal merit.", "\n\n# Table of Contents\n\n 1. ", "Welcome to Hong Kong\n 2. ", "Exploring Hong Kong\n 3. ", "Top 10 Hong Kong Highlights\n 1. ", "The Peak\n 2. ", "Central's Statue Square\n 3. ", "Happy Valley Races\n 4. ", "Star Ferry\n 5. ", "Stanley\n 6. ", "Temple Street Night Market\n 7. ", "Heritage Museum\n 8. ", "Tai Long Wan Coastline\n 9. ", "Cheung Chau Island\n 10. ", "Big Buddha and Po Lin Monastery\n 4. ", "The Top 10 of Everything\n 1. ", "Moments in History\n 2. ", "Modern Buildings\n 3. ", "Walking Routes and Promenades\n 4. ", "Areas of Natural Beauty\n 5. ", "Ways to Experience the Real China\n 6. ", "Off the Beaten Track\n 7. ", "Places for Children\n 8. ", "Hong Kong for Free\n 9. ", "Nightclubs\n 10. ", "Restaurants\n 11. ", "Hong Kong Dishes\n 12. ", "Markets\n 13. ", "Festivals and Events\n 5. ", "Hong Kong Area by Area\n 1. ", "Hong Kong Island - Northwest\n 2. ", "Hong Kong Island - Northeast\n 3. ", "Hong Kong Island - South\n 4. ", "Tsim Sha Tsui\n 5. ", "Yau Ma Tei, Mong Kok and Prince Edward\n 6. ", "New Kowloon\n 7. ", "The New Territories\n 8. ", "Outlying Islands\n 9. ", "Macau\n 10. ", "Shenzhen\n 11. ", "Guangzhou\n 6. ", "Streetsmart\n 1. ", "Getting To and Around Hong Kong\n 2. ", "Practical Information\n 3. ", "Places to Stay\n 7. ", "Maps\n 8. ", "Acknowledgments\n 9. ", "Copyright\n\n 1. ", "Contents\n 2. ", "Cover\n 3. ", "How To Use this Guide\n\n" ]
{ "pile_set_name": "Books3" }
[ 0.03571428571428571, 0, 0, 0, 0, 0, 0, 0, 0.06666666666666667, 0, 0.043478260869565216, 0.03333333333333333, 0.037037037037037035, 0.02702702702702703, 0.03125, 0.038461538461538464, 0.041666666666666664, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.06521739130434782, 0.05263157894736842, 0.037037037037037035, 0, 0, 0, 0, 0, 0.02564102564102564, 0, 0, 0, 0, 0, 0, 0.09090909090909091, 0.0078125, 0, 0, 0, 0, 0, 0, 0, 0, 0.006134969325153374, 0.011111111111111112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008, 0.008264462809917356, 0.006944444444444444, 0, 0.0072992700729927005, 0, 0, 0, 0, 0, 0.016129032258064516, 0.006172839506172839, 0, 0, 0, 0.01098901098901099, 0, 0.006702412868632708, 0.0051813471502590676, 0.015625, 0, 0, 0.022222222222222223, 0, 0, 0.006896551724137931, 0, 0.011764705882352941, 0.016666666666666666, 0.0045045045045045045, 0, 0.004016064257028112, 0, 0.005376344086021506, 0, 0, 0, 0, 0, 0.014492753623188406, 0, 0.006666666666666667, 0, 0, 0, 0, 0.00975609756097561, 0, 0.025, 0, 0, 0.014084507042253521, 0, 0, 0, 0.004166666666666667, 0, 0.011764705882352941, 0, 0, 0, 0.02654867256637168, 0, 0.008928571428571428, 0.02564102564102564, 0.013793103448275862, 0, 0.0196078431372549, 0.009433962264150943, 0, 0, 0.014084507042253521, 0, 0, 0.033707865168539325, 0, 0, 0, 0, 0.012903225806451613, 0.015151515151515152, 0, 0, 0.013100436681222707, 0, 0.005, 0, 0.010638297872340425, 0.022222222222222223, 0.00641025641025641, 0.00819672131147541, 0, 0, 0, 0.0136986301369863, 0.009615384615384616, 0.012345679012345678, 0, 0, 0.007936507936507936, 0, 0, 0, 0, 0, 0.009615384615384616, 0, 0, 0.023255813953488372, 0.024390243902439025, 0, 0, 0.009708737864077669, 0, 0, 0, 0.012345679012345678, 0, 0.01282051282051282, 0.013157894736842105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.003937007874015748, 0, 0, 0, 0.018796992481203006, 0, 0.012861736334405145, 0, 0, 0, 0, 0.00625, 0, 0.022727272727272728, 0.016666666666666666, 0, 0, 0.014354066985645933, 0.02531645569620253, 0, 0.011111111111111112, 0.004424778761061947, 0, 0.012269938650306749, 0, 0.006896551724137931, 0, 0.006172839506172839, 0.0136986301369863, 0, 0.007633587786259542, 0, 0.021739130434782608, 0.0196078431372549, 0.009523809523809525, 0.011363636363636364, 0, 0, 0.017543859649122806, 0.0176678445229682, 0.009259259259259259, 0.013605442176870748, 0.03333333333333333, 0.005847953216374269, 0, 0.014492753623188406, 0, 0, 0, 0, 0.01694915254237288, 0.012658227848101266, 0.02857142857142857, 0.016666666666666666, 0, 0, 0.013157894736842105, 0.007246376811594203, 0.017857142857142856, 0, 0, 0, 0.009009009009009009, 0, 0, 0.012195121951219513, 0, 0.015625, 0, 0, 0.014084507042253521, 0, 0.02564102564102564, 0.005263157894736842, 0.018518518518518517, 0.006578947368421052, 0, 0, 0, 0.012658227848101266, 0, 0, 0, 0.02197802197802198, 0, 0, 0, 0, 0, 0.008, 0.022222222222222223, 0.0064516129032258064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.02142857142857143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.006578947368421052, 0, 0, 0, 0.00423728813559322, 0.005376344086021506, 0, 0.014598540145985401, 0, 0, 0.007352941176470588, 0, 0, 0.007462686567164179, 0, 0, 0, 0.018518518518518517, 0, 0, 0, 0, 0, 0.02112676056338028, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.005154639175257732, 0.010471204188481676, 0, 0, 0.00625, 0.010362694300518135, 0, 0, 0.0189873417721519, 0.006968641114982578, 0, 0.023809523809523808, 0, 0.0136986301369863, 0.021897810218978103, 0.017543859649122806, 0, 0.009174311926605505, 0, 0.011235955056179775, 0, 0.02197802197802198, 0, 0.02127659574468085, 0, 0, 0, 0, 0.01020408163265306, 0, 0, 0, 0.00546448087431694, 0, 0, 0.02459016393442623, 0, 0, 0, 0, 0.017241379310344827, 0.012048192771084338, 0.0058997050147492625, 0, 0, 0, 0, 0, 0.013333333333333334, 0.011111111111111112, 0, 0, 0.01675977653631285, 0, 0, 0.02564102564102564, 0.00546448087431694, 0, 0, 0.007352941176470588, 0, 0, 0.014492753623188406, 0, 0.007936507936507936, 0, 0.02857142857142857, 0.006666666666666667, 0, 0, 0.006493506493506494, 0, 0, 0, 0.008620689655172414, 0, 0, 0.005780346820809248, 0, 0, 0, 0.008620689655172414, 0.02666666666666667, 0, 0.009216589861751152, 0.011627906976744186, 0, 0.006968641114982578, 0.006329113924050633, 0, 0.008849557522123894, 0.02, 0, 0.017391304347826087, 0.0182370820668693, 0, 0.014814814814814815, 0, 0.02127659574468085, 0.008064516129032258, 0.006369426751592357, 0, 0, 0, 0.030303030303030304, 0.011976047904191617, 0, 0.014492753623188406, 0, 0.016129032258064516, 0, 0, 0, 0, 0, 0, 0.015503875968992248, 0.012195121951219513, 0, 0.008264462809917356, 0, 0, 0.008547008547008548, 0, 0, 0, 0.007692307692307693, 0.004120879120879121, 0, 0, 0, 0, 0.012048192771084338, 0, 0.016194331983805668, 0, 0, 0, 0, 0.004807692307692308, 0, 0, 0, 0, 0, 0, 0.01, 0, 0, 0, 0, 0, 0.004347826086956522, 0, 0, 0, 0, 0, 0.0045871559633027525, 0, 0.009708737864077669, 0, 0.02608695652173913, 0, 0.017391304347826087, 0, 0.024390243902439025, 0, 0.014925373134328358, 0, 0, 0.017094017094017096, 0, 0, 0.008695652173913044, 0, 0.017699115044247787, 0.04, 0.013333333333333334, 0, 0.017241379310344827, 0.015503875968992248, 0.0196078431372549, 0.00904977375565611, 0, 0.01282051282051282, 0.029411764705882353, 0.01593625498007968, 0.011363636363636364, 0, 0, 0.024390243902439025, 0, 0.014084507042253521, 0, 0.018404907975460124, 0.020618556701030927, 0, 0.014150943396226415, 0.007936507936507936, 0, 0.023809523809523808, 0.043478260869565216, 0.025210084033613446, 0.007246376811594203, 0.007692307692307693, 0.011235955056179775, 0.012345679012345678, 0.018518518518518517, 0.018867924528301886, 0, 0.020618556701030927, 0.01639344262295082, 0.021739130434782608, 0, 0, 0, 0, 0, 0.008888888888888889, 0.014285714285714285, 0.017857142857142856, 0.004545454545454545, 0.014925373134328358, 0.003289473684210526, 0, 0.006369426751592357, 0, 0.012048192771084338, 0, 0, 0, 0, 0.004545454545454545, 0.010101010101010102, 0, 0, 0.018072289156626505, 0, 0, 0, 0, 0, 0, 0.004329004329004329, 0, 0.02631578947368421, 0.004098360655737705, 0, 0, 0.011049723756906077, 0, 0.013605442176870748, 0.012658227848101266, 0, 0, 0.015625, 0, 0, 0.00749063670411985, 0.010101010101010102, 0.02857142857142857, 0.02, 0.016129032258064516, 0, 0, 0.013157894736842105, 0, 0, 0.01015228426395939, 0.021739130434782608, 0, 0.004016064257028112, 0, 0, 0, 0, 0.01079136690647482, 0.022222222222222223, 0.0038461538461538464, 0, 0.017142857142857144, 0.011976047904191617, 0, 0.018518518518518517, 0.045454545454545456, 0.005780346820809248, 0, 0, 0.010101010101010102, 0.007575757575757576, 0.022727272727272728, 0, 0, 0, 0.012422360248447204, 0, 0.012987012987012988, 0, 0.011111111111111112, 0, 0, 0, 0, 0.005025125628140704, 0, 0, 0.00816326530612245, 0.029411764705882353, 0.008695652173913044, 0, 0.022727272727272728, 0, 0, 0, 0.017241379310344827, 0.00980392156862745, 0, 0.017391304347826087, 0, 0.010526315789473684, 0, 0, 0, 0, 0, 0, 0.021739130434782608, 0, 0.01098901098901099, 0, 0.010752688172043012, 0, 0, 0, 0, 0.013513513513513514, 0.005952380952380952, 0.008620689655172414, 0.0196078431372549, 0.028169014084507043, 0, 0.02040816326530612, 0, 0.011560693641618497, 0, 0, 0, 0.007194244604316547, 0, 0, 0.010752688172043012, 0, 0, 0.008064516129032258, 0.007692307692307693, 0, 0.00625, 0, 0, 0, 0, 0.007518796992481203, 0, 0.01485148514851485, 0.012269938650306749, 0, 0, 0.01556420233463035, 0, 0.006711409395973154, 0.007194244604316547, 0.007142857142857143, 0.02564102564102564, 0, 0, 0, 0, 0, 0.00851063829787234, 0, 0, 0, 0.01607717041800643, 0, 0, 0.01486988847583643, 0.029411764705882353, 0.018867924528301886, 0, 0.010638297872340425, 0, 0, 0, 0, 0, 0, 0, 0.006711409395973154, 0, 0.015151515151515152, 0.02857142857142857, 0.012779552715654952, 0.014084507042253521, 0.012232415902140673, 0, 0.010256410256410256, 0, 0, 0, 0.003067484662576687, 0, 0.005208333333333333, 0.005128205128205128, 0, 0.00625, 0, 0, 0, 0.007042253521126761, 0, 0.022058823529411766, 0, 0.0041841004184100415, 0, 0, 0.005681818181818182, 0.0196078431372549, 0.009615384615384616, 0.025, 0, 0, 0, 0, 0, 0, 0.02054794520547945, 0, 0, 0, 0.008403361344537815, 0, 0, 0, 0.015873015873015872, 0, 0, 0, 0, 0.008130081300813009, 0.009708737864077669, 0.014285714285714285, 0, 0, 0, 0, 0.01606425702811245, 0.01818181818181818, 0.004347826086956522, 0.005952380952380952, 0, 0, 0, 0.004975124378109453, 0.010752688172043012, 0, 0.004608294930875576, 0, 0, 0, 0.009009009009009009, 0, 0.008849557522123894, 0, 0.02459016393442623, 0, 0, 0, 0.008849557522123894, 0.009708737864077669, 0, 0, 0.03125, 0.011428571428571429, 0.010416666666666666, 0, 0, 0.005154639175257732, 0, 0.008620689655172414, 0.009216589861751152, 0.007246376811594203, 0.025, 0.006134969325153374, 0, 0.006134969325153374, 0, 0.032, 0, 0, 0, 0.009569377990430622, 0.00819672131147541, 0.022900763358778626, 0, 0, 0, 0, 0.007936507936507936, 0, 0.005025125628140704, 0, 0, 0.045454545454545456, 0, 0, 0, 0.005649717514124294, 0, 0.013513513513513514, 0, 0.014598540145985401, 0.009708737864077669, 0.006993006993006993, 0, 0.01, 0.014925373134328358, 0, 0.01282051282051282, 0.021052631578947368, 0.018518518518518517, 0, 0, 0, 0, 0.007168458781362007, 0, 0.007462686567164179, 0, 0, 0.005263157894736842, 0, 0, 0.009345794392523364, 0.007194244604316547, 0, 0, 0, 0, 0, 0, 0, 0, 0.016129032258064516, 0, 0, 0.014388489208633094, 0, 0.009259259259259259, 0, 0, 0.005813953488372093, 0.006993006993006993, 0, 0, 0, 0.009523809523809525, 0, 0.010101010101010102, 0, 0.015384615384615385, 0, 0, 0.013157894736842105, 0, 0.007936507936507936, 0, 0.009900990099009901, 0, 0.009174311926605505, 0, 0.009009009009009009, 0, 0.013157894736842105, 0, 0, 0.00980392156862745, 0.00847457627118644, 0.013513513513513514, 0, 0, 0, 0, 0, 0, 0, 0, 0.022935779816513763, 0, 0, 0, 0.014084507042253521, 0, 0, 0.027777777777777776, 0, 0, 0, 0, 0.005494505494505495, 0.009174311926605505, 0, 0.0038910505836575876, 0, 0, 0.00641025641025641, 0, 0, 0.006289308176100629, 0.0072992700729927005, 0, 0, 0, 0, 0.0064516129032258064, 0, 0, 0, 0.00975609756097561, 0, 0, 0.010752688172043012, 0, 0, 0, 0, 0, 0, 0, 0.008849557522123894, 0.03296703296703297, 0, 0.011494252873563218, 0, 0, 0.005154639175257732, 0.008849557522123894, 0, 0.010050251256281407, 0, 0, 0, 0.0025906735751295338, 0, 0.0064516129032258064, 0, 0.016, 0, 0.007142857142857143, 0, 0.012658227848101266, 0, 0.006802721088435374, 0, 0.008620689655172414, 0, 0, 0.017241379310344827, 0, 0.02631578947368421, 0, 0.009615384615384616, 0, 0.01282051282051282, 0, 0.016129032258064516, 0.007667031763417305, 0, 0, 0, 0, 0, 0, 0, 0.02702702702702703, 0.013513513513513514, 0.01694915254237288, 0, 0, 0.01694915254237288, 0, 0.005076142131979695, 0.022857142857142857, 0, 0, 0, 0.011049723756906077, 0.02857142857142857, 0, 0, 0.004329004329004329, 0.018691588785046728, 0, 0.010526315789473684, 0, 0.02702702702702703, 0, 0.008097165991902834, 0, 0.006172839506172839, 0, 0.01834862385321101, 0.01639344262295082, 0.0072992700729927005, 0.015384615384615385, 0.007380073800738007, 0.010752688172043012, 0.009259259259259259, 0, 0, 0, 0, 0, 0, 0, 0.011494252873563218, 0, 0.016129032258064516, 0.008130081300813009, 0, 0.006493506493506494, 0, 0.009900990099009901, 0.008064516129032258, 0, 0.009900990099009901, 0.011363636363636364, 0, 0.013513513513513514, 0.038461538461538464, 0.010033444816053512, 0, 0.008620689655172414, 0, 0, 0.004484304932735426, 0, 0.0196078431372549, 0, 0.016666666666666666, 0, 0.012195121951219513, 0, 0.02030456852791878, 0, 0, 0.023529411764705882, 0.006622516556291391, 0.03389830508474576, 0, 0.016853932584269662, 0, 0.004629629629629629, 0, 0, 0, 0.00558659217877095, 0, 0.024193548387096774, 0, 0, 0.007633587786259542, 0, 0, 0, 0, 0.020942408376963352, 0.023255813953488372, 0, 0.014814814814814815, 0, 0, 0.005050505050505051, 0, 0.015873015873015872, 0.020512820512820513, 0, 0.008620689655172414, 0, 0, 0.02, 0, 0.012048192771084338, 0, 0.018867924528301886, 0, 0, 0.00558659217877095, 0, 0.010362694300518135, 0, 0.012422360248447204, 0, 0, 0.017543859649122806, 0, 0, 0.005376344086021506, 0, 0.0163265306122449, 0.027777777777777776, 0.010638297872340425, 0, 0.017391304347826087, 0, 0.015957446808510637, 0, 0, 0.0045662100456621, 0.02564102564102564, 0, 0.012121212121212121, 0, 0.0106951871657754, 0, 0.009708737864077669, 0, 0.00625, 0, 0, 0, 0, 0, 0.010471204188481676, 0.018867924528301886, 0.006802721088435374, 0.016129032258064516, 0, 0.014018691588785047, 0, 0, 0, 0, 0, 0, 0.0078125, 0.012987012987012988, 0, 0, 0.008658008658008658, 0.007936507936507936, 0, 0.010033444816053512, 0, 0, 0.005319148936170213, 0, 0, 0, 0.005649717514124294, 0, 0, 0.023255813953488372, 0, 0.005434782608695652, 0, 0, 0, 0, 0.02, 0.006024096385542169, 0, 0, 0, 0, 0.010869565217391304, 0.0078125, 0, 0, 0.007692307692307693, 0, 0.046153846153846156, 0, 0, 0.007692307692307693, 0.008403361344537815, 0, 0, 0.02040816326530612, 0, 0, 0.014285714285714285, 0, 0, 0, 0.030534351145038167, 0, 0, 0.026785714285714284, 0, 0, 0.02577319587628866, 0, 0, 0.038461538461538464, 0, 0.021164021164021163, 0, 0.008928571428571428, 0, 0.028846153846153848, 0, 0, 0.005917159763313609, 0, 0.011976047904191617, 0, 0.0106951871657754, 0, 0.004830917874396135, 0, 0, 0.005208333333333333, 0.027777777777777776, 0.020833333333333332, 0, 0, 0.018072289156626505, 0, 0.009615384615384616, 0, 0.006024096385542169, 0.010752688172043012, 0, 0.012121212121212121, 0.014084507042253521, 0, 0.016304347826086956, 0, 0.004484304932735426, 0, 0.0078125, 0, 0, 0.009615384615384616, 0.006493506493506494, 0, 0, 0.008097165991902834, 0, 0, 0.006578947368421052, 0.0125, 0, 0, 0, 0.0189873417721519, 0.02564102564102564, 0, 0.004424778761061947, 0, 0.004149377593360996, 0, 0, 0, 0, 0, 0.01485148514851485, 0, 0, 0, 0.011299435028248588, 0.012195121951219513, 0, 0.012903225806451613, 0.012195121951219513, 0, 0.006993006993006993, 0.047619047619047616, 0, 0.006825938566552901, 0, 0, 0, 0, 0, 0.008695652173913044, 0.029411764705882353, 0.010362694300518135, 0, 0.005847953216374269, 0.011363636363636364, 0, 0, 0.017857142857142856, 0.0072992700729927005, 0, 0, 0, 0, 0, 0.010309278350515464, 0.010526315789473684, 0, 0.008438818565400843, 0, 0, 0, 0.009569377990430622, 0.017857142857142856, 0, 0.005434782608695652, 0, 0, 0, 0, 0, 0, 0, 0.25, 0, 0, 0.005649717514124294, 0, 0, 0, 0, 0, 0.009345794392523364, 0, 0, 0.013071895424836602, 0, 0, 0.019762845849802372, 0, 0.0051813471502590676, 0, 0, 0, 0, 0.008928571428571428, 0, 0, 0.00411522633744856, 0, 0.013888888888888888, 0.03225806451612903, 0, 0.015444015444015444, 0, 0.007352941176470588, 0, 0, 0.004672897196261682, 0, 0.010752688172043012, 0, 0.0022522522522522522, 0, 0.015384615384615385, 0.02127659574468085, 0, 0, 0, 0, 0, 0, 0.012658227848101266, 0, 0, 0, 0.017857142857142856, 0.009174311926605505, 0, 0.008, 0, 0.023809523809523808, 0.007874015748031496, 0.009523809523809525, 0, 0.003236245954692557, 0, 0, 0, 0.010714285714285714, 0.009009009009009009, 0.034482758620689655, 0.007220216606498195, 0, 0, 0, 0.012295081967213115, 0, 0, 0, 0.018292682926829267, 0, 0, 0, 0, 0, 0, 0.004878048780487805, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.003745318352059925, 0.05263157894736842, 0.0091324200913242, 0, 0.004347826086956522, 0, 0, 0, 0, 0, 0, 0, 0, 0.011695906432748537, 0, 0, 0.02072538860103627, 0, 0.007936507936507936, 0, 0.013245033112582781, 0, 0, 0, 0.013333333333333334, 0, 0.010582010582010581, 0, 0.019417475728155338, 0.012345679012345678, 0, 0.012345679012345678, 0, 0.005681818181818182, 0, 0.01092896174863388, 0, 0.009615384615384616, 0, 0, 0.010810810810810811, 0.02564102564102564, 0.016483516483516484, 0, 0, 0.014285714285714285, 0, 0.018867924528301886, 0, 0, 0.005714285714285714, 0, 0.0055248618784530384, 0, 0.017045454545454544, 0, 0.01818181818181818, 0, 0, 0.006944444444444444, 0, 0.01276595744680851, 0, 0.01507537688442211, 0, 0, 0.00684931506849315, 0, 0, 0.009950248756218905, 0, 0, 0, 0, 0.007042253521126761, 0, 0.01020408163265306, 0, 0, 0.011627906976744186, 0, 0, 0, 0.013513513513513514, 0, 0.007936507936507936, 0, 0.005917159763313609, 0, 0.03636363636363636, 0, 0.014018691588785047, 0, 0.006756756756756757, 0.018518518518518517, 0.020134228187919462, 0.013888888888888888, 0, 0, 0, 0, 0.009345794392523364, 0, 0, 0, 0, 0, 0.015625, 0.007692307692307693, 0, 0.009345794392523364, 0, 0, 0.02702702702702703, 0.012048192771084338, 0, 0, 0, 0.006329113924050633, 0, 0, 0, 0, 0.006666666666666667, 0, 0, 0, 0, 0, 0, 0.00558659217877095, 0, 0, 0.007518796992481203, 0, 0, 0, 0, 0.008130081300813009, 0.008620689655172414, 0, 0, 0, 0, 0, 0, 0.011976047904191617, 0, 0, 0, 0, 0, 0, 0, 0.007751937984496124, 0, 0.037383177570093455, 0.006666666666666667, 0, 0, 0.008264462809917356, 0.021505376344086023, 0, 0.013157894736842105, 0, 0.02304147465437788, 0, 0.009569377990430622, 0, 0.01639344262295082, 0, 0, 0, 0, 0.011299435028248588, 0, 0.006711409395973154, 0, 0, 0.010752688172043012, 0, 0.02631578947368421, 0.015789473684210527, 0, 0.014598540145985401, 0, 0, 0.011976047904191617, 0, 0.010638297872340425, 0, 0.004830917874396135, 0, 0.014705882352941176, 0.029411764705882353, 0.005291005291005291, 0, 0.013100436681222707, 0, 0.005434782608695652, 0, 0.004464285714285714, 0.015267175572519083, 0, 0, 0.012422360248447204, 0, 0.011764705882352941, 0.012121212121212121, 0, 0, 0, 0, 0, 0.015037593984962405, 0, 0, 0, 0, 0.008403361344537815, 0, 0, 0.007633587786259542, 0, 0, 0.047619047619047616, 0.00784313725490196, 0, 0.008695652173913044, 0.011111111111111112, 0, 0.013888888888888888, 0.01639344262295082, 0.009569377990430622, 0, 0, 0.010416666666666666, 0, 0, 0, 0, 0, 0, 0, 0.018433179723502304, 0.00558659217877095, 0, 0, 0.022857142857142857, 0, 0, 0.011764705882352941, 0, 0, 0.004629629629629629, 0.013333333333333334, 0, 0.012738853503184714, 0, 0, 0.012048192771084338, 0, 0, 0, 0, 0, 0, 0.006329113924050633, 0.005319148936170213, 0.015267175572519083, 0, 0, 0.012987012987012988, 0, 0, 0.033112582781456956, 0, 0, 0.25, 0.012738853503184714, 0, 0.008928571428571428, 0, 0, 0.009009009009009009, 0, 0.058823529411764705, 0.008771929824561403, 0, 0, 0.0045045045045045045, 0, 0.02142857142857143, 0, 0, 0.006369426751592357, 0, 0, 0.013422818791946308, 0, 0, 0.014598540145985401, 0, 0, 0.011494252873563218, 0, 0.007518796992481203, 0, 0, 0.010526315789473684, 0, 0, 0.0078125, 0.01639344262295082, 0, 0.01282051282051282, 0, 0, 0, 0.004166666666666667, 0, 0, 0.014388489208633094, 0, 0, 0.004878048780487805, 0, 0.011695906432748537, 0.01694915254237288, 0.0025906735751295338, 0, 0.005405405405405406, 0, 0, 0.011450381679389313, 0.01818181818181818, 0, 0, 0.020833333333333332, 0.0061162079510703364, 0, 0, 0, 0.01485148514851485, 0, 0, 0, 0, 0.0125, 0.0136986301369863, 0, 0, 0, 0.013100436681222707, 0, 0, 0.016548463356973995, 0, 0, 0.012269938650306749, 0, 0.016042780748663103, 0, 0.016129032258064516, 0, 0.016666666666666666, 0.034482758620689655, 0.014285714285714285, 0, 0, 0, 0.003676470588235294, 0, 0.005319148936170213, 0.006756756756756757, 0, 0, 0, 0.008, 0.023255813953488372, 0, 0, 0, 0.012195121951219513, 0, 0, 0, 0.00819672131147541, 0, 0, 0, 0.009259259259259259, 0.014084507042253521, 0.008620689655172414, 0.010869565217391304, 0.01834862385321101, 0, 0, 0.023255813953488372, 0, 0, 0.008620689655172414, 0.023255813953488372, 0, 0.02631578947368421, 0.006578947368421052, 0, 0, 0.005813953488372093, 0, 0, 0.008333333333333333, 0.02857142857142857, 0, 0, 0.02197802197802198, 0, 0.009708737864077669, 0, 0, 0.016666666666666666, 0.02, 0, 0, 0, 0, 0, 0.011111111111111112, 0, 0, 0.01652892561983471, 0, 0.009009009009009009, 0, 0, 0.006711409395973154, 0, 0, 0.01910828025477707, 0, 0.013513513513513514, 0.022388059701492536, 0, 0, 0.0136986301369863, 0, 0, 0, 0, 0, 0.022222222222222223, 0.012048192771084338, 0.016666666666666666, 0.010309278350515464, 0, 0, 0, 0, 0, 0.008771929824561403, 0, 0.013392857142857142, 0, 0.018867924528301886, 0.023255813953488372, 0.008620689655172414, 0, 0, 0.013157894736842105, 0.04, 0.009174311926605505, 0, 0, 0.01935483870967742, 0, 0, 0.02830188679245283, 0, 0, 0.010869565217391304, 0.012658227848101266, 0, 0, 0, 0.015151515151515152, 0, 0.013157894736842105, 0, 0.021739130434782608, 0.006060606060606061, 0, 0.013043478260869565, 0, 0.021164021164021163, 0.014084507042253521, 0, 0.009259259259259259, 0, 0, 0.03278688524590164, 0, 0.021739130434782608, 0, 0.01818181818181818, 0, 0.04, 0.014184397163120567, 0, 0, 0.011494252873563218, 0.0213903743315508, 0, 0.047619047619047616, 0.0076045627376425855, 0, 0.013215859030837005, 0, 0.015544041450777202, 0, 0, 0, 0.010869565217391304, 0, 0.01092896174863388, 0, 0.015151515151515152, 0, 0.01327433628318584, 0, 0, 0.0136986301369863, 0, 0, 0.011363636363636364, 0.0196078431372549, 0, 0, 0.01485148514851485, 0, 0, 0, 0.0136986301369863, 0, 0, 0.011976047904191617, 0, 0, 0.016597510373443983, 0, 0.011811023622047244, 0, 0.014705882352941176, 0, 0, 0, 0, 0, 0.01875, 0, 0.014285714285714285, 0, 0.004807692307692308, 0.005555555555555556, 0.012903225806451613, 0, 0.00966183574879227, 0, 0, 0, 0.03333333333333333, 0.0136986301369863, 0, 0, 0, 0, 0, 0.02857142857142857, 0.004484304932735426, 0.009345794392523364, 0, 0, 0.00625, 0, 0.005747126436781609, 0.0196078431372549, 0.005952380952380952, 0.009174311926605505, 0, 0, 0.013888888888888888, 0.007518796992481203, 0.03125, 0.004524886877828055, 0.00625, 0, 0.004694835680751174, 0, 0, 0.01694915254237288, 0.016877637130801686, 0, 0.015384615384615385, 0, 0, 0, 0.01509433962264151, 0, 0.012345679012345678, 0, 0.0078125, 0, 0, 0.007462686567164179, 0, 0, 0.015873015873015872, 0.014388489208633094, 0, 0, 0.025423728813559324, 0, 0.01652892561983471, 0.005128205128205128, 0, 0.020833333333333332, 0, 0, 0, 0.013043478260869565, 0, 0.012195121951219513, 0.010416666666666666, 0, 0, 0, 0, 0.0058823529411764705, 0, 0.026143790849673203, 0, 0.011049723756906077, 0.00966183574879227, 0, 0.007874015748031496, 0.011494252873563218, 0, 0.014705882352941176, 0, 0, 0.004464285714285714, 0, 0, 0.011235955056179775, 0.017241379310344827, 0, 0.015151515151515152, 0, 0.022222222222222223, 0, 0, 0.03571428571428571, 0.017241379310344827, 0.014705882352941176, 0, 0.008333333333333333, 0, 0.014354066985645933, 0, 0, 0.018072289156626505, 0, 0, 0.004739336492890996, 0, 0, 0.0053475935828877, 0, 0.011904761904761904, 0, 0, 0.0125, 0.016666666666666666, 0.0028328611898017, 0, 0, 0, 0.0058823529411764705, 0, 0.01935483870967742, 0.020833333333333332, 0.008403361344537815, 0, 0.020833333333333332, 0.003816793893129771, 0, 0, 0.011111111111111112, 0.034482758620689655, 0.01639344262295082, 0, 0.015503875968992248, 0, 0, 0.014563106796116505, 0, 0.014705882352941176, 0, 0, 0, 0.010416666666666666, 0, 0.008968609865470852, 0, 0, 0, 0, 0, 0, 0, 0.007782101167315175, 0, 0, 0, 0.01327433628318584, 0.0234375, 0, 0.02, 0, 0, 0.008547008547008548, 0, 0.008264462809917356, 0.004424778761061947, 0, 0, 0, 0, 0.005649717514124294, 0.00684931506849315, 0.0078125, 0.005076142131979695, 0, 0.014285714285714285, 0.008849557522123894, 0, 0, 0.012195121951219513, 0, 0.006944444444444444, 0, 0.00546448087431694, 0, 0.00625, 0, 0.015384615384615385, 0, 0.004830917874396135, 0, 0.00909090909090909, 0, 0, 0.009478672985781991, 0, 0.009523809523809525, 0, 0.015625, 0, 0, 0.005847953216374269, 0, 0, 0, 0.005555555555555556, 0, 0, 0, 0, 0.011811023622047244, 0, 0, 0.005714285714285714, 0, 0, 0.013574660633484163, 0, 0.007874015748031496, 0, 0, 0.019230769230769232, 0, 0.004484304932735426, 0, 0.00980392156862745, 0, 0.003861003861003861, 0, 0, 0.01282051282051282, 0, 0, 0.015957446808510637, 0, 0.01015228426395939, 0, 0, 0.015503875968992248, 0, 0, 0.013986013986013986, 0, 0, 0.0072992700729927005, 0, 0.016853932584269662, 0, 0, 0.043478260869565216, 0.009174311926605505, 0.010752688172043012, 0, 0.011904761904761904, 0, 0, 0.011976047904191617, 0, 0, 0.011834319526627219, 0, 0, 0, 0, 0.014598540145985401, 0, 0.015544041450777202, 0, 0.009615384615384616, 0.016666666666666666, 0, 0.004405286343612335, 0, 0.01593625498007968, 0, 0.012578616352201259, 0, 0, 0.0027397260273972603, 0.010869565217391304, 0, 0, 0, 0, 0.007352941176470588, 0, 0, 0, 0, 0, 0.016666666666666666, 0.016574585635359115, 0, 0.008, 0, 0, 0.006622516556291391, 0, 0.01694915254237288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.002976190476190476, 0, 0, 0.006872852233676976, 0, 0.014084507042253521, 0, 0.022727272727272728, 0, 0.014925373134328358, 0, 0, 0.010101010101010102, 0, 0, 0.011494252873563218, 0, 0.015384615384615385, 0, 0, 0.00796812749003984, 0, 0.02247191011235955, 0, 0, 0.016, 0, 0, 0.012658227848101266, 0, 0.010810810810810811, 0, 0.004672897196261682, 0, 0.017241379310344827, 0, 0.012422360248447204, 0.003424657534246575, 0, 0.006993006993006993, 0, 0.004366812227074236, 0, 0, 0, 0, 0, 0, 0, 0.02066115702479339, 0, 0.016666666666666666, 0.02564102564102564, 0.02127659574468085, 0, 0, 0, 0, 0, 0.00823045267489712, 0, 0, 0, 0.0111731843575419, 0, 0, 0.015384615384615385, 0.007194244604316547, 0, 0.00625, 0, 0, 0.011235955056179775, 0, 0.006097560975609756, 0, 0.011764705882352941, 0, 0, 0, 0.017316017316017316, 0, 0.005154639175257732, 0, 0, 0.009569377990430622, 0, 0, 0.00684931506849315, 0, 0, 0.01, 0, 0, 0.014218009478672985, 0.02127659574468085, 0.005208333333333333, 0, 0.01092896174863388, 0, 0.006622516556291391, 0, 0, 0.005376344086021506, 0.0020920502092050207, 0.01875, 0, 0, 0, 0.009009009009009009, 0, 0, 0.016260162601626018, 0.008620689655172414, 0.007518796992481203, 0.014285714285714285, 0, 0.018691588785046728, 0, 0.005235602094240838, 0, 0, 0, 0.01507537688442211, 0, 0.013605442176870748, 0, 0.01020408163265306, 0.004672897196261682, 0.00558659217877095, 0, 0, 0, 0, 0, 0, 0, 0.008620689655172414, 0.011627906976744186, 0.0064516129032258064, 0, 0, 0, 0.017241379310344827, 0.018867924528301886, 0.011904761904761904, 0, 0, 0.012195121951219513, 0.015113350125944584, 0, 0.007751937984496124, 0, 0.029850746268656716, 0, 0, 0.007462686567164179, 0.005847953216374269, 0, 0.005263157894736842, 0, 0.007905138339920948, 0.005917159763313609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.011111111111111112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.007518796992481203, 0, 0.006493506493506494, 0.005952380952380952, 0.004672897196261682, 0, 0, 0, 0, 0.003968253968253968, 0, 0.005128205128205128, 0, 0, 0, 0, 0.01282051282051282, 0, 0, 0.009345794392523364, 0, 0, 0, 0, 0.016129032258064516, 0, 0.015503875968992248, 0.021505376344086023, 0, 0.006756756756756757, 0.005747126436781609, 0, 0, 0, 0, 0, 0, 0, 0, 0.01171875, 0.0072992700729927005, 0, 0, 0, 0, 0, 0, 0, 0.005128205128205128, 0.01834862385321101, 0.007782101167315175, 0.03125, 0.013888888888888888, 0, 0.006024096385542169, 0.004672897196261682, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.006369426751592357, 0.008928571428571428, 0, 0, 0.005555555555555556, 0.00423728813559322, 0.009345794392523364, 0.008771929824561403, 0, 0, 0, 0, 0.0072992700729927005, 0.020833333333333332, 0.01904761904761905, 0, 0, 0, 0, 0.010101010101010102, 0, 0, 0, 0, 0, 0, 0, 0, 0.006756756756756757, 0, 0, 0, 0, 0.014752889107450208, 0.005847953216374269, 0.00816326530612245, 0, 0.014184397163120567, 0, 0.0163265306122449, 0, 0.01195219123505976, 0.004098360655737705, 0, 0.013636363636363636, 0, 0.005376344086021506, 0, 0.013245033112582781, 0.007662835249042145, 0, 0.0071174377224199285, 0, 0.011049723756906077, 0.009569377990430622, 0.012658227848101266, 0.015706806282722512, 0, 0, 0.013215859030837005, 0, 0.016483516483516484, 0.008620689655172414, 0.016129032258064516, 0, 0.004310344827586207, 0, 0, 0.010869565217391304, 0.006369426751592357, 0.020202020202020204, 0, 0.008658008658008658, 0, 0.008968609865470852, 0, 0.020618556701030927, 0, 0.02262443438914027, 0.005988023952095809, 0.015789473684210527, 0, 0, 0.016129032258064516, 0.012396694214876033, 0, 0.018633540372670808, 0, 0, 0.011904761904761904, 0.008733624454148471, 0, 0, 0.019230769230769232, 0, 0, 0, 0.012422360248447204, 0.007407407407407408, 0, 0.012145748987854251, 0.014134275618374558, 0, 0.009950248756218905, 0, 0, 0.005076142131979695, 0, 0, 0.022900763358778626, 0.009433962264150943, 0, 0, 0, 0.008298755186721992, 0.01968503937007874, 0, 0.017167381974248927, 0, 0.0125, 0, 0.020202020202020204, 0, 0.02666666666666667, 0.02074688796680498, 0, 0, 0.018518518518518517, 0.013029315960912053, 0, 0.028169014084507043, 0, 0, 0, 0.01568627450980392, 0, 0.017921146953405017, 0.01567398119122257, 0, 0.016597510373443983, 0.0136986301369863, 0.016722408026755852, 0, 0.015706806282722512, 0.006711409395973154, 0.009554140127388535, 0.015706806282722512, 0, 0.013422818791946308, 0, 0, 0.014634146341463415, 0, 0, 0.013793103448275862, 0, 0, 0.017543859649122806, 0, 0, 0.0106951871657754, 0, 0.016483516483516484, 0, 0.009569377990430622, 0, 0, 0.010238907849829351, 0, 0.007380073800738007, 0, 0.0091324200913242, 0, 0.00390625, 0, 0, 0.03263546798029557, 0.05319148936170213, 0.05555555555555555, 0.03934426229508197, 0.05781865965834428, 0.046511627906976744, 0.030927835051546393, 0.0321285140562249, 0.026785714285714284, 0.013157894736842105, 0.018867924528301886, 0.021739130434782608, 0.022222222222222223, 0, 0.012965964343598054, 0, 0, 0, 0.03571428571428571, 0, 0, 0, 0, 0, 0, 0, 0.06666666666666667, 0, 0.043478260869565216, 0.03333333333333333, 0.037037037037037035, 0.02702702702702703, 0.03125, 0.038461538461538464, 0.041666666666666664, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.06521739130434782, 0.05263157894736842, 0.037037037037037035, 0, 0, 0, 0, 0, 0.02564102564102564, 0, 0, 0, 0, 0, 0, 0.09090909090909091, 0 ]
0.005984
5
[ { "analysis_explanation": null, "end": 301817, "entity_type": "EMAIL_ADDRESS", "recognition_metadata": { "recognizer_identifier": "EmailRecognizer_140094861343664", "recognizer_name": "EmailRecognizer" }, "score": 1, "start": 301796 }, { "analysis_explanation": null, "end": 301855, "entity_type": "EMAIL_ADDRESS", "recognition_metadata": { "recognizer_identifier": "EmailRecognizer_140094861343664", "recognizer_name": "EmailRecognizer" }, "score": 1, "start": 301831 }, { "analysis_explanation": null, "end": 301892, "entity_type": "EMAIL_ADDRESS", "recognition_metadata": { "recognizer_identifier": "EmailRecognizer_140094861343664", "recognizer_name": "EmailRecognizer" }, "score": 1, "start": 301865 }, { "analysis_explanation": null, "end": 301958, "entity_type": "EMAIL_ADDRESS", "recognition_metadata": { "recognizer_identifier": "EmailRecognizer_140094861343664", "recognizer_name": "EmailRecognizer" }, "score": 1, "start": 301902 }, { "analysis_explanation": null, "end": 46, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37 }, { "analysis_explanation": null, "end": 71, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62 }, { "analysis_explanation": null, "end": 303, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 275 }, { "analysis_explanation": null, "end": 330, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 305 }, { "analysis_explanation": null, "end": 363, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 347 }, { "analysis_explanation": null, "end": 624, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 615 }, { "analysis_explanation": null, "end": 689, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 680 }, { "analysis_explanation": null, "end": 761, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 747 }, { "analysis_explanation": null, "end": 793, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 777 }, { "analysis_explanation": null, "end": 829, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 813 }, { "analysis_explanation": null, "end": 865, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 849 }, { "analysis_explanation": null, "end": 900, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 881 }, { "analysis_explanation": null, "end": 912, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 902 }, { "analysis_explanation": null, "end": 922, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 914 }, { "analysis_explanation": null, "end": 946, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 927 }, { "analysis_explanation": null, "end": 1023, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1018 }, { "analysis_explanation": null, "end": 1040, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1032 }, { "analysis_explanation": null, "end": 1058, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1049 }, { "analysis_explanation": null, "end": 1114, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1105 }, { "analysis_explanation": null, "end": 1944, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1928 }, { "analysis_explanation": null, "end": 1986, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1979 }, { "analysis_explanation": null, "end": 2226, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2217 }, { "analysis_explanation": null, "end": 2386, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2382 }, { "analysis_explanation": null, "end": 2448, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2439 }, { "analysis_explanation": null, "end": 2490, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2481 }, { "analysis_explanation": null, "end": 2660, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2645 }, { "analysis_explanation": null, "end": 2797, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2790 }, { "analysis_explanation": null, "end": 2818, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2802 }, { "analysis_explanation": null, "end": 2907, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2900 }, { "analysis_explanation": null, "end": 2929, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2923 }, { "analysis_explanation": null, "end": 3000, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2995 }, { "analysis_explanation": null, "end": 3020, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3003 }, { "analysis_explanation": null, "end": 3035, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3026 }, { "analysis_explanation": null, "end": 3130, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3122 }, { "analysis_explanation": null, "end": 3148, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3139 }, { "analysis_explanation": null, "end": 3228, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3221 }, { "analysis_explanation": null, "end": 3238, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3230 }, { "analysis_explanation": null, "end": 3246, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3240 }, { "analysis_explanation": null, "end": 3266, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3261 }, { "analysis_explanation": null, "end": 3726, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3714 }, { "analysis_explanation": null, "end": 3789, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3776 }, { "analysis_explanation": null, "end": 4067, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4058 }, { "analysis_explanation": null, "end": 4162, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4153 }, { "analysis_explanation": null, "end": 4414, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4397 }, { "analysis_explanation": null, "end": 4442, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4433 }, { "analysis_explanation": null, "end": 4475, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4466 }, { "analysis_explanation": null, "end": 4529, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4513 }, { "analysis_explanation": null, "end": 4759, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4750 }, { "analysis_explanation": null, "end": 4890, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4887 }, { "analysis_explanation": null, "end": 4896, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4891 }, { "analysis_explanation": null, "end": 4943, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4930 }, { "analysis_explanation": null, "end": 5124, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5111 }, { "analysis_explanation": null, "end": 5206, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5190 }, { "analysis_explanation": null, "end": 5219, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5210 }, { "analysis_explanation": null, "end": 5243, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5231 }, { "analysis_explanation": null, "end": 5276, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5269 }, { "analysis_explanation": null, "end": 5571, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5562 }, { "analysis_explanation": null, "end": 5736, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5727 }, { "analysis_explanation": null, "end": 5838, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5831 }, { "analysis_explanation": null, "end": 5854, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5847 }, { "analysis_explanation": null, "end": 5944, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5927 }, { "analysis_explanation": null, "end": 5976, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5967 }, { "analysis_explanation": null, "end": 6005, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5997 }, { "analysis_explanation": null, "end": 6033, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6022 }, { "analysis_explanation": null, "end": 6185, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6178 }, { "analysis_explanation": null, "end": 6241, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6234 }, { "analysis_explanation": null, "end": 6345, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6313 }, { "analysis_explanation": null, "end": 6369, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6360 }, { "analysis_explanation": null, "end": 6600, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6590 }, { "analysis_explanation": null, "end": 6633, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6620 }, { "analysis_explanation": null, "end": 6673, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6668 }, { "analysis_explanation": null, "end": 6794, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6781 }, { "analysis_explanation": null, "end": 6885, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6878 }, { "analysis_explanation": null, "end": 6954, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6938 }, { "analysis_explanation": null, "end": 6969, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6956 }, { "analysis_explanation": null, "end": 7290, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7272 }, { "analysis_explanation": null, "end": 7339, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7323 }, { "analysis_explanation": null, "end": 7417, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7406 }, { "analysis_explanation": null, "end": 7508, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7495 }, { "analysis_explanation": null, "end": 7668, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7652 }, { "analysis_explanation": null, "end": 7914, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7885 }, { "analysis_explanation": null, "end": 7947, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7942 }, { "analysis_explanation": null, "end": 8116, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8108 }, { "analysis_explanation": null, "end": 8243, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8234 }, { "analysis_explanation": null, "end": 8327, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8315 }, { "analysis_explanation": null, "end": 8371, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8353 }, { "analysis_explanation": null, "end": 8878, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8874 }, { "analysis_explanation": null, "end": 8905, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8901 }, { "analysis_explanation": null, "end": 8988, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8979 }, { "analysis_explanation": null, "end": 9207, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9199 }, { "analysis_explanation": null, "end": 9284, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9272 }, { "analysis_explanation": null, "end": 9448, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9444 }, { "analysis_explanation": null, "end": 9829, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9806 }, { "analysis_explanation": null, "end": 9866, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9848 }, { "analysis_explanation": null, "end": 9910, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9885 }, { "analysis_explanation": null, "end": 10017, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9997 }, { "analysis_explanation": null, "end": 10071, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10054 }, { "analysis_explanation": null, "end": 10208, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10196 }, { "analysis_explanation": null, "end": 10361, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10341 }, { "analysis_explanation": null, "end": 10420, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10414 }, { "analysis_explanation": null, "end": 10524, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10520 }, { "analysis_explanation": null, "end": 10737, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10731 }, { "analysis_explanation": null, "end": 10824, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10820 }, { "analysis_explanation": null, "end": 10854, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10841 }, { "analysis_explanation": null, "end": 11152, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11139 }, { "analysis_explanation": null, "end": 11219, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11215 }, { "analysis_explanation": null, "end": 11277, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11268 }, { "analysis_explanation": null, "end": 11514, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11496 }, { "analysis_explanation": null, "end": 11808, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11797 }, { "analysis_explanation": null, "end": 11901, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11892 }, { "analysis_explanation": null, "end": 12057, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12050 }, { "analysis_explanation": null, "end": 12197, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12192 }, { "analysis_explanation": null, "end": 12374, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12341 }, { "analysis_explanation": null, "end": 12557, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12550 }, { "analysis_explanation": null, "end": 12670, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12661 }, { "analysis_explanation": null, "end": 12782, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12761 }, { "analysis_explanation": null, "end": 12830, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12819 }, { "analysis_explanation": null, "end": 12871, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12859 }, { "analysis_explanation": null, "end": 12918, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12910 }, { "analysis_explanation": null, "end": 13011, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12997 }, { "analysis_explanation": null, "end": 13170, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13144 }, { "analysis_explanation": null, "end": 13212, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13199 }, { "analysis_explanation": null, "end": 13580, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13569 }, { "analysis_explanation": null, "end": 13816, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13799 }, { "analysis_explanation": null, "end": 13901, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13884 }, { "analysis_explanation": null, "end": 13922, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13911 }, { "analysis_explanation": null, "end": 13946, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13941 }, { "analysis_explanation": null, "end": 14053, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14042 }, { "analysis_explanation": null, "end": 14137, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14133 }, { "analysis_explanation": null, "end": 14154, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14139 }, { "analysis_explanation": null, "end": 14281, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14272 }, { "analysis_explanation": null, "end": 14294, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14285 }, { "analysis_explanation": null, "end": 14389, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14383 }, { "analysis_explanation": null, "end": 14468, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14452 }, { "analysis_explanation": null, "end": 14517, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14502 }, { "analysis_explanation": null, "end": 14538, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14527 }, { "analysis_explanation": null, "end": 14577, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14573 }, { "analysis_explanation": null, "end": 14618, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14612 }, { "analysis_explanation": null, "end": 14678, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14667 }, { "analysis_explanation": null, "end": 14692, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14683 }, { "analysis_explanation": null, "end": 14811, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14804 }, { "analysis_explanation": null, "end": 14864, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14861 }, { "analysis_explanation": null, "end": 14979, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14968 }, { "analysis_explanation": null, "end": 15052, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15048 }, { "analysis_explanation": null, "end": 15178, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15170 }, { "analysis_explanation": null, "end": 15198, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15193 }, { "analysis_explanation": null, "end": 15227, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15216 }, { "analysis_explanation": null, "end": 15284, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15277 }, { "analysis_explanation": null, "end": 15310, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15303 }, { "analysis_explanation": null, "end": 15381, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15369 }, { "analysis_explanation": null, "end": 15722, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15713 }, { "analysis_explanation": null, "end": 15770, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15764 }, { "analysis_explanation": null, "end": 15824, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15808 }, { "analysis_explanation": null, "end": 15857, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15853 }, { "analysis_explanation": null, "end": 15864, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15859 }, { "analysis_explanation": null, "end": 16060, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16048 }, { "analysis_explanation": null, "end": 16073, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16064 }, { "analysis_explanation": null, "end": 16143, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16123 }, { "analysis_explanation": null, "end": 16294, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16289 }, { "analysis_explanation": null, "end": 16302, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16299 }, { "analysis_explanation": null, "end": 16524, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16504 }, { "analysis_explanation": null, "end": 16596, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16589 }, { "analysis_explanation": null, "end": 16725, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16716 }, { "analysis_explanation": null, "end": 16797, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16788 }, { "analysis_explanation": null, "end": 16855, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16849 }, { "analysis_explanation": null, "end": 16907, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16898 }, { "analysis_explanation": null, "end": 16963, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16949 }, { "analysis_explanation": null, "end": 17026, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17017 }, { "analysis_explanation": null, "end": 17073, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17064 }, { "analysis_explanation": null, "end": 17080, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17074 }, { "analysis_explanation": null, "end": 17118, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17110 }, { "analysis_explanation": null, "end": 17257, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17246 }, { "analysis_explanation": null, "end": 17353, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17344 }, { "analysis_explanation": null, "end": 17365, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17358 }, { "analysis_explanation": null, "end": 17474, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17460 }, { "analysis_explanation": null, "end": 17836, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17825 }, { "analysis_explanation": null, "end": 18219, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18210 }, { "analysis_explanation": null, "end": 18431, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18425 }, { "analysis_explanation": null, "end": 18515, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18508 }, { "analysis_explanation": null, "end": 18785, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18782 }, { "analysis_explanation": null, "end": 19074, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19061 }, { "analysis_explanation": null, "end": 19241, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19235 }, { "analysis_explanation": null, "end": 19265, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19258 }, { "analysis_explanation": null, "end": 19274, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19270 }, { "analysis_explanation": null, "end": 19465, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19454 }, { "analysis_explanation": null, "end": 19544, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19537 }, { "analysis_explanation": null, "end": 19565, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19549 }, { "analysis_explanation": null, "end": 19576, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19572 }, { "analysis_explanation": null, "end": 19793, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19777 }, { "analysis_explanation": null, "end": 19810, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19803 }, { "analysis_explanation": null, "end": 20013, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20005 }, { "analysis_explanation": null, "end": 20032, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20027 }, { "analysis_explanation": null, "end": 20070, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20050 }, { "analysis_explanation": null, "end": 20134, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20123 }, { "analysis_explanation": null, "end": 20141, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20138 }, { "analysis_explanation": null, "end": 20185, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20176 }, { "analysis_explanation": null, "end": 20283, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20262 }, { "analysis_explanation": null, "end": 20571, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20557 }, { "analysis_explanation": null, "end": 20632, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20623 }, { "analysis_explanation": null, "end": 20644, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20637 }, { "analysis_explanation": null, "end": 20651, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20646 }, { "analysis_explanation": null, "end": 20738, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20733 }, { "analysis_explanation": null, "end": 20991, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20984 }, { "analysis_explanation": null, "end": 21026, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21022 }, { "analysis_explanation": null, "end": 21038, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21034 }, { "analysis_explanation": null, "end": 21415, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21408 }, { "analysis_explanation": null, "end": 21508, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21500 }, { "analysis_explanation": null, "end": 21700, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21682 }, { "analysis_explanation": null, "end": 21818, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21809 }, { "analysis_explanation": null, "end": 21850, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21846 }, { "analysis_explanation": null, "end": 21933, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21916 }, { "analysis_explanation": null, "end": 21956, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21940 }, { "analysis_explanation": null, "end": 21983, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21968 }, { "analysis_explanation": null, "end": 22034, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22015 }, { "analysis_explanation": null, "end": 22081, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22052 }, { "analysis_explanation": null, "end": 22133, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22128 }, { "analysis_explanation": null, "end": 22155, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22142 }, { "analysis_explanation": null, "end": 22189, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22174 }, { "analysis_explanation": null, "end": 22216, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22203 }, { "analysis_explanation": null, "end": 22229, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22221 }, { "analysis_explanation": null, "end": 22251, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22236 }, { "analysis_explanation": null, "end": 22377, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22366 }, { "analysis_explanation": null, "end": 22452, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22435 }, { "analysis_explanation": null, "end": 22464, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22457 }, { "analysis_explanation": null, "end": 22709, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22683 }, { "analysis_explanation": null, "end": 22722, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22711 }, { "analysis_explanation": null, "end": 22791, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22789 }, { "analysis_explanation": null, "end": 22892, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22879 }, { "analysis_explanation": null, "end": 22917, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22910 }, { "analysis_explanation": null, "end": 23319, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23303 }, { "analysis_explanation": null, "end": 23338, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23331 }, { "analysis_explanation": null, "end": 23691, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23682 }, { "analysis_explanation": null, "end": 23712, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23705 }, { "analysis_explanation": null, "end": 23786, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23784 }, { "analysis_explanation": null, "end": 23883, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23878 }, { "analysis_explanation": null, "end": 24175, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24166 }, { "analysis_explanation": null, "end": 24222, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24214 }, { "analysis_explanation": null, "end": 24235, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24227 }, { "analysis_explanation": null, "end": 24541, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24532 }, { "analysis_explanation": null, "end": 24751, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24747 }, { "analysis_explanation": null, "end": 24770, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24759 }, { "analysis_explanation": null, "end": 24816, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24808 }, { "analysis_explanation": null, "end": 24968, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24961 }, { "analysis_explanation": null, "end": 25019, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25015 }, { "analysis_explanation": null, "end": 25091, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25081 }, { "analysis_explanation": null, "end": 25143, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25137 }, { "analysis_explanation": null, "end": 25516, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25507 }, { "analysis_explanation": null, "end": 25587, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25580 }, { "analysis_explanation": null, "end": 25724, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25711 }, { "analysis_explanation": null, "end": 25867, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25863 }, { "analysis_explanation": null, "end": 26025, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26006 }, { "analysis_explanation": null, "end": 26088, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26076 }, { "analysis_explanation": null, "end": 26118, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26111 }, { "analysis_explanation": null, "end": 26259, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26247 }, { "analysis_explanation": null, "end": 26609, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26602 }, { "analysis_explanation": null, "end": 26623, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26613 }, { "analysis_explanation": null, "end": 26774, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26769 }, { "analysis_explanation": null, "end": 26792, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26783 }, { "analysis_explanation": null, "end": 26841, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26830 }, { "analysis_explanation": null, "end": 27232, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27220 }, { "analysis_explanation": null, "end": 27442, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27434 }, { "analysis_explanation": null, "end": 27465, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27458 }, { "analysis_explanation": null, "end": 27499, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27488 }, { "analysis_explanation": null, "end": 27616, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27613 }, { "analysis_explanation": null, "end": 27649, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27646 }, { "analysis_explanation": null, "end": 27687, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27668 }, { "analysis_explanation": null, "end": 27735, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27730 }, { "analysis_explanation": null, "end": 27797, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27787 }, { "analysis_explanation": null, "end": 27926, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27913 }, { "analysis_explanation": null, "end": 28072, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28048 }, { "analysis_explanation": null, "end": 28279, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28270 }, { "analysis_explanation": null, "end": 28370, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28361 }, { "analysis_explanation": null, "end": 28430, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28421 }, { "analysis_explanation": null, "end": 28484, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28463 }, { "analysis_explanation": null, "end": 28528, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28515 }, { "analysis_explanation": null, "end": 28629, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28622 }, { "analysis_explanation": null, "end": 28721, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28714 }, { "analysis_explanation": null, "end": 28755, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28737 }, { "analysis_explanation": null, "end": 29127, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29120 }, { "analysis_explanation": null, "end": 29438, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29431 }, { "analysis_explanation": null, "end": 29662, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29654 }, { "analysis_explanation": null, "end": 30211, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30208 }, { "analysis_explanation": null, "end": 30344, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30338 }, { "analysis_explanation": null, "end": 30361, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30353 }, { "analysis_explanation": null, "end": 30401, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30393 }, { "analysis_explanation": null, "end": 30640, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30635 }, { "analysis_explanation": null, "end": 31054, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31035 }, { "analysis_explanation": null, "end": 31077, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31066 }, { "analysis_explanation": null, "end": 31098, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31094 }, { "analysis_explanation": null, "end": 31244, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31235 }, { "analysis_explanation": null, "end": 31268, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31249 }, { "analysis_explanation": null, "end": 31394, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31385 }, { "analysis_explanation": null, "end": 31423, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31415 }, { "analysis_explanation": null, "end": 31468, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31461 }, { "analysis_explanation": null, "end": 31547, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31535 }, { "analysis_explanation": null, "end": 31604, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31596 }, { "analysis_explanation": null, "end": 31682, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31677 }, { "analysis_explanation": null, "end": 31982, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31975 }, { "analysis_explanation": null, "end": 32094, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32075 }, { "analysis_explanation": null, "end": 32142, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32135 }, { "analysis_explanation": null, "end": 32613, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32604 }, { "analysis_explanation": null, "end": 32644, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32635 }, { "analysis_explanation": null, "end": 32781, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32772 }, { "analysis_explanation": null, "end": 32793, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32786 }, { "analysis_explanation": null, "end": 33124, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33115 }, { "analysis_explanation": null, "end": 33148, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33141 }, { "analysis_explanation": null, "end": 33184, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33172 }, { "analysis_explanation": null, "end": 33263, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33254 }, { "analysis_explanation": null, "end": 33285, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33273 }, { "analysis_explanation": null, "end": 33312, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33307 }, { "analysis_explanation": null, "end": 33630, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33616 }, { "analysis_explanation": null, "end": 33660, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33646 }, { "analysis_explanation": null, "end": 33693, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33684 }, { "analysis_explanation": null, "end": 33863, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33842 }, { "analysis_explanation": null, "end": 33909, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33902 }, { "analysis_explanation": null, "end": 34107, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34091 }, { "analysis_explanation": null, "end": 34228, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34222 }, { "analysis_explanation": null, "end": 34372, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34361 }, { "analysis_explanation": null, "end": 34503, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34478 }, { "analysis_explanation": null, "end": 34574, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34562 }, { "analysis_explanation": null, "end": 34667, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34650 }, { "analysis_explanation": null, "end": 34849, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34833 }, { "analysis_explanation": null, "end": 34932, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34914 }, { "analysis_explanation": null, "end": 34956, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34937 }, { "analysis_explanation": null, "end": 35092, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35079 }, { "analysis_explanation": null, "end": 35119, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35109 }, { "analysis_explanation": null, "end": 35439, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35425 }, { "analysis_explanation": null, "end": 35473, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35463 }, { "analysis_explanation": null, "end": 35497, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35481 }, { "analysis_explanation": null, "end": 35510, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35503 }, { "analysis_explanation": null, "end": 35569, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35553 }, { "analysis_explanation": null, "end": 35728, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35708 }, { "analysis_explanation": null, "end": 36031, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36024 }, { "analysis_explanation": null, "end": 36093, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36086 }, { "analysis_explanation": null, "end": 36145, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36129 }, { "analysis_explanation": null, "end": 36636, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36620 }, { "analysis_explanation": null, "end": 36684, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36677 }, { "analysis_explanation": null, "end": 36710, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36688 }, { "analysis_explanation": null, "end": 36768, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36761 }, { "analysis_explanation": null, "end": 36789, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36773 }, { "analysis_explanation": null, "end": 36824, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36817 }, { "analysis_explanation": null, "end": 36833, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36826 }, { "analysis_explanation": null, "end": 36907, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36900 }, { "analysis_explanation": null, "end": 37276, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37271 }, { "analysis_explanation": null, "end": 37310, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37302 }, { "analysis_explanation": null, "end": 37392, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37387 }, { "analysis_explanation": null, "end": 37424, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37415 }, { "analysis_explanation": null, "end": 37553, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37548 }, { "analysis_explanation": null, "end": 37625, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37618 }, { "analysis_explanation": null, "end": 37665, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37656 }, { "analysis_explanation": null, "end": 37870, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37860 }, { "analysis_explanation": null, "end": 37902, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37895 }, { "analysis_explanation": null, "end": 37914, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37907 }, { "analysis_explanation": null, "end": 38121, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38114 }, { "analysis_explanation": null, "end": 38405, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38384 }, { "analysis_explanation": null, "end": 38455, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38442 }, { "analysis_explanation": null, "end": 38551, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38538 }, { "analysis_explanation": null, "end": 38612, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38582 }, { "analysis_explanation": null, "end": 38744, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38735 }, { "analysis_explanation": null, "end": 38784, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38775 }, { "analysis_explanation": null, "end": 38953, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38944 }, { "analysis_explanation": null, "end": 39102, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39097 }, { "analysis_explanation": null, "end": 39265, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39259 }, { "analysis_explanation": null, "end": 39280, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39269 }, { "analysis_explanation": null, "end": 39347, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39330 }, { "analysis_explanation": null, "end": 39472, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39459 }, { "analysis_explanation": null, "end": 39513, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39504 }, { "analysis_explanation": null, "end": 39594, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39587 }, { "analysis_explanation": null, "end": 39607, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39598 }, { "analysis_explanation": null, "end": 39655, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39649 }, { "analysis_explanation": null, "end": 39661, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39657 }, { "analysis_explanation": null, "end": 39691, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39683 }, { "analysis_explanation": null, "end": 39819, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39812 }, { "analysis_explanation": null, "end": 39834, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39821 }, { "analysis_explanation": null, "end": 39939, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39933 }, { "analysis_explanation": null, "end": 40097, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40081 }, { "analysis_explanation": null, "end": 40254, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40243 }, { "analysis_explanation": null, "end": 40311, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40305 }, { "analysis_explanation": null, "end": 40369, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40356 }, { "analysis_explanation": null, "end": 40518, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40507 }, { "analysis_explanation": null, "end": 40618, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40605 }, { "analysis_explanation": null, "end": 40761, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40755 }, { "analysis_explanation": null, "end": 40856, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40844 }, { "analysis_explanation": null, "end": 40933, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40919 }, { "analysis_explanation": null, "end": 40994, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40980 }, { "analysis_explanation": null, "end": 41032, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41016 }, { "analysis_explanation": null, "end": 41117, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41103 }, { "analysis_explanation": null, "end": 41135, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41131 }, { "analysis_explanation": null, "end": 41185, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41176 }, { "analysis_explanation": null, "end": 41194, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41190 }, { "analysis_explanation": null, "end": 41393, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41381 }, { "analysis_explanation": null, "end": 41418, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41404 }, { "analysis_explanation": null, "end": 42157, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42148 }, { "analysis_explanation": null, "end": 42250, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42242 }, { "analysis_explanation": null, "end": 42272, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42261 }, { "analysis_explanation": null, "end": 42377, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42356 }, { "analysis_explanation": null, "end": 42778, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42752 }, { "analysis_explanation": null, "end": 42917, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42913 }, { "analysis_explanation": null, "end": 42954, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42948 }, { "analysis_explanation": null, "end": 42989, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42976 }, { "analysis_explanation": null, "end": 43155, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43144 }, { "analysis_explanation": null, "end": 43275, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43264 }, { "analysis_explanation": null, "end": 43336, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43330 }, { "analysis_explanation": null, "end": 43412, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43402 }, { "analysis_explanation": null, "end": 43464, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43449 }, { "analysis_explanation": null, "end": 43506, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43496 }, { "analysis_explanation": null, "end": 43537, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43513 }, { "analysis_explanation": null, "end": 43578, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43573 }, { "analysis_explanation": null, "end": 43609, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43604 }, { "analysis_explanation": null, "end": 43878, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43867 }, { "analysis_explanation": null, "end": 43999, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43993 }, { "analysis_explanation": null, "end": 44110, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44102 }, { "analysis_explanation": null, "end": 44278, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44272 }, { "analysis_explanation": null, "end": 44296, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44288 }, { "analysis_explanation": null, "end": 44327, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44321 }, { "analysis_explanation": null, "end": 44353, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44331 }, { "analysis_explanation": null, "end": 44365, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44355 }, { "analysis_explanation": null, "end": 44451, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44442 }, { "analysis_explanation": null, "end": 44560, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44540 }, { "analysis_explanation": null, "end": 44727, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44703 }, { "analysis_explanation": null, "end": 44763, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44753 }, { "analysis_explanation": null, "end": 44773, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44767 }, { "analysis_explanation": null, "end": 44832, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44823 }, { "analysis_explanation": null, "end": 44901, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44872 }, { "analysis_explanation": null, "end": 44936, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44921 }, { "analysis_explanation": null, "end": 44966, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44939 }, { "analysis_explanation": null, "end": 45306, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45298 }, { "analysis_explanation": null, "end": 45436, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45428 }, { "analysis_explanation": null, "end": 45560, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45543 }, { "analysis_explanation": null, "end": 45566, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45561 }, { "analysis_explanation": null, "end": 45698, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45682 }, { "analysis_explanation": null, "end": 45721, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45707 }, { "analysis_explanation": null, "end": 45842, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45836 }, { "analysis_explanation": null, "end": 46049, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46046 }, { "analysis_explanation": null, "end": 46174, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46166 }, { "analysis_explanation": null, "end": 46304, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46297 }, { "analysis_explanation": null, "end": 46349, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46333 }, { "analysis_explanation": null, "end": 46419, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46415 }, { "analysis_explanation": null, "end": 46453, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46442 }, { "analysis_explanation": null, "end": 46552, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46546 }, { "analysis_explanation": null, "end": 46717, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46693 }, { "analysis_explanation": null, "end": 46803, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46796 }, { "analysis_explanation": null, "end": 47157, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47148 }, { "analysis_explanation": null, "end": 47432, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47422 }, { "analysis_explanation": null, "end": 47483, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47474 }, { "analysis_explanation": null, "end": 47537, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47530 }, { "analysis_explanation": null, "end": 47655, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47639 }, { "analysis_explanation": null, "end": 47679, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47660 }, { "analysis_explanation": null, "end": 47702, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47680 }, { "analysis_explanation": null, "end": 47751, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47746 }, { "analysis_explanation": null, "end": 47825, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47818 }, { "analysis_explanation": null, "end": 47862, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47855 }, { "analysis_explanation": null, "end": 47941, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47934 }, { "analysis_explanation": null, "end": 47996, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47989 }, { "analysis_explanation": null, "end": 48019, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48000 }, { "analysis_explanation": null, "end": 48061, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48057 }, { "analysis_explanation": null, "end": 48184, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48179 }, { "analysis_explanation": null, "end": 48196, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48189 }, { "analysis_explanation": null, "end": 48220, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48206 }, { "analysis_explanation": null, "end": 48273, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48257 }, { "analysis_explanation": null, "end": 48300, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48296 }, { "analysis_explanation": null, "end": 48319, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48309 }, { "analysis_explanation": null, "end": 48384, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48379 }, { "analysis_explanation": null, "end": 48396, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48389 }, { "analysis_explanation": null, "end": 48434, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48427 }, { "analysis_explanation": null, "end": 48500, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48484 }, { "analysis_explanation": null, "end": 48515, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48508 }, { "analysis_explanation": null, "end": 48529, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48517 }, { "analysis_explanation": null, "end": 48548, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48544 }, { "analysis_explanation": null, "end": 48602, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48593 }, { "analysis_explanation": null, "end": 48756, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48749 }, { "analysis_explanation": null, "end": 48766, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48761 }, { "analysis_explanation": null, "end": 48789, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48768 }, { "analysis_explanation": null, "end": 48805, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48794 }, { "analysis_explanation": null, "end": 48836, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48829 }, { "analysis_explanation": null, "end": 48877, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48873 }, { "analysis_explanation": null, "end": 48890, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48883 }, { "analysis_explanation": null, "end": 48905, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48898 }, { "analysis_explanation": null, "end": 48931, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48922 }, { "analysis_explanation": null, "end": 49117, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49111 }, { "analysis_explanation": null, "end": 49130, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49123 }, { "analysis_explanation": null, "end": 49159, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49140 }, { "analysis_explanation": null, "end": 49181, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49174 }, { "analysis_explanation": null, "end": 49193, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49189 }, { "analysis_explanation": null, "end": 49203, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49195 }, { "analysis_explanation": null, "end": 49225, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49216 }, { "analysis_explanation": null, "end": 49277, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49269 }, { "analysis_explanation": null, "end": 49401, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49392 }, { "analysis_explanation": null, "end": 49426, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49418 }, { "analysis_explanation": null, "end": 49443, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49434 }, { "analysis_explanation": null, "end": 49474, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49464 }, { "analysis_explanation": null, "end": 49495, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49487 }, { "analysis_explanation": null, "end": 49528, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49521 }, { "analysis_explanation": null, "end": 49534, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49530 }, { "analysis_explanation": null, "end": 49546, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49542 }, { "analysis_explanation": null, "end": 49647, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49642 }, { "analysis_explanation": null, "end": 49688, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49681 }, { "analysis_explanation": null, "end": 49734, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49723 }, { "analysis_explanation": null, "end": 49825, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49821 }, { "analysis_explanation": null, "end": 49838, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49826 }, { "analysis_explanation": null, "end": 49876, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49863 }, { "analysis_explanation": null, "end": 49909, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49898 }, { "analysis_explanation": null, "end": 49960, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49953 }, { "analysis_explanation": null, "end": 49977, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49968 }, { "analysis_explanation": null, "end": 49991, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49986 }, { "analysis_explanation": null, "end": 50003, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49995 }, { "analysis_explanation": null, "end": 50019, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50007 }, { "analysis_explanation": null, "end": 50121, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50117 }, { "analysis_explanation": null, "end": 50133, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50129 }, { "analysis_explanation": null, "end": 50157, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50153 }, { "analysis_explanation": null, "end": 50263, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50254 }, { "analysis_explanation": null, "end": 50367, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50363 }, { "analysis_explanation": null, "end": 50458, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50454 }, { "analysis_explanation": null, "end": 50465, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50460 }, { "analysis_explanation": null, "end": 50512, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50503 }, { "analysis_explanation": null, "end": 50529, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50525 }, { "analysis_explanation": null, "end": 50580, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50573 }, { "analysis_explanation": null, "end": 50636, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50621 }, { "analysis_explanation": null, "end": 50643, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50639 }, { "analysis_explanation": null, "end": 50659, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50649 }, { "analysis_explanation": null, "end": 50677, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50670 }, { "analysis_explanation": null, "end": 50704, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50696 }, { "analysis_explanation": null, "end": 50723, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50714 }, { "analysis_explanation": null, "end": 50747, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50733 }, { "analysis_explanation": null, "end": 50759, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50753 }, { "analysis_explanation": null, "end": 50792, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50778 }, { "analysis_explanation": null, "end": 50847, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50843 }, { "analysis_explanation": null, "end": 50865, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50857 }, { "analysis_explanation": null, "end": 50888, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50880 }, { "analysis_explanation": null, "end": 50910, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50905 }, { "analysis_explanation": null, "end": 50918, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50914 }, { "analysis_explanation": null, "end": 51009, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50989 }, { "analysis_explanation": null, "end": 51040, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51026 }, { "analysis_explanation": null, "end": 51064, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51048 }, { "analysis_explanation": null, "end": 51076, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51069 }, { "analysis_explanation": null, "end": 51103, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51099 }, { "analysis_explanation": null, "end": 51143, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51117 }, { "analysis_explanation": null, "end": 51163, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51152 }, { "analysis_explanation": null, "end": 51254, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51243 }, { "analysis_explanation": null, "end": 51281, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51276 }, { "analysis_explanation": null, "end": 51355, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51351 }, { "analysis_explanation": null, "end": 51421, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51405 }, { "analysis_explanation": null, "end": 51428, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51424 }, { "analysis_explanation": null, "end": 51487, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51482 }, { "analysis_explanation": null, "end": 51519, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51510 }, { "analysis_explanation": null, "end": 51547, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51529 }, { "analysis_explanation": null, "end": 51555, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51548 }, { "analysis_explanation": null, "end": 51633, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51616 }, { "analysis_explanation": null, "end": 51641, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51637 }, { "analysis_explanation": null, "end": 51664, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51643 }, { "analysis_explanation": null, "end": 51678, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51666 }, { "analysis_explanation": null, "end": 51696, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51689 }, { "analysis_explanation": null, "end": 51732, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51723 }, { "analysis_explanation": null, "end": 51740, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51736 }, { "analysis_explanation": null, "end": 51764, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51751 }, { "analysis_explanation": null, "end": 51800, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51787 }, { "analysis_explanation": null, "end": 51847, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51838 }, { "analysis_explanation": null, "end": 51866, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51858 }, { "analysis_explanation": null, "end": 52026, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52014 }, { "analysis_explanation": null, "end": 52069, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52054 }, { "analysis_explanation": null, "end": 52098, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52080 }, { "analysis_explanation": null, "end": 52195, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52191 }, { "analysis_explanation": null, "end": 52230, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52221 }, { "analysis_explanation": null, "end": 52310, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52301 }, { "analysis_explanation": null, "end": 52556, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52549 }, { "analysis_explanation": null, "end": 52566, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52561 }, { "analysis_explanation": null, "end": 52634, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52623 }, { "analysis_explanation": null, "end": 52702, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52685 }, { "analysis_explanation": null, "end": 52904, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52896 }, { "analysis_explanation": null, "end": 52937, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52930 }, { "analysis_explanation": null, "end": 53001, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52997 }, { "analysis_explanation": null, "end": 53081, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53066 }, { "analysis_explanation": null, "end": 53156, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53147 }, { "analysis_explanation": null, "end": 53309, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53302 }, { "analysis_explanation": null, "end": 53395, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53384 }, { "analysis_explanation": null, "end": 53478, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53469 }, { "analysis_explanation": null, "end": 53769, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53758 }, { "analysis_explanation": null, "end": 53817, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53813 }, { "analysis_explanation": null, "end": 54098, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54089 }, { "analysis_explanation": null, "end": 54108, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54102 }, { "analysis_explanation": null, "end": 54184, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54179 }, { "analysis_explanation": null, "end": 54298, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54290 }, { "analysis_explanation": null, "end": 54311, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54309 }, { "analysis_explanation": null, "end": 54344, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54327 }, { "analysis_explanation": null, "end": 54369, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54359 }, { "analysis_explanation": null, "end": 54427, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54419 }, { "analysis_explanation": null, "end": 54537, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54527 }, { "analysis_explanation": null, "end": 54589, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54574 }, { "analysis_explanation": null, "end": 54597, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54593 }, { "analysis_explanation": null, "end": 54642, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54626 }, { "analysis_explanation": null, "end": 54837, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54828 }, { "analysis_explanation": null, "end": 55001, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54990 }, { "analysis_explanation": null, "end": 55094, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55085 }, { "analysis_explanation": null, "end": 55162, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55154 }, { "analysis_explanation": null, "end": 55292, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55283 }, { "analysis_explanation": null, "end": 55374, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55358 }, { "analysis_explanation": null, "end": 55478, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55451 }, { "analysis_explanation": null, "end": 55503, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55495 }, { "analysis_explanation": null, "end": 55520, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55516 }, { "analysis_explanation": null, "end": 55821, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55808 }, { "analysis_explanation": null, "end": 55841, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55828 }, { "analysis_explanation": null, "end": 56089, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56078 }, { "analysis_explanation": null, "end": 56128, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56121 }, { "analysis_explanation": null, "end": 56427, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56416 }, { "analysis_explanation": null, "end": 56561, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56542 }, { "analysis_explanation": null, "end": 56803, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56794 }, { "analysis_explanation": null, "end": 57116, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57109 }, { "analysis_explanation": null, "end": 57137, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57130 }, { "analysis_explanation": null, "end": 57198, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57187 }, { "analysis_explanation": null, "end": 57243, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57220 }, { "analysis_explanation": null, "end": 57368, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57354 }, { "analysis_explanation": null, "end": 57494, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57477 }, { "analysis_explanation": null, "end": 57625, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57616 }, { "analysis_explanation": null, "end": 57823, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57805 }, { "analysis_explanation": null, "end": 57869, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57866 }, { "analysis_explanation": null, "end": 57947, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57936 }, { "analysis_explanation": null, "end": 58025, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58014 }, { "analysis_explanation": null, "end": 58059, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58052 }, { "analysis_explanation": null, "end": 58227, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58220 }, { "analysis_explanation": null, "end": 58452, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58432 }, { "analysis_explanation": null, "end": 58765, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58744 }, { "analysis_explanation": null, "end": 58803, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58786 }, { "analysis_explanation": null, "end": 58855, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58843 }, { "analysis_explanation": null, "end": 58938, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58929 }, { "analysis_explanation": null, "end": 58990, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58976 }, { "analysis_explanation": null, "end": 59151, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59138 }, { "analysis_explanation": null, "end": 59217, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59204 }, { "analysis_explanation": null, "end": 59254, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59237 }, { "analysis_explanation": null, "end": 59268, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59261 }, { "analysis_explanation": null, "end": 59337, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59330 }, { "analysis_explanation": null, "end": 59442, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59426 }, { "analysis_explanation": null, "end": 59678, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59667 }, { "analysis_explanation": null, "end": 59700, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59684 }, { "analysis_explanation": null, "end": 59720, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59706 }, { "analysis_explanation": null, "end": 59921, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59893 }, { "analysis_explanation": null, "end": 60139, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60104 }, { "analysis_explanation": null, "end": 60210, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60206 }, { "analysis_explanation": null, "end": 60218, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60212 }, { "analysis_explanation": null, "end": 60240, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60235 }, { "analysis_explanation": null, "end": 60466, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60458 }, { "analysis_explanation": null, "end": 60504, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60496 }, { "analysis_explanation": null, "end": 60660, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60653 }, { "analysis_explanation": null, "end": 60772, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60764 }, { "analysis_explanation": null, "end": 60802, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60789 }, { "analysis_explanation": null, "end": 60828, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60817 }, { "analysis_explanation": null, "end": 60921, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60914 }, { "analysis_explanation": null, "end": 61206, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 61192 }, { "analysis_explanation": null, "end": 61281, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 61261 }, { "analysis_explanation": null, "end": 61328, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 61309 }, { "analysis_explanation": null, "end": 61362, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 61353 }, { "analysis_explanation": null, "end": 61417, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 61410 }, { "analysis_explanation": null, "end": 61605, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 61587 }, { "analysis_explanation": null, "end": 61781, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 61760 }, { "analysis_explanation": null, "end": 62012, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62001 }, { "analysis_explanation": null, "end": 62181, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62179 }, { "analysis_explanation": null, "end": 62189, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62185 }, { "analysis_explanation": null, "end": 62406, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62402 }, { "analysis_explanation": null, "end": 62424, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62422 }, { "analysis_explanation": null, "end": 62645, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62636 }, { "analysis_explanation": null, "end": 62857, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 62850 }, { "analysis_explanation": null, "end": 63305, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63300 }, { "analysis_explanation": null, "end": 63313, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63307 }, { "analysis_explanation": null, "end": 63331, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63316 }, { "analysis_explanation": null, "end": 63342, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63338 }, { "analysis_explanation": null, "end": 63361, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63354 }, { "analysis_explanation": null, "end": 63389, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63384 }, { "analysis_explanation": null, "end": 63614, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63605 }, { "analysis_explanation": null, "end": 63641, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63630 }, { "analysis_explanation": null, "end": 63674, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63665 }, { "analysis_explanation": null, "end": 63789, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63778 }, { "analysis_explanation": null, "end": 64122, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64111 }, { "analysis_explanation": null, "end": 64163, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64158 }, { "analysis_explanation": null, "end": 64290, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64283 }, { "analysis_explanation": null, "end": 64376, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64360 }, { "analysis_explanation": null, "end": 64396, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64388 }, { "analysis_explanation": null, "end": 64482, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64466 }, { "analysis_explanation": null, "end": 64501, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64490 }, { "analysis_explanation": null, "end": 64771, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64765 }, { "analysis_explanation": null, "end": 64827, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64806 }, { "analysis_explanation": null, "end": 64837, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64827 }, { "analysis_explanation": null, "end": 64888, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64880 }, { "analysis_explanation": null, "end": 64925, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64909 }, { "analysis_explanation": null, "end": 64986, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 64980 }, { "analysis_explanation": null, "end": 65117, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65091 }, { "analysis_explanation": null, "end": 65198, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65176 }, { "analysis_explanation": null, "end": 65217, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65204 }, { "analysis_explanation": null, "end": 65224, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65221 }, { "analysis_explanation": null, "end": 65259, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65228 }, { "analysis_explanation": null, "end": 65281, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65272 }, { "analysis_explanation": null, "end": 65343, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65328 }, { "analysis_explanation": null, "end": 65352, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65345 }, { "analysis_explanation": null, "end": 65431, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65426 }, { "analysis_explanation": null, "end": 65473, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65466 }, { "analysis_explanation": null, "end": 65537, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65527 }, { "analysis_explanation": null, "end": 65560, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65552 }, { "analysis_explanation": null, "end": 65620, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65615 }, { "analysis_explanation": null, "end": 65700, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65689 }, { "analysis_explanation": null, "end": 66087, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66078 }, { "analysis_explanation": null, "end": 66223, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66216 }, { "analysis_explanation": null, "end": 66270, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66263 }, { "analysis_explanation": null, "end": 66345, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66336 }, { "analysis_explanation": null, "end": 66428, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66420 }, { "analysis_explanation": null, "end": 66465, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66448 }, { "analysis_explanation": null, "end": 66625, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66618 }, { "analysis_explanation": null, "end": 66686, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66674 }, { "analysis_explanation": null, "end": 66933, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 66924 }, { "analysis_explanation": null, "end": 67070, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67062 }, { "analysis_explanation": null, "end": 67160, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67151 }, { "analysis_explanation": null, "end": 67230, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67223 }, { "analysis_explanation": null, "end": 67397, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67392 }, { "analysis_explanation": null, "end": 67404, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67399 }, { "analysis_explanation": null, "end": 67464, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67429 }, { "analysis_explanation": null, "end": 67616, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67606 }, { "analysis_explanation": null, "end": 67651, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67643 }, { "analysis_explanation": null, "end": 67764, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67752 }, { "analysis_explanation": null, "end": 67773, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67765 }, { "analysis_explanation": null, "end": 67821, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67804 }, { "analysis_explanation": null, "end": 67861, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67856 }, { "analysis_explanation": null, "end": 67870, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67865 }, { "analysis_explanation": null, "end": 67877, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67872 }, { "analysis_explanation": null, "end": 67978, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 67972 }, { "analysis_explanation": null, "end": 68153, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68142 }, { "analysis_explanation": null, "end": 68163, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68157 }, { "analysis_explanation": null, "end": 68199, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68176 }, { "analysis_explanation": null, "end": 68271, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68262 }, { "analysis_explanation": null, "end": 68541, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68523 }, { "analysis_explanation": null, "end": 68564, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68545 }, { "analysis_explanation": null, "end": 68599, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68594 }, { "analysis_explanation": null, "end": 68732, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68725 }, { "analysis_explanation": null, "end": 68744, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68734 }, { "analysis_explanation": null, "end": 68762, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68758 }, { "analysis_explanation": null, "end": 68815, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68805 }, { "analysis_explanation": null, "end": 68911, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68887 }, { "analysis_explanation": null, "end": 68973, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68939 }, { "analysis_explanation": null, "end": 68987, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68975 }, { "analysis_explanation": null, "end": 69040, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69027 }, { "analysis_explanation": null, "end": 69074, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69065 }, { "analysis_explanation": null, "end": 69107, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69100 }, { "analysis_explanation": null, "end": 69123, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69119 }, { "analysis_explanation": null, "end": 69271, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69259 }, { "analysis_explanation": null, "end": 69278, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69272 }, { "analysis_explanation": null, "end": 69296, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69291 }, { "analysis_explanation": null, "end": 69681, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69675 }, { "analysis_explanation": null, "end": 69708, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69689 }, { "analysis_explanation": null, "end": 69735, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69724 }, { "analysis_explanation": null, "end": 69792, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69783 }, { "analysis_explanation": null, "end": 69842, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69835 }, { "analysis_explanation": null, "end": 69898, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 69888 }, { "analysis_explanation": null, "end": 70176, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70171 }, { "analysis_explanation": null, "end": 70306, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70301 }, { "analysis_explanation": null, "end": 70480, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70460 }, { "analysis_explanation": null, "end": 70552, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70547 }, { "analysis_explanation": null, "end": 70644, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70635 }, { "analysis_explanation": null, "end": 70680, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70675 }, { "analysis_explanation": null, "end": 70855, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70850 }, { "analysis_explanation": null, "end": 70881, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70864 }, { "analysis_explanation": null, "end": 70989, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 70981 }, { "analysis_explanation": null, "end": 71034, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71030 }, { "analysis_explanation": null, "end": 71067, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71058 }, { "analysis_explanation": null, "end": 71087, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71081 }, { "analysis_explanation": null, "end": 71233, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71227 }, { "analysis_explanation": null, "end": 71243, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71238 }, { "analysis_explanation": null, "end": 71266, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71245 }, { "analysis_explanation": null, "end": 71590, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71585 }, { "analysis_explanation": null, "end": 71853, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71843 }, { "analysis_explanation": null, "end": 71927, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 71922 }, { "analysis_explanation": null, "end": 72115, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72103 }, { "analysis_explanation": null, "end": 72262, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72257 }, { "analysis_explanation": null, "end": 72325, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72321 }, { "analysis_explanation": null, "end": 72349, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72340 }, { "analysis_explanation": null, "end": 72651, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72627 }, { "analysis_explanation": null, "end": 72664, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72651 }, { "analysis_explanation": null, "end": 72717, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72712 }, { "analysis_explanation": null, "end": 72727, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72722 }, { "analysis_explanation": null, "end": 72745, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72738 }, { "analysis_explanation": null, "end": 72838, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72829 }, { "analysis_explanation": null, "end": 72877, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72872 }, { "analysis_explanation": null, "end": 72951, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72938 }, { "analysis_explanation": null, "end": 72964, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72953 }, { "analysis_explanation": null, "end": 72981, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 72969 }, { "analysis_explanation": null, "end": 73009, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73006 }, { "analysis_explanation": null, "end": 73063, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73039 }, { "analysis_explanation": null, "end": 73103, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73094 }, { "analysis_explanation": null, "end": 73221, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73211 }, { "analysis_explanation": null, "end": 73249, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73243 }, { "analysis_explanation": null, "end": 73305, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73278 }, { "analysis_explanation": null, "end": 73333, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73309 }, { "analysis_explanation": null, "end": 73435, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73429 }, { "analysis_explanation": null, "end": 73588, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73577 }, { "analysis_explanation": null, "end": 73632, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73620 }, { "analysis_explanation": null, "end": 73682, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73671 }, { "analysis_explanation": null, "end": 73771, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 73763 }, { "analysis_explanation": null, "end": 74196, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 74180 }, { "analysis_explanation": null, "end": 74234, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 74228 }, { "analysis_explanation": null, "end": 74247, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 74236 }, { "analysis_explanation": null, "end": 74373, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 74361 }, { "analysis_explanation": null, "end": 74422, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 74407 }, { "analysis_explanation": null, "end": 74628, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 74619 }, { "analysis_explanation": null, "end": 74657, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 74645 }, { "analysis_explanation": null, "end": 74674, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 74659 }, { "analysis_explanation": null, "end": 74805, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 74800 }, { "analysis_explanation": null, "end": 75146, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75126 }, { "analysis_explanation": null, "end": 75231, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75217 }, { "analysis_explanation": null, "end": 75332, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75315 }, { "analysis_explanation": null, "end": 75365, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75350 }, { "analysis_explanation": null, "end": 75390, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75375 }, { "analysis_explanation": null, "end": 75429, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75405 }, { "analysis_explanation": null, "end": 75515, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75500 }, { "analysis_explanation": null, "end": 75524, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75517 }, { "analysis_explanation": null, "end": 75540, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75526 }, { "analysis_explanation": null, "end": 75561, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75542 }, { "analysis_explanation": null, "end": 75602, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75591 }, { "analysis_explanation": null, "end": 75770, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75762 }, { "analysis_explanation": null, "end": 75850, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75843 }, { "analysis_explanation": null, "end": 76094, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76078 }, { "analysis_explanation": null, "end": 76327, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76316 }, { "analysis_explanation": null, "end": 76356, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76340 }, { "analysis_explanation": null, "end": 76412, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76401 }, { "analysis_explanation": null, "end": 76612, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76607 }, { "analysis_explanation": null, "end": 76903, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76895 }, { "analysis_explanation": null, "end": 76985, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 76978 }, { "analysis_explanation": null, "end": 77051, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77040 }, { "analysis_explanation": null, "end": 77235, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77229 }, { "analysis_explanation": null, "end": 77292, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77286 }, { "analysis_explanation": null, "end": 77302, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77293 }, { "analysis_explanation": null, "end": 77335, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77323 }, { "analysis_explanation": null, "end": 77360, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77351 }, { "analysis_explanation": null, "end": 77534, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77516 }, { "analysis_explanation": null, "end": 77656, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77643 }, { "analysis_explanation": null, "end": 77678, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77667 }, { "analysis_explanation": null, "end": 77856, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77846 }, { "analysis_explanation": null, "end": 77902, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 77895 }, { "analysis_explanation": null, "end": 78085, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78074 }, { "analysis_explanation": null, "end": 78101, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78086 }, { "analysis_explanation": null, "end": 78383, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78354 }, { "analysis_explanation": null, "end": 78452, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78433 }, { "analysis_explanation": null, "end": 78475, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78468 }, { "analysis_explanation": null, "end": 78606, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78593 }, { "analysis_explanation": null, "end": 78831, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78821 }, { "analysis_explanation": null, "end": 78852, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78841 }, { "analysis_explanation": null, "end": 78895, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78885 }, { "analysis_explanation": null, "end": 78996, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 78976 }, { "analysis_explanation": null, "end": 79032, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79010 }, { "analysis_explanation": null, "end": 79155, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79137 }, { "analysis_explanation": null, "end": 79212, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79203 }, { "analysis_explanation": null, "end": 79360, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79349 }, { "analysis_explanation": null, "end": 79446, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79435 }, { "analysis_explanation": null, "end": 79510, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79505 }, { "analysis_explanation": null, "end": 79522, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79517 }, { "analysis_explanation": null, "end": 79620, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79613 }, { "analysis_explanation": null, "end": 79632, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79625 }, { "analysis_explanation": null, "end": 79735, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79730 }, { "analysis_explanation": null, "end": 79761, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79752 }, { "analysis_explanation": null, "end": 79916, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 79907 }, { "analysis_explanation": null, "end": 80071, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 80062 }, { "analysis_explanation": null, "end": 80094, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 80087 }, { "analysis_explanation": null, "end": 80136, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 80121 }, { "analysis_explanation": null, "end": 80398, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 80389 }, { "analysis_explanation": null, "end": 80581, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 80572 }, { "analysis_explanation": null, "end": 80773, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 80760 }, { "analysis_explanation": null, "end": 81278, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81271 }, { "analysis_explanation": null, "end": 81288, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81280 }, { "analysis_explanation": null, "end": 81301, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81293 }, { "analysis_explanation": null, "end": 81389, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81382 }, { "analysis_explanation": null, "end": 81652, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81634 }, { "analysis_explanation": null, "end": 81830, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 81826 }, { "analysis_explanation": null, "end": 82060, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 82051 }, { "analysis_explanation": null, "end": 82123, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 82118 }, { "analysis_explanation": null, "end": 82300, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 82285 }, { "analysis_explanation": null, "end": 82356, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 82344 }, { "analysis_explanation": null, "end": 82391, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 82379 }, { "analysis_explanation": null, "end": 82592, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 82588 }, { "analysis_explanation": null, "end": 82698, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 82668 }, { "analysis_explanation": null, "end": 82817, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 82808 }, { "analysis_explanation": null, "end": 82849, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 82838 }, { "analysis_explanation": null, "end": 82901, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 82890 }, { "analysis_explanation": null, "end": 83040, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83035 }, { "analysis_explanation": null, "end": 83086, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83078 }, { "analysis_explanation": null, "end": 83129, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83118 }, { "analysis_explanation": null, "end": 83142, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83132 }, { "analysis_explanation": null, "end": 83291, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83284 }, { "analysis_explanation": null, "end": 83334, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83321 }, { "analysis_explanation": null, "end": 83437, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83430 }, { "analysis_explanation": null, "end": 83635, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 83628 }, { "analysis_explanation": null, "end": 84018, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 84012 }, { "analysis_explanation": null, "end": 84206, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 84199 }, { "analysis_explanation": null, "end": 84336, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 84323 }, { "analysis_explanation": null, "end": 84516, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 84510 }, { "analysis_explanation": null, "end": 84559, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 84554 }, { "analysis_explanation": null, "end": 84763, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 84747 }, { "analysis_explanation": null, "end": 85157, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85137 }, { "analysis_explanation": null, "end": 85204, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85197 }, { "analysis_explanation": null, "end": 85269, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85265 }, { "analysis_explanation": null, "end": 85288, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85281 }, { "analysis_explanation": null, "end": 85313, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85308 }, { "analysis_explanation": null, "end": 85363, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85343 }, { "analysis_explanation": null, "end": 85495, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85488 }, { "analysis_explanation": null, "end": 85521, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85505 }, { "analysis_explanation": null, "end": 85528, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85524 }, { "analysis_explanation": null, "end": 85593, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85573 }, { "analysis_explanation": null, "end": 85641, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85603 }, { "analysis_explanation": null, "end": 85744, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85735 }, { "analysis_explanation": null, "end": 85769, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85757 }, { "analysis_explanation": null, "end": 85803, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 85791 }, { "analysis_explanation": null, "end": 86021, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86008 }, { "analysis_explanation": null, "end": 86033, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86026 }, { "analysis_explanation": null, "end": 86109, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86102 }, { "analysis_explanation": null, "end": 86166, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86160 }, { "analysis_explanation": null, "end": 86231, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86222 }, { "analysis_explanation": null, "end": 86472, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86457 }, { "analysis_explanation": null, "end": 86531, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86527 }, { "analysis_explanation": null, "end": 86695, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86690 }, { "analysis_explanation": null, "end": 86821, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86816 }, { "analysis_explanation": null, "end": 86848, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86839 }, { "analysis_explanation": null, "end": 86992, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 86986 }, { "analysis_explanation": null, "end": 87083, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87072 }, { "analysis_explanation": null, "end": 87170, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87153 }, { "analysis_explanation": null, "end": 87207, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87200 }, { "analysis_explanation": null, "end": 87277, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87268 }, { "analysis_explanation": null, "end": 87304, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87290 }, { "analysis_explanation": null, "end": 87381, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87374 }, { "analysis_explanation": null, "end": 87523, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87516 }, { "analysis_explanation": null, "end": 87533, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87529 }, { "analysis_explanation": null, "end": 87584, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87575 }, { "analysis_explanation": null, "end": 87662, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87656 }, { "analysis_explanation": null, "end": 87890, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 87886 }, { "analysis_explanation": null, "end": 88112, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88101 }, { "analysis_explanation": null, "end": 88304, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88296 }, { "analysis_explanation": null, "end": 88406, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88396 }, { "analysis_explanation": null, "end": 88616, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88611 }, { "analysis_explanation": null, "end": 88753, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88744 }, { "analysis_explanation": null, "end": 89076, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89070 }, { "analysis_explanation": null, "end": 89307, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89294 }, { "analysis_explanation": null, "end": 89354, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89345 }, { "analysis_explanation": null, "end": 89473, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89466 }, { "analysis_explanation": null, "end": 89758, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89751 }, { "analysis_explanation": null, "end": 89998, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 89989 }, { "analysis_explanation": null, "end": 90199, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 90187 }, { "analysis_explanation": null, "end": 90506, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 90502 }, { "analysis_explanation": null, "end": 90639, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 90621 }, { "analysis_explanation": null, "end": 90647, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 90641 }, { "analysis_explanation": null, "end": 90936, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 90915 }, { "analysis_explanation": null, "end": 91122, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91115 }, { "analysis_explanation": null, "end": 91152, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91139 }, { "analysis_explanation": null, "end": 91337, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91331 }, { "analysis_explanation": null, "end": 91345, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91338 }, { "analysis_explanation": null, "end": 91431, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91416 }, { "analysis_explanation": null, "end": 91550, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91530 }, { "analysis_explanation": null, "end": 91656, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91643 }, { "analysis_explanation": null, "end": 91743, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91737 }, { "analysis_explanation": null, "end": 91775, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91758 }, { "analysis_explanation": null, "end": 91866, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91843 }, { "analysis_explanation": null, "end": 91874, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91867 }, { "analysis_explanation": null, "end": 91930, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91923 }, { "analysis_explanation": null, "end": 91995, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 91978 }, { "analysis_explanation": null, "end": 92112, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92088 }, { "analysis_explanation": null, "end": 92232, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92206 }, { "analysis_explanation": null, "end": 92344, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92326 }, { "analysis_explanation": null, "end": 92470, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92447 }, { "analysis_explanation": null, "end": 92582, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92558 }, { "analysis_explanation": null, "end": 92736, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92731 }, { "analysis_explanation": null, "end": 92778, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 92775 }, { "analysis_explanation": null, "end": 93040, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 93033 }, { "analysis_explanation": null, "end": 93220, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 93208 }, { "analysis_explanation": null, "end": 93374, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 93363 }, { "analysis_explanation": null, "end": 93699, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 93687 }, { "analysis_explanation": null, "end": 93710, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 93701 }, { "analysis_explanation": null, "end": 93795, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 93783 }, { "analysis_explanation": null, "end": 93815, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 93804 }, { "analysis_explanation": null, "end": 93940, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 93933 }, { "analysis_explanation": null, "end": 94634, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 94625 }, { "analysis_explanation": null, "end": 95031, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95024 }, { "analysis_explanation": null, "end": 95043, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95036 }, { "analysis_explanation": null, "end": 95084, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95073 }, { "analysis_explanation": null, "end": 95094, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95085 }, { "analysis_explanation": null, "end": 95812, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95800 }, { "analysis_explanation": null, "end": 95896, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95889 }, { "analysis_explanation": null, "end": 96071, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96064 }, { "analysis_explanation": null, "end": 96087, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96083 }, { "analysis_explanation": null, "end": 96123, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96117 }, { "analysis_explanation": null, "end": 96315, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96305 }, { "analysis_explanation": null, "end": 96352, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96321 }, { "analysis_explanation": null, "end": 96370, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96362 }, { "analysis_explanation": null, "end": 96385, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96374 }, { "analysis_explanation": null, "end": 96396, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96385 }, { "analysis_explanation": null, "end": 96681, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96677 }, { "analysis_explanation": null, "end": 96746, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96733 }, { "analysis_explanation": null, "end": 96780, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96746 }, { "analysis_explanation": null, "end": 96817, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96806 }, { "analysis_explanation": null, "end": 96833, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96818 }, { "analysis_explanation": null, "end": 97040, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97017 }, { "analysis_explanation": null, "end": 97055, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97040 }, { "analysis_explanation": null, "end": 97166, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97162 }, { "analysis_explanation": null, "end": 97187, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97171 }, { "analysis_explanation": null, "end": 97331, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97317 }, { "analysis_explanation": null, "end": 97354, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97331 }, { "analysis_explanation": null, "end": 97452, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97445 }, { "analysis_explanation": null, "end": 97636, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97624 }, { "analysis_explanation": null, "end": 97664, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97654 }, { "analysis_explanation": null, "end": 97773, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97766 }, { "analysis_explanation": null, "end": 97889, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97882 }, { "analysis_explanation": null, "end": 97901, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97891 }, { "analysis_explanation": null, "end": 97975, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97964 }, { "analysis_explanation": null, "end": 98001, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 97993 }, { "analysis_explanation": null, "end": 98005, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98002 }, { "analysis_explanation": null, "end": 98024, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98008 }, { "analysis_explanation": null, "end": 98034, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98025 }, { "analysis_explanation": null, "end": 98194, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98186 }, { "analysis_explanation": null, "end": 98284, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98277 }, { "analysis_explanation": null, "end": 98300, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98289 }, { "analysis_explanation": null, "end": 98335, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98318 }, { "analysis_explanation": null, "end": 98409, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98400 }, { "analysis_explanation": null, "end": 98477, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98470 }, { "analysis_explanation": null, "end": 98492, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98481 }, { "analysis_explanation": null, "end": 98570, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98563 }, { "analysis_explanation": null, "end": 98636, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98628 }, { "analysis_explanation": null, "end": 98697, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98670 }, { "analysis_explanation": null, "end": 98715, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98708 }, { "analysis_explanation": null, "end": 98802, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98795 }, { "analysis_explanation": null, "end": 98949, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98935 }, { "analysis_explanation": null, "end": 98990, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 98977 }, { "analysis_explanation": null, "end": 99043, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99021 }, { "analysis_explanation": null, "end": 99062, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99047 }, { "analysis_explanation": null, "end": 99228, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99220 }, { "analysis_explanation": null, "end": 99297, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99292 }, { "analysis_explanation": null, "end": 99358, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99337 }, { "analysis_explanation": null, "end": 99389, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99382 }, { "analysis_explanation": null, "end": 99427, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99415 }, { "analysis_explanation": null, "end": 99491, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99482 }, { "analysis_explanation": null, "end": 99581, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99570 }, { "analysis_explanation": null, "end": 99610, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99603 }, { "analysis_explanation": null, "end": 99736, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99727 }, { "analysis_explanation": null, "end": 99860, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 99847 }, { "analysis_explanation": null, "end": 100269, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 100260 }, { "analysis_explanation": null, "end": 100400, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 100390 }, { "analysis_explanation": null, "end": 100544, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 100534 }, { "analysis_explanation": null, "end": 100594, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 100580 }, { "analysis_explanation": null, "end": 100641, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 100635 }, { "analysis_explanation": null, "end": 100879, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 100865 }, { "analysis_explanation": null, "end": 100933, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 100920 }, { "analysis_explanation": null, "end": 100982, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 100966 }, { "analysis_explanation": null, "end": 101027, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101011 }, { "analysis_explanation": null, "end": 101072, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101056 }, { "analysis_explanation": null, "end": 101110, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101097 }, { "analysis_explanation": null, "end": 101137, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101127 }, { "analysis_explanation": null, "end": 101147, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101139 }, { "analysis_explanation": null, "end": 101175, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101152 }, { "analysis_explanation": null, "end": 101310, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101302 }, { "analysis_explanation": null, "end": 101337, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101328 }, { "analysis_explanation": null, "end": 101372, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101358 }, { "analysis_explanation": null, "end": 101400, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101394 }, { "analysis_explanation": null, "end": 101463, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101445 }, { "analysis_explanation": null, "end": 101522, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101518 }, { "analysis_explanation": null, "end": 101612, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101605 }, { "analysis_explanation": null, "end": 101624, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101618 }, { "analysis_explanation": null, "end": 101677, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101666 }, { "analysis_explanation": null, "end": 101878, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 101869 }, { "analysis_explanation": null, "end": 102156, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102145 }, { "analysis_explanation": null, "end": 102393, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102382 }, { "analysis_explanation": null, "end": 102418, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102398 }, { "analysis_explanation": null, "end": 102493, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102482 }, { "analysis_explanation": null, "end": 102527, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102512 }, { "analysis_explanation": null, "end": 102566, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102552 }, { "analysis_explanation": null, "end": 102989, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 102975 }, { "analysis_explanation": null, "end": 103091, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 103084 }, { "analysis_explanation": null, "end": 103122, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 103118 }, { "analysis_explanation": null, "end": 103133, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 103129 }, { "analysis_explanation": null, "end": 103171, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 103159 }, { "analysis_explanation": null, "end": 103189, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 103180 }, { "analysis_explanation": null, "end": 103203, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 103198 }, { "analysis_explanation": null, "end": 103211, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 103205 }, { "analysis_explanation": null, "end": 103238, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 103225 }, { "analysis_explanation": null, "end": 103259, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 103250 }, { "analysis_explanation": null, "end": 103378, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 103374 }, { "analysis_explanation": null, "end": 103397, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 103388 }, { "analysis_explanation": null, "end": 103421, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 103413 }, { "analysis_explanation": null, "end": 103467, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 103459 }, { "analysis_explanation": null, "end": 103678, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 103669 }, { "analysis_explanation": null, "end": 103944, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 103936 }, { "analysis_explanation": null, "end": 103981, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 103960 }, { "analysis_explanation": null, "end": 104051, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 104037 }, { "analysis_explanation": null, "end": 104178, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 104171 }, { "analysis_explanation": null, "end": 104248, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 104243 }, { "analysis_explanation": null, "end": 104257, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 104250 }, { "analysis_explanation": null, "end": 104270, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 104262 }, { "analysis_explanation": null, "end": 104367, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 104357 }, { "analysis_explanation": null, "end": 104429, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 104422 }, { "analysis_explanation": null, "end": 104798, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 104785 }, { "analysis_explanation": null, "end": 104819, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 104806 }, { "analysis_explanation": null, "end": 104868, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 104861 }, { "analysis_explanation": null, "end": 104883, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 104870 }, { "analysis_explanation": null, "end": 104938, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 104933 }, { "analysis_explanation": null, "end": 105099, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 105092 }, { "analysis_explanation": null, "end": 105149, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 105136 }, { "analysis_explanation": null, "end": 105232, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 105228 }, { "analysis_explanation": null, "end": 105239, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 105234 }, { "analysis_explanation": null, "end": 105250, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 105244 }, { "analysis_explanation": null, "end": 105288, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 105270 }, { "analysis_explanation": null, "end": 105297, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 105288 }, { "analysis_explanation": null, "end": 105337, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 105322 }, { "analysis_explanation": null, "end": 105342, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 105339 }, { "analysis_explanation": null, "end": 105410, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 105388 }, { "analysis_explanation": null, "end": 105486, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 105479 }, { "analysis_explanation": null, "end": 105563, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 105557 }, { "analysis_explanation": null, "end": 105739, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 105726 }, { "analysis_explanation": null, "end": 105746, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 105743 }, { "analysis_explanation": null, "end": 105803, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 105796 }, { "analysis_explanation": null, "end": 105947, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 105938 }, { "analysis_explanation": null, "end": 106064, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 106047 }, { "analysis_explanation": null, "end": 106156, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 106154 }, { "analysis_explanation": null, "end": 106207, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 106203 }, { "analysis_explanation": null, "end": 106239, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 106224 }, { "analysis_explanation": null, "end": 106304, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 106284 }, { "analysis_explanation": null, "end": 106357, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 106350 }, { "analysis_explanation": null, "end": 106730, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 106724 }, { "analysis_explanation": null, "end": 106786, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 106770 }, { "analysis_explanation": null, "end": 106797, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 106788 }, { "analysis_explanation": null, "end": 106935, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 106926 }, { "analysis_explanation": null, "end": 106950, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 106946 }, { "analysis_explanation": null, "end": 107214, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 107207 }, { "analysis_explanation": null, "end": 107510, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 107497 }, { "analysis_explanation": null, "end": 107549, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 107542 }, { "analysis_explanation": null, "end": 107878, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 107865 }, { "analysis_explanation": null, "end": 108030, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 108024 }, { "analysis_explanation": null, "end": 108329, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 108315 }, { "analysis_explanation": null, "end": 108357, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 108341 }, { "analysis_explanation": null, "end": 108395, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 108381 }, { "analysis_explanation": null, "end": 108542, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 108533 }, { "analysis_explanation": null, "end": 108561, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 108557 }, { "analysis_explanation": null, "end": 108585, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 108577 }, { "analysis_explanation": null, "end": 108605, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 108601 }, { "analysis_explanation": null, "end": 108658, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 108642 }, { "analysis_explanation": null, "end": 108701, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 108697 }, { "analysis_explanation": null, "end": 108716, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 108705 }, { "analysis_explanation": null, "end": 108749, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 108732 }, { "analysis_explanation": null, "end": 108773, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 108764 }, { "analysis_explanation": null, "end": 108784, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 108777 }, { "analysis_explanation": null, "end": 108809, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 108791 }, { "analysis_explanation": null, "end": 109064, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 109055 }, { "analysis_explanation": null, "end": 109101, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 109095 }, { "analysis_explanation": null, "end": 109112, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 109103 }, { "analysis_explanation": null, "end": 109215, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 109208 }, { "analysis_explanation": null, "end": 109446, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 109434 }, { "analysis_explanation": null, "end": 109460, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 109455 }, { "analysis_explanation": null, "end": 109472, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 109465 }, { "analysis_explanation": null, "end": 109628, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 109624 }, { "analysis_explanation": null, "end": 109663, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 109659 }, { "analysis_explanation": null, "end": 109717, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 109703 }, { "analysis_explanation": null, "end": 109754, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 109741 }, { "analysis_explanation": null, "end": 109863, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 109856 }, { "analysis_explanation": null, "end": 110021, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110016 }, { "analysis_explanation": null, "end": 110094, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110090 }, { "analysis_explanation": null, "end": 110238, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110234 }, { "analysis_explanation": null, "end": 110260, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110254 }, { "analysis_explanation": null, "end": 110340, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110336 }, { "analysis_explanation": null, "end": 110387, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110378 }, { "analysis_explanation": null, "end": 110430, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110426 }, { "analysis_explanation": null, "end": 110501, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110495 }, { "analysis_explanation": null, "end": 110537, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110521 }, { "analysis_explanation": null, "end": 110575, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110561 }, { "analysis_explanation": null, "end": 110763, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110753 }, { "analysis_explanation": null, "end": 110788, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110781 }, { "analysis_explanation": null, "end": 110867, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110849 }, { "analysis_explanation": null, "end": 110980, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110971 }, { "analysis_explanation": null, "end": 111009, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 111002 }, { "analysis_explanation": null, "end": 111051, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 111034 }, { "analysis_explanation": null, "end": 111145, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 111138 }, { "analysis_explanation": null, "end": 111221, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 111217 }, { "analysis_explanation": null, "end": 111545, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 111533 }, { "analysis_explanation": null, "end": 111651, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 111644 }, { "analysis_explanation": null, "end": 112095, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 112081 }, { "analysis_explanation": null, "end": 112139, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 112123 }, { "analysis_explanation": null, "end": 112319, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 112302 }, { "analysis_explanation": null, "end": 112331, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 112321 }, { "analysis_explanation": null, "end": 112384, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 112374 }, { "analysis_explanation": null, "end": 112469, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 112462 }, { "analysis_explanation": null, "end": 112515, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 112505 }, { "analysis_explanation": null, "end": 112602, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 112591 }, { "analysis_explanation": null, "end": 112752, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 112736 }, { "analysis_explanation": null, "end": 112790, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 112776 }, { "analysis_explanation": null, "end": 112967, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 112950 }, { "analysis_explanation": null, "end": 113089, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 113083 }, { "analysis_explanation": null, "end": 113114, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 113097 }, { "analysis_explanation": null, "end": 113357, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 113344 }, { "analysis_explanation": null, "end": 113404, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 113393 }, { "analysis_explanation": null, "end": 113701, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 113690 }, { "analysis_explanation": null, "end": 113710, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 113705 }, { "analysis_explanation": null, "end": 113765, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 113749 }, { "analysis_explanation": null, "end": 113937, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 113930 }, { "analysis_explanation": null, "end": 113998, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 113988 }, { "analysis_explanation": null, "end": 114220, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 114205 }, { "analysis_explanation": null, "end": 114326, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 114310 }, { "analysis_explanation": null, "end": 114350, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 114328 }, { "analysis_explanation": null, "end": 114365, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 114352 }, { "analysis_explanation": null, "end": 114542, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 114533 }, { "analysis_explanation": null, "end": 114589, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 114578 }, { "analysis_explanation": null, "end": 114650, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 114635 }, { "analysis_explanation": null, "end": 114964, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 114948 }, { "analysis_explanation": null, "end": 115002, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 114988 }, { "analysis_explanation": null, "end": 115047, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 115033 }, { "analysis_explanation": null, "end": 115168, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 115159 }, { "analysis_explanation": null, "end": 115244, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 115226 }, { "analysis_explanation": null, "end": 115345, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 115333 }, { "analysis_explanation": null, "end": 115398, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 115389 }, { "analysis_explanation": null, "end": 115442, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 115434 }, { "analysis_explanation": null, "end": 115458, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 115451 }, { "analysis_explanation": null, "end": 115468, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 115464 }, { "analysis_explanation": null, "end": 115486, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 115472 }, { "analysis_explanation": null, "end": 115627, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 115620 }, { "analysis_explanation": null, "end": 115663, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 115651 }, { "analysis_explanation": null, "end": 115728, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 115704 }, { "analysis_explanation": null, "end": 115770, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 115758 }, { "analysis_explanation": null, "end": 115865, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 115858 }, { "analysis_explanation": null, "end": 115928, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 115908 }, { "analysis_explanation": null, "end": 115964, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 115951 }, { "analysis_explanation": null, "end": 116060, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 116047 }, { "analysis_explanation": null, "end": 116158, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 116152 }, { "analysis_explanation": null, "end": 116188, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 116183 }, { "analysis_explanation": null, "end": 116226, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 116210 }, { "analysis_explanation": null, "end": 116281, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 116264 }, { "analysis_explanation": null, "end": 116387, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 116373 }, { "analysis_explanation": null, "end": 116493, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 116489 }, { "analysis_explanation": null, "end": 116665, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 116661 }, { "analysis_explanation": null, "end": 116685, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 116673 }, { "analysis_explanation": null, "end": 116701, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 116691 }, { "analysis_explanation": null, "end": 116836, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 116828 }, { "analysis_explanation": null, "end": 116972, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 116957 }, { "analysis_explanation": null, "end": 117007, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 117001 }, { "analysis_explanation": null, "end": 117092, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 117081 }, { "analysis_explanation": null, "end": 117167, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 117160 }, { "analysis_explanation": null, "end": 117468, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 117459 }, { "analysis_explanation": null, "end": 117563, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 117547 }, { "analysis_explanation": null, "end": 117601, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 117587 }, { "analysis_explanation": null, "end": 117634, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 117620 }, { "analysis_explanation": null, "end": 117662, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 117656 }, { "analysis_explanation": null, "end": 117792, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 117784 }, { "analysis_explanation": null, "end": 117818, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 117804 }, { "analysis_explanation": null, "end": 117933, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 117925 }, { "analysis_explanation": null, "end": 117954, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 117941 }, { "analysis_explanation": null, "end": 118046, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 118041 }, { "analysis_explanation": null, "end": 118113, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 118101 }, { "analysis_explanation": null, "end": 118155, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 118139 }, { "analysis_explanation": null, "end": 118161, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 118156 }, { "analysis_explanation": null, "end": 118187, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 118175 }, { "analysis_explanation": null, "end": 118303, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 118293 }, { "analysis_explanation": null, "end": 118316, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 118308 }, { "analysis_explanation": null, "end": 118859, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 118855 }, { "analysis_explanation": null, "end": 118868, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 118860 }, { "analysis_explanation": null, "end": 118886, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 118879 }, { "analysis_explanation": null, "end": 118903, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 118898 }, { "analysis_explanation": null, "end": 119056, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 119049 }, { "analysis_explanation": null, "end": 119096, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 119084 }, { "analysis_explanation": null, "end": 119131, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 119128 }, { "analysis_explanation": null, "end": 119194, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 119181 }, { "analysis_explanation": null, "end": 119292, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 119276 }, { "analysis_explanation": null, "end": 119303, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 119299 }, { "analysis_explanation": null, "end": 119312, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 119305 }, { "analysis_explanation": null, "end": 119532, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 119521 }, { "analysis_explanation": null, "end": 119651, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 119641 }, { "analysis_explanation": null, "end": 119756, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 119745 }, { "analysis_explanation": null, "end": 119911, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 119896 }, { "analysis_explanation": null, "end": 119955, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 119945 }, { "analysis_explanation": null, "end": 119982, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 119972 }, { "analysis_explanation": null, "end": 120033, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 120025 }, { "analysis_explanation": null, "end": 120107, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 120100 }, { "analysis_explanation": null, "end": 120297, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 120292 }, { "analysis_explanation": null, "end": 120363, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 120356 }, { "analysis_explanation": null, "end": 120580, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 120573 }, { "analysis_explanation": null, "end": 120660, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 120647 }, { "analysis_explanation": null, "end": 120686, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 120675 }, { "analysis_explanation": null, "end": 120720, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 120716 }, { "analysis_explanation": null, "end": 120757, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 120750 }, { "analysis_explanation": null, "end": 120974, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 120970 }, { "analysis_explanation": null, "end": 121082, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 121069 }, { "analysis_explanation": null, "end": 121161, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 121150 }, { "analysis_explanation": null, "end": 121195, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 121191 }, { "analysis_explanation": null, "end": 121232, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 121228 }, { "analysis_explanation": null, "end": 121273, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 121265 }, { "analysis_explanation": null, "end": 121412, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 121403 }, { "analysis_explanation": null, "end": 121439, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 121435 }, { "analysis_explanation": null, "end": 121523, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 121514 }, { "analysis_explanation": null, "end": 121535, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 121527 }, { "analysis_explanation": null, "end": 121587, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 121578 }, { "analysis_explanation": null, "end": 121594, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 121588 }, { "analysis_explanation": null, "end": 121671, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 121660 }, { "analysis_explanation": null, "end": 121768, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 121760 }, { "analysis_explanation": null, "end": 121937, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 121928 }, { "analysis_explanation": null, "end": 121962, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 121957 }, { "analysis_explanation": null, "end": 121998, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 121991 }, { "analysis_explanation": null, "end": 122509, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 122498 }, { "analysis_explanation": null, "end": 122791, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 122779 }, { "analysis_explanation": null, "end": 122804, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 122793 }, { "analysis_explanation": null, "end": 122929, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 122922 }, { "analysis_explanation": null, "end": 123076, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 123068 }, { "analysis_explanation": null, "end": 123254, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 123250 }, { "analysis_explanation": null, "end": 123344, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 123335 }, { "analysis_explanation": null, "end": 123354, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 123345 }, { "analysis_explanation": null, "end": 123430, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 123416 }, { "analysis_explanation": null, "end": 123765, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 123750 }, { "analysis_explanation": null, "end": 124109, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 124101 }, { "analysis_explanation": null, "end": 124241, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 124237 }, { "analysis_explanation": null, "end": 124250, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 124243 }, { "analysis_explanation": null, "end": 124262, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 124255 }, { "analysis_explanation": null, "end": 124400, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 124392 }, { "analysis_explanation": null, "end": 124670, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 124665 }, { "analysis_explanation": null, "end": 124730, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 124714 }, { "analysis_explanation": null, "end": 124768, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 124754 }, { "analysis_explanation": null, "end": 124890, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 124882 }, { "analysis_explanation": null, "end": 124953, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 124945 }, { "analysis_explanation": null, "end": 125075, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125065 }, { "analysis_explanation": null, "end": 125102, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125097 }, { "analysis_explanation": null, "end": 125383, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125374 }, { "analysis_explanation": null, "end": 125432, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125419 }, { "analysis_explanation": null, "end": 125501, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125486 }, { "analysis_explanation": null, "end": 125513, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125504 }, { "analysis_explanation": null, "end": 125562, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125550 }, { "analysis_explanation": null, "end": 125569, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125564 }, { "analysis_explanation": null, "end": 125585, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125571 }, { "analysis_explanation": null, "end": 125597, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125590 }, { "analysis_explanation": null, "end": 125626, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125615 }, { "analysis_explanation": null, "end": 125773, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125763 }, { "analysis_explanation": null, "end": 125821, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125816 }, { "analysis_explanation": null, "end": 125835, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125828 }, { "analysis_explanation": null, "end": 125903, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125892 }, { "analysis_explanation": null, "end": 125996, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 125988 }, { "analysis_explanation": null, "end": 126035, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126030 }, { "analysis_explanation": null, "end": 126155, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126144 }, { "analysis_explanation": null, "end": 126320, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126308 }, { "analysis_explanation": null, "end": 126369, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126360 }, { "analysis_explanation": null, "end": 126469, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126462 }, { "analysis_explanation": null, "end": 126479, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126470 }, { "analysis_explanation": null, "end": 126588, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126580 }, { "analysis_explanation": null, "end": 126599, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126593 }, { "analysis_explanation": null, "end": 126860, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126844 }, { "analysis_explanation": null, "end": 126898, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126884 }, { "analysis_explanation": null, "end": 127001, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 126993 }, { "analysis_explanation": null, "end": 127145, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 127132 }, { "analysis_explanation": null, "end": 127230, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 127221 }, { "analysis_explanation": null, "end": 127245, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 127232 }, { "analysis_explanation": null, "end": 127336, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 127330 }, { "analysis_explanation": null, "end": 127497, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 127486 }, { "analysis_explanation": null, "end": 127557, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 127543 }, { "analysis_explanation": null, "end": 127599, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 127582 }, { "analysis_explanation": null, "end": 127612, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 127601 }, { "analysis_explanation": null, "end": 127704, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 127695 }, { "analysis_explanation": null, "end": 127772, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 127755 }, { "analysis_explanation": null, "end": 127909, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 127900 }, { "analysis_explanation": null, "end": 128009, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 127970 }, { "analysis_explanation": null, "end": 128134, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128125 }, { "analysis_explanation": null, "end": 128159, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128147 }, { "analysis_explanation": null, "end": 128226, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128219 }, { "analysis_explanation": null, "end": 128262, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128251 }, { "analysis_explanation": null, "end": 128328, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128321 }, { "analysis_explanation": null, "end": 128423, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128415 }, { "analysis_explanation": null, "end": 128446, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128439 }, { "analysis_explanation": null, "end": 128471, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128461 }, { "analysis_explanation": null, "end": 128527, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128516 }, { "analysis_explanation": null, "end": 128549, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128540 }, { "analysis_explanation": null, "end": 128626, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128619 }, { "analysis_explanation": null, "end": 128795, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128786 }, { "analysis_explanation": null, "end": 128928, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128918 }, { "analysis_explanation": null, "end": 128986, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 128980 }, { "analysis_explanation": null, "end": 129217, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 129201 }, { "analysis_explanation": null, "end": 129255, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 129241 }, { "analysis_explanation": null, "end": 129288, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 129274 }, { "analysis_explanation": null, "end": 129316, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 129310 }, { "analysis_explanation": null, "end": 129428, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 129412 }, { "analysis_explanation": null, "end": 129596, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 129587 }, { "analysis_explanation": null, "end": 129834, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 129822 }, { "analysis_explanation": null, "end": 129963, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 129957 }, { "analysis_explanation": null, "end": 130185, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 130177 }, { "analysis_explanation": null, "end": 130349, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 130340 }, { "analysis_explanation": null, "end": 130645, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 130629 }, { "analysis_explanation": null, "end": 131149, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 131134 }, { "analysis_explanation": null, "end": 131182, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 131174 }, { "analysis_explanation": null, "end": 131239, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 131234 }, { "analysis_explanation": null, "end": 131343, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 131336 }, { "analysis_explanation": null, "end": 131364, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 131344 }, { "analysis_explanation": null, "end": 131467, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 131454 }, { "analysis_explanation": null, "end": 131616, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 131605 }, { "analysis_explanation": null, "end": 131776, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 131766 }, { "analysis_explanation": null, "end": 131955, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 131942 }, { "analysis_explanation": null, "end": 132087, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 132084 }, { "analysis_explanation": null, "end": 132236, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 132227 }, { "analysis_explanation": null, "end": 132300, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 132277 }, { "analysis_explanation": null, "end": 132360, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 132349 }, { "analysis_explanation": null, "end": 132407, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 132399 }, { "analysis_explanation": null, "end": 132860, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 132853 }, { "analysis_explanation": null, "end": 133167, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 133154 }, { "analysis_explanation": null, "end": 133416, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 133403 }, { "analysis_explanation": null, "end": 133431, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 133422 }, { "analysis_explanation": null, "end": 133905, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 133882 }, { "analysis_explanation": null, "end": 133919, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 133907 }, { "analysis_explanation": null, "end": 133939, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 133932 }, { "analysis_explanation": null, "end": 133991, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 133978 }, { "analysis_explanation": null, "end": 134069, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 134057 }, { "analysis_explanation": null, "end": 134111, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 134101 }, { "analysis_explanation": null, "end": 134182, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 134155 }, { "analysis_explanation": null, "end": 134221, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 134215 }, { "analysis_explanation": null, "end": 134334, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 134326 }, { "analysis_explanation": null, "end": 134506, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 134491 }, { "analysis_explanation": null, "end": 134663, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 134650 }, { "analysis_explanation": null, "end": 134764, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 134757 }, { "analysis_explanation": null, "end": 134830, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 134822 }, { "analysis_explanation": null, "end": 135053, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 135044 }, { "analysis_explanation": null, "end": 135164, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 135148 }, { "analysis_explanation": null, "end": 135197, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 135190 }, { "analysis_explanation": null, "end": 135258, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 135250 }, { "analysis_explanation": null, "end": 135482, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 135474 }, { "analysis_explanation": null, "end": 135630, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 135621 }, { "analysis_explanation": null, "end": 136086, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 136069 }, { "analysis_explanation": null, "end": 136191, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 136180 }, { "analysis_explanation": null, "end": 136296, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 136289 }, { "analysis_explanation": null, "end": 136355, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 136337 }, { "analysis_explanation": null, "end": 136433, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 136417 }, { "analysis_explanation": null, "end": 136467, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 136453 }, { "analysis_explanation": null, "end": 136516, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 136499 }, { "analysis_explanation": null, "end": 136570, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 136550 }, { "analysis_explanation": null, "end": 136648, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 136637 }, { "analysis_explanation": null, "end": 136900, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 136892 }, { "analysis_explanation": null, "end": 136964, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 136949 }, { "analysis_explanation": null, "end": 137080, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 137071 }, { "analysis_explanation": null, "end": 137092, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 137087 }, { "analysis_explanation": null, "end": 137704, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 137697 }, { "analysis_explanation": null, "end": 137769, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 137761 }, { "analysis_explanation": null, "end": 137956, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 137951 }, { "analysis_explanation": null, "end": 138112, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 138101 }, { "analysis_explanation": null, "end": 138225, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 138217 }, { "analysis_explanation": null, "end": 138281, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 138274 }, { "analysis_explanation": null, "end": 138639, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 138634 }, { "analysis_explanation": null, "end": 138908, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 138895 }, { "analysis_explanation": null, "end": 138959, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 138947 }, { "analysis_explanation": null, "end": 139058, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 139042 }, { "analysis_explanation": null, "end": 139092, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 139078 }, { "analysis_explanation": null, "end": 139169, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 139155 }, { "analysis_explanation": null, "end": 139431, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 139414 }, { "analysis_explanation": null, "end": 139525, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 139519 }, { "analysis_explanation": null, "end": 139581, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 139572 }, { "analysis_explanation": null, "end": 139671, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 139664 }, { "analysis_explanation": null, "end": 139693, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 139678 }, { "analysis_explanation": null, "end": 139757, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 139750 }, { "analysis_explanation": null, "end": 139826, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 139820 }, { "analysis_explanation": null, "end": 139931, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 139917 }, { "analysis_explanation": null, "end": 140031, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 140022 }, { "analysis_explanation": null, "end": 140065, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 140061 }, { "analysis_explanation": null, "end": 140076, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 140070 }, { "analysis_explanation": null, "end": 140193, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 140186 }, { "analysis_explanation": null, "end": 140381, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 140373 }, { "analysis_explanation": null, "end": 140400, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 140386 }, { "analysis_explanation": null, "end": 140421, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 140416 }, { "analysis_explanation": null, "end": 140519, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 140512 }, { "analysis_explanation": null, "end": 140547, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 140540 }, { "analysis_explanation": null, "end": 140785, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 140769 }, { "analysis_explanation": null, "end": 140996, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 140992 }, { "analysis_explanation": null, "end": 141023, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 141015 }, { "analysis_explanation": null, "end": 141061, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 141056 }, { "analysis_explanation": null, "end": 141215, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 141207 }, { "analysis_explanation": null, "end": 141228, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 141221 }, { "analysis_explanation": null, "end": 141307, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 141291 }, { "analysis_explanation": null, "end": 141565, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 141549 }, { "analysis_explanation": null, "end": 141599, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 141585 }, { "analysis_explanation": null, "end": 141632, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 141618 }, { "analysis_explanation": null, "end": 141686, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 141673 }, { "analysis_explanation": null, "end": 141757, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 141744 }, { "analysis_explanation": null, "end": 141806, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 141789 }, { "analysis_explanation": null, "end": 141818, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 141813 }, { "analysis_explanation": null, "end": 141992, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 141979 }, { "analysis_explanation": null, "end": 142164, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 142157 }, { "analysis_explanation": null, "end": 142179, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 142170 }, { "analysis_explanation": null, "end": 142332, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 142320 }, { "analysis_explanation": null, "end": 142525, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 142518 }, { "analysis_explanation": null, "end": 142954, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 142938 }, { "analysis_explanation": null, "end": 143074, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 143067 }, { "analysis_explanation": null, "end": 143099, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 143090 }, { "analysis_explanation": null, "end": 143224, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 143209 }, { "analysis_explanation": null, "end": 143239, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 143234 }, { "analysis_explanation": null, "end": 143250, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 143244 }, { "analysis_explanation": null, "end": 143265, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 143260 }, { "analysis_explanation": null, "end": 143375, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 143359 }, { "analysis_explanation": null, "end": 143652, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 143633 }, { "analysis_explanation": null, "end": 143723, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 143714 }, { "analysis_explanation": null, "end": 143937, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 143928 }, { "analysis_explanation": null, "end": 144284, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 144271 }, { "analysis_explanation": null, "end": 144304, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 144297 }, { "analysis_explanation": null, "end": 144413, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 144408 }, { "analysis_explanation": null, "end": 144444, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 144439 }, { "analysis_explanation": null, "end": 144741, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 144725 }, { "analysis_explanation": null, "end": 145191, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 145182 }, { "analysis_explanation": null, "end": 145265, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 145256 }, { "analysis_explanation": null, "end": 145326, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 145315 }, { "analysis_explanation": null, "end": 145950, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 145945 }, { "analysis_explanation": null, "end": 145958, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 145952 }, { "analysis_explanation": null, "end": 146111, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 146100 }, { "analysis_explanation": null, "end": 146119, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 146112 }, { "analysis_explanation": null, "end": 146256, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 146250 }, { "analysis_explanation": null, "end": 146319, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 146312 }, { "analysis_explanation": null, "end": 146362, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 146354 }, { "analysis_explanation": null, "end": 146633, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 146617 }, { "analysis_explanation": null, "end": 146670, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 146665 }, { "analysis_explanation": null, "end": 146730, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 146717 }, { "analysis_explanation": null, "end": 147014, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 147002 }, { "analysis_explanation": null, "end": 147079, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 147070 }, { "analysis_explanation": null, "end": 147326, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 147320 }, { "analysis_explanation": null, "end": 147514, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 147508 }, { "analysis_explanation": null, "end": 147578, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 147560 }, { "analysis_explanation": null, "end": 147665, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 147652 }, { "analysis_explanation": null, "end": 147714, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 147702 }, { "analysis_explanation": null, "end": 148512, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 148500 }, { "analysis_explanation": null, "end": 148702, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 148696 }, { "analysis_explanation": null, "end": 148786, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 148777 }, { "analysis_explanation": null, "end": 148848, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 148827 }, { "analysis_explanation": null, "end": 148866, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 148852 }, { "analysis_explanation": null, "end": 148920, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 148907 }, { "analysis_explanation": null, "end": 149186, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 149175 }, { "analysis_explanation": null, "end": 149213, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 149192 }, { "analysis_explanation": null, "end": 149258, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 149251 }, { "analysis_explanation": null, "end": 149301, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 149295 }, { "analysis_explanation": null, "end": 149520, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 149511 }, { "analysis_explanation": null, "end": 149645, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 149629 }, { "analysis_explanation": null, "end": 149667, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 149655 }, { "analysis_explanation": null, "end": 149721, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 149712 }, { "analysis_explanation": null, "end": 149752, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 149745 }, { "analysis_explanation": null, "end": 150027, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 150015 }, { "analysis_explanation": null, "end": 150304, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 150297 }, { "analysis_explanation": null, "end": 150448, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 150445 }, { "analysis_explanation": null, "end": 150454, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 150449 }, { "analysis_explanation": null, "end": 150557, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 150550 }, { "analysis_explanation": null, "end": 150619, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 150606 }, { "analysis_explanation": null, "end": 150730, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 150719 }, { "analysis_explanation": null, "end": 150809, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 150805 }, { "analysis_explanation": null, "end": 150853, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 150849 }, { "analysis_explanation": null, "end": 151072, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 151068 }, { "analysis_explanation": null, "end": 151105, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 151084 }, { "analysis_explanation": null, "end": 151123, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 151109 }, { "analysis_explanation": null, "end": 151173, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 151157 }, { "analysis_explanation": null, "end": 151388, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 151376 }, { "analysis_explanation": null, "end": 151598, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 151590 }, { "analysis_explanation": null, "end": 151648, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 151636 }, { "analysis_explanation": null, "end": 151679, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 151671 }, { "analysis_explanation": null, "end": 151694, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 151685 }, { "analysis_explanation": null, "end": 151763, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 151751 }, { "analysis_explanation": null, "end": 152078, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 152065 }, { "analysis_explanation": null, "end": 152197, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 152188 }, { "analysis_explanation": null, "end": 152206, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 152199 }, { "analysis_explanation": null, "end": 152441, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 152432 }, { "analysis_explanation": null, "end": 152504, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 152468 }, { "analysis_explanation": null, "end": 152529, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 152520 }, { "analysis_explanation": null, "end": 152562, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 152551 }, { "analysis_explanation": null, "end": 152667, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 152654 }, { "analysis_explanation": null, "end": 152959, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 152954 }, { "analysis_explanation": null, "end": 153001, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 152992 }, { "analysis_explanation": null, "end": 153136, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 153129 }, { "analysis_explanation": null, "end": 153233, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 153216 }, { "analysis_explanation": null, "end": 153264, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 153243 }, { "analysis_explanation": null, "end": 153282, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 153268 }, { "analysis_explanation": null, "end": 153410, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 153401 }, { "analysis_explanation": null, "end": 153902, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 153895 }, { "analysis_explanation": null, "end": 154002, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 153993 }, { "analysis_explanation": null, "end": 154160, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 154149 }, { "analysis_explanation": null, "end": 154397, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 154386 }, { "analysis_explanation": null, "end": 154723, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 154718 }, { "analysis_explanation": null, "end": 154737, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 154727 }, { "analysis_explanation": null, "end": 154831, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 154798 }, { "analysis_explanation": null, "end": 154938, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 154929 }, { "analysis_explanation": null, "end": 154995, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 154986 }, { "analysis_explanation": null, "end": 155249, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 155241 }, { "analysis_explanation": null, "end": 155255, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 155250 }, { "analysis_explanation": null, "end": 155311, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 155302 }, { "analysis_explanation": null, "end": 155391, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 155384 }, { "analysis_explanation": null, "end": 155495, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 155474 }, { "analysis_explanation": null, "end": 155513, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 155499 }, { "analysis_explanation": null, "end": 155609, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 155593 }, { "analysis_explanation": null, "end": 155937, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 155922 }, { "analysis_explanation": null, "end": 156037, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 156028 }, { "analysis_explanation": null, "end": 156051, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 156045 }, { "analysis_explanation": null, "end": 156064, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 156057 }, { "analysis_explanation": null, "end": 156249, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 156240 }, { "analysis_explanation": null, "end": 156312, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 156303 }, { "analysis_explanation": null, "end": 156413, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 156379 }, { "analysis_explanation": null, "end": 156523, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 156515 }, { "analysis_explanation": null, "end": 156644, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 156638 }, { "analysis_explanation": null, "end": 156713, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 156708 }, { "analysis_explanation": null, "end": 156745, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 156741 }, { "analysis_explanation": null, "end": 156936, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 156930 }, { "analysis_explanation": null, "end": 157034, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 157015 }, { "analysis_explanation": null, "end": 157071, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 157062 }, { "analysis_explanation": null, "end": 157240, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 157233 }, { "analysis_explanation": null, "end": 157279, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 157275 }, { "analysis_explanation": null, "end": 157308, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 157298 }, { "analysis_explanation": null, "end": 157502, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 157493 }, { "analysis_explanation": null, "end": 157622, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 157615 }, { "analysis_explanation": null, "end": 157805, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 157784 }, { "analysis_explanation": null, "end": 157823, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 157809 }, { "analysis_explanation": null, "end": 157856, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 157842 }, { "analysis_explanation": null, "end": 157911, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 157893 }, { "analysis_explanation": null, "end": 157942, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 157929 }, { "analysis_explanation": null, "end": 158017, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 158007 }, { "analysis_explanation": null, "end": 158035, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 158022 }, { "analysis_explanation": null, "end": 158070, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 158062 }, { "analysis_explanation": null, "end": 158085, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 158075 }, { "analysis_explanation": null, "end": 158295, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 158282 }, { "analysis_explanation": null, "end": 158343, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 158334 }, { "analysis_explanation": null, "end": 159159, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 159154 }, { "analysis_explanation": null, "end": 159206, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 159196 }, { "analysis_explanation": null, "end": 159287, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 159280 }, { "analysis_explanation": null, "end": 159324, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 159313 }, { "analysis_explanation": null, "end": 159528, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 159518 }, { "analysis_explanation": null, "end": 159583, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 159578 }, { "analysis_explanation": null, "end": 159844, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 159829 }, { "analysis_explanation": null, "end": 159857, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 159844 }, { "analysis_explanation": null, "end": 159891, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 159880 }, { "analysis_explanation": null, "end": 160009, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 160005 }, { "analysis_explanation": null, "end": 160085, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 160078 }, { "analysis_explanation": null, "end": 160328, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 160319 }, { "analysis_explanation": null, "end": 160771, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 160759 }, { "analysis_explanation": null, "end": 160976, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 160972 }, { "analysis_explanation": null, "end": 161013, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 161004 }, { "analysis_explanation": null, "end": 161196, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 161181 }, { "analysis_explanation": null, "end": 161249, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 161238 }, { "analysis_explanation": null, "end": 161413, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 161406 }, { "analysis_explanation": null, "end": 161800, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 161793 }, { "analysis_explanation": null, "end": 161810, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 161801 }, { "analysis_explanation": null, "end": 161820, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 161815 }, { "analysis_explanation": null, "end": 161842, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 161821 }, { "analysis_explanation": null, "end": 161883, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 161862 }, { "analysis_explanation": null, "end": 161929, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 161924 }, { "analysis_explanation": null, "end": 161944, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 161937 }, { "analysis_explanation": null, "end": 162011, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 162004 }, { "analysis_explanation": null, "end": 162105, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 162089 }, { "analysis_explanation": null, "end": 162186, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 162182 }, { "analysis_explanation": null, "end": 162251, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 162236 }, { "analysis_explanation": null, "end": 162275, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 162268 }, { "analysis_explanation": null, "end": 162379, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 162371 }, { "analysis_explanation": null, "end": 162428, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 162421 }, { "analysis_explanation": null, "end": 162980, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 162960 }, { "analysis_explanation": null, "end": 163108, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 163092 }, { "analysis_explanation": null, "end": 163171, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 163163 }, { "analysis_explanation": null, "end": 163243, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 163237 }, { "analysis_explanation": null, "end": 163265, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 163245 }, { "analysis_explanation": null, "end": 163299, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 163290 }, { "analysis_explanation": null, "end": 163350, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 163338 }, { "analysis_explanation": null, "end": 163356, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 163351 }, { "analysis_explanation": null, "end": 163434, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 163427 }, { "analysis_explanation": null, "end": 163737, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 163724 }, { "analysis_explanation": null, "end": 163782, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 163761 }, { "analysis_explanation": null, "end": 163804, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 163797 }, { "analysis_explanation": null, "end": 163963, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 163956 }, { "analysis_explanation": null, "end": 164330, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 164321 }, { "analysis_explanation": null, "end": 164742, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 164735 }, { "analysis_explanation": null, "end": 164800, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 164792 }, { "analysis_explanation": null, "end": 164913, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 164906 }, { "analysis_explanation": null, "end": 164969, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 164959 }, { "analysis_explanation": null, "end": 164979, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 164971 }, { "analysis_explanation": null, "end": 165005, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 164984 }, { "analysis_explanation": null, "end": 165023, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165009 }, { "analysis_explanation": null, "end": 165249, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165244 }, { "analysis_explanation": null, "end": 165259, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165254 }, { "analysis_explanation": null, "end": 165290, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165282 }, { "analysis_explanation": null, "end": 165426, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165418 }, { "analysis_explanation": null, "end": 165536, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165527 }, { "analysis_explanation": null, "end": 165573, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165556 }, { "analysis_explanation": null, "end": 165691, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165684 }, { "analysis_explanation": null, "end": 165729, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165721 }, { "analysis_explanation": null, "end": 165780, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165768 }, { "analysis_explanation": null, "end": 165904, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 165894 }, { "analysis_explanation": null, "end": 166065, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 166053 }, { "analysis_explanation": null, "end": 166214, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 166203 }, { "analysis_explanation": null, "end": 166251, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 166216 }, { "analysis_explanation": null, "end": 166292, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 166283 }, { "analysis_explanation": null, "end": 166420, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 166400 }, { "analysis_explanation": null, "end": 166443, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 166427 }, { "analysis_explanation": null, "end": 166656, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 166636 }, { "analysis_explanation": null, "end": 166994, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 166974 }, { "analysis_explanation": null, "end": 167031, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167021 }, { "analysis_explanation": null, "end": 167256, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167246 }, { "analysis_explanation": null, "end": 167266, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167258 }, { "analysis_explanation": null, "end": 167292, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167271 }, { "analysis_explanation": null, "end": 167310, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167296 }, { "analysis_explanation": null, "end": 167335, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167328 }, { "analysis_explanation": null, "end": 167374, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167356 }, { "analysis_explanation": null, "end": 167395, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167385 }, { "analysis_explanation": null, "end": 167426, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167401 }, { "analysis_explanation": null, "end": 167562, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167545 }, { "analysis_explanation": null, "end": 167621, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167610 }, { "analysis_explanation": null, "end": 167640, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167633 }, { "analysis_explanation": null, "end": 167674, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167663 }, { "analysis_explanation": null, "end": 167696, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167691 }, { "analysis_explanation": null, "end": 167955, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167935 }, { "analysis_explanation": null, "end": 168004, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 167999 }, { "analysis_explanation": null, "end": 168277, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 168271 }, { "analysis_explanation": null, "end": 168291, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 168284 }, { "analysis_explanation": null, "end": 168377, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 168344 }, { "analysis_explanation": null, "end": 168393, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 168382 }, { "analysis_explanation": null, "end": 168419, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 168415 }, { "analysis_explanation": null, "end": 168647, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 168631 }, { "analysis_explanation": null, "end": 168901, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 168891 }, { "analysis_explanation": null, "end": 168918, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 168903 }, { "analysis_explanation": null, "end": 169254, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 169245 }, { "analysis_explanation": null, "end": 169355, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 169346 }, { "analysis_explanation": null, "end": 169551, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 169541 }, { "analysis_explanation": null, "end": 169561, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 169553 }, { "analysis_explanation": null, "end": 169587, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 169566 }, { "analysis_explanation": null, "end": 169605, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 169591 }, { "analysis_explanation": null, "end": 169638, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 169624 }, { "analysis_explanation": null, "end": 169674, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 169663 }, { "analysis_explanation": null, "end": 169725, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 169716 }, { "analysis_explanation": null, "end": 169734, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 169727 }, { "analysis_explanation": null, "end": 169745, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 169741 }, { "analysis_explanation": null, "end": 169756, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 169752 }, { "analysis_explanation": null, "end": 169981, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 169974 }, { "analysis_explanation": null, "end": 170112, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170100 }, { "analysis_explanation": null, "end": 170200, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170181 }, { "analysis_explanation": null, "end": 170231, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170208 }, { "analysis_explanation": null, "end": 170274, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170269 }, { "analysis_explanation": null, "end": 170328, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170316 }, { "analysis_explanation": null, "end": 170408, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170396 }, { "analysis_explanation": null, "end": 170443, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170430 }, { "analysis_explanation": null, "end": 170470, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170462 }, { "analysis_explanation": null, "end": 170493, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170487 }, { "analysis_explanation": null, "end": 170568, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170564 }, { "analysis_explanation": null, "end": 170584, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170578 }, { "analysis_explanation": null, "end": 170626, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170621 }, { "analysis_explanation": null, "end": 170639, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170630 }, { "analysis_explanation": null, "end": 170775, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170768 }, { "analysis_explanation": null, "end": 170821, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170809 }, { "analysis_explanation": null, "end": 170998, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 170963 }, { "analysis_explanation": null, "end": 171124, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 171112 }, { "analysis_explanation": null, "end": 171482, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 171458 }, { "analysis_explanation": null, "end": 171515, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 171504 }, { "analysis_explanation": null, "end": 171557, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 171553 }, { "analysis_explanation": null, "end": 171570, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 171563 }, { "analysis_explanation": null, "end": 171609, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 171602 }, { "analysis_explanation": null, "end": 171631, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 171624 }, { "analysis_explanation": null, "end": 171665, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 171646 }, { "analysis_explanation": null, "end": 171688, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 171681 }, { "analysis_explanation": null, "end": 171762, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 171747 }, { "analysis_explanation": null, "end": 171944, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 171940 }, { "analysis_explanation": null, "end": 172049, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172043 }, { "analysis_explanation": null, "end": 172075, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172051 }, { "analysis_explanation": null, "end": 172102, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172083 }, { "analysis_explanation": null, "end": 172115, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172102 }, { "analysis_explanation": null, "end": 172141, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172132 }, { "analysis_explanation": null, "end": 172188, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172183 }, { "analysis_explanation": null, "end": 172318, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172308 }, { "analysis_explanation": null, "end": 172364, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172360 }, { "analysis_explanation": null, "end": 172601, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172589 }, { "analysis_explanation": null, "end": 172752, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172745 }, { "analysis_explanation": null, "end": 172808, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172802 }, { "analysis_explanation": null, "end": 172827, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172812 }, { "analysis_explanation": null, "end": 172853, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172838 }, { "analysis_explanation": null, "end": 172881, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172861 }, { "analysis_explanation": null, "end": 172922, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 172911 }, { "analysis_explanation": null, "end": 173120, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173104 }, { "analysis_explanation": null, "end": 173132, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173125 }, { "analysis_explanation": null, "end": 173290, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173272 }, { "analysis_explanation": null, "end": 173308, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173294 }, { "analysis_explanation": null, "end": 173343, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173328 }, { "analysis_explanation": null, "end": 173358, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173353 }, { "analysis_explanation": null, "end": 173609, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173600 }, { "analysis_explanation": null, "end": 173848, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 173839 }, { "analysis_explanation": null, "end": 174130, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174111 }, { "analysis_explanation": null, "end": 174211, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174203 }, { "analysis_explanation": null, "end": 174230, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174221 }, { "analysis_explanation": null, "end": 174558, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174537 }, { "analysis_explanation": null, "end": 174570, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174561 }, { "analysis_explanation": null, "end": 174591, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174572 }, { "analysis_explanation": null, "end": 174630, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174627 }, { "analysis_explanation": null, "end": 174742, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174731 }, { "analysis_explanation": null, "end": 174898, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 174893 }, { "analysis_explanation": null, "end": 175328, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 175305 }, { "analysis_explanation": null, "end": 175402, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 175393 }, { "analysis_explanation": null, "end": 175476, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 175472 }, { "analysis_explanation": null, "end": 175523, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 175514 }, { "analysis_explanation": null, "end": 175565, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 175559 }, { "analysis_explanation": null, "end": 175656, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 175636 }, { "analysis_explanation": null, "end": 175928, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 175922 }, { "analysis_explanation": null, "end": 176133, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 176124 }, { "analysis_explanation": null, "end": 176191, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 176167 }, { "analysis_explanation": null, "end": 176206, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 176195 }, { "analysis_explanation": null, "end": 176326, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 176312 }, { "analysis_explanation": null, "end": 176441, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 176430 }, { "analysis_explanation": null, "end": 176627, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 176618 }, { "analysis_explanation": null, "end": 176736, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 176725 }, { "analysis_explanation": null, "end": 177038, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 177005 }, { "analysis_explanation": null, "end": 177237, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 177226 }, { "analysis_explanation": null, "end": 177260, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 177239 }, { "analysis_explanation": null, "end": 177296, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 177262 }, { "analysis_explanation": null, "end": 177339, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 177325 }, { "analysis_explanation": null, "end": 177469, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 177448 }, { "analysis_explanation": null, "end": 177528, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 177520 }, { "analysis_explanation": null, "end": 177541, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 177533 }, { "analysis_explanation": null, "end": 177654, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 177648 }, { "analysis_explanation": null, "end": 177667, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 177656 }, { "analysis_explanation": null, "end": 177717, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 177708 }, { "analysis_explanation": null, "end": 177740, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 177731 }, { "analysis_explanation": null, "end": 177830, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 177820 }, { "analysis_explanation": null, "end": 177960, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 177954 }, { "analysis_explanation": null, "end": 178032, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 178023 }, { "analysis_explanation": null, "end": 178078, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 178072 }, { "analysis_explanation": null, "end": 178182, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 178161 }, { "analysis_explanation": null, "end": 178219, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 178208 }, { "analysis_explanation": null, "end": 178420, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 178406 }, { "analysis_explanation": null, "end": 178720, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 178686 }, { "analysis_explanation": null, "end": 178842, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 178822 }, { "analysis_explanation": null, "end": 178918, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 178912 }, { "analysis_explanation": null, "end": 179109, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 179098 }, { "analysis_explanation": null, "end": 179144, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 179135 }, { "analysis_explanation": null, "end": 179202, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 179197 }, { "analysis_explanation": null, "end": 179368, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 179364 }, { "analysis_explanation": null, "end": 179405, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 179393 }, { "analysis_explanation": null, "end": 179449, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 179437 }, { "analysis_explanation": null, "end": 179488, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 179484 }, { "analysis_explanation": null, "end": 179695, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 179686 }, { "analysis_explanation": null, "end": 179867, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 179860 }, { "analysis_explanation": null, "end": 179877, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 179872 }, { "analysis_explanation": null, "end": 180007, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 179973 }, { "analysis_explanation": null, "end": 180026, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 180013 }, { "analysis_explanation": null, "end": 180040, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 180028 }, { "analysis_explanation": null, "end": 180112, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 180103 }, { "analysis_explanation": null, "end": 180241, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 180208 }, { "analysis_explanation": null, "end": 180310, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 180303 }, { "analysis_explanation": null, "end": 180459, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 180446 }, { "analysis_explanation": null, "end": 180711, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 180694 }, { "analysis_explanation": null, "end": 180747, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 180735 }, { "analysis_explanation": null, "end": 180932, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 180923 }, { "analysis_explanation": null, "end": 181044, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 181020 }, { "analysis_explanation": null, "end": 181227, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 181219 }, { "analysis_explanation": null, "end": 181269, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 181263 }, { "analysis_explanation": null, "end": 181372, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 181363 }, { "analysis_explanation": null, "end": 181576, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 181564 }, { "analysis_explanation": null, "end": 181589, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 181582 }, { "analysis_explanation": null, "end": 181663, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 181656 }, { "analysis_explanation": null, "end": 181839, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 181825 }, { "analysis_explanation": null, "end": 181902, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 181883 }, { "analysis_explanation": null, "end": 182087, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 182082 }, { "analysis_explanation": null, "end": 182187, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 182178 }, { "analysis_explanation": null, "end": 182361, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 182352 }, { "analysis_explanation": null, "end": 182399, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 182387 }, { "analysis_explanation": null, "end": 182428, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 182415 }, { "analysis_explanation": null, "end": 182512, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 182493 }, { "analysis_explanation": null, "end": 182548, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 182543 }, { "analysis_explanation": null, "end": 182615, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 182608 }, { "analysis_explanation": null, "end": 182685, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 182680 }, { "analysis_explanation": null, "end": 182860, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 182854 }, { "analysis_explanation": null, "end": 183054, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 183048 }, { "analysis_explanation": null, "end": 183212, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 183201 }, { "analysis_explanation": null, "end": 183261, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 183249 }, { "analysis_explanation": null, "end": 183281, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 183265 }, { "analysis_explanation": null, "end": 183419, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 183400 }, { "analysis_explanation": null, "end": 183479, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 183470 }, { "analysis_explanation": null, "end": 183562, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 183554 }, { "analysis_explanation": null, "end": 183573, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 183567 }, { "analysis_explanation": null, "end": 183584, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 183574 }, { "analysis_explanation": null, "end": 183611, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 183585 }, { "analysis_explanation": null, "end": 183820, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 183804 }, { "analysis_explanation": null, "end": 184260, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 184249 }, { "analysis_explanation": null, "end": 184309, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 184297 }, { "analysis_explanation": null, "end": 184467, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 184456 }, { "analysis_explanation": null, "end": 184723, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 184673 }, { "analysis_explanation": null, "end": 184775, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 184762 }, { "analysis_explanation": null, "end": 184796, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 184780 }, { "analysis_explanation": null, "end": 185090, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 185063 }, { "analysis_explanation": null, "end": 185178, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 185173 }, { "analysis_explanation": null, "end": 185192, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 185189 }, { "analysis_explanation": null, "end": 185268, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 185260 }, { "analysis_explanation": null, "end": 185292, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 185277 }, { "analysis_explanation": null, "end": 185300, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 185296 }, { "analysis_explanation": null, "end": 185386, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 185372 }, { "analysis_explanation": null, "end": 185484, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 185475 }, { "analysis_explanation": null, "end": 185669, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 185662 }, { "analysis_explanation": null, "end": 185698, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 185687 }, { "analysis_explanation": null, "end": 185764, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 185741 }, { "analysis_explanation": null, "end": 185780, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 185771 }, { "analysis_explanation": null, "end": 185833, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 185828 }, { "analysis_explanation": null, "end": 185893, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 185884 }, { "analysis_explanation": null, "end": 185908, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 185895 }, { "analysis_explanation": null, "end": 185920, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 185913 }, { "analysis_explanation": null, "end": 186021, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 186014 }, { "analysis_explanation": null, "end": 186128, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 186121 }, { "analysis_explanation": null, "end": 186169, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 186151 }, { "analysis_explanation": null, "end": 186330, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 186315 }, { "analysis_explanation": null, "end": 186344, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 186339 }, { "analysis_explanation": null, "end": 186391, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 186377 }, { "analysis_explanation": null, "end": 186422, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 186411 }, { "analysis_explanation": null, "end": 186634, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 186620 }, { "analysis_explanation": null, "end": 186649, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 186638 }, { "analysis_explanation": null, "end": 186866, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 186857 }, { "analysis_explanation": null, "end": 187024, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 187012 }, { "analysis_explanation": null, "end": 187149, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 187138 }, { "analysis_explanation": null, "end": 187162, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 187151 }, { "analysis_explanation": null, "end": 187310, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 187299 }, { "analysis_explanation": null, "end": 187737, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 187723 }, { "analysis_explanation": null, "end": 187865, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 187854 }, { "analysis_explanation": null, "end": 188063, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 188056 }, { "analysis_explanation": null, "end": 188106, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 188093 }, { "analysis_explanation": null, "end": 188151, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 188123 }, { "analysis_explanation": null, "end": 188232, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 188213 }, { "analysis_explanation": null, "end": 188329, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 188312 }, { "analysis_explanation": null, "end": 188499, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 188492 }, { "analysis_explanation": null, "end": 188695, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 188677 }, { "analysis_explanation": null, "end": 188811, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 188802 }, { "analysis_explanation": null, "end": 188838, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 188812 }, { "analysis_explanation": null, "end": 188919, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 188911 }, { "analysis_explanation": null, "end": 188968, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 188959 }, { "analysis_explanation": null, "end": 189048, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189021 }, { "analysis_explanation": null, "end": 189066, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189052 }, { "analysis_explanation": null, "end": 189146, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189117 }, { "analysis_explanation": null, "end": 189222, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189216 }, { "analysis_explanation": null, "end": 189269, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189262 }, { "analysis_explanation": null, "end": 189423, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189395 }, { "analysis_explanation": null, "end": 189538, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189529 }, { "analysis_explanation": null, "end": 189593, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189567 }, { "analysis_explanation": null, "end": 189619, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189610 }, { "analysis_explanation": null, "end": 189672, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189661 }, { "analysis_explanation": null, "end": 189744, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189729 }, { "analysis_explanation": null, "end": 189811, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189792 }, { "analysis_explanation": null, "end": 189893, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189863 }, { "analysis_explanation": null, "end": 189937, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189934 }, { "analysis_explanation": null, "end": 189986, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 189975 }, { "analysis_explanation": null, "end": 190026, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 190021 }, { "analysis_explanation": null, "end": 190066, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 190058 }, { "analysis_explanation": null, "end": 190157, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 190145 }, { "analysis_explanation": null, "end": 190200, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 190195 }, { "analysis_explanation": null, "end": 190224, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 190220 }, { "analysis_explanation": null, "end": 190254, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 190249 }, { "analysis_explanation": null, "end": 190375, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 190359 }, { "analysis_explanation": null, "end": 190477, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 190467 }, { "analysis_explanation": null, "end": 190535, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 190523 }, { "analysis_explanation": null, "end": 190548, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 190540 }, { "analysis_explanation": null, "end": 190565, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 190556 }, { "analysis_explanation": null, "end": 190714, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 190701 }, { "analysis_explanation": null, "end": 190794, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 190759 }, { "analysis_explanation": null, "end": 190800, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 190795 }, { "analysis_explanation": null, "end": 190842, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 190822 }, { "analysis_explanation": null, "end": 190973, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 190958 }, { "analysis_explanation": null, "end": 191077, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 191066 }, { "analysis_explanation": null, "end": 191114, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 191087 }, { "analysis_explanation": null, "end": 191132, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 191118 }, { "analysis_explanation": null, "end": 191186, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 191175 }, { "analysis_explanation": null, "end": 191422, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 191417 }, { "analysis_explanation": null, "end": 191646, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 191627 }, { "analysis_explanation": null, "end": 191767, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 191755 }, { "analysis_explanation": null, "end": 191864, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 191853 }, { "analysis_explanation": null, "end": 191965, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 191945 }, { "analysis_explanation": null, "end": 192040, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 192031 }, { "analysis_explanation": null, "end": 192064, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 192053 }, { "analysis_explanation": null, "end": 192208, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 192192 }, { "analysis_explanation": null, "end": 192289, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 192270 }, { "analysis_explanation": null, "end": 192346, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 192338 }, { "analysis_explanation": null, "end": 192445, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 192435 }, { "analysis_explanation": null, "end": 192515, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 192495 }, { "analysis_explanation": null, "end": 192548, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 192537 }, { "analysis_explanation": null, "end": 192618, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 192608 }, { "analysis_explanation": null, "end": 192694, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 192658 }, { "analysis_explanation": null, "end": 193008, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 193004 }, { "analysis_explanation": null, "end": 193057, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 193019 }, { "analysis_explanation": null, "end": 193107, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 193089 }, { "analysis_explanation": null, "end": 193189, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 193171 }, { "analysis_explanation": null, "end": 193272, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 193259 }, { "analysis_explanation": null, "end": 193313, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 193306 }, { "analysis_explanation": null, "end": 193379, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 193372 }, { "analysis_explanation": null, "end": 193427, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 193422 }, { "analysis_explanation": null, "end": 193652, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 193642 }, { "analysis_explanation": null, "end": 193703, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 193696 }, { "analysis_explanation": null, "end": 193844, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 193838 }, { "analysis_explanation": null, "end": 194007, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 193978 }, { "analysis_explanation": null, "end": 194037, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 194025 }, { "analysis_explanation": null, "end": 194195, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 194167 }, { "analysis_explanation": null, "end": 194385, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 194380 }, { "analysis_explanation": null, "end": 194468, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 194461 }, { "analysis_explanation": null, "end": 194520, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 194512 }, { "analysis_explanation": null, "end": 194574, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 194565 }, { "analysis_explanation": null, "end": 194643, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 194636 }, { "analysis_explanation": null, "end": 194733, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 194726 }, { "analysis_explanation": null, "end": 194811, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 194804 }, { "analysis_explanation": null, "end": 194947, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 194931 }, { "analysis_explanation": null, "end": 194978, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 194966 }, { "analysis_explanation": null, "end": 195001, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 194990 }, { "analysis_explanation": null, "end": 195138, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 195131 }, { "analysis_explanation": null, "end": 195202, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 195188 }, { "analysis_explanation": null, "end": 195216, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 195204 }, { "analysis_explanation": null, "end": 195239, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 195228 }, { "analysis_explanation": null, "end": 195466, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 195439 }, { "analysis_explanation": null, "end": 195484, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 195470 }, { "analysis_explanation": null, "end": 195550, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 195540 }, { "analysis_explanation": null, "end": 195613, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 195605 }, { "analysis_explanation": null, "end": 195800, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 195790 }, { "analysis_explanation": null, "end": 196158, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 196148 }, { "analysis_explanation": null, "end": 196267, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 196247 }, { "analysis_explanation": null, "end": 196378, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 196371 }, { "analysis_explanation": null, "end": 196423, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 196413 }, { "analysis_explanation": null, "end": 196466, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 196456 }, { "analysis_explanation": null, "end": 196655, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 196649 }, { "analysis_explanation": null, "end": 196838, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 196834 }, { "analysis_explanation": null, "end": 196849, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 196843 }, { "analysis_explanation": null, "end": 197153, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 197141 }, { "analysis_explanation": null, "end": 197240, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 197228 }, { "analysis_explanation": null, "end": 197737, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 197726 }, { "analysis_explanation": null, "end": 197983, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 197956 }, { "analysis_explanation": null, "end": 198001, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 197987 }, { "analysis_explanation": null, "end": 198564, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 198555 }, { "analysis_explanation": null, "end": 198638, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 198625 }, { "analysis_explanation": null, "end": 198776, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 198765 }, { "analysis_explanation": null, "end": 199273, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 199251 }, { "analysis_explanation": null, "end": 199467, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 199452 }, { "analysis_explanation": null, "end": 199864, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 199848 }, { "analysis_explanation": null, "end": 199894, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 199883 }, { "analysis_explanation": null, "end": 199910, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 199904 }, { "analysis_explanation": null, "end": 200194, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 200188 }, { "analysis_explanation": null, "end": 200279, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 200273 }, { "analysis_explanation": null, "end": 200311, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 200302 }, { "analysis_explanation": null, "end": 200340, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 200336 }, { "analysis_explanation": null, "end": 200391, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 200384 }, { "analysis_explanation": null, "end": 200419, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 200410 }, { "analysis_explanation": null, "end": 200513, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 200486 }, { "analysis_explanation": null, "end": 200531, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 200517 }, { "analysis_explanation": null, "end": 200791, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 200785 }, { "analysis_explanation": null, "end": 201015, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 201006 }, { "analysis_explanation": null, "end": 201159, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 201150 }, { "analysis_explanation": null, "end": 201236, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 201227 }, { "analysis_explanation": null, "end": 201316, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 201301 }, { "analysis_explanation": null, "end": 201420, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 201413 }, { "analysis_explanation": null, "end": 201499, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 201486 }, { "analysis_explanation": null, "end": 201520, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 201507 }, { "analysis_explanation": null, "end": 201535, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 201524 }, { "analysis_explanation": null, "end": 201616, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 201610 }, { "analysis_explanation": null, "end": 201654, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 201647 }, { "analysis_explanation": null, "end": 201685, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 201674 }, { "analysis_explanation": null, "end": 201781, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 201734 }, { "analysis_explanation": null, "end": 201793, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 201783 }, { "analysis_explanation": null, "end": 201803, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 201794 }, { "analysis_explanation": null, "end": 201815, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 201805 }, { "analysis_explanation": null, "end": 202029, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 202014 }, { "analysis_explanation": null, "end": 202124, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 202117 }, { "analysis_explanation": null, "end": 202205, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 202199 }, { "analysis_explanation": null, "end": 202244, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 202213 }, { "analysis_explanation": null, "end": 202341, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 202334 }, { "analysis_explanation": null, "end": 202392, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 202385 }, { "analysis_explanation": null, "end": 202477, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 202458 }, { "analysis_explanation": null, "end": 202488, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 202481 }, { "analysis_explanation": null, "end": 202575, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 202566 }, { "analysis_explanation": null, "end": 202607, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 202592 }, { "analysis_explanation": null, "end": 202666, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 202648 }, { "analysis_explanation": null, "end": 202682, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 202668 }, { "analysis_explanation": null, "end": 202934, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 202907 }, { "analysis_explanation": null, "end": 202952, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 202938 }, { "analysis_explanation": null, "end": 202985, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 202971 }, { "analysis_explanation": null, "end": 203024, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 203015 }, { "analysis_explanation": null, "end": 203344, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 203338 }, { "analysis_explanation": null, "end": 203478, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 203467 }, { "analysis_explanation": null, "end": 203543, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 203532 }, { "analysis_explanation": null, "end": 203610, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 203604 }, { "analysis_explanation": null, "end": 203629, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 203612 }, { "analysis_explanation": null, "end": 203651, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 203635 }, { "analysis_explanation": null, "end": 203696, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 203689 }, { "analysis_explanation": null, "end": 203709, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 203703 }, { "analysis_explanation": null, "end": 203764, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 203758 }, { "analysis_explanation": null, "end": 203940, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 203930 }, { "analysis_explanation": null, "end": 204043, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204031 }, { "analysis_explanation": null, "end": 204051, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204045 }, { "analysis_explanation": null, "end": 204065, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204059 }, { "analysis_explanation": null, "end": 204081, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204067 }, { "analysis_explanation": null, "end": 204127, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204121 }, { "analysis_explanation": null, "end": 204156, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204151 }, { "analysis_explanation": null, "end": 204203, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204194 }, { "analysis_explanation": null, "end": 204276, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204267 }, { "analysis_explanation": null, "end": 204344, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204337 }, { "analysis_explanation": null, "end": 204425, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204416 }, { "analysis_explanation": null, "end": 204613, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204607 }, { "analysis_explanation": null, "end": 204626, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204615 }, { "analysis_explanation": null, "end": 204676, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204665 }, { "analysis_explanation": null, "end": 204710, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204704 }, { "analysis_explanation": null, "end": 204759, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204748 }, { "analysis_explanation": null, "end": 204813, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204804 }, { "analysis_explanation": null, "end": 205015, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 205004 }, { "analysis_explanation": null, "end": 205120, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 205109 }, { "analysis_explanation": null, "end": 205128, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 205122 }, { "analysis_explanation": null, "end": 205142, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 205136 }, { "analysis_explanation": null, "end": 205436, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 205423 }, { "analysis_explanation": null, "end": 205547, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 205534 }, { "analysis_explanation": null, "end": 205575, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 205566 }, { "analysis_explanation": null, "end": 205644, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 205631 }, { "analysis_explanation": null, "end": 205654, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 205648 }, { "analysis_explanation": null, "end": 205691, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 205669 }, { "analysis_explanation": null, "end": 205721, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 205705 }, { "analysis_explanation": null, "end": 205769, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 205764 }, { "analysis_explanation": null, "end": 205841, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 205830 }, { "analysis_explanation": null, "end": 206370, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 206353 }, { "analysis_explanation": null, "end": 206403, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 206379 }, { "analysis_explanation": null, "end": 206433, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 206417 }, { "analysis_explanation": null, "end": 206474, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 206469 }, { "analysis_explanation": null, "end": 206708, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 206695 }, { "analysis_explanation": null, "end": 206730, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 206721 }, { "analysis_explanation": null, "end": 206778, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 206760 }, { "analysis_explanation": null, "end": 207136, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 207115 }, { "analysis_explanation": null, "end": 207171, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 207158 }, { "analysis_explanation": null, "end": 207230, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 207221 }, { "analysis_explanation": null, "end": 207255, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 207235 }, { "analysis_explanation": null, "end": 207755, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 207740 }, { "analysis_explanation": null, "end": 207768, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 207761 }, { "analysis_explanation": null, "end": 207784, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 207772 }, { "analysis_explanation": null, "end": 207795, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 207786 }, { "analysis_explanation": null, "end": 207902, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 207886 }, { "analysis_explanation": null, "end": 207990, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 207983 }, { "analysis_explanation": null, "end": 208003, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 207995 }, { "analysis_explanation": null, "end": 208102, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 208083 }, { "analysis_explanation": null, "end": 208241, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 208221 }, { "analysis_explanation": null, "end": 208263, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 208247 }, { "analysis_explanation": null, "end": 208474, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 208465 }, { "analysis_explanation": null, "end": 208598, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 208592 }, { "analysis_explanation": null, "end": 208664, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 208647 }, { "analysis_explanation": null, "end": 208718, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 208712 }, { "analysis_explanation": null, "end": 208980, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 208961 }, { "analysis_explanation": null, "end": 209003, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 208994 }, { "analysis_explanation": null, "end": 209058, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 209052 }, { "analysis_explanation": null, "end": 209119, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 209103 }, { "analysis_explanation": null, "end": 209374, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 209364 }, { "analysis_explanation": null, "end": 209416, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 209400 }, { "analysis_explanation": null, "end": 209459, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 209445 }, { "analysis_explanation": null, "end": 209559, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 209549 }, { "analysis_explanation": null, "end": 209653, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 209642 }, { "analysis_explanation": null, "end": 209725, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 209719 }, { "analysis_explanation": null, "end": 209873, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 209864 }, { "analysis_explanation": null, "end": 210015, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 210006 }, { "analysis_explanation": null, "end": 210037, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 210032 }, { "analysis_explanation": null, "end": 210081, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 210068 }, { "analysis_explanation": null, "end": 210099, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 210086 }, { "analysis_explanation": null, "end": 210270, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 210256 }, { "analysis_explanation": null, "end": 210322, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 210309 }, { "analysis_explanation": null, "end": 210330, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 210324 }, { "analysis_explanation": null, "end": 210529, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 210520 }, { "analysis_explanation": null, "end": 210538, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 210531 }, { "analysis_explanation": null, "end": 210723, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 210714 }, { "analysis_explanation": null, "end": 210825, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 210820 }, { "analysis_explanation": null, "end": 210933, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 210924 }, { "analysis_explanation": null, "end": 210974, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 210969 }, { "analysis_explanation": null, "end": 211001, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 210982 }, { "analysis_explanation": null, "end": 211149, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 211127 }, { "analysis_explanation": null, "end": 211179, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 211173 }, { "analysis_explanation": null, "end": 211309, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 211303 }, { "analysis_explanation": null, "end": 211389, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 211355 }, { "analysis_explanation": null, "end": 211461, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 211452 }, { "analysis_explanation": null, "end": 211534, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 211525 }, { "analysis_explanation": null, "end": 211596, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 211571 }, { "analysis_explanation": null, "end": 211617, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 211598 }, { "analysis_explanation": null, "end": 211628, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 211619 }, { "analysis_explanation": null, "end": 211740, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 211713 }, { "analysis_explanation": null, "end": 212035, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 212027 }, { "analysis_explanation": null, "end": 212048, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 212037 }, { "analysis_explanation": null, "end": 212090, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 212079 }, { "analysis_explanation": null, "end": 212140, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 212129 }, { "analysis_explanation": null, "end": 212192, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 212181 }, { "analysis_explanation": null, "end": 212504, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 212494 }, { "analysis_explanation": null, "end": 212743, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 212735 }, { "analysis_explanation": null, "end": 212839, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 212831 }, { "analysis_explanation": null, "end": 212852, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 212844 }, { "analysis_explanation": null, "end": 212912, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 212898 }, { "analysis_explanation": null, "end": 212970, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 212955 }, { "analysis_explanation": null, "end": 212987, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 212972 }, { "analysis_explanation": null, "end": 213178, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 213172 }, { "analysis_explanation": null, "end": 213373, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 213367 }, { "analysis_explanation": null, "end": 213604, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 213598 }, { "analysis_explanation": null, "end": 213748, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 213733 }, { "analysis_explanation": null, "end": 213775, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 213762 }, { "analysis_explanation": null, "end": 213835, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 213828 }, { "analysis_explanation": null, "end": 213873, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 213866 }, { "analysis_explanation": null, "end": 213944, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 213939 }, { "analysis_explanation": null, "end": 214007, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 213990 }, { "analysis_explanation": null, "end": 214117, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 214104 }, { "analysis_explanation": null, "end": 214135, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 214122 }, { "analysis_explanation": null, "end": 214162, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 214158 }, { "analysis_explanation": null, "end": 214246, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 214235 }, { "analysis_explanation": null, "end": 214436, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 214418 }, { "analysis_explanation": null, "end": 214777, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 214737 }, { "analysis_explanation": null, "end": 214889, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 214879 }, { "analysis_explanation": null, "end": 214906, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 214891 }, { "analysis_explanation": null, "end": 215149, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 215145 }, { "analysis_explanation": null, "end": 215175, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 215159 }, { "analysis_explanation": null, "end": 215196, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 215177 }, { "analysis_explanation": null, "end": 215301, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 215293 }, { "analysis_explanation": null, "end": 215351, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 215344 }, { "analysis_explanation": null, "end": 215465, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 215451 }, { "analysis_explanation": null, "end": 215498, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 215484 }, { "analysis_explanation": null, "end": 215565, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 215560 }, { "analysis_explanation": null, "end": 215637, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 215628 }, { "analysis_explanation": null, "end": 215695, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 215686 }, { "analysis_explanation": null, "end": 215729, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 215724 }, { "analysis_explanation": null, "end": 215754, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 215744 }, { "analysis_explanation": null, "end": 215773, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 215764 }, { "analysis_explanation": null, "end": 215866, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 215859 }, { "analysis_explanation": null, "end": 215933, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 215926 }, { "analysis_explanation": null, "end": 215948, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 215938 }, { "analysis_explanation": null, "end": 216046, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 216040 }, { "analysis_explanation": null, "end": 216171, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 216162 }, { "analysis_explanation": null, "end": 216186, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 216181 }, { "analysis_explanation": null, "end": 216336, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 216312 }, { "analysis_explanation": null, "end": 216493, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 216488 }, { "analysis_explanation": null, "end": 216555, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 216545 }, { "analysis_explanation": null, "end": 216614, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 216604 }, { "analysis_explanation": null, "end": 216663, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 216658 }, { "analysis_explanation": null, "end": 216751, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 216746 }, { "analysis_explanation": null, "end": 216823, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 216808 }, { "analysis_explanation": null, "end": 216830, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 216825 }, { "analysis_explanation": null, "end": 216917, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 216912 }, { "analysis_explanation": null, "end": 216927, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 216919 }, { "analysis_explanation": null, "end": 216934, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 216928 }, { "analysis_explanation": null, "end": 216950, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 216944 }, { "analysis_explanation": null, "end": 217021, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217016 }, { "analysis_explanation": null, "end": 217129, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217123 }, { "analysis_explanation": null, "end": 217185, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217173 }, { "analysis_explanation": null, "end": 217197, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217193 }, { "analysis_explanation": null, "end": 217238, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217234 }, { "analysis_explanation": null, "end": 217290, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217275 }, { "analysis_explanation": null, "end": 217325, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217315 }, { "analysis_explanation": null, "end": 217463, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217452 }, { "analysis_explanation": null, "end": 217492, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217469 }, { "analysis_explanation": null, "end": 217635, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217630 }, { "analysis_explanation": null, "end": 217782, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217772 }, { "analysis_explanation": null, "end": 217828, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217823 }, { "analysis_explanation": null, "end": 217866, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217854 }, { "analysis_explanation": null, "end": 217874, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217867 }, { "analysis_explanation": null, "end": 217897, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217889 }, { "analysis_explanation": null, "end": 217918, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217913 }, { "analysis_explanation": null, "end": 217967, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217955 }, { "analysis_explanation": null, "end": 217976, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217968 }, { "analysis_explanation": null, "end": 218010, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 218005 }, { "analysis_explanation": null, "end": 218122, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 218109 }, { "analysis_explanation": null, "end": 218131, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 218123 }, { "analysis_explanation": null, "end": 218140, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 218135 }, { "analysis_explanation": null, "end": 218262, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 218255 }, { "analysis_explanation": null, "end": 218338, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 218333 }, { "analysis_explanation": null, "end": 218469, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 218464 }, { "analysis_explanation": null, "end": 218564, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 218559 }, { "analysis_explanation": null, "end": 218717, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 218702 }, { "analysis_explanation": null, "end": 218759, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 218750 }, { "analysis_explanation": null, "end": 218799, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 218784 }, { "analysis_explanation": null, "end": 218821, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 218811 }, { "analysis_explanation": null, "end": 218841, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 218836 }, { "analysis_explanation": null, "end": 218884, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 218871 }, { "analysis_explanation": null, "end": 218944, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 218939 }, { "analysis_explanation": null, "end": 218989, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 218977 }, { "analysis_explanation": null, "end": 219000, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 218990 }, { "analysis_explanation": null, "end": 219048, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 219043 }, { "analysis_explanation": null, "end": 219092, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 219082 }, { "analysis_explanation": null, "end": 219112, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 219094 }, { "analysis_explanation": null, "end": 219313, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 219308 }, { "analysis_explanation": null, "end": 219371, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 219361 }, { "analysis_explanation": null, "end": 219391, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 219386 }, { "analysis_explanation": null, "end": 219467, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 219462 }, { "analysis_explanation": null, "end": 219508, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 219504 }, { "analysis_explanation": null, "end": 219523, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 219518 }, { "analysis_explanation": null, "end": 219546, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 219541 }, { "analysis_explanation": null, "end": 219556, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 219551 }, { "analysis_explanation": null, "end": 219619, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 219609 }, { "analysis_explanation": null, "end": 219657, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 219653 }, { "analysis_explanation": null, "end": 219682, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 219674 }, { "analysis_explanation": null, "end": 219740, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 219735 }, { "analysis_explanation": null, "end": 219807, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 219784 }, { "analysis_explanation": null, "end": 219905, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 219885 }, { "analysis_explanation": null, "end": 219977, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 219973 }, { "analysis_explanation": null, "end": 219992, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 219979 }, { "analysis_explanation": null, "end": 220007, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220003 }, { "analysis_explanation": null, "end": 220023, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220020 }, { "analysis_explanation": null, "end": 220187, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220168 }, { "analysis_explanation": null, "end": 220272, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220267 }, { "analysis_explanation": null, "end": 220376, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220355 }, { "analysis_explanation": null, "end": 220420, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220416 }, { "analysis_explanation": null, "end": 220460, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220450 }, { "analysis_explanation": null, "end": 220479, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220474 }, { "analysis_explanation": null, "end": 220505, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220487 }, { "analysis_explanation": null, "end": 220530, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220518 }, { "analysis_explanation": null, "end": 220548, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220539 }, { "analysis_explanation": null, "end": 220609, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220601 }, { "analysis_explanation": null, "end": 220666, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220655 }, { "analysis_explanation": null, "end": 220703, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220698 }, { "analysis_explanation": null, "end": 220733, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220723 }, { "analysis_explanation": null, "end": 220741, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220737 }, { "analysis_explanation": null, "end": 220787, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220775 }, { "analysis_explanation": null, "end": 220851, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220846 }, { "analysis_explanation": null, "end": 220858, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220853 }, { "analysis_explanation": null, "end": 220888, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220883 }, { "analysis_explanation": null, "end": 220896, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220892 }, { "analysis_explanation": null, "end": 220945, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220927 }, { "analysis_explanation": null, "end": 220961, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220951 }, { "analysis_explanation": null, "end": 221013, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 220993 }, { "analysis_explanation": null, "end": 221050, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 221045 }, { "analysis_explanation": null, "end": 221062, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 221055 }, { "analysis_explanation": null, "end": 221101, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 221092 }, { "analysis_explanation": null, "end": 221177, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 221174 }, { "analysis_explanation": null, "end": 221199, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 221189 }, { "analysis_explanation": null, "end": 221242, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 221233 }, { "analysis_explanation": null, "end": 221286, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 221281 }, { "analysis_explanation": null, "end": 221294, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 221290 }, { "analysis_explanation": null, "end": 221394, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 221389 }, { "analysis_explanation": null, "end": 221499, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 221492 }, { "analysis_explanation": null, "end": 221621, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 221610 }, { "analysis_explanation": null, "end": 221720, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 221706 }, { "analysis_explanation": null, "end": 221746, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 221738 }, { "analysis_explanation": null, "end": 221905, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 221895 }, { "analysis_explanation": null, "end": 222033, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 222025 }, { "analysis_explanation": null, "end": 222065, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 222052 }, { "analysis_explanation": null, "end": 222194, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 222189 }, { "analysis_explanation": null, "end": 222222, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 222217 }, { "analysis_explanation": null, "end": 222251, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 222236 }, { "analysis_explanation": null, "end": 222448, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 222437 }, { "analysis_explanation": null, "end": 222480, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 222473 }, { "analysis_explanation": null, "end": 222552, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 222541 }, { "analysis_explanation": null, "end": 222591, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 222586 }, { "analysis_explanation": null, "end": 222617, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 222603 }, { "analysis_explanation": null, "end": 222668, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 222657 }, { "analysis_explanation": null, "end": 222685, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 222672 }, { "analysis_explanation": null, "end": 222733, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 222728 }, { "analysis_explanation": null, "end": 222795, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 222785 }, { "analysis_explanation": null, "end": 223063, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 223036 }, { "analysis_explanation": null, "end": 223073, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 223064 }, { "analysis_explanation": null, "end": 223226, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 223207 }, { "analysis_explanation": null, "end": 223259, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 223244 }, { "analysis_explanation": null, "end": 223275, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 223270 }, { "analysis_explanation": null, "end": 223465, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 223439 }, { "analysis_explanation": null, "end": 223564, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 223548 }, { "analysis_explanation": null, "end": 223569, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 223564 }, { "analysis_explanation": null, "end": 223598, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 223593 }, { "analysis_explanation": null, "end": 223646, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 223634 }, { "analysis_explanation": null, "end": 223654, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 223647 }, { "analysis_explanation": null, "end": 223689, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 223684 }, { "analysis_explanation": null, "end": 223760, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 223747 }, { "analysis_explanation": null, "end": 223882, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 223856 }, { "analysis_explanation": null, "end": 223888, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 223883 }, { "analysis_explanation": null, "end": 224028, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 224023 }, { "analysis_explanation": null, "end": 224065, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 224048 }, { "analysis_explanation": null, "end": 224303, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 224295 }, { "analysis_explanation": null, "end": 224317, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 224312 }, { "analysis_explanation": null, "end": 224403, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 224398 }, { "analysis_explanation": null, "end": 224606, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 224590 }, { "analysis_explanation": null, "end": 224622, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 224612 }, { "analysis_explanation": null, "end": 224667, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 224655 }, { "analysis_explanation": null, "end": 224808, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 224803 }, { "analysis_explanation": null, "end": 224834, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 224820 }, { "analysis_explanation": null, "end": 224932, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 224924 }, { "analysis_explanation": null, "end": 224938, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 224933 }, { "analysis_explanation": null, "end": 225104, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 225096 }, { "analysis_explanation": null, "end": 225110, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 225105 }, { "analysis_explanation": null, "end": 225147, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 225142 }, { "analysis_explanation": null, "end": 225262, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 225254 }, { "analysis_explanation": null, "end": 225268, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 225263 }, { "analysis_explanation": null, "end": 225327, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 225322 }, { "analysis_explanation": null, "end": 225498, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 225493 }, { "analysis_explanation": null, "end": 225684, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 225676 }, { "analysis_explanation": null, "end": 225690, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 225685 }, { "analysis_explanation": null, "end": 225738, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 225726 }, { "analysis_explanation": null, "end": 225754, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 225748 }, { "analysis_explanation": null, "end": 225901, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 225896 }, { "analysis_explanation": null, "end": 225968, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 225956 }, { "analysis_explanation": null, "end": 225994, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 225986 }, { "analysis_explanation": null, "end": 226046, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 226041 }, { "analysis_explanation": null, "end": 226069, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 226061 }, { "analysis_explanation": null, "end": 226075, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 226070 }, { "analysis_explanation": null, "end": 226108, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 226099 }, { "analysis_explanation": null, "end": 226334, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 226323 }, { "analysis_explanation": null, "end": 226363, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 226355 }, { "analysis_explanation": null, "end": 226369, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 226364 }, { "analysis_explanation": null, "end": 226481, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 226471 }, { "analysis_explanation": null, "end": 226584, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 226576 }, { "analysis_explanation": null, "end": 226590, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 226585 }, { "analysis_explanation": null, "end": 226652, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 226647 }, { "analysis_explanation": null, "end": 226799, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 226791 }, { "analysis_explanation": null, "end": 226805, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 226800 }, { "analysis_explanation": null, "end": 226909, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 226897 }, { "analysis_explanation": null, "end": 226976, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 226971 }, { "analysis_explanation": null, "end": 227106, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 227097 }, { "analysis_explanation": null, "end": 227155, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 227150 }, { "analysis_explanation": null, "end": 227181, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 227167 }, { "analysis_explanation": null, "end": 227256, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 227239 }, { "analysis_explanation": null, "end": 227262, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 227257 }, { "analysis_explanation": null, "end": 227286, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 227275 }, { "analysis_explanation": null, "end": 227325, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 227320 }, { "analysis_explanation": null, "end": 227465, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 227448 }, { "analysis_explanation": null, "end": 227910, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 227901 }, { "analysis_explanation": null, "end": 227965, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 227954 }, { "analysis_explanation": null, "end": 228210, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 228205 }, { "analysis_explanation": null, "end": 228585, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 228580 }, { "analysis_explanation": null, "end": 228611, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 228604 }, { "analysis_explanation": null, "end": 228665, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 228649 }, { "analysis_explanation": null, "end": 228826, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 228811 }, { "analysis_explanation": null, "end": 228947, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 228939 }, { "analysis_explanation": null, "end": 229220, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 229209 }, { "analysis_explanation": null, "end": 229393, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 229390 }, { "analysis_explanation": null, "end": 229422, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 229417 }, { "analysis_explanation": null, "end": 229448, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 229434 }, { "analysis_explanation": null, "end": 229582, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 229575 }, { "analysis_explanation": null, "end": 229693, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 229681 }, { "analysis_explanation": null, "end": 229736, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 229720 }, { "analysis_explanation": null, "end": 229814, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 229806 }, { "analysis_explanation": null, "end": 229857, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 229853 }, { "analysis_explanation": null, "end": 229866, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 229862 }, { "analysis_explanation": null, "end": 229914, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 229907 }, { "analysis_explanation": null, "end": 229968, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 229956 }, { "analysis_explanation": null, "end": 230010, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 230007 }, { "analysis_explanation": null, "end": 230030, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 230014 }, { "analysis_explanation": null, "end": 230091, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 230083 }, { "analysis_explanation": null, "end": 230178, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 230172 }, { "analysis_explanation": null, "end": 230362, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 230352 }, { "analysis_explanation": null, "end": 230468, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 230461 }, { "analysis_explanation": null, "end": 230516, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 230496 }, { "analysis_explanation": null, "end": 230881, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 230873 }, { "analysis_explanation": null, "end": 230902, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 230898 }, { "analysis_explanation": null, "end": 230922, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 230912 }, { "analysis_explanation": null, "end": 231006, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 230988 }, { "analysis_explanation": null, "end": 231071, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231064 }, { "analysis_explanation": null, "end": 231115, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231105 }, { "analysis_explanation": null, "end": 231197, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231192 }, { "analysis_explanation": null, "end": 231328, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231319 }, { "analysis_explanation": null, "end": 231492, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231478 }, { "analysis_explanation": null, "end": 231513, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231509 }, { "analysis_explanation": null, "end": 231749, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231738 }, { "analysis_explanation": null, "end": 231856, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231842 }, { "analysis_explanation": null, "end": 231889, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231875 }, { "analysis_explanation": null, "end": 231941, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231933 }, { "analysis_explanation": null, "end": 231988, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231969 }, { "analysis_explanation": null, "end": 232029, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 232024 }, { "analysis_explanation": null, "end": 232112, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 232103 }, { "analysis_explanation": null, "end": 232126, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 232118 }, { "analysis_explanation": null, "end": 232204, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 232196 }, { "analysis_explanation": null, "end": 232310, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 232289 }, { "analysis_explanation": null, "end": 232403, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 232398 }, { "analysis_explanation": null, "end": 232422, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 232414 }, { "analysis_explanation": null, "end": 232445, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 232436 }, { "analysis_explanation": null, "end": 232499, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 232491 }, { "analysis_explanation": null, "end": 232551, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 232546 }, { "analysis_explanation": null, "end": 232638, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 232632 }, { "analysis_explanation": null, "end": 232654, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 232639 }, { "analysis_explanation": null, "end": 232766, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 232758 }, { "analysis_explanation": null, "end": 232930, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 232923 }, { "analysis_explanation": null, "end": 233282, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 233276 }, { "analysis_explanation": null, "end": 233327, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 233306 }, { "analysis_explanation": null, "end": 233356, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 233350 }, { "analysis_explanation": null, "end": 233476, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 233468 }, { "analysis_explanation": null, "end": 233565, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 233560 }, { "analysis_explanation": null, "end": 233635, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 233627 }, { "analysis_explanation": null, "end": 233880, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 233872 }, { "analysis_explanation": null, "end": 233960, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 233957 }, { "analysis_explanation": null, "end": 233974, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 233971 }, { "analysis_explanation": null, "end": 234121, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 234111 }, { "analysis_explanation": null, "end": 234140, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 234133 }, { "analysis_explanation": null, "end": 234241, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 234225 }, { "analysis_explanation": null, "end": 234408, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 234403 }, { "analysis_explanation": null, "end": 234449, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 234442 }, { "analysis_explanation": null, "end": 234519, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 234505 }, { "analysis_explanation": null, "end": 234669, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 234662 }, { "analysis_explanation": null, "end": 234756, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 234751 }, { "analysis_explanation": null, "end": 234970, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 234962 }, { "analysis_explanation": null, "end": 235106, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 235096 }, { "analysis_explanation": null, "end": 235161, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 235157 }, { "analysis_explanation": null, "end": 235229, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 235220 }, { "analysis_explanation": null, "end": 235346, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 235334 }, { "analysis_explanation": null, "end": 235442, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 235435 }, { "analysis_explanation": null, "end": 235486, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 235478 }, { "analysis_explanation": null, "end": 235581, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 235570 }, { "analysis_explanation": null, "end": 235592, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 235582 }, { "analysis_explanation": null, "end": 235816, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 235811 }, { "analysis_explanation": null, "end": 235836, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 235829 }, { "analysis_explanation": null, "end": 235986, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 235981 }, { "analysis_explanation": null, "end": 236021, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 236014 }, { "analysis_explanation": null, "end": 236073, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 236068 }, { "analysis_explanation": null, "end": 236203, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 236187 }, { "analysis_explanation": null, "end": 236275, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 236273 }, { "analysis_explanation": null, "end": 236284, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 236277 }, { "analysis_explanation": null, "end": 236294, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 236286 }, { "analysis_explanation": null, "end": 236308, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 236299 }, { "analysis_explanation": null, "end": 236365, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 236356 }, { "analysis_explanation": null, "end": 236751, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 236745 }, { "analysis_explanation": null, "end": 236767, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 236752 }, { "analysis_explanation": null, "end": 236887, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 236870 }, { "analysis_explanation": null, "end": 236903, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 236891 }, { "analysis_explanation": null, "end": 236937, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 236908 }, { "analysis_explanation": null, "end": 236980, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 236964 }, { "analysis_explanation": null, "end": 237119, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237110 }, { "analysis_explanation": null, "end": 237137, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237129 }, { "analysis_explanation": null, "end": 237163, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237149 }, { "analysis_explanation": null, "end": 237232, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237226 }, { "analysis_explanation": null, "end": 237284, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237277 }, { "analysis_explanation": null, "end": 237354, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237345 }, { "analysis_explanation": null, "end": 237400, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237381 }, { "analysis_explanation": null, "end": 237409, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237404 }, { "analysis_explanation": null, "end": 237446, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237437 }, { "analysis_explanation": null, "end": 237459, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237451 }, { "analysis_explanation": null, "end": 237492, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237474 }, { "analysis_explanation": null, "end": 237530, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237524 }, { "analysis_explanation": null, "end": 237538, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237532 }, { "analysis_explanation": null, "end": 237630, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237622 }, { "analysis_explanation": null, "end": 237729, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237709 }, { "analysis_explanation": null, "end": 237751, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237747 }, { "analysis_explanation": null, "end": 237767, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237752 }, { "analysis_explanation": null, "end": 237775, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237769 }, { "analysis_explanation": null, "end": 237922, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237915 }, { "analysis_explanation": null, "end": 237966, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237950 }, { "analysis_explanation": null, "end": 237970, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237966 }, { "analysis_explanation": null, "end": 237983, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 237971 }, { "analysis_explanation": null, "end": 238090, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238082 }, { "analysis_explanation": null, "end": 238118, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238112 }, { "analysis_explanation": null, "end": 238203, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238193 }, { "analysis_explanation": null, "end": 238217, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238207 }, { "analysis_explanation": null, "end": 238229, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238219 }, { "analysis_explanation": null, "end": 238275, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238270 }, { "analysis_explanation": null, "end": 238285, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238277 }, { "analysis_explanation": null, "end": 238306, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238300 }, { "analysis_explanation": null, "end": 238475, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238455 }, { "analysis_explanation": null, "end": 238492, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238482 }, { "analysis_explanation": null, "end": 238553, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238545 }, { "analysis_explanation": null, "end": 238574, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238569 }, { "analysis_explanation": null, "end": 238761, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238755 }, { "analysis_explanation": null, "end": 238840, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238831 }, { "analysis_explanation": null, "end": 238878, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238871 }, { "analysis_explanation": null, "end": 238949, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 238943 }, { "analysis_explanation": null, "end": 239040, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239036 }, { "analysis_explanation": null, "end": 239059, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239053 }, { "analysis_explanation": null, "end": 239115, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239107 }, { "analysis_explanation": null, "end": 239198, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239192 }, { "analysis_explanation": null, "end": 239300, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239294 }, { "analysis_explanation": null, "end": 239355, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239340 }, { "analysis_explanation": null, "end": 239363, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239357 }, { "analysis_explanation": null, "end": 239527, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239519 }, { "analysis_explanation": null, "end": 239553, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239539 }, { "analysis_explanation": null, "end": 239586, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239572 }, { "analysis_explanation": null, "end": 239607, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239598 }, { "analysis_explanation": null, "end": 239614, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239609 }, { "analysis_explanation": null, "end": 239650, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239640 }, { "analysis_explanation": null, "end": 239688, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239679 }, { "analysis_explanation": null, "end": 239756, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239749 }, { "analysis_explanation": null, "end": 239790, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 239783 }, { "analysis_explanation": null, "end": 240070, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 240064 }, { "analysis_explanation": null, "end": 240088, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 240085 }, { "analysis_explanation": null, "end": 240156, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 240140 }, { "analysis_explanation": null, "end": 240175, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 240163 }, { "analysis_explanation": null, "end": 240295, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 240286 }, { "analysis_explanation": null, "end": 240452, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 240438 }, { "analysis_explanation": null, "end": 240480, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 240466 }, { "analysis_explanation": null, "end": 240618, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 240601 }, { "analysis_explanation": null, "end": 240804, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 240795 }, { "analysis_explanation": null, "end": 240836, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 240818 }, { "analysis_explanation": null, "end": 240903, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 240894 }, { "analysis_explanation": null, "end": 240944, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 240939 }, { "analysis_explanation": null, "end": 241034, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241028 }, { "analysis_explanation": null, "end": 241041, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241036 }, { "analysis_explanation": null, "end": 241177, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241170 }, { "analysis_explanation": null, "end": 241222, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241208 }, { "analysis_explanation": null, "end": 241249, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241235 }, { "analysis_explanation": null, "end": 241287, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241278 }, { "analysis_explanation": null, "end": 241311, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241297 }, { "analysis_explanation": null, "end": 241331, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241319 }, { "analysis_explanation": null, "end": 241360, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241355 }, { "analysis_explanation": null, "end": 241422, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241414 }, { "analysis_explanation": null, "end": 241440, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241433 }, { "analysis_explanation": null, "end": 241522, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241513 }, { "analysis_explanation": null, "end": 241687, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241679 }, { "analysis_explanation": null, "end": 241696, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241688 }, { "analysis_explanation": null, "end": 241720, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241710 }, { "analysis_explanation": null, "end": 241726, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241721 }, { "analysis_explanation": null, "end": 241763, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241743 }, { "analysis_explanation": null, "end": 241782, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241765 }, { "analysis_explanation": null, "end": 241798, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241789 }, { "analysis_explanation": null, "end": 241815, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241800 }, { "analysis_explanation": null, "end": 241879, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241874 }, { "analysis_explanation": null, "end": 241909, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 241905 }, { "analysis_explanation": null, "end": 242012, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 242007 }, { "analysis_explanation": null, "end": 242045, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 242036 }, { "analysis_explanation": null, "end": 242130, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 242111 }, { "analysis_explanation": null, "end": 242214, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 242205 }, { "analysis_explanation": null, "end": 242363, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 242348 }, { "analysis_explanation": null, "end": 242381, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 242367 }, { "analysis_explanation": null, "end": 242405, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 242400 }, { "analysis_explanation": null, "end": 242429, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 242424 }, { "analysis_explanation": null, "end": 242586, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 242571 }, { "analysis_explanation": null, "end": 242845, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 242838 }, { "analysis_explanation": null, "end": 242862, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 242850 }, { "analysis_explanation": null, "end": 242988, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 242983 }, { "analysis_explanation": null, "end": 243049, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 243042 }, { "analysis_explanation": null, "end": 243076, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 243061 }, { "analysis_explanation": null, "end": 243148, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 243143 }, { "analysis_explanation": null, "end": 243250, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 243241 }, { "analysis_explanation": null, "end": 243281, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 243270 }, { "analysis_explanation": null, "end": 243318, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 243313 }, { "analysis_explanation": null, "end": 243375, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 243366 }, { "analysis_explanation": null, "end": 243453, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 243441 }, { "analysis_explanation": null, "end": 243486, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 243475 }, { "analysis_explanation": null, "end": 243560, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 243550 }, { "analysis_explanation": null, "end": 243620, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 243615 }, { "analysis_explanation": null, "end": 243681, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 243669 }, { "analysis_explanation": null, "end": 243732, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 243717 }, { "analysis_explanation": null, "end": 243735, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 243733 }, { "analysis_explanation": null, "end": 243780, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 243772 }, { "analysis_explanation": null, "end": 243812, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 243794 }, { "analysis_explanation": null, "end": 243858, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 243853 }, { "analysis_explanation": null, "end": 243889, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 243873 }, { "analysis_explanation": null, "end": 244063, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 244054 }, { "analysis_explanation": null, "end": 244123, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 244117 }, { "analysis_explanation": null, "end": 244487, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 244480 }, { "analysis_explanation": null, "end": 244559, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 244550 }, { "analysis_explanation": null, "end": 244585, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 244571 }, { "analysis_explanation": null, "end": 244791, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 244784 }, { "analysis_explanation": null, "end": 244911, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 244903 }, { "analysis_explanation": null, "end": 245053, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 245048 }, { "analysis_explanation": null, "end": 245192, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 245183 }, { "analysis_explanation": null, "end": 245274, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 245264 }, { "analysis_explanation": null, "end": 245340, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 245333 }, { "analysis_explanation": null, "end": 245452, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 245443 }, { "analysis_explanation": null, "end": 245474, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 245458 }, { "analysis_explanation": null, "end": 245565, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 245556 }, { "analysis_explanation": null, "end": 245639, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 245630 }, { "analysis_explanation": null, "end": 245706, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 245696 }, { "analysis_explanation": null, "end": 245765, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 245757 }, { "analysis_explanation": null, "end": 245947, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 245932 }, { "analysis_explanation": null, "end": 245978, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 245964 }, { "analysis_explanation": null, "end": 246060, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246051 }, { "analysis_explanation": null, "end": 246073, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246065 }, { "analysis_explanation": null, "end": 246118, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246111 }, { "analysis_explanation": null, "end": 246124, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246119 }, { "analysis_explanation": null, "end": 246152, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246145 }, { "analysis_explanation": null, "end": 246159, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246153 }, { "analysis_explanation": null, "end": 246247, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246214 }, { "analysis_explanation": null, "end": 246361, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246352 }, { "analysis_explanation": null, "end": 246422, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246408 }, { "analysis_explanation": null, "end": 246438, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246424 }, { "analysis_explanation": null, "end": 246487, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246481 }, { "analysis_explanation": null, "end": 246554, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246548 }, { "analysis_explanation": null, "end": 246582, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246578 }, { "analysis_explanation": null, "end": 246630, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246613 }, { "analysis_explanation": null, "end": 246717, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 246711 }, { "analysis_explanation": null, "end": 247023, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247014 }, { "analysis_explanation": null, "end": 247049, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247035 }, { "analysis_explanation": null, "end": 247126, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247119 }, { "analysis_explanation": null, "end": 247179, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247170 }, { "analysis_explanation": null, "end": 247410, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247397 }, { "analysis_explanation": null, "end": 247594, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247587 }, { "analysis_explanation": null, "end": 247606, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247599 }, { "analysis_explanation": null, "end": 247670, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247665 }, { "analysis_explanation": null, "end": 247729, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247724 }, { "analysis_explanation": null, "end": 247748, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247734 }, { "analysis_explanation": null, "end": 247797, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247791 }, { "analysis_explanation": null, "end": 247871, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247862 }, { "analysis_explanation": null, "end": 247877, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247873 }, { "analysis_explanation": null, "end": 247963, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247958 }, { "analysis_explanation": null, "end": 247997, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 247988 }, { "analysis_explanation": null, "end": 248070, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248063 }, { "analysis_explanation": null, "end": 248078, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248072 }, { "analysis_explanation": null, "end": 248100, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248084 }, { "analysis_explanation": null, "end": 248108, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248102 }, { "analysis_explanation": null, "end": 248122, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248113 }, { "analysis_explanation": null, "end": 248169, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248164 }, { "analysis_explanation": null, "end": 248206, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248197 }, { "analysis_explanation": null, "end": 248261, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248250 }, { "analysis_explanation": null, "end": 248336, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248334 }, { "analysis_explanation": null, "end": 248344, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248338 }, { "analysis_explanation": null, "end": 248348, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248346 }, { "analysis_explanation": null, "end": 248359, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248350 }, { "analysis_explanation": null, "end": 248366, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248361 }, { "analysis_explanation": null, "end": 248385, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248371 }, { "analysis_explanation": null, "end": 248464, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248454 }, { "analysis_explanation": null, "end": 248504, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248497 }, { "analysis_explanation": null, "end": 248551, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248546 }, { "analysis_explanation": null, "end": 248624, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248616 }, { "analysis_explanation": null, "end": 248635, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248626 }, { "analysis_explanation": null, "end": 248674, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248665 }, { "analysis_explanation": null, "end": 248755, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248747 }, { "analysis_explanation": null, "end": 248765, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248757 }, { "analysis_explanation": null, "end": 248827, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248822 }, { "analysis_explanation": null, "end": 248840, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248835 }, { "analysis_explanation": null, "end": 248848, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248842 }, { "analysis_explanation": null, "end": 248895, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248886 }, { "analysis_explanation": null, "end": 248942, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248937 }, { "analysis_explanation": null, "end": 248971, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248957 }, { "analysis_explanation": null, "end": 249003, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 248997 }, { "analysis_explanation": null, "end": 249039, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249030 }, { "analysis_explanation": null, "end": 249126, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249118 }, { "analysis_explanation": null, "end": 249133, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249128 }, { "analysis_explanation": null, "end": 249185, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249171 }, { "analysis_explanation": null, "end": 249288, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249280 }, { "analysis_explanation": null, "end": 249304, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249298 }, { "analysis_explanation": null, "end": 249335, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249326 }, { "analysis_explanation": null, "end": 249343, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249337 }, { "analysis_explanation": null, "end": 249354, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249346 }, { "analysis_explanation": null, "end": 249403, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249397 }, { "analysis_explanation": null, "end": 249441, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249436 }, { "analysis_explanation": null, "end": 249484, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249475 }, { "analysis_explanation": null, "end": 249510, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249501 }, { "analysis_explanation": null, "end": 249544, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249539 }, { "analysis_explanation": null, "end": 249582, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249572 }, { "analysis_explanation": null, "end": 249661, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249645 }, { "analysis_explanation": null, "end": 249766, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249761 }, { "analysis_explanation": null, "end": 249846, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249841 }, { "analysis_explanation": null, "end": 249857, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249848 }, { "analysis_explanation": null, "end": 249899, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 249894 }, { "analysis_explanation": null, "end": 250037, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250032 }, { "analysis_explanation": null, "end": 250071, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250062 }, { "analysis_explanation": null, "end": 250082, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250073 }, { "analysis_explanation": null, "end": 250095, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250087 }, { "analysis_explanation": null, "end": 250105, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250097 }, { "analysis_explanation": null, "end": 250130, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250124 }, { "analysis_explanation": null, "end": 250161, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250156 }, { "analysis_explanation": null, "end": 250192, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250183 }, { "analysis_explanation": null, "end": 250319, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250301 }, { "analysis_explanation": null, "end": 250343, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250336 }, { "analysis_explanation": null, "end": 250364, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250345 }, { "analysis_explanation": null, "end": 250404, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250391 }, { "analysis_explanation": null, "end": 250424, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250419 }, { "analysis_explanation": null, "end": 250437, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250429 }, { "analysis_explanation": null, "end": 250464, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250460 }, { "analysis_explanation": null, "end": 250674, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250669 }, { "analysis_explanation": null, "end": 250686, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250678 }, { "analysis_explanation": null, "end": 250704, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250695 }, { "analysis_explanation": null, "end": 250780, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250766 }, { "analysis_explanation": null, "end": 250813, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250798 }, { "analysis_explanation": null, "end": 250819, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250814 }, { "analysis_explanation": null, "end": 251029, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 251024 }, { "analysis_explanation": null, "end": 251042, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 251039 }, { "analysis_explanation": null, "end": 251048, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 251044 }, { "analysis_explanation": null, "end": 251054, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 251049 }, { "analysis_explanation": null, "end": 251130, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 251123 }, { "analysis_explanation": null, "end": 251202, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 251194 }, { "analysis_explanation": null, "end": 251216, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 251207 }, { "analysis_explanation": null, "end": 251350, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 251332 }, { "analysis_explanation": null, "end": 251400, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 251388 }, { "analysis_explanation": null, "end": 251666, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 251657 }, { "analysis_explanation": null, "end": 251714, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 251695 }, { "analysis_explanation": null, "end": 251740, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 251727 }, { "analysis_explanation": null, "end": 251960, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 251955 }, { "analysis_explanation": null, "end": 252100, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252091 }, { "analysis_explanation": null, "end": 252113, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252105 }, { "analysis_explanation": null, "end": 252238, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252232 }, { "analysis_explanation": null, "end": 252245, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252240 }, { "analysis_explanation": null, "end": 252261, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252250 }, { "analysis_explanation": null, "end": 252321, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252314 }, { "analysis_explanation": null, "end": 252335, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252326 }, { "analysis_explanation": null, "end": 252400, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252391 }, { "analysis_explanation": null, "end": 252446, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252433 }, { "analysis_explanation": null, "end": 252456, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252451 }, { "analysis_explanation": null, "end": 252480, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252462 }, { "analysis_explanation": null, "end": 252624, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252615 }, { "analysis_explanation": null, "end": 252801, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252792 }, { "analysis_explanation": null, "end": 253069, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 253060 }, { "analysis_explanation": null, "end": 253091, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 253080 }, { "analysis_explanation": null, "end": 253110, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 253098 }, { "analysis_explanation": null, "end": 253119, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 253113 }, { "analysis_explanation": null, "end": 253134, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 253121 }, { "analysis_explanation": null, "end": 253478, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 253454 }, { "analysis_explanation": null, "end": 253750, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 253714 }, { "analysis_explanation": null, "end": 253759, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 253752 }, { "analysis_explanation": null, "end": 253781, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 253772 }, { "analysis_explanation": null, "end": 253803, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 253786 }, { "analysis_explanation": null, "end": 254001, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 253992 }, { "analysis_explanation": null, "end": 254115, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254113 }, { "analysis_explanation": null, "end": 254123, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254117 }, { "analysis_explanation": null, "end": 254134, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254125 }, { "analysis_explanation": null, "end": 254147, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254136 }, { "analysis_explanation": null, "end": 254165, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254157 }, { "analysis_explanation": null, "end": 254221, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254212 }, { "analysis_explanation": null, "end": 254249, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254236 }, { "analysis_explanation": null, "end": 254258, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254251 }, { "analysis_explanation": null, "end": 254293, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254285 }, { "analysis_explanation": null, "end": 254345, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254327 }, { "analysis_explanation": null, "end": 254404, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254399 }, { "analysis_explanation": null, "end": 254425, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254409 }, { "analysis_explanation": null, "end": 254466, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254458 }, { "analysis_explanation": null, "end": 254474, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254472 }, { "analysis_explanation": null, "end": 254501, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254494 }, { "analysis_explanation": null, "end": 254567, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254562 }, { "analysis_explanation": null, "end": 254609, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254602 }, { "analysis_explanation": null, "end": 254749, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254741 }, { "analysis_explanation": null, "end": 254768, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254760 }, { "analysis_explanation": null, "end": 254834, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254825 }, { "analysis_explanation": null, "end": 254842, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254836 }, { "analysis_explanation": null, "end": 254871, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254865 }, { "analysis_explanation": null, "end": 254882, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254875 }, { "analysis_explanation": null, "end": 254921, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254912 }, { "analysis_explanation": null, "end": 255076, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 255067 }, { "analysis_explanation": null, "end": 255239, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 255230 }, { "analysis_explanation": null, "end": 255249, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 255244 }, { "analysis_explanation": null, "end": 255334, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 255325 }, { "analysis_explanation": null, "end": 255362, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 255350 }, { "analysis_explanation": null, "end": 255498, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 255493 }, { "analysis_explanation": null, "end": 255597, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 255592 }, { "analysis_explanation": null, "end": 256028, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256026 }, { "analysis_explanation": null, "end": 256072, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256070 }, { "analysis_explanation": null, "end": 256141, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256132 }, { "analysis_explanation": null, "end": 256175, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256166 }, { "analysis_explanation": null, "end": 256182, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256177 }, { "analysis_explanation": null, "end": 256201, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256196 }, { "analysis_explanation": null, "end": 256436, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256427 }, { "analysis_explanation": null, "end": 256443, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256438 }, { "analysis_explanation": null, "end": 256452, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 256447 }, { "analysis_explanation": null, "end": 257158, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 257149 }, { "analysis_explanation": null, "end": 257264, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 257258 }, { "analysis_explanation": null, "end": 257381, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 257374 }, { "analysis_explanation": null, "end": 257445, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 257439 }, { "analysis_explanation": null, "end": 257813, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 257808 }, { "analysis_explanation": null, "end": 258079, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 258068 }, { "analysis_explanation": null, "end": 258273, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 258268 }, { "analysis_explanation": null, "end": 258336, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 258327 }, { "analysis_explanation": null, "end": 258433, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 258426 }, { "analysis_explanation": null, "end": 258558, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 258549 }, { "analysis_explanation": null, "end": 258599, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 258594 }, { "analysis_explanation": null, "end": 258748, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 258743 }, { "analysis_explanation": null, "end": 258787, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 258782 }, { "analysis_explanation": null, "end": 258876, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 258873 }, { "analysis_explanation": null, "end": 258889, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 258880 }, { "analysis_explanation": null, "end": 258929, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 258924 }, { "analysis_explanation": null, "end": 258939, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 258934 }, { "analysis_explanation": null, "end": 259201, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 259192 }, { "analysis_explanation": null, "end": 259431, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 259420 }, { "analysis_explanation": null, "end": 259537, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 259528 }, { "analysis_explanation": null, "end": 259947, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 259938 }, { "analysis_explanation": null, "end": 260133, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 260119 }, { "analysis_explanation": null, "end": 260149, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 260137 }, { "analysis_explanation": null, "end": 260270, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 260265 }, { "analysis_explanation": null, "end": 260428, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 260419 }, { "analysis_explanation": null, "end": 260517, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 260512 }, { "analysis_explanation": null, "end": 260534, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 260529 }, { "analysis_explanation": null, "end": 260555, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 260553 }, { "analysis_explanation": null, "end": 260591, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 260583 }, { "analysis_explanation": null, "end": 260614, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 260605 }, { "analysis_explanation": null, "end": 260668, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 260659 }, { "analysis_explanation": null, "end": 260714, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 260707 }, { "analysis_explanation": null, "end": 261174, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 261165 }, { "analysis_explanation": null, "end": 261246, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 261231 }, { "analysis_explanation": null, "end": 261276, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 261272 }, { "analysis_explanation": null, "end": 261289, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 261284 }, { "analysis_explanation": null, "end": 261315, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 261297 }, { "analysis_explanation": null, "end": 261372, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 261354 }, { "analysis_explanation": null, "end": 261448, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 261441 }, { "analysis_explanation": null, "end": 261854, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 261845 }, { "analysis_explanation": null, "end": 261875, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 261870 }, { "analysis_explanation": null, "end": 261944, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 261933 }, { "analysis_explanation": null, "end": 262074, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262067 }, { "analysis_explanation": null, "end": 262086, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262079 }, { "analysis_explanation": null, "end": 262168, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262157 }, { "analysis_explanation": null, "end": 262248, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262241 }, { "analysis_explanation": null, "end": 262402, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262397 }, { "analysis_explanation": null, "end": 262476, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262466 }, { "analysis_explanation": null, "end": 262498, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262489 }, { "analysis_explanation": null, "end": 262532, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262521 }, { "analysis_explanation": null, "end": 262545, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262540 }, { "analysis_explanation": null, "end": 262585, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262550 }, { "analysis_explanation": null, "end": 262608, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262603 }, { "analysis_explanation": null, "end": 262636, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262632 }, { "analysis_explanation": null, "end": 262660, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262657 }, { "analysis_explanation": null, "end": 262685, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262671 }, { "analysis_explanation": null, "end": 262694, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262689 }, { "analysis_explanation": null, "end": 262743, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262732 }, { "analysis_explanation": null, "end": 262750, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262745 }, { "analysis_explanation": null, "end": 262847, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262836 }, { "analysis_explanation": null, "end": 262957, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 262952 }, { "analysis_explanation": null, "end": 263046, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263026 }, { "analysis_explanation": null, "end": 263114, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263109 }, { "analysis_explanation": null, "end": 263148, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263135 }, { "analysis_explanation": null, "end": 263169, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263159 }, { "analysis_explanation": null, "end": 263254, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263249 }, { "analysis_explanation": null, "end": 263265, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263257 }, { "analysis_explanation": null, "end": 263277, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263267 }, { "analysis_explanation": null, "end": 263287, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263280 }, { "analysis_explanation": null, "end": 263294, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263289 }, { "analysis_explanation": null, "end": 263331, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263323 }, { "analysis_explanation": null, "end": 263374, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263366 }, { "analysis_explanation": null, "end": 263401, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263394 }, { "analysis_explanation": null, "end": 263408, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263403 }, { "analysis_explanation": null, "end": 263445, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263436 }, { "analysis_explanation": null, "end": 263452, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263447 }, { "analysis_explanation": null, "end": 263462, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263457 }, { "analysis_explanation": null, "end": 263474, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263467 }, { "analysis_explanation": null, "end": 263516, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263508 }, { "analysis_explanation": null, "end": 263608, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263599 }, { "analysis_explanation": null, "end": 263615, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263610 }, { "analysis_explanation": null, "end": 263625, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263620 }, { "analysis_explanation": null, "end": 263663, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263649 }, { "analysis_explanation": null, "end": 263722, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263715 }, { "analysis_explanation": null, "end": 263759, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263750 }, { "analysis_explanation": null, "end": 263787, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263782 }, { "analysis_explanation": null, "end": 263797, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263792 }, { "analysis_explanation": null, "end": 263818, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263811 }, { "analysis_explanation": null, "end": 263951, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263942 }, { "analysis_explanation": null, "end": 263997, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 263977 }, { "analysis_explanation": null, "end": 264147, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264142 }, { "analysis_explanation": null, "end": 264199, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264190 }, { "analysis_explanation": null, "end": 264206, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264201 }, { "analysis_explanation": null, "end": 264225, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264220 }, { "analysis_explanation": null, "end": 264265, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264258 }, { "analysis_explanation": null, "end": 264276, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264267 }, { "analysis_explanation": null, "end": 264460, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264453 }, { "analysis_explanation": null, "end": 264471, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264462 }, { "analysis_explanation": null, "end": 264553, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264551 }, { "analysis_explanation": null, "end": 264668, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264663 }, { "analysis_explanation": null, "end": 264721, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264708 }, { "analysis_explanation": null, "end": 264928, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264923 }, { "analysis_explanation": null, "end": 264986, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 264981 }, { "analysis_explanation": null, "end": 265013, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265004 }, { "analysis_explanation": null, "end": 265053, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265043 }, { "analysis_explanation": null, "end": 265199, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265190 }, { "analysis_explanation": null, "end": 265269, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265264 }, { "analysis_explanation": null, "end": 265371, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265362 }, { "analysis_explanation": null, "end": 265528, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265519 }, { "analysis_explanation": null, "end": 265587, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265582 }, { "analysis_explanation": null, "end": 265597, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265589 }, { "analysis_explanation": null, "end": 265611, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265602 }, { "analysis_explanation": null, "end": 265665, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265656 }, { "analysis_explanation": null, "end": 265722, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265706 }, { "analysis_explanation": null, "end": 265900, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265881 }, { "analysis_explanation": null, "end": 265948, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265938 }, { "analysis_explanation": null, "end": 265957, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265952 }, { "analysis_explanation": null, "end": 265970, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265962 }, { "analysis_explanation": null, "end": 265984, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 265975 }, { "analysis_explanation": null, "end": 266050, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 266043 }, { "analysis_explanation": null, "end": 266115, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 266106 }, { "analysis_explanation": null, "end": 266652, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 266643 }, { "analysis_explanation": null, "end": 266814, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 266804 }, { "analysis_explanation": null, "end": 266867, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 266855 }, { "analysis_explanation": null, "end": 266932, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 266921 }, { "analysis_explanation": null, "end": 267318, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267310 }, { "analysis_explanation": null, "end": 267388, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267376 }, { "analysis_explanation": null, "end": 267484, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267478 }, { "analysis_explanation": null, "end": 267500, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267485 }, { "analysis_explanation": null, "end": 267625, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267610 }, { "analysis_explanation": null, "end": 267646, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267639 }, { "analysis_explanation": null, "end": 267825, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267816 }, { "analysis_explanation": null, "end": 267958, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267949 }, { "analysis_explanation": null, "end": 267979, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 267972 }, { "analysis_explanation": null, "end": 268048, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268032 }, { "analysis_explanation": null, "end": 268149, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268141 }, { "analysis_explanation": null, "end": 268234, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268228 }, { "analysis_explanation": null, "end": 268262, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268251 }, { "analysis_explanation": null, "end": 268295, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268286 }, { "analysis_explanation": null, "end": 268423, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268416 }, { "analysis_explanation": null, "end": 268519, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268512 }, { "analysis_explanation": null, "end": 268543, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268530 }, { "analysis_explanation": null, "end": 268591, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268583 }, { "analysis_explanation": null, "end": 268600, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268593 }, { "analysis_explanation": null, "end": 268609, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268602 }, { "analysis_explanation": null, "end": 268617, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268611 }, { "analysis_explanation": null, "end": 268626, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268619 }, { "analysis_explanation": null, "end": 268641, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268631 }, { "analysis_explanation": null, "end": 268655, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268643 }, { "analysis_explanation": null, "end": 268677, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268673 }, { "analysis_explanation": null, "end": 268708, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268690 }, { "analysis_explanation": null, "end": 268744, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268738 }, { "analysis_explanation": null, "end": 268766, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268758 }, { "analysis_explanation": null, "end": 268807, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268798 }, { "analysis_explanation": null, "end": 268833, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268824 }, { "analysis_explanation": null, "end": 268861, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268853 }, { "analysis_explanation": null, "end": 268889, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268882 }, { "analysis_explanation": null, "end": 268913, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268903 }, { "analysis_explanation": null, "end": 268954, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 268947 }, { "analysis_explanation": null, "end": 269169, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269158 }, { "analysis_explanation": null, "end": 269197, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269192 }, { "analysis_explanation": null, "end": 269244, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269237 }, { "analysis_explanation": null, "end": 269280, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269272 }, { "analysis_explanation": null, "end": 269298, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269285 }, { "analysis_explanation": null, "end": 269392, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269385 }, { "analysis_explanation": null, "end": 269501, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269494 }, { "analysis_explanation": null, "end": 269656, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269651 }, { "analysis_explanation": null, "end": 269675, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269670 }, { "analysis_explanation": null, "end": 269738, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269729 }, { "analysis_explanation": null, "end": 269745, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269740 }, { "analysis_explanation": null, "end": 269755, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269747 }, { "analysis_explanation": null, "end": 269769, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 269760 }, { "analysis_explanation": null, "end": 270067, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 270056 }, { "analysis_explanation": null, "end": 270134, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 270123 }, { "analysis_explanation": null, "end": 270244, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 270235 }, { "analysis_explanation": null, "end": 270796, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 270787 }, { "analysis_explanation": null, "end": 270873, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 270864 }, { "analysis_explanation": null, "end": 270967, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 270954 }, { "analysis_explanation": null, "end": 271525, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 271520 }, { "analysis_explanation": null, "end": 271673, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 271664 }, { "analysis_explanation": null, "end": 271701, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 271693 }, { "analysis_explanation": null, "end": 271816, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 271807 }, { "analysis_explanation": null, "end": 272121, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 272112 }, { "analysis_explanation": null, "end": 272160, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 272148 }, { "analysis_explanation": null, "end": 272202, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 272196 }, { "analysis_explanation": null, "end": 272244, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 272230 }, { "analysis_explanation": null, "end": 272291, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 272286 }, { "analysis_explanation": null, "end": 272329, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 272317 }, { "analysis_explanation": null, "end": 272356, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 272354 }, { "analysis_explanation": null, "end": 272437, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 272435 }, { "analysis_explanation": null, "end": 272528, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 272519 }, { "analysis_explanation": null, "end": 272593, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 272591 }, { "analysis_explanation": null, "end": 272866, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 272852 }, { "analysis_explanation": null, "end": 272877, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 272868 }, { "analysis_explanation": null, "end": 272909, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 272900 }, { "analysis_explanation": null, "end": 273056, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 273034 }, { "analysis_explanation": null, "end": 273083, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 273060 }, { "analysis_explanation": null, "end": 273090, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 273085 }, { "analysis_explanation": null, "end": 273169, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 273154 }, { "analysis_explanation": null, "end": 273229, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 273213 }, { "analysis_explanation": null, "end": 273236, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 273231 }, { "analysis_explanation": null, "end": 273282, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 273265 }, { "analysis_explanation": null, "end": 273330, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 273319 }, { "analysis_explanation": null, "end": 273339, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 273332 }, { "analysis_explanation": null, "end": 273401, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 273386 }, { "analysis_explanation": null, "end": 273412, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 273403 }, { "analysis_explanation": null, "end": 273538, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 273523 }, { "analysis_explanation": null, "end": 273797, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 273790 }, { "analysis_explanation": null, "end": 273808, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 273799 }, { "analysis_explanation": null, "end": 273868, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 273865 }, { "analysis_explanation": null, "end": 273875, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 273870 }, { "analysis_explanation": null, "end": 274062, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 274053 }, { "analysis_explanation": null, "end": 274158, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 274151 }, { "analysis_explanation": null, "end": 274168, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 274159 }, { "analysis_explanation": null, "end": 274421, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 274402 }, { "analysis_explanation": null, "end": 274441, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 274432 }, { "analysis_explanation": null, "end": 274542, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 274533 }, { "analysis_explanation": null, "end": 274590, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 274582 }, { "analysis_explanation": null, "end": 274654, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 274645 }, { "analysis_explanation": null, "end": 275117, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 275103 }, { "analysis_explanation": null, "end": 275418, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 275413 }, { "analysis_explanation": null, "end": 275475, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 275466 }, { "analysis_explanation": null, "end": 275652, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 275643 }, { "analysis_explanation": null, "end": 275814, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 275805 }, { "analysis_explanation": null, "end": 275829, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 275816 }, { "analysis_explanation": null, "end": 276085, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 276076 }, { "analysis_explanation": null, "end": 276160, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 276155 }, { "analysis_explanation": null, "end": 276167, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 276162 }, { "analysis_explanation": null, "end": 276215, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 276210 }, { "analysis_explanation": null, "end": 276281, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 276272 }, { "analysis_explanation": null, "end": 276296, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 276291 }, { "analysis_explanation": null, "end": 276440, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 276434 }, { "analysis_explanation": null, "end": 276687, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 276679 }, { "analysis_explanation": null, "end": 276761, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 276759 }, { "analysis_explanation": null, "end": 276784, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 276772 }, { "analysis_explanation": null, "end": 276888, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 276879 }, { "analysis_explanation": null, "end": 277079, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 277075 }, { "analysis_explanation": null, "end": 277409, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 277405 }, { "analysis_explanation": null, "end": 277618, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 277614 }, { "analysis_explanation": null, "end": 278178, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 278166 }, { "analysis_explanation": null, "end": 278238, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 278227 }, { "analysis_explanation": null, "end": 278278, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 278274 }, { "analysis_explanation": null, "end": 278459, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 278443 }, { "analysis_explanation": null, "end": 278932, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 278927 }, { "analysis_explanation": null, "end": 279074, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279064 }, { "analysis_explanation": null, "end": 279140, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279131 }, { "analysis_explanation": null, "end": 279164, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279148 }, { "analysis_explanation": null, "end": 279175, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279166 }, { "analysis_explanation": null, "end": 279400, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279393 }, { "analysis_explanation": null, "end": 279459, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279450 }, { "analysis_explanation": null, "end": 279584, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279568 }, { "analysis_explanation": null, "end": 279803, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279790 }, { "analysis_explanation": null, "end": 279842, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279833 }, { "analysis_explanation": null, "end": 279869, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279860 }, { "analysis_explanation": null, "end": 279980, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279964 }, { "analysis_explanation": null, "end": 280003, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279994 }, { "analysis_explanation": null, "end": 280078, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 280069 }, { "analysis_explanation": null, "end": 280129, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 280122 }, { "analysis_explanation": null, "end": 280221, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 280210 }, { "analysis_explanation": null, "end": 280415, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 280405 }, { "analysis_explanation": null, "end": 280425, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 280417 }, { "analysis_explanation": null, "end": 280569, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 280561 }, { "analysis_explanation": null, "end": 280918, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 280907 }, { "analysis_explanation": null, "end": 280992, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 280983 }, { "analysis_explanation": null, "end": 281111, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 281094 }, { "analysis_explanation": null, "end": 281247, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 281240 }, { "analysis_explanation": null, "end": 281451, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 281443 }, { "analysis_explanation": null, "end": 281564, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 281551 }, { "analysis_explanation": null, "end": 281618, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 281610 }, { "analysis_explanation": null, "end": 281677, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 281670 }, { "analysis_explanation": null, "end": 281836, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 281827 }, { "analysis_explanation": null, "end": 281924, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 281917 }, { "analysis_explanation": null, "end": 281963, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 281951 }, { "analysis_explanation": null, "end": 282040, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 282033 }, { "analysis_explanation": null, "end": 282268, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 282259 }, { "analysis_explanation": null, "end": 282574, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 282559 }, { "analysis_explanation": null, "end": 282639, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 282628 }, { "analysis_explanation": null, "end": 282833, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 282827 }, { "analysis_explanation": null, "end": 283200, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 283195 }, { "analysis_explanation": null, "end": 283254, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 283248 }, { "analysis_explanation": null, "end": 283308, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 283303 }, { "analysis_explanation": null, "end": 283458, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 283449 }, { "analysis_explanation": null, "end": 283471, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 283463 }, { "analysis_explanation": null, "end": 283536, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 283527 }, { "analysis_explanation": null, "end": 283546, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 283538 }, { "analysis_explanation": null, "end": 283847, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 283832 }, { "analysis_explanation": null, "end": 283874, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 283866 }, { "analysis_explanation": null, "end": 284101, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284086 }, { "analysis_explanation": null, "end": 284112, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284103 }, { "analysis_explanation": null, "end": 284224, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284210 }, { "analysis_explanation": null, "end": 284239, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284236 }, { "analysis_explanation": null, "end": 284404, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284397 }, { "analysis_explanation": null, "end": 284408, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284405 }, { "analysis_explanation": null, "end": 284415, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284410 }, { "analysis_explanation": null, "end": 284489, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284484 }, { "analysis_explanation": null, "end": 284791, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284767 }, { "analysis_explanation": null, "end": 284819, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284814 }, { "analysis_explanation": null, "end": 284883, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284878 }, { "analysis_explanation": null, "end": 285075, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 285066 }, { "analysis_explanation": null, "end": 285116, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 285112 }, { "analysis_explanation": null, "end": 285126, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 285117 }, { "analysis_explanation": null, "end": 285132, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 285128 }, { "analysis_explanation": null, "end": 285142, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 285134 }, { "analysis_explanation": null, "end": 285226, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 285218 }, { "analysis_explanation": null, "end": 285390, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 285383 }, { "analysis_explanation": null, "end": 285442, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 285430 }, { "analysis_explanation": null, "end": 285479, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 285471 }, { "analysis_explanation": null, "end": 285685, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 285678 }, { "analysis_explanation": null, "end": 285758, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 285741 }, { "analysis_explanation": null, "end": 286041, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 286032 }, { "analysis_explanation": null, "end": 286123, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 286118 }, { "analysis_explanation": null, "end": 286244, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 286232 }, { "analysis_explanation": null, "end": 286392, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 286386 }, { "analysis_explanation": null, "end": 286426, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 286418 }, { "analysis_explanation": null, "end": 287449, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 287440 }, { "analysis_explanation": null, "end": 288046, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 288038 }, { "analysis_explanation": null, "end": 288285, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 288276 }, { "analysis_explanation": null, "end": 288295, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 288287 }, { "analysis_explanation": null, "end": 288584, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 288573 }, { "analysis_explanation": null, "end": 288601, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 288586 }, { "analysis_explanation": null, "end": 288760, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 288749 }, { "analysis_explanation": null, "end": 288875, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 288865 }, { "analysis_explanation": null, "end": 289189, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 289162 }, { "analysis_explanation": null, "end": 289209, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 289200 }, { "analysis_explanation": null, "end": 289376, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 289355 }, { "analysis_explanation": null, "end": 289531, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 289520 }, { "analysis_explanation": null, "end": 289663, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 289655 }, { "analysis_explanation": null, "end": 289781, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 289741 }, { "analysis_explanation": null, "end": 289862, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 289853 }, { "analysis_explanation": null, "end": 289912, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 289904 }, { "analysis_explanation": null, "end": 290051, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 290028 }, { "analysis_explanation": null, "end": 290062, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 290051 }, { "analysis_explanation": null, "end": 290073, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 290064 }, { "analysis_explanation": null, "end": 290169, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 290157 }, { "analysis_explanation": null, "end": 290207, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 290196 }, { "analysis_explanation": null, "end": 290220, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 290209 }, { "analysis_explanation": null, "end": 290411, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 290393 }, { "analysis_explanation": null, "end": 290511, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 290492 }, { "analysis_explanation": null, "end": 290525, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 290513 }, { "analysis_explanation": null, "end": 290622, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 290618 }, { "analysis_explanation": null, "end": 290774, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 290763 }, { "analysis_explanation": null, "end": 290807, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 290797 }, { "analysis_explanation": null, "end": 291122, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 291108 }, { "analysis_explanation": null, "end": 291135, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 291124 }, { "analysis_explanation": null, "end": 291146, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 291137 }, { "analysis_explanation": null, "end": 291246, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 291237 }, { "analysis_explanation": null, "end": 291464, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 291440 }, { "analysis_explanation": null, "end": 291521, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 291502 }, { "analysis_explanation": null, "end": 291648, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 291634 }, { "analysis_explanation": null, "end": 291706, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 291697 }, { "analysis_explanation": null, "end": 291750, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 291741 }, { "analysis_explanation": null, "end": 291870, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 291859 }, { "analysis_explanation": null, "end": 291934, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 291928 }, { "analysis_explanation": null, "end": 291959, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 291944 }, { "analysis_explanation": null, "end": 292159, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 292139 }, { "analysis_explanation": null, "end": 292199, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 292190 }, { "analysis_explanation": null, "end": 292505, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 292498 }, { "analysis_explanation": null, "end": 292717, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 292712 }, { "analysis_explanation": null, "end": 292819, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 292810 }, { "analysis_explanation": null, "end": 292833, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 292821 }, { "analysis_explanation": null, "end": 292842, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 292835 }, { "analysis_explanation": null, "end": 293027, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 293022 }, { "analysis_explanation": null, "end": 293151, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 293135 }, { "analysis_explanation": null, "end": 293301, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 293290 }, { "analysis_explanation": null, "end": 293341, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 293325 }, { "analysis_explanation": null, "end": 293537, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 293523 }, { "analysis_explanation": null, "end": 293750, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 293740 }, { "analysis_explanation": null, "end": 293847, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 293841 }, { "analysis_explanation": null, "end": 293881, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 293876 }, { "analysis_explanation": null, "end": 293967, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 293962 }, { "analysis_explanation": null, "end": 294063, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 294057 }, { "analysis_explanation": null, "end": 294168, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 294153 }, { "analysis_explanation": null, "end": 294175, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 294170 }, { "analysis_explanation": null, "end": 294469, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 294457 }, { "analysis_explanation": null, "end": 294486, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 294471 }, { "analysis_explanation": null, "end": 294500, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 294489 }, { "analysis_explanation": null, "end": 294555, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 294536 }, { "analysis_explanation": null, "end": 294709, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 294702 }, { "analysis_explanation": null, "end": 295184, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 295177 }, { "analysis_explanation": null, "end": 295196, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 295188 }, { "analysis_explanation": null, "end": 295285, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 295272 }, { "analysis_explanation": null, "end": 295442, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 295437 }, { "analysis_explanation": null, "end": 295542, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 295537 }, { "analysis_explanation": null, "end": 295616, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 295606 }, { "analysis_explanation": null, "end": 295660, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 295644 }, { "analysis_explanation": null, "end": 295718, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 295713 }, { "analysis_explanation": null, "end": 295772, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 295762 }, { "analysis_explanation": null, "end": 295871, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 295852 }, { "analysis_explanation": null, "end": 295878, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 295873 }, { "analysis_explanation": null, "end": 295938, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 295926 }, { "analysis_explanation": null, "end": 296066, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 296061 }, { "analysis_explanation": null, "end": 296084, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 296071 }, { "analysis_explanation": null, "end": 296239, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 296225 }, { "analysis_explanation": null, "end": 296250, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 296241 }, { "analysis_explanation": null, "end": 296322, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 296307 }, { "analysis_explanation": null, "end": 296347, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 296333 }, { "analysis_explanation": null, "end": 296402, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 296393 }, { "analysis_explanation": null, "end": 297171, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297155 }, { "analysis_explanation": null, "end": 297188, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297173 }, { "analysis_explanation": null, "end": 297202, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297190 }, { "analysis_explanation": null, "end": 297244, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297231 }, { "analysis_explanation": null, "end": 297283, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297271 }, { "analysis_explanation": null, "end": 297312, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297300 }, { "analysis_explanation": null, "end": 297347, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297335 }, { "analysis_explanation": null, "end": 297378, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297364 }, { "analysis_explanation": null, "end": 297390, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297380 }, { "analysis_explanation": null, "end": 297423, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297410 }, { "analysis_explanation": null, "end": 297443, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297425 }, { "analysis_explanation": null, "end": 297460, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297445 }, { "analysis_explanation": null, "end": 297475, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297462 }, { "analysis_explanation": null, "end": 297490, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297477 }, { "analysis_explanation": null, "end": 297540, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297525 }, { "analysis_explanation": null, "end": 297569, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297554 }, { "analysis_explanation": null, "end": 297583, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297571 }, { "analysis_explanation": null, "end": 297600, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297585 }, { "analysis_explanation": null, "end": 297617, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297602 }, { "analysis_explanation": null, "end": 297634, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297619 }, { "analysis_explanation": null, "end": 297652, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297636 }, { "analysis_explanation": null, "end": 297689, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297676 }, { "analysis_explanation": null, "end": 297701, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297691 }, { "analysis_explanation": null, "end": 297718, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297703 }, { "analysis_explanation": null, "end": 297731, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297720 }, { "analysis_explanation": null, "end": 297763, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297750 }, { "analysis_explanation": null, "end": 297777, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297765 }, { "analysis_explanation": null, "end": 297806, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297779 }, { "analysis_explanation": null, "end": 297871, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297859 }, { "analysis_explanation": null, "end": 297885, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297873 }, { "analysis_explanation": null, "end": 297913, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297903 }, { "analysis_explanation": null, "end": 297945, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297932 }, { "analysis_explanation": null, "end": 297981, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297964 }, { "analysis_explanation": null, "end": 298014, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 297996 }, { "analysis_explanation": null, "end": 298044, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298033 }, { "analysis_explanation": null, "end": 298175, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298170 }, { "analysis_explanation": null, "end": 298191, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298178 }, { "analysis_explanation": null, "end": 298231, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298217 }, { "analysis_explanation": null, "end": 298259, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298245 }, { "analysis_explanation": null, "end": 298286, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298275 }, { "analysis_explanation": null, "end": 298296, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298288 }, { "analysis_explanation": null, "end": 298311, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298298 }, { "analysis_explanation": null, "end": 298328, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298313 }, { "analysis_explanation": null, "end": 298344, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298330 }, { "analysis_explanation": null, "end": 298358, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298346 }, { "analysis_explanation": null, "end": 298400, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298389 }, { "analysis_explanation": null, "end": 298416, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298402 }, { "analysis_explanation": null, "end": 298441, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298431 }, { "analysis_explanation": null, "end": 298467, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298456 }, { "analysis_explanation": null, "end": 298482, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298469 }, { "analysis_explanation": null, "end": 298657, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298642 }, { "analysis_explanation": null, "end": 298688, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298673 }, { "analysis_explanation": null, "end": 298701, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298690 }, { "analysis_explanation": null, "end": 298720, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298703 }, { "analysis_explanation": null, "end": 298731, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298722 }, { "analysis_explanation": null, "end": 298749, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298733 }, { "analysis_explanation": null, "end": 298827, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298814 }, { "analysis_explanation": null, "end": 298840, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298829 }, { "analysis_explanation": null, "end": 298855, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298842 }, { "analysis_explanation": null, "end": 298870, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298857 }, { "analysis_explanation": null, "end": 298891, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298872 }, { "analysis_explanation": null, "end": 298906, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298893 }, { "analysis_explanation": null, "end": 298948, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298938 }, { "analysis_explanation": null, "end": 298982, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298963 }, { "analysis_explanation": null, "end": 298997, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 298984 }, { "analysis_explanation": null, "end": 299097, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299085 }, { "analysis_explanation": null, "end": 299114, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299099 }, { "analysis_explanation": null, "end": 299124, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299116 }, { "analysis_explanation": null, "end": 299140, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299126 }, { "analysis_explanation": null, "end": 299166, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299142 }, { "analysis_explanation": null, "end": 299181, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299168 }, { "analysis_explanation": null, "end": 299197, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299183 }, { "analysis_explanation": null, "end": 299216, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299199 }, { "analysis_explanation": null, "end": 299252, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299240 }, { "analysis_explanation": null, "end": 299276, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299269 }, { "analysis_explanation": null, "end": 299300, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299293 }, { "analysis_explanation": null, "end": 299332, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299302 }, { "analysis_explanation": null, "end": 299343, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299333 }, { "analysis_explanation": null, "end": 299364, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299345 }, { "analysis_explanation": null, "end": 299378, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299366 }, { "analysis_explanation": null, "end": 299393, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299380 }, { "analysis_explanation": null, "end": 299413, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299395 }, { "analysis_explanation": null, "end": 299442, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299432 }, { "analysis_explanation": null, "end": 299458, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299444 }, { "analysis_explanation": null, "end": 299467, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299460 }, { "analysis_explanation": null, "end": 299577, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299563 }, { "analysis_explanation": null, "end": 299585, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299579 }, { "analysis_explanation": null, "end": 299601, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299590 }, { "analysis_explanation": null, "end": 299630, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299617 }, { "analysis_explanation": null, "end": 299661, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299632 }, { "analysis_explanation": null, "end": 299674, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299661 }, { "analysis_explanation": null, "end": 299690, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299676 }, { "analysis_explanation": null, "end": 299705, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299692 }, { "analysis_explanation": null, "end": 299721, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299715 }, { "analysis_explanation": null, "end": 299733, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299723 }, { "analysis_explanation": null, "end": 299803, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299792 }, { "analysis_explanation": null, "end": 299831, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299818 }, { "analysis_explanation": null, "end": 299840, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299833 }, { "analysis_explanation": null, "end": 299857, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299842 }, { "analysis_explanation": null, "end": 299872, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299859 }, { "analysis_explanation": null, "end": 299882, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299874 }, { "analysis_explanation": null, "end": 299894, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299884 }, { "analysis_explanation": null, "end": 299909, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299896 }, { "analysis_explanation": null, "end": 299967, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299958 }, { "analysis_explanation": null, "end": 299983, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299969 }, { "analysis_explanation": null, "end": 300005, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299998 }, { "analysis_explanation": null, "end": 300025, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300007 }, { "analysis_explanation": null, "end": 300033, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300027 }, { "analysis_explanation": null, "end": 300052, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300043 }, { "analysis_explanation": null, "end": 300073, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300054 }, { "analysis_explanation": null, "end": 300087, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300075 }, { "analysis_explanation": null, "end": 300108, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300098 }, { "analysis_explanation": null, "end": 300119, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300110 }, { "analysis_explanation": null, "end": 300133, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300121 }, { "analysis_explanation": null, "end": 300148, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300135 }, { "analysis_explanation": null, "end": 300165, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300158 }, { "analysis_explanation": null, "end": 300178, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300167 }, { "analysis_explanation": null, "end": 300192, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300180 }, { "analysis_explanation": null, "end": 300217, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300204 }, { "analysis_explanation": null, "end": 300259, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300248 }, { "analysis_explanation": null, "end": 300274, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300261 }, { "analysis_explanation": null, "end": 300312, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300303 }, { "analysis_explanation": null, "end": 300344, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300332 }, { "analysis_explanation": null, "end": 300361, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300346 }, { "analysis_explanation": null, "end": 300396, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300386 }, { "analysis_explanation": null, "end": 300411, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300398 }, { "analysis_explanation": null, "end": 300431, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300413 }, { "analysis_explanation": null, "end": 300443, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300433 }, { "analysis_explanation": null, "end": 300456, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300445 }, { "analysis_explanation": null, "end": 300468, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300458 }, { "analysis_explanation": null, "end": 300484, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300470 }, { "analysis_explanation": null, "end": 300493, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300486 }, { "analysis_explanation": null, "end": 300509, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300495 }, { "analysis_explanation": null, "end": 300552, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300544 }, { "analysis_explanation": null, "end": 300589, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300580 }, { "analysis_explanation": null, "end": 300627, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300616 }, { "analysis_explanation": null, "end": 300647, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300633 }, { "analysis_explanation": null, "end": 300660, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300649 }, { "analysis_explanation": null, "end": 300680, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300662 }, { "analysis_explanation": null, "end": 300693, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300682 }, { "analysis_explanation": null, "end": 300708, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300695 }, { "analysis_explanation": null, "end": 300750, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300737 }, { "analysis_explanation": null, "end": 300800, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300787 }, { "analysis_explanation": null, "end": 300814, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300802 }, { "analysis_explanation": null, "end": 300828, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300816 }, { "analysis_explanation": null, "end": 300878, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300864 }, { "analysis_explanation": null, "end": 300900, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300888 }, { "analysis_explanation": null, "end": 300913, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 300902 }, { "analysis_explanation": null, "end": 301043, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 301034 }, { "analysis_explanation": null, "end": 301089, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 301072 }, { "analysis_explanation": null, "end": 301096, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 301091 }, { "analysis_explanation": null, "end": 301147, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 301138 }, { "analysis_explanation": null, "end": 301168, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 301154 }, { "analysis_explanation": null, "end": 301199, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 301188 }, { "analysis_explanation": null, "end": 301214, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 301201 }, { "analysis_explanation": null, "end": 301227, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 301216 }, { "analysis_explanation": null, "end": 301243, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 301229 }, { "analysis_explanation": null, "end": 301255, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 301245 }, { "analysis_explanation": null, "end": 301351, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 301337 }, { "analysis_explanation": null, "end": 301365, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 301353 }, { "analysis_explanation": null, "end": 301475, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 301466 }, { "analysis_explanation": null, "end": 301494, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 301486 }, { "analysis_explanation": null, "end": 301568, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 301555 }, { "analysis_explanation": null, "end": 301612, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 301594 }, { "analysis_explanation": null, "end": 301990, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 301986 }, { "analysis_explanation": null, "end": 302023, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 302006 }, { "analysis_explanation": null, "end": 302073, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 302065 }, { "analysis_explanation": null, "end": 302100, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 302075 }, { "analysis_explanation": null, "end": 302105, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 302101 }, { "analysis_explanation": null, "end": 302111, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 302107 }, { "analysis_explanation": null, "end": 302226, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 302222 }, { "analysis_explanation": null, "end": 302232, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 302228 }, { "analysis_explanation": null, "end": 302238, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 302234 }, { "analysis_explanation": null, "end": 302244, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 302240 }, { "analysis_explanation": null, "end": 302250, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 302246 }, { "analysis_explanation": null, "end": 302256, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 302252 }, { "analysis_explanation": null, "end": 302262, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 302258 }, { "analysis_explanation": null, "end": 302268, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 302264 }, { "analysis_explanation": null, "end": 302317, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 302313 }, { "analysis_explanation": null, "end": 302822, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 302813 }, { "analysis_explanation": null, "end": 302847, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 302838 }, { "analysis_explanation": null, "end": 303079, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303051 }, { "analysis_explanation": null, "end": 303106, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303081 }, { "analysis_explanation": null, "end": 303139, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303123 }, { "analysis_explanation": null, "end": 303400, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303391 }, { "analysis_explanation": null, "end": 303465, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303456 }, { "analysis_explanation": null, "end": 303537, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303523 }, { "analysis_explanation": null, "end": 303587, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303553 }, { "analysis_explanation": null, "end": 303617, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303589 }, { "analysis_explanation": null, "end": 303634, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303625 }, { "analysis_explanation": null, "end": 303676, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303657 }, { "analysis_explanation": null, "end": 303688, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303678 }, { "analysis_explanation": null, "end": 303698, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303690 }, { "analysis_explanation": null, "end": 303722, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303703 }, { "analysis_explanation": null, "end": 303799, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303794 }, { "analysis_explanation": null, "end": 303816, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303808 }, { "analysis_explanation": null, "end": 303834, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303825 }, { "analysis_explanation": null, "end": 303890, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 303881 }, { "analysis_explanation": null, "end": 7910, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 7892 }, { "analysis_explanation": null, "end": 16175, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 16163 }, { "analysis_explanation": null, "end": 16207, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 16178 }, { "analysis_explanation": null, "end": 16682, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 16670 }, { "analysis_explanation": null, "end": 20093, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 20073 }, { "analysis_explanation": null, "end": 20170, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 20143 }, { "analysis_explanation": null, "end": 20260, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 20236 }, { "analysis_explanation": null, "end": 23868, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 23843 }, { "analysis_explanation": null, "end": 31525, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 31500 }, { "analysis_explanation": null, "end": 39363, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 39348 }, { "analysis_explanation": null, "end": 39533, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 39521 }, { "analysis_explanation": null, "end": 43625, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 43611 }, { "analysis_explanation": null, "end": 43729, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 43713 }, { "analysis_explanation": null, "end": 62634, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 62613 }, { "analysis_explanation": null, "end": 63457, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 63438 }, { "analysis_explanation": null, "end": 67521, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 67495 }, { "analysis_explanation": null, "end": 72295, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 72265 }, { "analysis_explanation": null, "end": 72772, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 72746 }, { "analysis_explanation": null, "end": 73525, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 73503 }, { "analysis_explanation": null, "end": 73842, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 73827 }, { "analysis_explanation": null, "end": 74736, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 74714 }, { "analysis_explanation": null, "end": 77936, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 77921 }, { "analysis_explanation": null, "end": 79060, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 79032 }, { "analysis_explanation": null, "end": 79324, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 79303 }, { "analysis_explanation": null, "end": 97075, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 97059 }, { "analysis_explanation": null, "end": 99600, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 99582 }, { "analysis_explanation": null, "end": 99717, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 99705 }, { "analysis_explanation": null, "end": 99844, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 99828 }, { "analysis_explanation": null, "end": 100113, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 100096 }, { "analysis_explanation": null, "end": 100317, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 100294 }, { "analysis_explanation": null, "end": 100495, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 100469 }, { "analysis_explanation": null, "end": 100615, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 100598 }, { "analysis_explanation": null, "end": 100739, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 100724 }, { "analysis_explanation": null, "end": 105355, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 105344 }, { "analysis_explanation": null, "end": 118454, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 118441 }, { "analysis_explanation": null, "end": 121894, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 121872 }, { "analysis_explanation": null, "end": 145034, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 145010 }, { "analysis_explanation": null, "end": 183180, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 183154 }, { "analysis_explanation": null, "end": 185211, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 185196 }, { "analysis_explanation": null, "end": 192222, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 192208 }, { "analysis_explanation": null, "end": 199354, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 199330 }, { "analysis_explanation": null, "end": 211433, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 211417 }, { "analysis_explanation": null, "end": 218027, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 218013 }, { "analysis_explanation": null, "end": 233992, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 233978 }, { "analysis_explanation": null, "end": 234933, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 234920 }, { "analysis_explanation": null, "end": 235533, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 235513 }, { "analysis_explanation": null, "end": 236336, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 236311 }, { "analysis_explanation": null, "end": 242913, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 242900 }, { "analysis_explanation": null, "end": 252785, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 252768 }, { "analysis_explanation": null, "end": 252853, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 252834 }, { "analysis_explanation": null, "end": 252914, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 252895 }, { "analysis_explanation": null, "end": 252972, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 252952 }, { "analysis_explanation": null, "end": 253030, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 253013 }, { "analysis_explanation": null, "end": 253190, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 253181 }, { "analysis_explanation": null, "end": 253249, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 253231 }, { "analysis_explanation": null, "end": 253326, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 253302 }, { "analysis_explanation": null, "end": 253350, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 253340 }, { "analysis_explanation": null, "end": 253387, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 253373 }, { "analysis_explanation": null, "end": 253420, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 253412 }, { "analysis_explanation": null, "end": 253492, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 253478 }, { "analysis_explanation": null, "end": 253553, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 253539 }, { "analysis_explanation": null, "end": 253583, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 253569 }, { "analysis_explanation": null, "end": 253643, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 253627 }, { "analysis_explanation": null, "end": 253707, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 253696 }, { "analysis_explanation": null, "end": 253750, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 253731 }, { "analysis_explanation": null, "end": 253814, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 253803 }, { "analysis_explanation": null, "end": 253851, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 253835 }, { "analysis_explanation": null, "end": 253958, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 253947 }, { "analysis_explanation": null, "end": 271920, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 271909 }, { "analysis_explanation": null, "end": 271952, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 271924 }, { "analysis_explanation": null, "end": 271972, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 271956 }, { "analysis_explanation": null, "end": 272031, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 272017 }, { "analysis_explanation": null, "end": 272049, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 272035 }, { "analysis_explanation": null, "end": 272075, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 272053 }, { "analysis_explanation": null, "end": 272189, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 272160 }, { "analysis_explanation": null, "end": 272279, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 272244 }, { "analysis_explanation": null, "end": 272347, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 272329 }, { "analysis_explanation": null, "end": 272428, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 272395 }, { "analysis_explanation": null, "end": 272486, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 272468 }, { "analysis_explanation": null, "end": 272584, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 272573 }, { "analysis_explanation": null, "end": 272658, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 272630 }, { "analysis_explanation": null, "end": 272708, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 272692 }, { "analysis_explanation": null, "end": 273612, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 273606 }, { "analysis_explanation": null, "end": 273655, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 273636 }, { "analysis_explanation": null, "end": 273741, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 273721 }, { "analysis_explanation": null, "end": 273827, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 273812 }, { "analysis_explanation": null, "end": 273957, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 273940 }, { "analysis_explanation": null, "end": 274000, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 273992 }, { "analysis_explanation": null, "end": 274037, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 274019 }, { "analysis_explanation": null, "end": 274080, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 274066 }, { "analysis_explanation": null, "end": 274139, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 274118 }, { "analysis_explanation": null, "end": 274200, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 274172 }, { "analysis_explanation": null, "end": 274243, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 274229 }, { "analysis_explanation": null, "end": 274317, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 274297 }, { "analysis_explanation": null, "end": 274360, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 274344 }, { "analysis_explanation": null, "end": 274421, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 274402 }, { "analysis_explanation": null, "end": 274454, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 274445 }, { "analysis_explanation": null, "end": 274495, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 274485 }, { "analysis_explanation": null, "end": 274526, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 274514 }, { "analysis_explanation": null, "end": 274575, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 274546 }, { "analysis_explanation": null, "end": 274613, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 274594 }, { "analysis_explanation": null, "end": 274681, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 274667 }, { "analysis_explanation": null, "end": 274744, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 274720 }, { "analysis_explanation": null, "end": 274813, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 274796 }, { "analysis_explanation": null, "end": 274854, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 274839 }, { "analysis_explanation": null, "end": 274893, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 274877 }, { "analysis_explanation": null, "end": 274912, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 274897 }, { "analysis_explanation": null, "end": 274966, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 274938 }, { "analysis_explanation": null, "end": 274985, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 274970 }, { "analysis_explanation": null, "end": 275039, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 275019 }, { "analysis_explanation": null, "end": 275073, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 275055 }, { "analysis_explanation": null, "end": 275096, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 275077 }, { "analysis_explanation": null, "end": 275132, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 275121 }, { "analysis_explanation": null, "end": 275200, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 275187 }, { "analysis_explanation": null, "end": 275253, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 275236 }, { "analysis_explanation": null, "end": 275306, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 275282 }, { "analysis_explanation": null, "end": 275353, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 275345 }, { "analysis_explanation": null, "end": 275381, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 275368 }, { "analysis_explanation": null, "end": 275434, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 275422 }, { "analysis_explanation": null, "end": 275489, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 275479 }, { "analysis_explanation": null, "end": 275874, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 275853 }, { "analysis_explanation": null, "end": 276203, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 276182 }, { "analysis_explanation": null, "end": 276594, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 276566 }, { "analysis_explanation": null, "end": 276967, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 276931 }, { "analysis_explanation": null, "end": 277258, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 277240 }, { "analysis_explanation": null, "end": 277526, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 277502 }, { "analysis_explanation": null, "end": 277816, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 277792 }, { "analysis_explanation": null, "end": 278219, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 278202 }, { "analysis_explanation": null, "end": 278597, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 278572 }, { "analysis_explanation": null, "end": 278899, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 278866 }, { "analysis_explanation": null, "end": 279210, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 279190 }, { "analysis_explanation": null, "end": 279903, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 279884 }, { "analysis_explanation": null, "end": 280012, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 280004 }, { "analysis_explanation": null, "end": 280172, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 280153 }, { "analysis_explanation": null, "end": 280458, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 280440 }, { "analysis_explanation": null, "end": 280731, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 280713 }, { "analysis_explanation": null, "end": 281064, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 281045 }, { "analysis_explanation": null, "end": 281320, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 281298 }, { "analysis_explanation": null, "end": 282013, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 281993 }, { "analysis_explanation": null, "end": 282318, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 282298 }, { "analysis_explanation": null, "end": 282621, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 282603 }, { "analysis_explanation": null, "end": 282893, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 282876 }, { "analysis_explanation": null, "end": 283233, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 283215 }, { "analysis_explanation": null, "end": 283573, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 283561 }, { "analysis_explanation": null, "end": 283910, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 283899 }, { "analysis_explanation": null, "end": 284141, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 284127 }, { "analysis_explanation": null, "end": 284451, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 284430 }, { "analysis_explanation": null, "end": 284854, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 284834 }, { "analysis_explanation": null, "end": 285178, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 285157 }, { "analysis_explanation": null, "end": 285643, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 285627 }, { "analysis_explanation": null, "end": 286086, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 286071 }, { "analysis_explanation": null, "end": 286331, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 286309 }, { "analysis_explanation": null, "end": 286740, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 286719 }, { "analysis_explanation": null, "end": 287023, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 286996 }, { "analysis_explanation": null, "end": 287321, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 287304 }, { "analysis_explanation": null, "end": 287741, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 287717 }, { "analysis_explanation": null, "end": 287989, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 287974 }, { "analysis_explanation": null, "end": 288341, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 288327 }, { "analysis_explanation": null, "end": 288630, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 288616 }, { "analysis_explanation": null, "end": 288921, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 288899 }, { "analysis_explanation": null, "end": 289261, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 289239 }, { "analysis_explanation": null, "end": 289728, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 289687 }, { "analysis_explanation": null, "end": 290119, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 290105 }, { "analysis_explanation": null, "end": 290563, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 290549 }, { "analysis_explanation": null, "end": 290873, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 290831 }, { "analysis_explanation": null, "end": 291195, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 291170 }, { "analysis_explanation": null, "end": 291489, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 291467 }, { "analysis_explanation": null, "end": 291800, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 291779 }, { "analysis_explanation": null, "end": 292221, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 292202 }, { "analysis_explanation": null, "end": 292543, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 292530 }, { "analysis_explanation": null, "end": 292871, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 292857 }, { "analysis_explanation": null, "end": 293194, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 293180 }, { "analysis_explanation": null, "end": 293583, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 293559 }, { "analysis_explanation": null, "end": 293902, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 293884 }, { "analysis_explanation": null, "end": 294210, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 294190 }, { "analysis_explanation": null, "end": 294522, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 294501 }, { "analysis_explanation": null, "end": 294929, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 294910 }, { "analysis_explanation": null, "end": 295576, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 295557 }, { "analysis_explanation": null, "end": 296287, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 296265 }, { "analysis_explanation": null, "end": 298625, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 298616 }, { "analysis_explanation": null, "end": 299788, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 299774 }, { "analysis_explanation": null, "end": 301008, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 300993 }, { "analysis_explanation": null, "end": 301658, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 301642 }, { "analysis_explanation": null, "end": 301817, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 301811 }, { "analysis_explanation": null, "end": 301855, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 301846 }, { "analysis_explanation": null, "end": 301892, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 301886 }, { "analysis_explanation": null, "end": 301958, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 301933 }, { "analysis_explanation": null, "end": 156855, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 156851 }, { "analysis_explanation": null, "end": 272893, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 272881 }, { "analysis_explanation": null, "end": 273555, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 273542 }, { "analysis_explanation": null, "end": 68199, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 68196 }, { "analysis_explanation": null, "end": 111738, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 111736 }, { "analysis_explanation": null, "end": 145007, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 145005 }, { "analysis_explanation": null, "end": 151619, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 151615 }, { "analysis_explanation": null, "end": 163848, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 163846 }, { "analysis_explanation": null, "end": 177881, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 177878 }, { "analysis_explanation": null, "end": 179074, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 179071 }, { "analysis_explanation": null, "end": 179595, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 179592 }, { "analysis_explanation": null, "end": 181044, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 181041 }, { "analysis_explanation": null, "end": 193261, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 193259 }, { "analysis_explanation": null, "end": 194773, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 194769 }, { "analysis_explanation": null, "end": 194778, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 194774 }, { "analysis_explanation": null, "end": 228777, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 228775 }, { "analysis_explanation": null, "end": 228884, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 228882 }, { "analysis_explanation": null, "end": 272893, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 272885 }, { "analysis_explanation": null, "end": 273555, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 273547 }, { "analysis_explanation": null, "end": 302195, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 302182 }, { "analysis_explanation": null, "end": 302339, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 302326 }, { "analysis_explanation": null, "end": 272893, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 272885 }, { "analysis_explanation": null, "end": 273555, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 273547 }, { "analysis_explanation": null, "end": 302195, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 302182 }, { "analysis_explanation": null, "end": 302339, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 302326 } ]
[ "Open Thread 10/14\n\n– Sometimes you read a story about a new policy and you have a tough time with the fact that it’s actually a new policy because it’s so blindingly obvious that it should have been happening for years. ", "Law Enforcement Assisted Diversion is one of those for me.", "\n\nShare:\n\nRelated\n\nComments\n\nFunny, when I wrote this earlier today, I didn’t realize I was echoing the much more elegant thereisnospoon over at Digby’s place.", "\n\nA sample (read the whole thing):\n\nIn modern times, the elite rulers Agamemnon and Priam have joined forces to steal all the wealth of the Greeks and Trojans together, then sail away to offshore havens in contempt of divine or terrestrial justice. ", "And they have raised a deluded army of soldiers who have swapped out their boar’s tusk helmets for tri-cornered hats, willing to wish them Zeus-speed so long as they can remain, in their squalor, superior to their helot slaves.", "\n\n2\n\nLiberal Scientist thinks that concentrated power and wealth should be met with suspicion, not adorationspews:\n\nThe funniest thing over the last couple of weeks in the world of politics is no longer the Republican Presidential nomination, which for several months in a row has been the best sitcom on TV. ", "But the building panic from conservatives about Occupy Wall Street has replaced the presidential race as the most delightful show to watch. ", "Eric Cantor is talking about mobs in the street, and Glenn Beck is doing maybe his best meltdown ever (and that’s saying something, because Beck has had some doozies). ", "Conservatives by the truckload are freaking out all over the place.", "\n\nWhat makes it even more fun for me is that their panic exactly echoes the kind of panic conservatives have always shown about the idea of democracy and taking on the monied interests throughout American history. ", "In my book on the history of the American political debate, The Progressive Revolution: How the Best in America Came to Be, I discussed how conservatives throughout our history have always echoed each other on these subjects no matter what the era. ", "Here’s a sampling:\n\n1.Written in 1776 by a pro-British Anglican Bishop: “If I must be enslaved let it be by a King at least, and not by a parcel of upstart lawless Committeemen. ", "If I must be devoured, let me be devoured by the jaws of a lion, and not gnawed to death by rats and vermin.”", "\n\n2.In the 1790s, friend of the big New York bankers of his day Alexander Hamilton was at a dinner party, and yelled at a pro-democracy advocate: “Your people, sir – your people is a great beast.” ", "An ally of Hamilton’s wrote: “A democracy is scarcely tolerable at any period of natural history. ", "Its omens are always sinister. … ", "It is always on trial here, and the issue will be civil war, desolation, and anarchy. ", "No wise man but discerns its imperfections, no good man but shudders at its miseries. ", "No honest man but proclaims its frauds, and no brave man but draws his sword against its farce.”", "\n\n3.In the 1830s, conservative hero John C. Calhoun (who first forged the bond between the idea of states’ rights and conservative politics) wrote: “The will of the majority is the will of a rabble. ", "Progressive democracy is incompatible with liberty.”", "\n\n4.In the post-Civil War era, where the right-wing philosophy of Social Darwinism reigned supreme, conservatives were distressed about the idea of poor and working people voting and then taking from the rich. ", "Charles Adams wrote, “Universal suffrage can only mean in plain English, the government of ignorance and vice – it means a European, and especially Celtic, proletariat on the Atlantic Coast; an African proletariat on the shores of the Gulf, and a Chinese proletariat on the Pacific.” ", "And his contemporary Francis Parkman added, “There is probably no sweeter experience in the world than that of a penniless laborer … when he learns that by casting his vote in the right way, he can strip the rich merchant … of a portion of his gains.”", "\n\n5.These anti-democratic sentiments certainly did not cease in the modern era — all you have to do is look at all the Republican efforts to deny the right to vote to so many citizens to understand that. ", "And their fears of demonstrators are vivid. ", "Look at this quote, which certainly reflected the views of people in power like Nixon and J. Edgar Hoover, from conservative author Samuel Huntington in a report he wrote in the 1970s: “Some of the problems of governance in the United States today stem from an excess of democracy. … ", "A democratic political system usually requires some measure of apathy and non-involvement on the part of some individuals and groups.”", "\n\nFrom the anti-American Revolution Tories of the 1770s to the Glenn Beck/Eric Cantor conservatives of today, conservatives always have been on the side of the wealthiest and most powerful in society, and always have been absolutely panic stricken when people get out in the streets to protest the abuses of the rest of us by the economic elites. ", "Conservatives don’t like democracy; they don’t want the poor or the young or people of color to vote; they don’t like demonstrators raising hell about the powers that be. ", "The panic by these conservatives is, as I said at the beginning of this post, as funny as can be: you can’t make up stuff as genuinely unhinged as Glenn Beck’s reaction to Occupy, he is far funnier than any satire of him could be. ", "More importantly, though, the reactions of these conservatives — so like the reactions of conservatives throughout American history who have been on the wrong side of every big issue — give reassurance that the folks at Occupy Wall Street are on the right side of history.", "\n\nTexas First Lady Anita Perry says that her husband is being persecuted by the media and the Republican establishment “because of his faith.”", "\n\n“It’s been a rough month,” Anita Perry told supporters at North Greenville University Thursday. “", "We’ve been brutalized, eaten up and chewed up in the press.”", "\n\n“After Rick had won being elected for the governorship for the third time in Texas, there was a nagging, a pulling at my heart for him to run for president,” she recalled. “", "You know what we have no leadership in Washington. ", "We have nobody to guide our country… God was already speaking to me, but he didn’t want to hear it… He felt like he needed to see the burning bush. ", "I said, ‘Look, let me tell you something. ", "You may not see that burning bush but there are people who see that burning bush for you.”", "\n\nAnita Perry continued: “So he truly felt like he was called to do this. ", "We still feel called to do this. ", "We are being brutalized by our opponents in our own party. ", "So much of that is, I think they look at him because of his faith.”", "\n\n“Someone came up to Rick and handed him a scripture and said, ‘Rick, I want to tell you, God is testing you right now. ", "God is testing you because he wants you to know when you are in the White House, how you got there.”", "\n\nRick Perry: I’m Being Attacked by Other Republicans Because I’m a Christian\n\nBy: Blue Texan Friday October 14, 2011 10:30 am\n\nWow. ", "I didn’t think the Secessionists could get any whinier after Anita cried about how mean everyone was being to her husband the other day.", "\n\nI was wrong.", "\n\n“We are being brutalized by our opponents and our own party. ", "So much of that is, I think they look at him, because of his faith. ", "He is the only true conservative — well, there are some true conservatives. ", "And they’re there for good reasons. ", "And they may feel like God called them too. ", "But I truly feel like we are here for that purpose.” […]", "\n\n“I’ll stand by my wife. ", "I think she’s right on both cases. ", "My understanding is that she said I’m the most conservative candidate in the race and ‘he’s a Christian.’ ", "So I haven’t got anything I can add to that and she’s hit me on my mark both times there,” the governor said.", "\n\nRight, because being an Evangelical Christian is a such barrier to winning the Republican nomination. ", "Are they serious with this crap?", "\n\nKeep in mind, too, that one of the Secessionist’s backers just called Mitt Romney a cultist and that he’s one of the biggest political trash-talkers on the planet.", "\n\nThis is the big leagues, Secessionists. ", "If you can’t stand the heat, get the hell out of the kitchen.", "\n\nAnd although many bring guns to Tea Party meetings, they are just being patriotic, where any intimations of force/violence from the dirty but unarmed hippies at OW is cause for grave concern.", "\n\nI was thinking that we should start a “Liberals with Guns” group – or “Hippies with Guns”. ", "I don’t own a gun, and think that the gun/penis fetish is a corrosive force on American society, but I can shoot. ", "I was on the rifle team in high school (my high school back in Missouri has both the largest pool hall in the state, and a rifle range in the basement!) ", "and I was an NRA DX (‘distinguished expert’) by 15.", "\n\nImage how the media/echo chamber/Teahaddists would FREAK OUT if a bunch of DFHs showed up in public exercising their 2nd Amendment rights packing M4s.", "\n\nThe straw polls (and polling) so far show Romney staying fairly constant at around a quarter of the Republican vote (23% to 25%). ", "The other candidates fortunes ebb and flow as the anti-Romney Republicans search for ANY viable candidate. ", "That’s why there were the` desperate pleas for Christie to enter the race.", "\n\nAs for the poll leaders, first it was Bachman, then it was Perry, now it’s Cain. ", "Each enters the scene like a roman candle, heading quickly upwards in the polls highlighted by a trail of brightly-colored sparks, only to quickly reach a zenuth, give one last little “pop”, and drop back to the ground. ", "They give and take votes from each other, but none seem able to poach from Romney’s base.", "\n\nThe problem for the Republicans is that their Evangelical base is going to have a REALLY HARD time supporting Romney. ", "They’ve preached (literally) for years how important it was to have a devout Christian in the White House, and they don’t consider Mormonism to be a Christian religion. ", "They also insisted that their candidate must have the appropriate Pro-Life credentials, but Romeny has trouble in that area, too. ", "If the Evangelicals DO turn around and support Romney after he becomes the nominee, they will have to completely turn their backs on some 30 years of their “values” in order to do so, and just admit at that point that their justifications were just smoke and mirrors, that they really are just voting for Republicans based on party labels.", "\n\nNote that up until this past week, Perry and Bachman pretty much had the Evangelical wing cornered between the two of them, with about 10% of the Republican vote each. ", "Combined, this is within striking distance of Romney. ", "If one or the other drops out and makes a deal to swing their support over to the other, then Romney might have a problem.", "\n\nIf Cain somehow overcomes all the other obsticles and becomes the nominee, they will have a similar problem with the racist componant within their own party. ", "I’ve never said that a majority of Republicans are racists, but I HAVE said that the Republicans are more than happy to bring racists into their “big tent”, and feed their fears and bigotry if it buys their support.", "\n\nIf Cain is the nominee, it means a small percentage of the Republican party will simply choose not to vote when it becomes the race is between two black men.", "\n\nWhile wingers wring their hands and tear their hair out (see, e.g., “pudge” on Stefan’s sucky little cross-town blog), the Occupy movement goes viral, spreading to hundreds of cities in dozens of countries across the globe. ", "Looks like the proletariat is mad as hell and isn’t going to take it anymore. ", "And polls show they have far more support than the Teahadists do.", "\n\nRoger Rabbit Commentary: As I posted last night, the first casualty of the Occupy tidal wave will be millionaire take-home pay: This is a political backlash against the excesses of the wealthy class and there is now unstoppable momentum for a millionaire tax increase — in the last few days it has become inevitable that the rich will pay higher taxes.", "\n\n23\n\nLiberal Scientist thinks that concentrated power and wealth should be met with suspicion, not adorationspews:\n\n@21 So, so sad that the money guy that the Party poo-bahs (more money guys) like just couldn’t be a goddam Presbyterian, or something. ", "He had to be a fuckin’ Mormon. ", "In the end, they will all close ranks, cause a magic-underwear wearin’ Mormon spouting Christian-y platitudes trumps a socialist Kenyan Witch Doctor any day.", "\n\nWell, if your religion essentially says that all other religions are cults and people push back against this claim, then one could reasonably argue that you’re being attacked for your religion. ", "You simply have to ignore the fact that your religion manages to attack everyone else for their religion.", "\n\nThe Luxembourg Wealth Study shows the United States is by far the most unequal developed country with the top 1 per cent of Americans owning 33 per cent of the nation’s wealth.", "\n\nAustralia and New Zealand are not part of the study, but a 2006 Statistics NZ survey found the top 1 per cent of New Zealanders owned 16 per cent of our wealth, higher than every country in the study except the United States and Sweden.", "\n\nSweden has a wealth concentration problem??? ", "How could this be? ", "According to the likes of our degenerate right wing trolls Sweden might as well be a COMMUNIST COUNTRY! ", "LMAO!!", "\n\n@19 LOL… Black Rifle Disease… The righties seem to think that owning a gun that looks just the ones soldiers use not only “supports the troops,” but makes them one of the troops as well. ", "You know, just incase Bellevue turns into fallujah over night. ", "The righties will totally have it covered until the troops arrive.", "\n\nThe gun owning hippies I know seem to prefer lever-actions in .30-30 and .357.", "\n\n# 19: The right-wingers would be surprised at how many of us know how to shoot. ", "I was in my first marksmanship competition at age eight, and at age fifteen I was a marksman on the M-14 in JRTC. ", "I’ve shot a wide variety of rifles and shotguns, but pistols never interested me much. ", "And don’t forget that Roger Rabbit and quite a few other veterans are liberals who know how to handle an M16 and other assorted implements of destruction.", "\n\nI’ve never been in favor of abolition of an individual’s right to own guns, I just believe in reasonable regulations. ", "For home safety, you don’t want a rifle or a pistol, you want a shotgun – that way the stray rifle bullet doesn’t go through the walls and kill the neighbors. ", "Even so, the odds are more likely that the gun will be stolen from you while you aren’t at home, or taken from you before you can shoot, or you will end up killing your own kids, or your kid’s teenage friends sneaking in or out of the house after hours.", "\n\nAnd if anybody really needs an automatic assault rifle with 200 rounds to hunt wild game, they obviously don’t have the requisite marksmanship skills needed to be a hunter, and should just stay home and watch the hunting shows in TV while drinking beer.", "\n\nMy final item in this morning’s news roundup involves this MSNBC story about Harrisburg, Pennsylvania filing for municipal bankruptcy.", "\n\nHarrisburg is the state capital and similar in size to Olympia — about 46,000 people. ", "The town fathers opted for Chapter 9 bankruptcy to fend off a threatened state takeover — that’s like our goveror or legislature seizing control of Olympia’s city government — and the people there are having none of it.", "\n\nHere’s why the city is mired in debt:\n\n“The cash-strapped state capital of 46,000 people is mired in debt of more than $300 million, including $83 million in past due payments, much of it stemming from the construction of an incinerator.”", "\n\nThis is bullshit. ", "Mrs. Rabbit and I deserve more — immensely more — credit for the city and county’s recycling programs than Royer does. ", "The truth is that Royer wanted to build a giant waste-to-energy plant (i.e., incinerator) in South Seattle, of the sort that bankrupted Harrisburg, and was a bitter opponent of recycling. ", "Seattle and King County have recycling programs because they were shoved down Royer’s unwilling throat.", "\n\nIn case you don’t remember Royer, he was a local TV news personality before he became a politician (sound familiar?) ", "and eventually became Seattle’s longest-serving mayor (3 terms, 12 years) before trotting off to some Harvard think tank.", "\n\nSeattle’s recycling program was born at a kitchen table in a south Seattle home. ", "There were 8 people sitting around that table, and two of them had long pointy pink ears. ", "In short order, a 9th person joined that group — the now-legendary “honorary mayor of Fremont”, Armen Stepanian, whose face graces the dog in Fremont’s “Waiting For The Interurban” sculpture. ", "Mrs. Rabbit and I knew Armen well, because he worked with our group throughout the five or six years that we fought the battle to stop Charlie Royer’s incinerator.", "\n\nTo stop that incinerator from being built, we had to come up with an alternative. ", "Someone sitting at that table — I no longer remember who — spoke the word “recycling.” ", "That was the moment when Seattle’s recycle program was born. ", "King County later followed behind Seattle’s example.", "\n\nOur tiny group of neighborhood residents recruited a community group known as the Southeast Seattle Community Association (or something like that; these events occurred over 30 years ago and I no longer remember all the details). ", "They had a couple of paid full-time staffers who were trained activists. ", "Their help in organizing the pro-recycling campaign was invaluable. ", "They also helped get the big environmental groups and other large grassroots activist groups the cause.", "\n\nIt took tons of hard work. ", "Mrs. Rabbit and I, and other activists, spent five years attending meetings, doorbelling, going to public hearings, lobbying public officials, etc., ", "on an almost daily basis. ", "It was a gargantuan effort that consumed our free time for years on end. ", "But it was worth it, because we won.", "\n\nBelieve me when I say Royer did not want recycling. ", "He wanted his incinerator. ", "City Hall was dead-set opposed to our recycling campaign. ", "We won because recycling was such an obviously good idea — and the incinerator was such an obviously bad idea — that once we got the ball rolling it became an irresistible force.", "\n\nTo put our 1980 – 1986 recycling campaign in perspective, at that time no large U.S. city had a recycling program. ", "This was an experimental idea. ", "We took our model from Sweden. ", "In those early days, we organized our effort around an optimistic target of someday recycling 28% of Seattle’s residential and commercial trash. ", "Nobody thought we would ever get to 35%. ", "But today Seattle’s recycling rate is approaching 54% and city officials say the city will reach 60% within a few years.", "\n\nTo put this accomplishment in perspective, Seattle was the first major city in the U.S. to institute a large-scale recycling program. ", "Seattle is the model and leader for all other U.S. cities when it comes to municipal recycling. ", "All of this happened because of eight ordinary citizens. ", "Those six people and two rabbits are the godfathers and godrabbits of all U.S. municipal recycling — it began with us.", "\n\nI’m telling this story because of the obvious parallel to what is now happening in public squares across the U.S. and around the world. ", "What we did to Charlie Royer’s incinerator 30 years ago, the Occupy protesters are now attempting to do to the culture of corporate greed that has swamped our society and is drowning 99% of our citizens. ", "Sometimes a handful of people can start a revolution that changes history and reshapes society. ", "It’s been done before. ", "It can work this time, too.", "\n\n30 – Again thank you for service to our country and our community Roger Rabbit..\n\nBut it did take 5 years of concentrated effort from a much younger bunny and you didn’t accomplish it by raising hell in a park – you went door to door. ", "You worked every single day to effect the change you wanted.", "\n\nThese young people raising hell in parks have to be willing to make that kind of commitment.", "\n\n19, 27, 31 — Anyone with a credit card can acquire a gun and bring it to a Teaparty meeting for “show and tell.” ", "That doesn’t mean shit in a war.", "\n\nI can’t pass a military physical — they don’t take 30-inch tall rabbits with lousy eyesight. ", "It took some fast talking to persuade the Army to take me. ", "Because of that I only served in the U.S. military twice. ", "After Vietnam, I did a stint in the active Army Reserve, where my job was “infantry weapons instructor.” ", "I taught recruits and ROTC cadets how to use their individual weapons in a firefight.", "\n\nAnyone capable of connecting dots — even a stupid wingnut — ought to be able to draw a couple of obvious conclusions from this. ", "First, I’m not a pacifist. ", "Second, fucking with me might not be a real good idea for folks whose knowledge of combat is limited to pulling a credit card out of their wallet in a pawn shop or gun store.", "\n\n@32 Yes, you don’t change an entrenched system by spending a couple of evenings standing on a street corner waving signs and shouting at passing motorists. ", "Demonstrations have a role in mass movements but ultimately you’ve got to win hearts and minds and turn it into concrete action at the ballot box.", "\n\nI hope the Occupy movement morphs into what capitalists might refer to as a “restructuring” of our political and economic systems. ", "When power and wealth have concentrated too much, and the abuses and excesses of the rich and powerful have gone too far, that’s what is needed. ", "Far from being anti-capitalist, this type of renewal is an integral part of the free-market system and is essential to capitalism’s survival. ", "A century ago, when monopolies got too big and powerful, popular outcry led to the government breaking them up. ", "What followed was a burst of innovation and growth. ", "Today’s ossified economy needs the same kind of restructuring. ", "Corruption and cronyism are now so deeply entrenched, and a tiny cabal of corporatists and money manipulators are taking so much of the nation’s output for themselves, that we now need the same kind of fundamental restructuring of the economy and society. ", "It’s time, once again, to break up the great fortunes and the power they exercise, and to return control over America’s wealth to those who create it: America’s workers.", "\n\nThis obviously will be a long-term project requiring immense effort by countless people. ", "But it’s been done before, and it can be done again. ", "We’re still a democracy, and it works because, at the end of the day, you have the same number of votes at the ballot box that Charlie Koch or Larry Fink does.", "\n\n@31 I wonder if that fat slob Breitbart has ever thought about what a fat juicy target his pus-gut is? ", "I mean, how could you miss, at any range below 100 meters? ", "And if he’s close enough to get in your face, hell, just offer to give him a 12-gauge liposuction and you’ll see what he’s really made of.*", "\n\n* Heh! ", "Just kidding! ", "This is a wingnut joke. ", "Personally, I think wingnut jokes are funny as hell! ", "I like wingnut jokes. ", "If you want to get serious, every wingnut knows we liberals are all pacificists and wouldn’t even pull the wings off a butterfly. ", "Torturing helpless insects is something only tough guys like them do for amusement.", "\n\nHow terrifying is it to the typical right wing zombie cretin that the result of social movements like OWS might be higher taxes on the rich and the tax dodging corporations so that the stupid wars and the fancy military hardware they cheered for on Faux News might one day be paid for.", "\n\n@50 Indeed – he is very talented. ", "The two on the far right on the top row – same dam, different vantage as the photo you posted. ", "Apparently it was very difficult for him to get permission from the Park Service to go into the gorge to get to where he painted those.", "\n\nThis story really opens my eyes. ", "I had no idea of what was going on. ", "I’ll bet you didn’t either. ", "But now, having seen this story, I finally understand that America is rising in full-scale revolt against our dishonest and corrupt financial system that enriches 1% at the expense of the 99%, and this revolution is now inevitable.", "\n\nRoger Rabbit Commentary: Because schools make money from these debit cards. ", "So does Mastercard. ", "The students are the victims. ", "Here’s how the scam works:\n\n“Bechtol complained last spring that school was forcing him to obtain a debit card issued by financial firm Higher One, and that his personal information would be shared with the company. … ", "Higher One works with hundreds of schools to create combination student ID cards/debit cards that can be used for direct deposit of financial aid funds. … ", "There have been frequent complaints that the school cards carry higher fees than traditional ATM cards.”", "\n\nNot only that, but if students try to avoid these ripoff fees by not using the cards, they get hit with a $19 “non-use” fee.", "\n\nThis college kid got banned from the campus for two semesters for posting a comment on Facebook critical of the school’s policy of forcing its students to get these cards.", "\n\nIf these thin-skinned school administrators had tried to pull this kind of shit on my generation they would have Molotov cocktails flying through their office windows. ", "Some of the baby boomers blew up buildings for less than this. (", "See, e.g., Bill Ayers & Co.)\n\nNow why aren’t the wingers who complain about being forced to buy health insurance rising up in arms against colleges that force students to get and use high-fee debit cards as a condition of being allowed on campus?", "\n\nThink about it: A debit card is now embedded in your student ID card. ", "You are required to use this debit card to access your financial aid. ", "But you are charged an exorbitant fee if you use it, and you are charged an exorbitant fee if you don’t use it, and you are expelled from school and banned from campus if you criticize it.", "\n\nI’m having a hard time understanding why our campuses aren’t smoldering ruins. ", "Why is there still a single building standing at colleges that do this to their students? ", "Is this generation of college students a bunch of pussies? ", "This is what going to college in the Sixties looked like:\n\nIt’s the same victim card the puddypussy (and everett, and emperor max-minidick, and troll annd all the rest) plays. ", "Nothing is ever their fault, they are responsible for nothing.", "\n\n10/14/2011 AT 10:45 AM\n\nummm, wrong loser boy…you must be projecting again.", "\n\nI am responsible for my own success, both professionally and privately. ", "I dont need handouts or to blame others for any setbacks I might have, unlike you and the rest of the losers down on westlake do.", "\n\ngood or bad, success or setback, I make my own way. ", "You on the other hand, are a fucking loser, sycophant, and someone who cant live without the handouts of others….you live off my table-scraps – and you should be thankful that you even get that.", "\n\nnow run along and strum that banjo down on westlake, maybe you will make a few pennies if you throw your hat on the ground.", "\n\n“Did anyone else get a bunch of credit card spam in their CVCC inbox today? ", "So, did CVCC sell our names to banks, or did Higher One? ", "I think we should register CVCC’s address with every porn site known to man. ", "Anyone know any good viruses to send them?” ", "he wrote, according to the letter FIRE published.", "\n\nYep, that got him kicked off campus for two semesters, delaying his graduation by a full year.", "\n\nI know perfectly well that our entire society has degenerated into a corrupt crony system for the personal profit of a handful of utterly dishonest people who are devoid of conscience or scruples. ", "I’m also aware that the college financial aid system has turned into a gigantic money-printing machine for greedy banksters — as of today, student loan debt exceeds credit card debt in the U.S.\n\nThink about this: You’re told you can’t succeed in this country without a degree. ", "You’re financially exploited at every step of getting that degree. ", "But after you graduate, there are no jobs, just bill collectors on your doorstep trying to collect those high-interest student loans that are just a good deal for the greedy banksters and such a bad deal for you.", "\n\nI know where the Occupy movement is going. ", "The ultimate result of this political revolution is going to be a massive writeoff of overpriced loans that never should have been written in the first place. ", "That’s what it’s going to take to save the U.S. economy, and if it doesn’t get done in bankruptcy courts because special interests have gotten a corrupt Congress to make these loans non-bankruptable, then they’re going to get written off in the streets. ", "One way or another, the financial class that got rich by skinning the populace are going to get skinned themselves.", "\n\n@62 The corporations get free money from us, so why shouldn’t we get free money back from them? ", "Why should money be free only for the freeloading class? ", "Why shouldn’t it be free for everyone? ", "If you do it for one person, you have to do it for all.", "\n\n@66 Freedom is not free. ", "Apparently neither are student ID cards. ", "I do think when colleges force you to sign up for overpriced financial services you don’t want as a condition of attending school — which employers have made a condition of getting a job — it’s time to water the tree of liberty, as the wingers like to say.", "\n\nlast I checked, going to college was a voluntary activity….maybe all these kids complaining about getting student loan in order to get a drama degree or anthro degree or underwater basket weaving degree should just, like, drop out n shit\n\nI say free tuition to veterans..the rest of the kids can go fuck off and pay for school the old fashioned way – by getting a job or by having mom and dad pay for it or get a scholarship\n\nRemember a few years back when one of the day-labor places started to issue pay in the form of debit cards? ", "The problem was, you had to pay a fee for each withdrawal. ", "The state stopped them, pointing out that state law requires payment in U.S. funds, and that the debit fees effectively put their pay at below the minium wage.", "\n\nThat’s a pretty old state law – it goes back to the 1920’s, I believe, and was designed to outlaw the payment of wages in “company script” redeemable only at the company store.", "\n\n@70 That’s both really stupid and a fairly representative example of what passes for thought on the right these days. ", "Thanks.", "\n\nBtw, have you noticed that, if you go by his record as governor, the guy that’s going to be running for president representing the right half of the political spectrum is the same as or maybe a little to the left of Obama?", "\n\nFor blockheads like “pudge” and Mark Griswold who can’t divine what Occupy is about, this might help:\n\n“Americans had become shockingly complacent in the face of outrageous inequality and injustice, seeming to defend the special rights of yacht-owning ‘job creators’ while swallowing the notion that millions of our fellow citizens can be both working and poor. …", "\n\n“That we’re now having a public debate about inequality and the ugly road to nowhere on which many hardworking Americans are traveling suggests that, whatever Occupy’s ultimate agenda, the process of movement building — the fact of its existence — may be its essential point.", "\n\n“Social movements spring up not to achieve narrow policy goals but to shift the broader public debate, mobilizing public will toward change.", "\n\n“Polls show this movement’s message against corporate greed not only has wider support than either political party in Washington but wider support than the tea party. ‘", "Occupy’ protests are springing up in unlikely places, from Idaho to Indiana, and drawing unlikely protesters like soccer moms, small-business owners and, yes, tea party members. ", "That you’re even reading this column is evidence the protests are making a mark.”", "\n\nFor those too clueless to understand why the OWS people are on the street around the country, here’s your answer. ", "It’s not just about the greed and selfishness of the banks, but the greed and selfishness of the corporate world. ", "It should be an embarrassment to everyone in Congress and the White House that 14.5% of the population had difficulty with feeding their family. ", "How is this possible in America when we see such excessive salaries in the corporate world at the same time as falling incomes for everyone else?", "\n\nThis too needs to change.", "\n\nAt some point last year, about 17 million U.S. households had some difficulty feeding everyone in their family.", "\n\nThat amounts to 14.5 percent of U.S. households, according to a report released last month by the U.S. Department of Agriculture.", "\n\nThe percentage of households who experienced food insecurity in 2010 was virtually unchanged from 2009. ", "But it has risen by about 3 percentage points since 2007, the year the country officially went into recession.", "\n\nI’d love to tell Herman Cain what a clueless heartless motherfucker he is…\n\nWhat would happen if we changed the tax code so a CEO would be taxed 100% on everything over 20x times the least paid employee of the company? ", "This included temps, interns and H1B-Visa workers, overseas employees and sub contractors and any other way they could think of to weasel out of paying for it. ", "You want to put $1 million in the bank, then pay your janitor $50 K.\n\n87\n\nPuddybud, who read how Mr DISGUSTING \"I live off the net\" all dayspews:\n\nabsolutely panic stricken when people get out in the streets to protest the abuses of the rest of us by the economic elites. ", "Conservatives don’t like democracy; they don’t want the poor or the young or people of color to vote; they don’t like demonstrators raising hell about the powers that be. ", "The panic by these conservatives is, as I said at the beginning of this post, as funny as can be: you can’t make up stuff as genuinely unhinged as Glenn Beck’s reaction to Occupy, he is far funnier than any satire of him could be. ", "More importantly, though, the reactions of these conservatives — so like the reactions of conservatives throughout American history who have been on the wrong side of every big issue — give reassurance that the folks at Occupy Wall Street are on the right side of history.", "\n\nIt was libtardos like crock of liars who attacked Tea Party people when they arrived for Glenn Beck’s 9/12 project. ", "Except they were peaceful. ", "There were no police confrontations. ", "There was no littering. ", "No sex in public displays. ", "No cursing out police. ", "No arrests. ", "They left the park cleaner than it was before they arrived.", "\n\nIt was liberals who tried to get Beck’s meeting permit canceled. ", "Has any conservative done this? ", "Watching the interviews we see fools screaming for violence. ", "We see fools screaming for violent revolution. ", "We see fools being fools. ", "No coherent message until the unions appeared earlier this week.", "\n\nGood try rujax. ", "Another of your EPIC FAILS!", "\n\nAnn Coulter aptly named them … The Flea Party.", "\n\nROTFLRHMBBAO!", "\n\n88\n\nPuddybud, who read how Mr DISGUSTING \"I live off the net\" all dayspews:\n\nToo bad the pussypussy can’t/won’t recall that the tea party was funded by the Koch Maching and fueled by lies from Faux News.", "\n\npuddypussy is such an ignorant dupe. ", "Limbaugh just takes idiots like him and leads them around by the ring in their noses.", "\n\nAll of them\n\n(before the puddypussy accuses ‘Ol Rujax! ", "of being racist)…not just our little cult member here.", "\n\nThe dummyhead puddypussy can bloviate and blather and bleat to his heart’s content.", "\n\nThe 99% Movement will have legs BECAUSE it represents the 99% of the Citizenry who are not represented anymore.", "\n\nPS, motherfucker…you’re NOT a 1%-er…not EVEN close. ", "You will NEVER EVER be a 1%-er. ", "And they will NEVER-EVER-EVER let you (or me or Herman Fucking Cain) in. ", "NEVER. ", "Cain might as well enjoy his 15 minutes of fame ’cause he’s gonna tank. ", "Like a REPUBLICAN operative said…cain as a candidate has the life expectancy of a Al-Qaeda Lieutenant…hahahaha!!!!", "\n\nJoe Scarborough brushed off Herman Cain’s surge in the polls by using an analogy to Al Qaeda on Thursday’s “Morning Joe.”", "\n\nThe MSNBC host began his rant about the GOP race by bragging that he had been right every time about various candidates not being able to win. ", "He ticked off a list of his predictions that had come true, including his write-offs of Rick Perry, Michele Bachmann, Newt Gingrich, Donald Trump and Sarah Palin.", "\n\n@88 It’s much more fun to tell Mittens what a wishy-washy flip-flopper he is. ", "The Inevitable Republican Nominee (TM) — who will be the nominee only because the GOPers have NO ONE else — stands for nothing. ", "If you vote for him and he somehow gets elected, you will get Obama’s foreign policy.", "\n\n“When, for example, would Mr Romney bring the troops home from Afghanistan? ", "Ah, that would depend on ‘the best recommendation of our military commanders’: in his first 100 days there would be ‘a full inter-agency review’. ", "Well then, what about Iraq? ", "Good question, but it is ‘impossible to predict’ whether American troops will be required in Iraq when he becomes president in 2013. … ", "Iran? ", "Like Barack Obama, Mr Romney declares that a nuclear Iran is ‘unacceptable’. ", "He would send aircraft-carriers to the region to make clear ‘that a military option … remains on the table’. ", "Meanwhile he would tighten sanctions and build defences against Iranian missiles (present American policy in a nutshell). ", "Russia? ", "President Romney would ‘review’ the New START treaty and the other arms-control policies of the Obama administration ‘to determine whether they serve the best interests’ of the United States. ", "China seeks hegemony, but Mr Romney will use carrots and sticks to guide it towards responsible global citizenship. …", "\n\n“[H]owever you tart it up, [his] message … makes a nonsense of the Grand Old Party’s shrill disparagement of the incumbent president’s foreign policy. ", "As the Republicans tell it, Mr Obama has spent his presidency projecting weakness, leading from behind, apologising for America, denying American exceptionalism and throwing Israel under a bus. … ", "Mr Obama has made mistakes in foreign policy, but not the ones the Republicans harp on. ‘", "Leading from behind’ may turn out to have been a cost-effective way to help America’s allies dispose of Libya’s Muammar Qaddafi. ", "Mr Obama got nowhere in Palestine, but pushing for a two-state solution based on the 1967 border was longstanding American policy, not a betrayal of the Jewish state. ", "The oft-repeated claim that he does not believe in America’s exceptionalism leans on selective quotation from a press conference in which he made it perfectly plain that he did.”", "\n\nRoger Rabbit Commentary: What it all boils down to is that President Flip-Flopper would build a couple more Navy warships a year. ", "Otherwise, his foreign policy will be identical to Obama’s. ", "At least Obama is a known quantity, however inadequate. ", "With Romney, the only thing you’re sure to get is continued profligate spending on defense at the expense of taking care of our own citizens plus a little verbal saber-rattling now and then.", "\n\nPuddy’s comparison of OWS to the Tea Party is funny, particularly in contrast to the debate about the supposedly liberal media. ", "See here for a nice chart. ", "Note how the OWS protest had gone on for two weeks before the media coverage surpassed what the Tea Party movement got on day 1.", "\n\nThis generally proves two things:\n\n1) The notion that the media have a liberal bias is a lie. ", "It’s a complete and utter fabrication. ", "Were it not a lie, then OWS would have had more media coverage than the Tea Party movement from the get-go.", "\n\n2) OWS is a true grass-roots movement, and the Tea Party is an astroturf movement. ", "The only way a true grass roots movement actually generates any media coverage is when they start clashing with the police. ", "Nobody pays any attention until then.", "\n\nFor what Don Joe? ", "You seem to forget the libtardo MSM hates anything conservative. ", "So they immediately started covering the Tea Party telling the world how racist it was because it disagreed with Barack ObamAA+. ", "The HA dumb cinder block rujax went from thread to thread calling anyone who disagreed with Barack ObamAA+ a racist! ", "Need to see the rujax evidence again? ", "I surely don’t. ", "The boy is a dope!", "\n\nNow jump forward to this week. ", "Who does the libtardo MSM put front and center to attack Herman Cain?", "\n\nWhy? ", "Because Herman ain’t on the DUMMOCRAPTIC reservation and the libtardo MSM doesn’t know what to do with him. ", "He doesn’t fit their stereotype just like the Tea Party (a bunch of racists per the libtardo MSM) backing Cain doesn’t fit their racist stereotype!", "\n\nSo why is this Don Joe? ", "You leftists want… no, you NEED minorities women, blacks, hispanics to need and lean on government. ", "You libtards have long claimed since the early 60s that y’all represent blacks better than the conservatives ever could. ", "Yet we’re still in the same poverty while you whites have gotten richer and richer and richer. ", "Somehow the dumb cinder block rujax can’t see that.", "\n\nI saw it when I left Philly and grew up. ", "You allow two or three poverty pimps to rally the black troops for every election year. ", "and we all know who they are. ", "Both failed at getting the DUMMOCRAPT presidential nomination. ", "Enter Herman Cain. ", "Herman Cain will peel off 33% of the black vote because he asks what has a DUMMOCRAPT done for you over time? ", "Are you better off jock strapping them?", "\n\nIf the media is so fair and balanced what conservative black person has the libtardo MSM used to discuss the conservative qualities of Herman Cain? ", "Well I have seen conservative blacks on Fox News. ", "But they are not the libtardo MSM!", "\n\nThe data demonstrates otherwise yet Don Joe will continue to argue against the facts. ", "Libtardo MSM type continue to vote in the 85% percentile for DUMMOCRAPTS and they give their money to DUMMOCRAPTS at the same level percentage!", "\n\nRight-wing media have been hyping the claim that a diplomatic cable released by WikiLeaks shows that President Obama had planned to “apologize” for the bombing of Hiroshima during his 2009 visit to Japan. ", "But the cable only shows there was speculation from “anti-nuclear groups” that Obama might travel to Hiroshima after expressing support for a “nuclear-free world,” and the Obama administration has said no apology was ever planned.", "\n\nAffirmative, obstinate stupidity…we are doomed as a species.", "\n\n103\n\nLiberal Scientist thinks that concentrated power and wealth should be met with suspicion, not adorationspews:\n\nFor facts, Puddy. ", "You know, the stuff upon which reasonable people base their conclusions.", "\n\n“You seem to forget the libtardo MSM hates anything conservative.”", "\n\nYou can’t “forget” something that’s not true.", "\n\n“So they immediately started covering the Tea Party telling the world how racist it was because it disagreed with Barack ObamAA+.”", "\n\nWhen Ron Paul gets up and says, “we get to go to Washington and take back our government,” exactly who has taken the government away in the first place? ", "Did Ron Paul, or anyone else in the Tea Party movement, complain about the fact that George Bush started with a budget surplus and left with a huge budget deficit? ", "Did anyone complain about George Bush fighting two wars of choice on a credit card financed by our children’s future? ", "Why did these issues suddenly become a concern when a black guy got elected President, Puddy?", "\n\nWhen John Boehner pines for the days when he grew up, what, exactly, is he pining for? ", "That was before the civil rights movement. ", "So, is John Boehner pining for days when black people had to ride the back of the bus?", "\n\nI’ve already pointed out that the most controversial part of the most controversial piece of legislation to cross Pres. ", "Obama’s desk was an idea originally cooked up by the Heritage Foundation. ", "Half of Obama’s stimulus package consisted of ideas Republicans themselves had proposed just a scan few years ago. ", "In every significant way, ObamaCare is RomneyCare.", "\n\nYet Republicans now repudiate every one of the policy proposals that they had, not too long ago, supported, and all we hear from the Tea Party crew is “socialist” this and “socialist” that.", "\n\nThe main stream media is talking about racism, because it’s inherent in just about everything that folks in the Republican Party have done and said since Obama got elected. ", "So, when Herman Cain, who clearly didn’t do jack shit during the Civil Rights movement, wants to lecture people on what is and what is not racism, and the main stream media cover the backlash against that, you want to take that as evidence that the main stream media is biased?! ", "What the fuck planet do you live on, Puddy? ", "It sure ain’t the real planet we live on.", "\n\nNo, Puddy, the data is here, and the only one who hasn’t responded to their conclusions is you. ", "Just so you know precisely what the fuck I’m talking about, here’s their conclusion:\n\nWe find that, on average, newspapers are located almost exactly at the median voter in their home states. ", "In California, where we have the most data, newspapers are probably slightly to the right of the median voter. ", "We find no evidence that the US press exhibits a liberal bias. [", "emphasis added]\n\nBy the way, Puddy, if the main stream media were really interested in having a productive conversation on race, Dr. Joy DeGruy would be a household name. ", "They clearly aren’t, which is neither liberal nor conservative. ", "It’s just white.", "\n\n“Well,” he continued, “we want to make sure this is very clear. ", "There was never a plan for President Obama to apologize to Japan. ", "We should have been clearer about this, and we’re sorry for any confusion.”", "\n\nThis would be funny if it weren’t so tedious – Pudidiot is so easily misled by the voices in his head, er, FoxNoise, which of course turns out to be lying.", "\n\n110\n\nLiberal Scientist thinks that concentrated power and wealth should be met with suspicion, not adorationspews:\n\nAnd the ironic thing – he calls others Cass Sunstein Homer Simpson Idiots – or some such drivel, but in reality, the one parroting the lines fed to him by the message machine – Tides foundation, Frances Fox Piven, Cass Sunstein, Japan Apology, and on and on and on and on and on…is P-dud, useful idiot of the right wing.", "\n\nWhat a moron.", "\n\n111\n\nPuddybud, who read how Mr DISGUSTING \"I live off the net\" all dayspews:\n\nYou see libtardos Lib UnScientist runs to left wrong whack job sites and I whip out ABC News…\n\nIn September 2009, US Ambassador to Japan John Roos reported to the Obama administration that the Japanese government did not think it was a good idea for President Obama to visit Hiroshima to apologize for the US having dropped an atomic bomb on that city, a secret cable published by Wikileaks revealed.", "\n\nRoos wrote the cable after his August meeting with Vice Foreign Minister Mitoji Yabunaka, reporting to Secretary of State Hillary Clinton that the Japanese government felt “the idea of President Obama visiting Hiroshima to apologize for the atomic bombing during World War II is a ‘non-starter.’ ", "While a simple visit to Hiroshima without fanfare is sufficiently symbolic to convey the right message, it is premature to include such program in the November visit.”", "\n\nWhen you visit the whack job left wrong sites they spin the news even more.", "\n\nAn ypou can call me all the names you want. ", "I whip out facts and they DID NOT come from Fox News, etc.", "\n\nReally sucks to be WRONG all the time eh Lib UnScientist. ", "What really brings laughter to my heart is the sycophantic yes groups all you have here. ", "No one even checks to see if another HA libtardo could be WRONG WRONG WRONG!", "\n\nSee ya morons!", "\n\n112\n\nLiberal Scientist thinks that concentrated power and wealth should be met with suspicion, not adorationspews:\n\nA senior White House official asserts to ABC News that there was never any plan for the president to apologize for Hiroshima. ", "The cable does not state that the idea was from the U.S. Rather, Roos writes that Yabunaka thought that following President Obama’s call earlier that year for a world free of nuclear weapons, anti-nuclear groups would speculate as to whether he would visit Hiroshima. [", "Ed: emphasis mine]\n\nThat’s because Cass Sunstein called YOU a malleable Homer Simpson idiot. ", "Butt then again you probably missed it because you claimed to skip over my posts. ", "Well you skip right over Roger DOPEY Rabbit posts and he posts conceptguerilla.org at least once a month. ", "The HA arschloch had to describe conceptguerilla to you.", "\n\nThat was P R I C E L E S S !", "\n\nHere is Cass Sunstein’s own words about progressives\n\n“We think that, as my co-author, Thaler and I, that there’s a little Homer Simpson in all of us. ", "Sometimes we have self-control problems, sometimes we’re impulsive and that in these circumstances, both private and public institutions, without coercing, can make our lives a lot better. ", "Once we know that people are human and have some Homer Simpson in them, then there’s a lot that can be done to manipulate them.", "”And you are manipulated by left wrong web sites who spin the news in a TERRIBLE way!", "\n\nROTFLRHMBBAO!", "\n\n114\n\nPuddybud, who read how Mr DISGUSTING \"I live off the net\" all dayspews:\n\n“…When Homer, in one episode, went to buy a gun, the gun owner told him that him that there is a three day waiting period. ", "And Homer responded: “What? ", "Three Days? ", "I’m angry now!” ", "So that captures people’s passion and focus on the short term, and it also captures how law and policy can help a lot.”", "\n\n116\n\nLiberal Scientist thinks that concentrated power and wealth should be met with suspicion, not adorationspews:\n\nBack to the subject at hand – why can’t you admit that the “Japan Apology” was a made up story? ", "Even your hero STEVE DOOCY repudiated their own reporting on it on FoxNoise.", "\n\nHere’s Steve Doocy again, in case you missed it above:\n\n“Well,” he continued, “we want to make sure this is very clear. ", "There was never a plan for President Obama to apologize to Japan. ", "We should have been clearer about this, and we’re sorry for any confusion.”", "\n\n117\n\nPuddybud, who read how Mr DISGUSTING \"I live off the net\" all dayspews:\n\nWhy does one need to be black to discuss that clown Herman Cain? ", "Aren’t you colorblind like the rest of the conservative movement, you racist pig?", "\n\nHey you seem to forget Lib UnScientist that rujax already tried that attack.", "\n\nHe too failed miserably. ", "Libtardo msm whities can’t run around and attack Herman Cain because they would be “stooping down” to the same level they claim the Tea Party is. ", "But contratry to their beliefs the real issue is the Tea Party loves Herman Cain. ", "So libtardo MSM have one avenue left to them… Use their “friends” who still occupy the reservation! ", "I named 7 of them. ", "There are many more but 7 is one of God’s perfect numbers!", "\n\n118\n\nPuddybud, who read how Mr DISGUSTING \"I live off the net\" all dayspews:\n\nOnly to point out what an idiot you are. ", "Think of it as me doing you a favor – I’m helping you get onto the correct talking points of the day – clearly you didn’t realize that the whole Japan Apology ™ story had been abandoned already – I’m saving you from making more embarrassing mistakes and helping you catch up to the latest Fox/Beck drivel.", "\n\nI can’t wait for your reference to Frances Fox Piven to appear at any minute now…\n\nI was just getting to that…\n\nRight from her interview on Democracy Now…\n\nI think organized labor is part of this movement. ", "It wants to be part of this movement. ", "But I think organized labor is not itself a movement. ", "Organized labor is its organizations, organizations that have developed over decades, that they’ve used member dues to—they have investments. ", "They have organizations. ", "They are risk-averse. ", "Now, in a way, you can’t blame them for that. ", "You know, they’re responsible for the organization, even though the organization itself is losing numbers and treasury. ", "But the question for me is whether organized labor—not whether it will take the lead, whether it will occupy public spaces, whether it will occupy factories. ", "The question is whether it will support the people who are ready to do it, with its legitimacy and its resources, because we need organized labor to be part of this.", "\n\nShe just about let the cat out of the bag there Lib UnScientist. ", "Using Union Dues to support DUMMOCRAPTIC causes.", "\n\n124\n\nPuddybud, who read how Mr DISGUSTING \"I live off the net\" all dayspews:\n\nUmmm Let’s get one thing crystal clear here Lib UNScientist… I use the libtardo MSM to attack the libtardo MSM. ", "When the libtardo MSM decides to skip over a story like they did for months on Fast and Furious, I visit Fox and their Friends.", "\n\nJust ask the crazed HA databaze arschloch. ", "He has my links broken down. ", "He did that while he could have been looking for a yob! ", "Ask him Lib UnScientist.", "\n\nSo ABC News was my source. ", "Too bad for you!", "\n\n125\n\nPuddybud, who read how Mr DISGUSTING \"I live off the net\" all dayspews:\n\nThe data demonstrates otherwise yet Don Joe will continue to argue against the facts. ", "Libtardo MSM type continue to vote in the 85% percentile for DUMMOCRAPTS and they give their money to DUMMOCRAPTS at the same level percentage!", "\n\nStill waiting for the sycophants to repudiate these FACTS about the libtardo MSM!", "\n\n128\n\nLiberal Scientist thinks that concentrated power and wealth should be met with suspicion, not adorationspews:\n\nI love getting him spinning like this – a Saturday morning guilty pleasure.", "\n\nThe sputtering, and inability/disinclination to focus, the nonsensical “conclusions” and “retorts”, the declarations of success…\n\nit really isn’t right to have so much fun at the expense of the delusional.", "\n\nPuddy, there are medications for this. ", "The voices in your head can be silenced – risperidone, haloperidol, olanzapine…a trained psychiatrist could help you – you only need to make the call…1-866-4CRISIS\n\n129\n\nLiberal Scientist thinks that concentrated power and wealth should be met with suspicion, not adorationspews:\n\nA senior White House official asserts to ABC News that there was never any plan for the president to apologize for Hiroshima. ", "The cable does not state that the idea was from the U.S. Rather, Roos writes that Yabunaka thought that following President Obama’s call earlier that year for a world free of nuclear weapons, anti-nuclear groups would speculate as to whether he would visit Hiroshima. [", "Ed: emphasis mine]\n\nLike I said already, from your own fucking link, dipshit.", "\n\nAnd I’ll repeat Stevey Doooooocy, of FoxNoise:\n\n“Well,” he continued, “we want to make sure this is very clear. ", "There was never a plan for President Obama to apologize to Japan. ", "We should have been clearer about this, and we’re sorry for any confusion.", "”[Ed: my emphasis]\n\nWhat about being schooled don’t you get?", "\n\n134\n\nLiberal Scientist thinks that concentrated power and wealth should be met with suspicion, not adorationspews:\n\nAnd I thought I was doing a good job keeping up with your extremely tangential thinking.", "\n\nRemember this:\n\nWe’d get someone who would not be “The Apologizer in Chief”. ", "Did you just forget the Japanese rejected Barack ObamAA+’s latest apology attempt over WWII?", "\n\nThat would be you, as is this:\n\nOkay so the Japan article may be questionable. ", "So why do I need to refute Fox News. ", "I never used them moron!", "\n\nPud, the fact that you were pushing the Japan Apology ™ story so hard, was because it’s what you do – you’re a sewerpipe for right-wing propaganda, always have been, always will be, it seems. ", "You never fail to disappoint, or to play to type, harping on the latest from the noise machine. ", "That you could find something related at ABC, as opposed to Fox, really isn’t notable, unfortunately – as the strategy goes – “it’s out there” – all Fox or the “liberal” Drudge has to do is mention it and the rest of corporate media follows along, just like you do.", "\n\nSad thing is, as the Japan Apology ™ story illustrates, IT’S ALL BULLSHIT.", "\n\nNotice he hasn’t refuted much in my links.", "\n\nReally now, P-dud, it’s all I’ve done all morning is refute your bullshit – and rather well, I might add, if I do say so myself.", "\n\n141\n\nLiberal Scientist thinks that concentrated power and wealth should be met with suspicion, not adorationspews:\n\nAnd he wants me to play his gotcha game. ", "Notice he hasn’t refuted much in my links.", "\n\nLooking back, you made two links this morning, one to ABC News about Japan Apoolgy ™, and one about Cass Sunstein.", "\n\nWith regard to the former, your statement\n\nOkay so the Japan article may be questionable.", "\n\nI’ll take as a concession that I’ve beaten you to a rhetorical pulp. ", "With regard to the latter, my response was clearly too subtle for you. ", "You do engage in very VERY concrete thinking, and that really limits a normal person’s ability to get through to you – not my fault really, and psychiatry is not my specialty.", "\n\nBut, once again, you’re playing games and making claims about links that just aren’t true. ", "So, to delusional and abusive, let’s add dishonest to your list of attributes.", "\n\n143\n\nPuddybud, who read how Mr DISGUSTING \"I live off the net\" all dayspews:\n\nWRONG again Lib UnScientist… I work all day so I read my news in the morning before I head off to work at 5:45AM and I get my news when I return home after 5PM. ", "I don’t have the luxury of you and other HA libtardos to scan the news all day. ", "I may stop in a Starbucks before work and hit HA with a few more links.", "\n\nI am building things during the day not on my ASS perusing left wrong web sites!", "\n\n145\n\nLiberal Scientist thinks that concentrated power and wealth should be met with suspicion, not adorationspews:\n\nAnd we’re still waiting about 85%+ voting record or the 86%+ giving record of libtardo MSM to DUMMOCRAPTs!", "\n\nReally, how many times do we have to go through this. ", "You come back to this one point (see comment above regarding CONCRETE THINKING), when in the past others and myself have demolished this line of argument about the supposedly liberal ‘MSM’.", "\n\nSee my post here for a fairly comprehensive dismantling of your “argument”.", "\n\nIt is, BTW, another example of you posting a flurry of links, none of which really support your argument. ", "Either you don’t understand the content of what you’re linking to (see ABC link above, debunked), or you’re being actively, affirmatively deceptive.", "\n\nAgain, here we are, at the eternal question prompted by interaction with right wingers: stupid or lying?", "\n\n146\n\nLiberal Scientist thinks that concentrated power and wealth should be met with suspicion, not adorationspews:\n\nI work all day so I read my news in the morning before I head off to work at 5:45AM and I get my news when I return home after 5PM. ", "I don’t have the luxury of you and other HA libtardos to scan the news all day. ", "I may stop in a Starbucks before work and hit HA with a few more links.", "\n\nCry me a fucking river, puddles.", "\n\nI don’t know about anyone else here (aside from RR, whose lifestyle I envy as a lazy rabbit stealing dollars from Republicans on the stock market by day, and chasing little cotton-tailed bunny chicks by night – how do you get a gig like that?), ", "ahem, but I for one work a very demanding job – I just take seriously my responsibility to smack down your vile lies at every opportunity.", "\n\nTa-ta, dipshit.", "\n\n147\n\nPuddybud, who read how Mr DISGUSTING \"I live off the net\" all dayspews:\n\nWith Puddy, it’s likely to extend on to infinity. ", "Puddy ignores the fact that there is such a thing as a conservative Democrat, and Puddy ignores the fact that attempts to discern media bias in actual reporting find no evidence of such bias.", "\n\nSo, now, we get the Herman Cain argument:\n\n“Notice how he weasels out of Herman Cain. ", "Won’t repudiate how the left wrong MSM will not use conservative blacks on their shows.”", "\n\nI guess we have to ignore the fact that, say, Rachel Maddow regularly features Michael Steele on her show. ", "No, what Puddy’s really on about is that Herman Cain accused African Americans of being brainwashed, and the mainstream media are covering the inevitable backlash against his remarks.", "\n\nWhat’s missing, apparently, is any word of conservative African Americans coming to Herman Cain’s defense. ", "But, where, exactly are these conservative African Americans coming to Herman Cain’s defense? ", "Michael Steele telling Herman Cain to get off the book tour?", "\n\nNo media, mainstream or otherwise, is going to talk to someone who has nothing to say. ", "Nevertheless, there are clearly plenty of media outlets where conservative African Americans can respond to Herman Cain’s allegation of brainwashing. ", "Where are they? ", "You can’t find any.", "\n\nSo, the main stream media are “liberal” because they won’t stick a microphone in front of someone who isn’t saying anything!", "\n\nSeriously, this is precisely the kind of reasoning we can expect from someone who’s been willing to argue that Alan Greenspan was a liberal.", "\n\nAt the level of trolldom, and most especialy at the lowest level of self-loathing loons and goatfucking Klowns, these treasonous, hate-filled asswipes are incredibly stupid fucking liars. ", "So the correct answer is actually not offered as a choice, which would “all of the above”.", "\n\nHundreds of wingnut pervs. ", "If they can’t find a kid, these freaks will fuck goats, chickens, horses, washing machines(!) ", "and Lord only knows what else. ", "And that’s only the ones who’ve been busted! ", "I’d think that, if a freak like our self-loather could even momentarily come to his senses, he’d stop his incoherent babbling, hang his damned head in shame for a moment, and then graciously blow his fucking brains out. ", "But no, a loon has no fucking sense.", "\n\nPlease Donate\n\nI appreciate feeling appreciated. ", "Also, money.", "\n\nCurrency:\n\nAmount:\n\nCan’t Bring Yourself to Type the Word “Ass”?", "\n\nEager to share our brilliant political commentary and blunt media criticism, but too genteel to link to horsesass.org? ", "Well, good news, ladies: we also answer to HASeattle.com, because, you know, whatever. ", "You're welcome!", "\n\nSearch HA\n\nFollow Goldy\n\nHA Commenting Policy\n\nIt may be hard to believe from the vile nature of the threads, but yes, we have a commenting policy. ", "Comments containing libel, copyright violations, spam, blatant sock puppetry, and deliberate off-topic trolling are all strictly prohibited, and may be deleted on an entirely arbitrary, sporadic, and selective basis. ", "And repeat offenders may be banned! ", "This is my blog. ", "Life isn’t fair." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0.008032128514056224, 0, 0.003236245954692557, 0, 0.017857142857142856, 0, 0, 0, 0, 0, 0.005076142131979695, 0.01020408163265306, 0, 0, 0, 0, 0.005025125628140704, 0, 0.004761904761904762, 0.007042253521126761, 0.00398406374501992, 0, 0, 0.01056338028169014, 0, 0.002881844380403458, 0, 0.008658008658008658, 0.003676470588235294, 0.007042253521126761, 0.020202020202020204, 0, 0.005714285714285714, 0, 0, 0, 0.011111111111111112, 0, 0, 0, 0, 0.01652892561983471, 0.01, 0.007518796992481203, 0.014705882352941176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.006060606060606061, 0.023809523809523808, 0, 0.0051813471502590676, 0.010752688172043012, 0, 0, 0, 0, 0.007575757575757576, 0.009345794392523364, 0.013513513513513514, 0, 0, 0.011235955056179775, 0, 0.005917159763313609, 0.007692307692307693, 0.0029498525073746312, 0, 0.018518518518518517, 0.00819672131147541, 0, 0, 0.006289308176100629, 0.004424778761061947, 0, 0, 0.002824858757062147, 0.011904761904761904, 0, 0.006369426751592357, 0, 0, 0.0056179775280898875, 0, 0, 0, 0.009615384615384616, 0, 0.015873015873015872, 0.015873015873015872, 0, 0, 0, 0.008771929824561403, 0, 0.012987012987012988, 0, 0, 0, 0, 0.007352941176470588, 0, 0.0045662100456621, 0, 0, 0.008403361344537815, 0, 0, 0.008403361344537815, 0.01652892561983471, 0, 0, 0.005208333333333333, 0.018404907975460124, 0, 0, 0, 0, 0.004310344827586207, 0, 0, 0, 0, 0.006711409395973154, 0, 0, 0, 0, 0, 0.017241379310344827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.004901960784313725, 0, 0, 0, 0.004219409282700422, 0, 0, 0.008695652173913044, 0, 0, 0.01694915254237288, 0, 0.009523809523809525, 0, 0, 0, 0, 0.006329113924050633, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.012578616352201259, 0.01904761904761905, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.003484320557491289, 0.027777777777777776, 0, 0.007407407407407408, 0, 0, 0, 0, 0.01282051282051282, 0.05, 0, 0.0045871559633027525, 0, 0.009615384615384616, 0, 0, 0, 0, 0.0040650406504065045, 0, 0, 0, 0, 0, 0, 0.005681818181818182, 0, 0, 0, 0, 0, 0, 0, 0.01282051282051282, 0.017543859649122806, 0.012987012987012988, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.003937007874015748, 0, 0.01020408163265306, 0, 0, 0, 0.037037037037037035, 0, 0, 0, 0, 0, 0, 0.008333333333333333, 0, 0, 0.0027397260273972603, 0, 0, 0, 0, 0, 0, 0, 0.013793103448275862, 0, 0, 0, 0.007633587786259542, 0, 0, 0.004524886877828055, 0, 0, 0, 0.008658008658008658, 0.003676470588235294, 0.01694915254237288, 0, 0, 0, 0, 0, 0, 0, 0.014925373134328358, 0, 0, 0, 0, 0, 0, 0.037037037037037035, 0.041666666666666664, 0, 0.00975609756097561, 0, 0, 0, 0, 0, 0, 0, 0, 0.0136986301369863, 0.14285714285714285, 0, 0.017543859649122806, 0.024390243902439025, 0.013793103448275862, 0.030864197530864196, 0.0125, 0.0078125, 0.011764705882352941, 0.01282051282051282, 0, 0, 0, 0, 0.025974025974025976, 0, 0, 0, 0.005208333333333333, 0.008547008547008548, 0.006535947712418301, 0.00510204081632653, 0.011235955056179775, 0.007751937984496124, 0.005988023952095809, 0, 0.022727272727272728, 0.016666666666666666, 0.017857142857142856, 0.005263157894736842, 0.007692307692307693, 0, 0.0078125, 0, 0, 0, 0.011764705882352941, 0, 0, 0.05, 0.015384615384615385, 0.015503875968992248, 0.008547008547008548, 0, 0, 0, 0, 0.028985507246376812, 0, 0.027777777777777776, 0.013605442176870748, 0, 0, 0, 0, 0, 0, 0, 0, 0.015873015873015872, 0.05263157894736842, 0.01818181818181818, 0, 0.013333333333333334, 0.02, 0.029411764705882353, 0.011363636363636364, 0.006993006993006993, 0.004830917874396135, 0.004347826086956522, 0, 0.007352941176470588, 0, 0.014705882352941176, 0, 0.015151515151515152, 0.0064516129032258064, 0.018292682926829267, 0.00847457627118644, 0.010752688172043012, 0.011235955056179775, 0, 0.011627906976744186, 0, 0.02702702702702703, 0.008695652173913044, 0.04, 0.005235602094240838, 0.005714285714285714, 0.007168458781362007, 0, 0, 0, 0, 0, 0, 0.011695906432748537, 0, 0, 0, 0.015151515151515152, 0, 0.006369426751592357, 0.0091324200913242, 0, 0.010416666666666666, 0.013422818791946308, 0, 0, 0, 0.017241379310344827, 0.016666666666666666, 0, 0, 0, 0.012295081967213115, 0.011152416356877323, 0.03225806451612903, 0, 0.009433962264150943, 0, 0, 0.013071895424836602, 0, 0.007874015748031496, 0, 0, 0, 0, 0, 0, 0, 0.009345794392523364, 0.02631578947368421, 0.00819672131147541, 0.015151515151515152, 0, 0.006896551724137931, 0, 0.01282051282051282, 0, 0.0136986301369863, 0.012195121951219513, 0.01, 0, 0, 0, 0.003278688524590164, 0.009615384615384616, 0, 0, 0, 0, 0, 0, 0.008333333333333333, 0, 0, 0.014925373134328358, 0.020833333333333332, 0.015625, 0.031496062992125984, 0, 0, 0, 0.041666666666666664, 0.034482758620689655, 0, 0.006024096385542169, 0.006993006993006993, 0.024096385542168676, 0.0051813471502590676, 0, 0, 0.007371007371007371, 0.011152416356877323, 0.012987012987012988, 0.017543859649122806, 0.015151515151515152, 0, 0.016666666666666666, 0.0048543689320388345, 0, 0, 0, 0.02702702702702703, 0, 0, 0, 0.01509433962264151, 0.013157894736842105, 0, 0, 0.006289308176100629, 0, 0.017241379310344827, 0, 0, 0, 0, 0, 0, 0.004149377593360996, 0, 0.014084507042253521, 0, 0.008928571428571428, 0, 0.005291005291005291, 0, 0, 0.006756756756756757, 0, 0.004, 0, 0.014084507042253521, 0, 0, 0, 0, 0, 0, 0.011363636363636364, 0.011363636363636364, 0.01834862385321101, 0.00546448087431694, 0.009174311926605505, 0.010638297872340425, 0.03333333333333333, 0, 0.006666666666666667, 0, 0, 0, 0.007042253521126761, 0.005263157894736842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.005075
5
[ { "analysis_explanation": null, "end": 218, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 213 }, { "analysis_explanation": null, "end": 344, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 339 }, { "analysis_explanation": null, "end": 427, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 422 }, { "analysis_explanation": null, "end": 514, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 505 }, { "analysis_explanation": null, "end": 524, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 519 }, { "analysis_explanation": null, "end": 581, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 575 }, { "analysis_explanation": null, "end": 593, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 586 }, { "analysis_explanation": null, "end": 1074, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1050 }, { "analysis_explanation": null, "end": 1127, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1117 }, { "analysis_explanation": null, "end": 1186, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1163 }, { "analysis_explanation": null, "end": 1370, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1359 }, { "analysis_explanation": null, "end": 1422, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1412 }, { "analysis_explanation": null, "end": 1503, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1499 }, { "analysis_explanation": null, "end": 1797, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1789 }, { "analysis_explanation": null, "end": 1848, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1840 }, { "analysis_explanation": null, "end": 2093, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2089 }, { "analysis_explanation": null, "end": 2110, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2099 }, { "analysis_explanation": null, "end": 2119, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2111 }, { "analysis_explanation": null, "end": 2126, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2120 }, { "analysis_explanation": null, "end": 2232, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2220 }, { "analysis_explanation": null, "end": 2358, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2344 }, { "analysis_explanation": null, "end": 2386, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2378 }, { "analysis_explanation": null, "end": 2424, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2406 }, { "analysis_explanation": null, "end": 2558, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2550 }, { "analysis_explanation": null, "end": 2988, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2973 }, { "analysis_explanation": null, "end": 3269, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3253 }, { "analysis_explanation": null, "end": 3410, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3397 }, { "analysis_explanation": null, "end": 3528, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3520 }, { "analysis_explanation": null, "end": 3586, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3568 }, { "analysis_explanation": null, "end": 3598, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3591 }, { "analysis_explanation": null, "end": 3636, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3632 }, { "analysis_explanation": null, "end": 3651, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3644 }, { "analysis_explanation": null, "end": 3678, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3671 }, { "analysis_explanation": null, "end": 3717, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3702 }, { "analysis_explanation": null, "end": 4009, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3995 }, { "analysis_explanation": null, "end": 4060, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4050 }, { "analysis_explanation": null, "end": 4264, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4259 }, { "analysis_explanation": null, "end": 4284, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4269 }, { "analysis_explanation": null, "end": 4328, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4311 }, { "analysis_explanation": null, "end": 4362, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4353 }, { "analysis_explanation": null, "end": 4420, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4403 }, { "analysis_explanation": null, "end": 4426, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4421 }, { "analysis_explanation": null, "end": 4651, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4603 }, { "analysis_explanation": null, "end": 4669, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4659 }, { "analysis_explanation": null, "end": 4681, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4670 }, { "analysis_explanation": null, "end": 4704, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4699 }, { "analysis_explanation": null, "end": 5273, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5261 }, { "analysis_explanation": null, "end": 5468, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5460 }, { "analysis_explanation": null, "end": 5623, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5618 }, { "analysis_explanation": null, "end": 5646, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5635 }, { "analysis_explanation": null, "end": 5720, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5710 }, { "analysis_explanation": null, "end": 5783, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5770 }, { "analysis_explanation": null, "end": 5797, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5786 }, { "analysis_explanation": null, "end": 5853, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5845 }, { "analysis_explanation": null, "end": 5929, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5925 }, { "analysis_explanation": null, "end": 6000, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5995 }, { "analysis_explanation": null, "end": 6141, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6131 }, { "analysis_explanation": null, "end": 6289, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6285 }, { "analysis_explanation": null, "end": 6366, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6362 }, { "analysis_explanation": null, "end": 6413, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6409 }, { "analysis_explanation": null, "end": 6435, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6424 }, { "analysis_explanation": null, "end": 6680, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6676 }, { "analysis_explanation": null, "end": 6723, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6719 }, { "analysis_explanation": null, "end": 6886, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6876 }, { "analysis_explanation": null, "end": 6927, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6916 }, { "analysis_explanation": null, "end": 6951, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6940 }, { "analysis_explanation": null, "end": 6991, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6968 }, { "analysis_explanation": null, "end": 7005, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6992 }, { "analysis_explanation": null, "end": 7039, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7026 }, { "analysis_explanation": null, "end": 7073, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7068 }, { "analysis_explanation": null, "end": 7142, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7129 }, { "analysis_explanation": null, "end": 7661, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7652 }, { "analysis_explanation": null, "end": 7819, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7795 }, { "analysis_explanation": null, "end": 7863, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7853 }, { "analysis_explanation": null, "end": 7956, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7944 }, { "analysis_explanation": null, "end": 7990, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7979 }, { "analysis_explanation": null, "end": 8338, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8336 }, { "analysis_explanation": null, "end": 8545, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8537 }, { "analysis_explanation": null, "end": 8643, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8635 }, { "analysis_explanation": null, "end": 8976, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8970 }, { "analysis_explanation": null, "end": 9038, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9028 }, { "analysis_explanation": null, "end": 9131, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9120 }, { "analysis_explanation": null, "end": 9285, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9278 }, { "analysis_explanation": null, "end": 9304, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9299 }, { "analysis_explanation": null, "end": 9319, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9315 }, { "analysis_explanation": null, "end": 9662, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9651 }, { "analysis_explanation": null, "end": 9688, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9677 }, { "analysis_explanation": null, "end": 9747, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9741 }, { "analysis_explanation": null, "end": 9787, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9782 }, { "analysis_explanation": null, "end": 9835, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9826 }, { "analysis_explanation": null, "end": 9907, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9898 }, { "analysis_explanation": null, "end": 10016, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10010 }, { "analysis_explanation": null, "end": 10101, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10095 }, { "analysis_explanation": null, "end": 10194, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10181 }, { "analysis_explanation": null, "end": 10364, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10353 }, { "analysis_explanation": null, "end": 10421, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10407 }, { "analysis_explanation": null, "end": 10428, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10423 }, { "analysis_explanation": null, "end": 10440, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10433 }, { "analysis_explanation": null, "end": 10472, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10461 }, { "analysis_explanation": null, "end": 10544, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10534 }, { "analysis_explanation": null, "end": 10608, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10602 }, { "analysis_explanation": null, "end": 10710, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10704 }, { "analysis_explanation": null, "end": 10740, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10736 }, { "analysis_explanation": null, "end": 10937, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10926 }, { "analysis_explanation": null, "end": 10987, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10976 }, { "analysis_explanation": null, "end": 11114, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11110 }, { "analysis_explanation": null, "end": 11350, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11344 }, { "analysis_explanation": null, "end": 11645, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11633 }, { "analysis_explanation": null, "end": 11680, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11670 }, { "analysis_explanation": null, "end": 11923, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11906 }, { "analysis_explanation": null, "end": 12220, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12208 }, { "analysis_explanation": null, "end": 12265, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12259 }, { "analysis_explanation": null, "end": 12344, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12338 }, { "analysis_explanation": null, "end": 12363, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12354 }, { "analysis_explanation": null, "end": 12383, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12377 }, { "analysis_explanation": null, "end": 12402, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12396 }, { "analysis_explanation": null, "end": 12776, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12759 }, { "analysis_explanation": null, "end": 12858, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12849 }, { "analysis_explanation": null, "end": 12911, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12902 }, { "analysis_explanation": null, "end": 12927, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12916 }, { "analysis_explanation": null, "end": 12965, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12961 }, { "analysis_explanation": null, "end": 13029, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13015 }, { "analysis_explanation": null, "end": 13126, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13109 }, { "analysis_explanation": null, "end": 13137, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13131 }, { "analysis_explanation": null, "end": 13145, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13139 }, { "analysis_explanation": null, "end": 13268, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13262 }, { "analysis_explanation": null, "end": 13531, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13523 }, { "analysis_explanation": null, "end": 13562, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13557 }, { "analysis_explanation": null, "end": 13845, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13836 }, { "analysis_explanation": null, "end": 14025, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14013 }, { "analysis_explanation": null, "end": 14675, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14670 }, { "analysis_explanation": null, "end": 14960, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14953 }, { "analysis_explanation": null, "end": 15018, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15008 }, { "analysis_explanation": null, "end": 15032, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15020 }, { "analysis_explanation": null, "end": 15076, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15066 }, { "analysis_explanation": null, "end": 15128, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15121 }, { "analysis_explanation": null, "end": 15307, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15300 }, { "analysis_explanation": null, "end": 15640, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15634 }, { "analysis_explanation": null, "end": 15741, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15736 }, { "analysis_explanation": null, "end": 15771, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15766 }, { "analysis_explanation": null, "end": 15854, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15841 }, { "analysis_explanation": null, "end": 15894, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15884 }, { "analysis_explanation": null, "end": 15943, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15936 }, { "analysis_explanation": null, "end": 15959, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15948 }, { "analysis_explanation": null, "end": 16019, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16014 }, { "analysis_explanation": null, "end": 16072, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16067 }, { "analysis_explanation": null, "end": 16186, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16179 }, { "analysis_explanation": null, "end": 16229, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16221 }, { "analysis_explanation": null, "end": 16286, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16279 }, { "analysis_explanation": null, "end": 16353, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16346 }, { "analysis_explanation": null, "end": 16543, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16536 }, { "analysis_explanation": null, "end": 16561, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16546 }, { "analysis_explanation": null, "end": 16599, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16592 }, { "analysis_explanation": null, "end": 16653, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16647 }, { "analysis_explanation": null, "end": 16670, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16665 }, { "analysis_explanation": null, "end": 16742, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16725 }, { "analysis_explanation": null, "end": 16792, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16777 }, { "analysis_explanation": null, "end": 17007, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17000 }, { "analysis_explanation": null, "end": 17053, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17036 }, { "analysis_explanation": null, "end": 17077, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17070 }, { "analysis_explanation": null, "end": 17275, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17263 }, { "analysis_explanation": null, "end": 17602, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17596 }, { "analysis_explanation": null, "end": 17647, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17637 }, { "analysis_explanation": null, "end": 17758, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17746 }, { "analysis_explanation": null, "end": 17837, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17825 }, { "analysis_explanation": null, "end": 17903, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17898 }, { "analysis_explanation": null, "end": 18207, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18203 }, { "analysis_explanation": null, "end": 18214, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18210 }, { "analysis_explanation": null, "end": 18276, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18272 }, { "analysis_explanation": null, "end": 18367, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18361 }, { "analysis_explanation": null, "end": 18388, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18372 }, { "analysis_explanation": null, "end": 18477, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18470 }, { "analysis_explanation": null, "end": 18564, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18559 }, { "analysis_explanation": null, "end": 18572, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18565 }, { "analysis_explanation": null, "end": 18674, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18663 }, { "analysis_explanation": null, "end": 18726, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18719 }, { "analysis_explanation": null, "end": 18763, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18759 }, { "analysis_explanation": null, "end": 18860, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18856 }, { "analysis_explanation": null, "end": 19041, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19037 }, { "analysis_explanation": null, "end": 19195, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19191 }, { "analysis_explanation": null, "end": 19246, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19233 }, { "analysis_explanation": null, "end": 19273, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19261 }, { "analysis_explanation": null, "end": 19647, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19635 }, { "analysis_explanation": null, "end": 19674, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19667 }, { "analysis_explanation": null, "end": 19831, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19815 }, { "analysis_explanation": null, "end": 19964, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19962 }, { "analysis_explanation": null, "end": 19968, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19966 }, { "analysis_explanation": null, "end": 20297, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20293 }, { "analysis_explanation": null, "end": 20327, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20320 }, { "analysis_explanation": null, "end": 21569, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21556 }, { "analysis_explanation": null, "end": 21725, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21720 }, { "analysis_explanation": null, "end": 22156, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22149 }, { "analysis_explanation": null, "end": 22197, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22190 }, { "analysis_explanation": null, "end": 22419, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22401 }, { "analysis_explanation": null, "end": 22490, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22478 }, { "analysis_explanation": null, "end": 22504, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22494 }, { "analysis_explanation": null, "end": 22550, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22541 }, { "analysis_explanation": null, "end": 23419, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23412 }, { "analysis_explanation": null, "end": 23861, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23854 }, { "analysis_explanation": null, "end": 24039, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24027 }, { "analysis_explanation": null, "end": 24212, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24201 }, { "analysis_explanation": null, "end": 26103, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26091 }, { "analysis_explanation": null, "end": 26226, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26218 }, { "analysis_explanation": null, "end": 26477, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26469 }, { "analysis_explanation": null, "end": 26780, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26772 }, { "analysis_explanation": null, "end": 26927, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26922 }, { "analysis_explanation": null, "end": 27210, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27197 }, { "analysis_explanation": null, "end": 27250, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27239 }, { "analysis_explanation": null, "end": 27586, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27581 }, { "analysis_explanation": null, "end": 27642, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27638 }, { "analysis_explanation": null, "end": 28255, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28251 }, { "analysis_explanation": null, "end": 29600, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29584 }, { "analysis_explanation": null, "end": 29620, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29617 }, { "analysis_explanation": null, "end": 29818, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29814 }, { "analysis_explanation": null, "end": 29958, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 29954 }, { "analysis_explanation": null, "end": 30426, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30421 }, { "analysis_explanation": null, "end": 30473, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30460 }, { "analysis_explanation": null, "end": 30541, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30532 }, { "analysis_explanation": null, "end": 30912, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 30903 }, { "analysis_explanation": null, "end": 31337, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31327 }, { "analysis_explanation": null, "end": 31442, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31437 }, { "analysis_explanation": null, "end": 31453, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31446 }, { "analysis_explanation": null, "end": 32042, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32035 }, { "analysis_explanation": null, "end": 32206, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32197 }, { "analysis_explanation": null, "end": 32229, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32225 }, { "analysis_explanation": null, "end": 32331, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32327 }, { "analysis_explanation": null, "end": 32385, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32375 }, { "analysis_explanation": null, "end": 32493, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32489 }, { "analysis_explanation": null, "end": 32527, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32523 }, { "analysis_explanation": null, "end": 32585, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32581 }, { "analysis_explanation": null, "end": 32595, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32587 }, { "analysis_explanation": null, "end": 32668, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32657 }, { "analysis_explanation": null, "end": 33621, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33609 }, { "analysis_explanation": null, "end": 33816, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 33808 }, { "analysis_explanation": null, "end": 34067, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34055 }, { "analysis_explanation": null, "end": 34329, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34325 }, { "analysis_explanation": null, "end": 34586, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34569 }, { "analysis_explanation": null, "end": 34643, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34632 }, { "analysis_explanation": null, "end": 34853, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34849 }, { "analysis_explanation": null, "end": 34942, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34934 }, { "analysis_explanation": null, "end": 35154, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35134 }, { "analysis_explanation": null, "end": 35477, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35458 }, { "analysis_explanation": null, "end": 35494, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35490 }, { "analysis_explanation": null, "end": 35529, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35519 }, { "analysis_explanation": null, "end": 35579, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35569 }, { "analysis_explanation": null, "end": 35599, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35595 }, { "analysis_explanation": null, "end": 35692, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35677 }, { "analysis_explanation": null, "end": 35718, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35705 }, { "analysis_explanation": null, "end": 35781, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 35773 }, { "analysis_explanation": null, "end": 36040, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36030 }, { "analysis_explanation": null, "end": 36058, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36042 }, { "analysis_explanation": null, "end": 36073, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36060 }, { "analysis_explanation": null, "end": 36087, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36075 }, { "analysis_explanation": null, "end": 36103, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36092 }, { "analysis_explanation": null, "end": 36143, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36136 }, { "analysis_explanation": null, "end": 36208, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36198 }, { "analysis_explanation": null, "end": 36378, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36373 }, { "analysis_explanation": null, "end": 36432, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36426 }, { "analysis_explanation": null, "end": 36471, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36460 }, { "analysis_explanation": null, "end": 36573, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36555 }, { "analysis_explanation": null, "end": 36645, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36641 }, { "analysis_explanation": null, "end": 36712, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36704 }, { "analysis_explanation": null, "end": 36744, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36740 }, { "analysis_explanation": null, "end": 36778, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36774 }, { "analysis_explanation": null, "end": 36786, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36782 }, { "analysis_explanation": null, "end": 36805, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36793 }, { "analysis_explanation": null, "end": 36816, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36810 }, { "analysis_explanation": null, "end": 36845, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 36841 }, { "analysis_explanation": null, "end": 37045, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37038 }, { "analysis_explanation": null, "end": 37072, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37064 }, { "analysis_explanation": null, "end": 37102, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37096 }, { "analysis_explanation": null, "end": 37120, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37114 }, { "analysis_explanation": null, "end": 37205, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37200 }, { "analysis_explanation": null, "end": 37294, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37277 }, { "analysis_explanation": null, "end": 37301, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37296 }, { "analysis_explanation": null, "end": 37331, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37325 }, { "analysis_explanation": null, "end": 37583, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37572 }, { "analysis_explanation": null, "end": 37601, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37596 }, { "analysis_explanation": null, "end": 37692, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37685 }, { "analysis_explanation": null, "end": 37710, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37702 }, { "analysis_explanation": null, "end": 37745, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37739 }, { "analysis_explanation": null, "end": 37769, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37764 }, { "analysis_explanation": null, "end": 37839, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37828 }, { "analysis_explanation": null, "end": 37934, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37927 }, { "analysis_explanation": null, "end": 37960, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37955 }, { "analysis_explanation": null, "end": 37978, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37963 }, { "analysis_explanation": null, "end": 37988, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 37983 }, { "analysis_explanation": null, "end": 38013, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38004 }, { "analysis_explanation": null, "end": 38069, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38065 }, { "analysis_explanation": null, "end": 38102, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38094 }, { "analysis_explanation": null, "end": 38139, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38133 }, { "analysis_explanation": null, "end": 38205, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38198 }, { "analysis_explanation": null, "end": 38338, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38326 }, { "analysis_explanation": null, "end": 38512, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38507 }, { "analysis_explanation": null, "end": 38530, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38525 }, { "analysis_explanation": null, "end": 38583, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38577 }, { "analysis_explanation": null, "end": 38768, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38763 }, { "analysis_explanation": null, "end": 38968, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 38959 }, { "analysis_explanation": null, "end": 39045, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39040 }, { "analysis_explanation": null, "end": 39549, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39542 }, { "analysis_explanation": null, "end": 39735, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39729 }, { "analysis_explanation": null, "end": 39843, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39837 }, { "analysis_explanation": null, "end": 39964, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 39955 }, { "analysis_explanation": null, "end": 40034, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40023 }, { "analysis_explanation": null, "end": 40055, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40049 }, { "analysis_explanation": null, "end": 40081, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40069 }, { "analysis_explanation": null, "end": 40259, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40255 }, { "analysis_explanation": null, "end": 40319, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40307 }, { "analysis_explanation": null, "end": 40388, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40379 }, { "analysis_explanation": null, "end": 40471, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40458 }, { "analysis_explanation": null, "end": 40716, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40710 }, { "analysis_explanation": null, "end": 40816, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40797 }, { "analysis_explanation": null, "end": 40928, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40917 }, { "analysis_explanation": null, "end": 40941, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 40930 }, { "analysis_explanation": null, "end": 41226, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41215 }, { "analysis_explanation": null, "end": 41356, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41349 }, { "analysis_explanation": null, "end": 41659, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41654 }, { "analysis_explanation": null, "end": 41715, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41706 }, { "analysis_explanation": null, "end": 41731, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41727 }, { "analysis_explanation": null, "end": 41746, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41741 }, { "analysis_explanation": null, "end": 41832, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41827 }, { "analysis_explanation": null, "end": 41858, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41849 }, { "analysis_explanation": null, "end": 41925, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 41920 }, { "analysis_explanation": null, "end": 42172, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42167 }, { "analysis_explanation": null, "end": 42480, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42474 }, { "analysis_explanation": null, "end": 42504, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42496 }, { "analysis_explanation": null, "end": 42550, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42540 }, { "analysis_explanation": null, "end": 42656, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42648 }, { "analysis_explanation": null, "end": 42740, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42729 }, { "analysis_explanation": null, "end": 42845, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42834 }, { "analysis_explanation": null, "end": 43018, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43013 }, { "analysis_explanation": null, "end": 43037, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43025 }, { "analysis_explanation": null, "end": 43056, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43048 }, { "analysis_explanation": null, "end": 43169, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43157 }, { "analysis_explanation": null, "end": 43185, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43181 }, { "analysis_explanation": null, "end": 43362, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43357 }, { "analysis_explanation": null, "end": 43444, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43439 }, { "analysis_explanation": null, "end": 43494, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43483 }, { "analysis_explanation": null, "end": 43544, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43531 }, { "analysis_explanation": null, "end": 43612, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43601 }, { "analysis_explanation": null, "end": 43946, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43941 }, { "analysis_explanation": null, "end": 43980, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 43969 }, { "analysis_explanation": null, "end": 44281, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44276 }, { "analysis_explanation": null, "end": 44626, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44616 }, { "analysis_explanation": null, "end": 44755, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44753 }, { "analysis_explanation": null, "end": 44932, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 44922 }, { "analysis_explanation": null, "end": 45147, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45142 }, { "analysis_explanation": null, "end": 45169, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45164 }, { "analysis_explanation": null, "end": 45571, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45558 }, { "analysis_explanation": null, "end": 45731, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45714 }, { "analysis_explanation": null, "end": 45746, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45733 }, { "analysis_explanation": null, "end": 45753, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 45748 }, { "analysis_explanation": null, "end": 46044, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46030 }, { "analysis_explanation": null, "end": 46048, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46046 }, { "analysis_explanation": null, "end": 46068, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46063 }, { "analysis_explanation": null, "end": 46078, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46069 }, { "analysis_explanation": null, "end": 46100, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46095 }, { "analysis_explanation": null, "end": 46133, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46125 }, { "analysis_explanation": null, "end": 46197, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46192 }, { "analysis_explanation": null, "end": 46216, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46207 }, { "analysis_explanation": null, "end": 46240, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46238 }, { "analysis_explanation": null, "end": 46322, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46313 }, { "analysis_explanation": null, "end": 46337, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46333 }, { "analysis_explanation": null, "end": 46370, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46364 }, { "analysis_explanation": null, "end": 46421, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46406 }, { "analysis_explanation": null, "end": 46470, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46455 }, { "analysis_explanation": null, "end": 46488, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46480 }, { "analysis_explanation": null, "end": 46533, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46528 }, { "analysis_explanation": null, "end": 46552, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46543 }, { "analysis_explanation": null, "end": 46662, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46653 }, { "analysis_explanation": null, "end": 46788, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 46780 }, { "analysis_explanation": null, "end": 47455, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47446 }, { "analysis_explanation": null, "end": 47513, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47509 }, { "analysis_explanation": null, "end": 47526, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47522 }, { "analysis_explanation": null, "end": 47586, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47581 }, { "analysis_explanation": null, "end": 47611, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47594 }, { "analysis_explanation": null, "end": 47723, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47714 }, { "analysis_explanation": null, "end": 47729, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47727 }, { "analysis_explanation": null, "end": 47775, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47762 }, { "analysis_explanation": null, "end": 47812, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47799 }, { "analysis_explanation": null, "end": 47945, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47927 }, { "analysis_explanation": null, "end": 48056, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48041 }, { "analysis_explanation": null, "end": 48115, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48102 }, { "analysis_explanation": null, "end": 48187, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48181 }, { "analysis_explanation": null, "end": 48230, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48217 }, { "analysis_explanation": null, "end": 48496, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48478 }, { "analysis_explanation": null, "end": 48846, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48837 }, { "analysis_explanation": null, "end": 48901, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 48891 }, { "analysis_explanation": null, "end": 49277, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49272 }, { "analysis_explanation": null, "end": 49346, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49335 }, { "analysis_explanation": null, "end": 49490, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49485 }, { "analysis_explanation": null, "end": 49512, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49507 }, { "analysis_explanation": null, "end": 49731, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49720 }, { "analysis_explanation": null, "end": 49977, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49966 }, { "analysis_explanation": null, "end": 50143, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50132 }, { "analysis_explanation": null, "end": 50542, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50535 }, { "analysis_explanation": null, "end": 50592, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50587 }, { "analysis_explanation": null, "end": 50800, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50783 }, { "analysis_explanation": null, "end": 50824, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 50814 }, { "analysis_explanation": null, "end": 51130, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51123 }, { "analysis_explanation": null, "end": 52104, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52098 }, { "analysis_explanation": null, "end": 52137, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52134 }, { "analysis_explanation": null, "end": 52475, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52468 }, { "analysis_explanation": null, "end": 52910, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52902 }, { "analysis_explanation": null, "end": 52918, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 52911 }, { "analysis_explanation": null, "end": 53147, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53142 }, { "analysis_explanation": null, "end": 53586, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53577 }, { "analysis_explanation": null, "end": 53644, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53640 }, { "analysis_explanation": null, "end": 53657, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53653 }, { "analysis_explanation": null, "end": 53717, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53712 }, { "analysis_explanation": null, "end": 53742, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53725 }, { "analysis_explanation": null, "end": 53854, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53845 }, { "analysis_explanation": null, "end": 53860, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53858 }, { "analysis_explanation": null, "end": 53968, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 53952 }, { "analysis_explanation": null, "end": 54090, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54085 }, { "analysis_explanation": null, "end": 54112, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54107 }, { "analysis_explanation": null, "end": 54193, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54191 }, { "analysis_explanation": null, "end": 54520, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54510 }, { "analysis_explanation": null, "end": 54564, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54556 }, { "analysis_explanation": null, "end": 54580, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54574 }, { "analysis_explanation": null, "end": 54674, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54669 }, { "analysis_explanation": null, "end": 54811, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 54806 }, { "analysis_explanation": null, "end": 55206, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55203 }, { "analysis_explanation": null, "end": 55346, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55341 }, { "analysis_explanation": null, "end": 55487, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55476 }, { "analysis_explanation": null, "end": 55812, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55800 }, { "analysis_explanation": null, "end": 55880, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55867 }, { "analysis_explanation": null, "end": 55942, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 55937 }, { "analysis_explanation": null, "end": 56775, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56768 }, { "analysis_explanation": null, "end": 56884, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 56877 }, { "analysis_explanation": null, "end": 58159, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58152 }, { "analysis_explanation": null, "end": 58391, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58380 }, { "analysis_explanation": null, "end": 58418, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58415 }, { "analysis_explanation": null, "end": 58474, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58469 }, { "analysis_explanation": null, "end": 58799, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58794 }, { "analysis_explanation": null, "end": 58870, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58862 }, { "analysis_explanation": null, "end": 58881, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 58876 }, { "analysis_explanation": null, "end": 59017, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59006 }, { "analysis_explanation": null, "end": 59070, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59059 }, { "analysis_explanation": null, "end": 59220, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59207 }, { "analysis_explanation": null, "end": 59254, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59240 }, { "analysis_explanation": null, "end": 59282, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59277 }, { "analysis_explanation": null, "end": 59320, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59309 }, { "analysis_explanation": null, "end": 59346, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59329 }, { "analysis_explanation": null, "end": 59525, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59508 }, { "analysis_explanation": null, "end": 59547, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59536 }, { "analysis_explanation": null, "end": 59619, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59602 }, { "analysis_explanation": null, "end": 59641, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59630 }, { "analysis_explanation": null, "end": 59667, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59653 }, { "analysis_explanation": null, "end": 59687, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59676 }, { "analysis_explanation": null, "end": 59893, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59876 }, { "analysis_explanation": null, "end": 59922, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59909 }, { "analysis_explanation": null, "end": 60237, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 60223 }, { "analysis_explanation": null, "end": 61230, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.85, "start": 61217 }, { "analysis_explanation": null, "end": 26214, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "DateRecognizer_140094861343904", "recognizer_name": "DateRecognizer" }, "score": 0.6, "start": 26204 }, { "analysis_explanation": null, "end": 2348, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2344 }, { "analysis_explanation": null, "end": 2943, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2939 }, { "analysis_explanation": null, "end": 3193, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3189 }, { "analysis_explanation": null, "end": 3937, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3933 }, { "analysis_explanation": null, "end": 29422, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 29410 }, { "analysis_explanation": null, "end": 47984, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 47965 }, { "analysis_explanation": null, "end": 61288, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 61275 }, { "analysis_explanation": null, "end": 14099, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 14096 }, { "analysis_explanation": null, "end": 34691, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 34679 }, { "analysis_explanation": null, "end": 40081, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 40069 }, { "analysis_explanation": null, "end": 48660, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 48648 }, { "analysis_explanation": null, "end": 51830, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 51818 }, { "analysis_explanation": null, "end": 17, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "DateRecognizer_140094861343904", "recognizer_name": "DateRecognizer" }, "score": 0.1, "start": 12 }, { "analysis_explanation": null, "end": 34072, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "DateRecognizer_140094861343904", "recognizer_name": "DateRecognizer" }, "score": 0.1, "start": 34068 } ]
[ "NBA depth charts show each team's regular starters and key backups, in order of how much they tend to play. ", "The InsideHoops.com NBA depth charts tend to ignore minor rotation changes that aren't expected to last more than a week or so. ", "We update these regularly, but not every game or two. ", "NBA depth charts are especially useful for fantasy basketball players." ]
{ "pile_set_name": "Pile-CC" }
[ 0.009259259259259259, 0, 0, 0.014285714285714285 ]
0.005886
5
[ { "analysis_explanation": null, "end": 228, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 212 }, { "analysis_explanation": null, "end": 127, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 112 } ]
[ "Daisy Hay\n\nDaisy Hay is Associate Professor in English Literature and Life Writing at the University of Exeter and an author of non-fiction. ", "Hay was elected a fellow of the Royal Society of Literature in 2018.", "\n\nCareer \nHay's research interests are in late eighteenth- and early-to-mid nineteenth-century literature in Britain, focusing on the intersections of literature, history and politics. ", "\n\nShe was a Bye-Fellow at Murray Edwards College, Cambridge from 2006 to 2009, and the Alistair Horne Fellow at St Antony's College, Oxford from 2009 to 2010. ", "\n\nIn 2014, Hay was selected as one of the BBC Radio 3 and the Arts and Humanities Research Council New Generation Thinkers, a group of ten academics from eight universities chosen to turn their academic ideas into BBC radio and television programmes. ", "Hay's broadcast proposal was on how Benjamin Disraeli changed politics, by using his private life in a public way to win votes, and was based on Hay's biography of Disraeli and his wife Mary Anne Disraeli.", "\n\nAwards \nHay was awarded the Rose Mary Crawshay Prize for literary scholarship by the British Academy, for her first book Young Romantics: The Shelleys, Byron and Other Tangled Lives, published in 2010. ", "In 2012 she was awarded a fellowship at the Radcliffe Institute for Advanced Study at Harvard University.", "\n\nIn 2016 Hay won the Somerset Maugham Award for her second book Mr & Mrs Disraeli – A Strange Romance, a biography of the politician Benjamin Disraeli and his wife Mary Anne Disraeli. ", "In the same year, she received a Philip Leverhulme Prize, an award recognising researchers with outstanding and internationally recognised work. ", "Hay used the award to write a research project examining the emergence of English Romanticism.", "\n\nHay was elected a fellow of the Royal Society of Literature in 2018, as one of the RSL's ‘40 under 40’, a group of forty academics under the age of forty honoured for their achievements as younger writers.", "\n\nPublications \nHay is the author of two published non-fiction books. ", "Her first book, Young Romantics: The Shelleys, Byron and Other Tangled Lives, was published in 2010 by Bloomsbury.", "\n\nHay's second book, Mr and Mrs Disraeli: A Strange Romance, published in 2015 by Chatto and Windus, draws on Mary Anne Disraeli's collection of letters from the Disraeli collection at Oxford's Bodleian Library, to trace the courtship and marriage of Mary Anne and her husband Benjamin Disraeli.", "\n\nHay's third book will be published in September 2018, titled The Making of Mary Shelley’s Frankenstein.", "\n\nReferences \n\n \n\nCategory:Year of birth missing (living people)\nCategory:Women academics\nCategory:Fellows of the Royal Society of Literature\nCategory:British non-fiction writers\nCategory:British academics\nCategory:Academics of the University of Exeter\nCategory:Living people" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.014184397163120567, 0.014705882352941176, 0, 0.025157232704402517, 0.01195219123505976, 0.01951219512195122, 0.004901960784313725, 0.01904761904761905, 0.010810810810810811, 0.006896551724137931, 0, 0.004830917874396135, 0, 0.017543859649122806, 0.020338983050847456, 0, 0.007272727272727273 ]
0.010421
5
[ { "analysis_explanation": null, "end": 20, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 54, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 47 }, { "analysis_explanation": null, "end": 208, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 204 }, { "analysis_explanation": null, "end": 266, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 250 }, { "analysis_explanation": null, "end": 302, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284 }, { "analysis_explanation": null, "end": 324, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 317 }, { "analysis_explanation": null, "end": 450, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 441 }, { "analysis_explanation": null, "end": 468, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 456 }, { "analysis_explanation": null, "end": 492, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 478 }, { "analysis_explanation": null, "end": 540, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 536 }, { "analysis_explanation": null, "end": 548, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 544 }, { "analysis_explanation": null, "end": 557, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 553 }, { "analysis_explanation": null, "end": 562, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 559 }, { "analysis_explanation": null, "end": 802, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 799 }, { "analysis_explanation": null, "end": 852, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 835 }, { "analysis_explanation": null, "end": 947, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 944 }, { "analysis_explanation": null, "end": 971, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 963 }, { "analysis_explanation": null, "end": 1003, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 985 }, { "analysis_explanation": null, "end": 1205, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1201 }, { "analysis_explanation": null, "end": 1214, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1210 }, { "analysis_explanation": null, "end": 1320, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1316 }, { "analysis_explanation": null, "end": 1349, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1333 }, { "analysis_explanation": null, "end": 1393, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1385 }, { "analysis_explanation": null, "end": 1462, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1445 }, { "analysis_explanation": null, "end": 1494, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1476 }, { "analysis_explanation": null, "end": 1512, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1499 }, { "analysis_explanation": null, "end": 1803, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1799 }, { "analysis_explanation": null, "end": 2109, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2105 }, { "analysis_explanation": null, "end": 2128, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2125 }, { "analysis_explanation": null, "end": 2163, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2151 }, { "analysis_explanation": null, "end": 2201, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2197 }, { "analysis_explanation": null, "end": 2211, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2205 }, { "analysis_explanation": null, "end": 2253, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2233 }, { "analysis_explanation": null, "end": 2293, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2285 }, { "analysis_explanation": null, "end": 2383, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2374 }, { "analysis_explanation": null, "end": 2417, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2400 }, { "analysis_explanation": null, "end": 2422, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2419 }, { "analysis_explanation": null, "end": 2471, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2457 }, { "analysis_explanation": null, "end": 2521, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2509 }, { "analysis_explanation": null, "end": 2679, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2672 }, { "analysis_explanation": null, "end": 2716, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2709 } ]
[ "Genetic study of Coris julis (Osteichthyes, Perciformes, Labridae) evolutionary history and dispersal abilities.", "\nMicrosatellite markers have been used to study the genetic variability of rainbow wrasse (Coris julis) Mediterranean and Atlantic populations. ", "Differentiation tests failed to reveal any significant genetic differentiation among samples from continental Portugal and the Azores, despite more than 1800 km of geographical separation. ", "Preliminary results tended to indicate a significant genetic differentiation among Atlantic and Mediterranean samples. ", "It also supported the specific status of Cape Verde populations (Coris atlantica). ", "We compare these results with previous mtDNA analyses and propose a biogeographic scenario that could explain our results." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.008928571428571428, 0, 0.005291005291005291, 0, 0, 0 ]
0.00237
5
[ { "analysis_explanation": null, "end": 28, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17 }, { "analysis_explanation": null, "end": 65, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 57 }, { "analysis_explanation": null, "end": 214, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 203 }, { "analysis_explanation": null, "end": 229, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 216 }, { "analysis_explanation": null, "end": 242, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 234 }, { "analysis_explanation": null, "end": 374, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 366 }, { "analysis_explanation": null, "end": 389, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 383 }, { "analysis_explanation": null, "end": 536, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 528 }, { "analysis_explanation": null, "end": 554, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 541 }, { "analysis_explanation": null, "end": 615, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 605 }, { "analysis_explanation": null, "end": 644, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 629 } ]