Skip to content

Instantly share code, notes, and snippets.

@dannguyen
Last active February 10, 2021 01:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dannguyen/92990a177d511bdd055ec3817da85238 to your computer and use it in GitHub Desktop.
Save dannguyen/92990a177d511bdd055ec3817da85238 to your computer and use it in GitHub Desktop.
i only created this gist to respond to someone responding to my older aws-transcribe-via-cli gist

Amazon Transcribe (real-time) streaming sample, with speakers identified (2020-10-09)

Note: This gist refers this older gist that shows the AWS transcribe API: https://gist.github.com/dannguyen/9b8c51f5bb853209f19f1a0f18f0f74c

I went into the AWS console for Transcription, which has an interface for real-time transcription here: https://console.aws.amazon.com/transcribe/home?region=us-east-1#realTimeTranscription

Then I used my phone to play out this snippet of the 2008 VP presidential debate, featuring speech from Biden and Palin: https://twitter.com/dancow/status/1313951588428517385

The result is the JSON attached below: transcript.json

The interactive panel looks like this btw:

image

Sample of the JSON

Even for a minute of speech, transcript.json is HUGE. The root object appears to be a big list of dicts, and each dict lookling like this:

  {
    "Transcript": {
      "Results": [...]
    }
  },

It seems that when the real-time streaming API is used, the service adjusts/reinterprets the processed audio as more data streams in, and each re-interpretation generates a new Transcript object. In other words, I should've used the non-real-time streaming object for this gist exercise.

In any case, when AWS Transcribe feels pretty good about a processed chunk, apparently it sets "isPartial": false -- check out biden-chunk.json to see the transcribed 20-second excerpt, which contains Speaker identification.

However, even though this portion of the audio had only Biden speaking, there is more than Speaker attribute derived, e.g.

{
  "Content": "tax",
  "EndTime": 8.38,
  "Speaker": "0",
  "StartTime": 8.01,
  "Type": "pronunciation",
  "VocabularyFilterMatch": false
},
{
  "Content": "cuts",
  "EndTime": 8.65,
  "Speaker": "2",
  "StartTime": 8.39,
  "Type": "pronunciation",
  "VocabularyFilterMatch": false
}

Hard to tell if it's a limitation fo the service, or the poor way I delivered the audio (holding my phone up to my laptop mic)

{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"Speaker": "0",
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"Speaker": "0",
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"Speaker": "0",
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"Speaker": "0",
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"Speaker": "0",
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"Speaker": "0",
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"Speaker": "0",
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"Speaker": "0",
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"Speaker": "0",
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"Speaker": "0",
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"Speaker": "0",
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"Speaker": "2",
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"Speaker": "2",
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"Speaker": "2",
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"Speaker": "0",
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"Speaker": "0",
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"Speaker": "0",
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"Speaker": "0",
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"Speaker": "0",
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"Speaker": "0",
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"Speaker": "0",
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"Speaker": "0",
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"Speaker": "0",
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"Speaker": "0",
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"Speaker": "0",
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"Speaker": "0",
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"Speaker": "0",
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"Speaker": "0",
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"Speaker": "0",
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"Speaker": "0",
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"Speaker": "0",
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"Speaker": "0",
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"Speaker": "0",
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"Speaker": "0",
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"Speaker": "0",
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.58,
"StartTime": 16.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 17.03,
"Speaker": "0",
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"Speaker": "0",
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 17.91,
"Speaker": "0",
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "is",
"EndTime": 18.08,
"Speaker": "0",
"StartTime": 17.92,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 18.19,
"Speaker": "0",
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "economic",
"EndTime": 18.78,
"Speaker": "0",
"StartTime": 18.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "engine",
"EndTime": 19.21,
"Speaker": "0",
"StartTime": 18.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 19.21,
"StartTime": 19.21,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "It's",
"EndTime": 19.64,
"Speaker": "0",
"StartTime": 19.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "fair",
"EndTime": 20.1,
"Speaker": "2",
"StartTime": 19.65,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 20.1,
"StartTime": 20.1,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "They",
"EndTime": 20.58,
"Speaker": "1",
"StartTime": 20.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "deserve",
"EndTime": 21.34,
"Speaker": "0",
"StartTime": 20.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 21.82,
"Speaker": "3",
"StartTime": 21.76,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 22.19,
"Speaker": "3",
"StartTime": 21.83,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "breaks",
"EndTime": 22.59,
"Speaker": "3",
"StartTime": 22.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 22.59,
"StartTime": 22.59,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "not",
"EndTime": 23.26,
"Speaker": "0",
"StartTime": 22.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set. The middle class is the economic engine. It's fair. They deserve the tax breaks, not"
}
],
"EndTime": 23.58,
"IsPartial": false,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
}
This file has been truncated, but you can view the full file.
[
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.68,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John"
}
],
"EndTime": 3.72,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "one",
"EndTime": 3.98,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 3.98,
"StartTime": 3.98,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John one."
}
],
"EndTime": 4.02,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants"
}
],
"EndTime": 4.12,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.18,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to"
}
],
"EndTime": 4.22,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "know",
"EndTime": 4.28,
"StartTime": 4.26,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 4.28,
"StartTime": 4.28,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to know."
}
],
"EndTime": 4.32,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.38,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add"
}
],
"EndTime": 4.42,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add"
}
],
"EndTime": 4.62,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "three",
"EndTime": 4.68,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add three"
}
],
"EndTime": 4.72,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "three",
"EndTime": 4.84,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 4.84,
"StartTime": 4.84,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "huh",
"EndTime": 5.28,
"StartTime": 4.85,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "?",
"EndTime": 5.28,
"StartTime": 5.28,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add three, huh?"
}
],
"EndTime": 5.32,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "three",
"EndTime": 4.84,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 4.84,
"StartTime": 4.84,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "hon",
"EndTime": 5.46,
"StartTime": 4.85,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 5.46,
"StartTime": 5.46,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add three, hon."
}
],
"EndTime": 5.52,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "three",
"EndTime": 4.84,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "hund",
"EndTime": 5.58,
"StartTime": 4.85,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 5.58,
"StartTime": 5.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add three hund."
}
],
"EndTime": 5.62,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "300",
"EndTime": 5.68,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 5.68,
"StartTime": 5.68,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add 300."
}
],
"EndTime": 5.72,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "300",
"EndTime": 5.77,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "mil",
"EndTime": 5.98,
"StartTime": 5.78,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 5.98,
"StartTime": 5.98,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add 300 mil."
}
],
"EndTime": 6.02,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "300",
"EndTime": 5.77,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.18,
"StartTime": 5.78,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add 300 million"
}
],
"EndTime": 6.22,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "300",
"EndTime": 5.77,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.33,
"StartTime": 5.78,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "DA",
"EndTime": 6.48,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add 300 million DA"
}
],
"EndTime": 6.52,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "300",
"EndTime": 5.77,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.33,
"StartTime": 5.78,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "doll",
"EndTime": 6.58,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 6.58,
"StartTime": 6.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add 300 million doll."
}
],
"EndTime": 6.62,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.68,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million"
}
],
"EndTime": 6.72,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.78,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million"
}
],
"EndTime": 6.82,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million"
}
],
"EndTime": 7.02,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "Bill",
"EndTime": 7.18,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 7.18,
"StartTime": 7.18,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million Bill."
}
],
"EndTime": 7.22,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "Billy",
"EndTime": 7.28,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million Billy"
}
],
"EndTime": 7.32,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.38,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 7.38,
"StartTime": 7.38,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion."
}
],
"EndTime": 7.42,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "doll",
"EndTime": 7.58,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 7.58,
"StartTime": 7.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion doll."
}
],
"EndTime": 7.62,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollar",
"EndTime": 7.68,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollar"
}
],
"EndTime": 7.72,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.77,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 7.77,
"StartTime": 7.77,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars."
}
],
"EndTime": 7.82,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.88,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in"
}
],
"EndTime": 7.92,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 7.98,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new"
}
],
"EndTime": 8.02,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nude",
"EndTime": 8.08,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in nude"
}
],
"EndTime": 8.12,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "too",
"EndTime": 8.18,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 8.18,
"StartTime": 8.18,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new too."
}
],
"EndTime": 8.22,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "Newtown",
"EndTime": 8.28,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 8.28,
"StartTime": 8.28,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in Newtown."
}
],
"EndTime": 8.32,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax"
}
],
"EndTime": 8.42,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cut",
"EndTime": 8.58,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 8.58,
"StartTime": 8.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cut."
}
],
"EndTime": 8.62,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 8.65,
"StartTime": 8.65,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts."
}
],
"EndTime": 8.72,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 8.65,
"StartTime": 8.65,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts."
}
],
"EndTime": 8.82,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per"
}
],
"EndTime": 8.92,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 8.98,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 8.98,
"StartTime": 8.98,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year."
}
],
"EndTime": 9.02,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 9.15,
"StartTime": 9.15,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year."
}
],
"EndTime": 9.52,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for"
}
],
"EndTime": 9.82,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "co",
"EndTime": 9.98,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for co"
}
],
"EndTime": 10.02,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "core",
"EndTime": 10.08,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 10.08,
"StartTime": 10.08,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for core."
}
],
"EndTime": 10.12,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "Corp",
"EndTime": 10.16,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for Corp"
}
],
"EndTime": 10.22,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.28,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate"
}
],
"EndTime": 10.32,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.28,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate"
}
],
"EndTime": 10.42,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate"
}
],
"EndTime": 10.52,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.58,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 10.58,
"StartTime": 10.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America."
}
],
"EndTime": 10.62,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 10.98,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America and"
}
],
"EndTime": 11.02,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "there",
"EndTime": 11.13,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and there"
}
],
"EndTime": 11.22,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.04,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "Avery",
"EndTime": 11.28,
"StartTime": 11.05,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 11.28,
"StartTime": 11.28,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America and Avery."
}
],
"EndTime": 11.32,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "well",
"EndTime": 11.48,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 11.48,
"StartTime": 11.48,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very well."
}
],
"EndTime": 11.52,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.04,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "Avery",
"EndTime": 11.32,
"StartTime": 11.05,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealth",
"EndTime": 11.63,
"StartTime": 11.33,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 11.63,
"StartTime": 11.63,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America and Avery wealth."
}
],
"EndTime": 11.72,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 11.76,
"StartTime": 11.76,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy."
}
],
"EndTime": 11.82,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 11.76,
"StartTime": 11.76,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy."
}
],
"EndTime": 12.02,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 11.76,
"StartTime": 11.76,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "Why",
"EndTime": 12.28,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy. Why"
}
],
"EndTime": 12.32,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.38,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while"
}
],
"EndTime": 12.42,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while"
}
],
"EndTime": 12.72,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.78,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving"
}
],
"EndTime": 12.82,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving"
}
],
"EndTime": 13.02,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "Virg",
"EndTime": 13.08,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving Virg"
}
],
"EndTime": 13.12,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtue",
"EndTime": 13.18,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 13.18,
"StartTime": 13.18,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtue."
}
],
"EndTime": 13.22,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtual",
"EndTime": 13.28,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtual"
}
],
"EndTime": 13.32,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually"
}
],
"EndTime": 13.42,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "no",
"EndTime": 13.58,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually no"
}
],
"EndTime": 13.62,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "none",
"EndTime": 13.76,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 13.76,
"StartTime": 13.76,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually none."
}
],
"EndTime": 13.82,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 13.88,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 13.88,
"StartTime": 13.88,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing."
}
],
"EndTime": 13.92,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 14.01,
"StartTime": 14.01,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing."
}
],
"EndTime": 14.32,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "too",
"EndTime": 14.36,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 14.36,
"StartTime": 14.36,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing too."
}
],
"EndTime": 14.42,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "them",
"EndTime": 14.48,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 14.48,
"StartTime": 14.48,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to them."
}
],
"EndTime": 14.52,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "mid",
"EndTime": 14.57,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the mid"
}
],
"EndTime": 14.62,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.64,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 14.64,
"StartTime": 14.64,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle."
}
],
"EndTime": 14.72,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "CL",
"EndTime": 14.77,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 14.77,
"StartTime": 14.77,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle CL."
}
],
"EndTime": 14.82,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 14.88,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 14.88,
"StartTime": 14.88,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class."
}
],
"EndTime": 14.92,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class."
}
],
"EndTime": 15.32,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We"
}
],
"EndTime": 15.52,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.61,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a"
}
],
"EndTime": 15.62,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "deal",
"EndTime": 15.78,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.78,
"StartTime": 15.78,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a deal."
}
],
"EndTime": 15.82,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a"
}
],
"EndTime": 15.92,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different"
}
],
"EndTime": 16.02,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "view",
"EndTime": 16.06,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.06,
"StartTime": 16.06,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different view."
}
],
"EndTime": 16.12,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "valve",
"EndTime": 16.18,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.18,
"StartTime": 16.18,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different valve."
}
],
"EndTime": 16.22,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.28,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.28,
"StartTime": 16.28,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value."
}
],
"EndTime": 16.32,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "values",
"EndTime": 16.33,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.33,
"StartTime": 16.33,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different values."
}
],
"EndTime": 16.42,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "values",
"EndTime": 16.33,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.33,
"StartTime": 16.33,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different values."
}
],
"EndTime": 16.62,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.58,
"StartTime": 16.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set."
}
],
"EndTime": 16.72,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 17.04,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set the"
}
],
"EndTime": 17.12,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "mill",
"EndTime": 17.28,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 17.28,
"StartTime": 17.28,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set the mill."
}
],
"EndTime": 17.32,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.38,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set the middle"
}
],
"EndTime": 17.42,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set the middle"
}
],
"EndTime": 17.62,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "CL",
"EndTime": 17.67,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set the middle CL"
}
],
"EndTime": 17.72,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 17.78,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 17.78,
"StartTime": 17.78,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set the middle class."
}
],
"EndTime": 17.82,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "classes",
"EndTime": 18.08,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 18.08,
"StartTime": 18.08,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set the middle classes."
}
],
"EndTime": 18.12,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "classes",
"EndTime": 18.07,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 18.07,
"StartTime": 18.07,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "Theo",
"EndTime": 18.28,
"StartTime": 18.08,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set the middle classes, Theo"
}
],
"EndTime": 18.32,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "classes",
"EndTime": 18.08,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 18.08,
"StartTime": 18.08,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 18.19,
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "EC",
"EndTime": 18.36,
"StartTime": 18.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 18.36,
"StartTime": 18.36,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set the middle classes. The EC."
}
],
"EndTime": 18.42,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "classes",
"EndTime": 18.08,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 18.08,
"StartTime": 18.08,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 18.19,
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "Econ",
"EndTime": 18.48,
"StartTime": 18.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 18.48,
"StartTime": 18.48,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set the middle classes. The Econ."
}
],
"EndTime": 18.52,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.58,
"StartTime": 16.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 17.91,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "is",
"EndTime": 18.08,
"StartTime": 17.92,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 18.19,
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set. The middle class is the"
}
],
"EndTime": 18.62,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.58,
"StartTime": 16.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 17.91,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "is",
"EndTime": 18.08,
"StartTime": 17.92,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 18.19,
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "economic",
"EndTime": 18.78,
"StartTime": 18.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set. The middle class is the economic"
}
],
"EndTime": 18.82,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.58,
"StartTime": 16.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 17.91,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "is",
"EndTime": 18.08,
"StartTime": 17.92,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 18.19,
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "economic",
"EndTime": 18.78,
"StartTime": 18.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "n",
"EndTime": 18.98,
"StartTime": 18.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set. The middle class is the economic n"
}
],
"EndTime": 19.02,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.58,
"StartTime": 16.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 17.91,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "is",
"EndTime": 18.08,
"StartTime": 17.92,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 18.19,
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "economic",
"EndTime": 18.78,
"StartTime": 18.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "engine",
"EndTime": 19.08,
"StartTime": 18.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 19.08,
"StartTime": 19.08,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set. The middle class is the economic engine."
}
],
"EndTime": 19.12,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.58,
"StartTime": 16.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 17.91,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "is",
"EndTime": 18.08,
"StartTime": 17.92,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 18.19,
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "economic",
"EndTime": 18.78,
"StartTime": 18.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "engine",
"EndTime": 19.21,
"StartTime": 18.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 19.21,
"StartTime": 19.21,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set. The middle class is the economic engine."
}
],
"EndTime": 19.42,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.58,
"StartTime": 16.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 17.91,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "is",
"EndTime": 18.08,
"StartTime": 17.92,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 18.19,
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "economic",
"EndTime": 18.78,
"StartTime": 18.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "engine",
"EndTime": 19.21,
"StartTime": 18.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 19.21,
"StartTime": 19.21,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "It",
"EndTime": 19.58,
"StartTime": 19.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set. The middle class is the economic engine. It"
}
],
"EndTime": 19.62,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.58,
"StartTime": 16.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 17.91,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "is",
"EndTime": 18.08,
"StartTime": 17.92,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 18.19,
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "economic",
"EndTime": 18.78,
"StartTime": 18.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "engine",
"EndTime": 19.21,
"StartTime": 18.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 19.21,
"StartTime": 19.21,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "It's",
"EndTime": 19.66,
"StartTime": 19.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set. The middle class is the economic engine. It's"
}
],
"EndTime": 19.72,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.58,
"StartTime": 16.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 17.91,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "is",
"EndTime": 18.08,
"StartTime": 17.92,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 18.19,
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "economic",
"EndTime": 18.78,
"StartTime": 18.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "engine",
"EndTime": 19.21,
"StartTime": 18.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 19.21,
"StartTime": 19.21,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "It's",
"EndTime": 19.64,
"StartTime": 19.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 19.78,
"StartTime": 19.65,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set. The middle class is the economic engine. It's for"
}
],
"EndTime": 19.82,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.58,
"StartTime": 16.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 17.91,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "is",
"EndTime": 18.08,
"StartTime": 17.92,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 18.19,
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "economic",
"EndTime": 18.78,
"StartTime": 18.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "engine",
"EndTime": 19.21,
"StartTime": 18.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 19.21,
"StartTime": 19.21,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "It's",
"EndTime": 19.64,
"StartTime": 19.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "fair",
"EndTime": 19.98,
"StartTime": 19.65,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 19.98,
"StartTime": 19.98,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set. The middle class is the economic engine. It's fair."
}
],
"EndTime": 20.02,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.58,
"StartTime": 16.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 17.91,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "is",
"EndTime": 18.08,
"StartTime": 17.92,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 18.19,
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "economic",
"EndTime": 18.78,
"StartTime": 18.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "engine",
"EndTime": 19.21,
"StartTime": 18.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 19.21,
"StartTime": 19.21,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "It's",
"EndTime": 19.64,
"StartTime": 19.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "fair",
"EndTime": 20.1,
"StartTime": 19.65,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 20.1,
"StartTime": 20.1,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "they",
"EndTime": 20.58,
"StartTime": 20.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set. The middle class is the economic engine. It's fair, they"
}
],
"EndTime": 20.62,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.58,
"StartTime": 16.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 17.91,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "is",
"EndTime": 18.08,
"StartTime": 17.92,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 18.19,
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "economic",
"EndTime": 18.78,
"StartTime": 18.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "engine",
"EndTime": 19.21,
"StartTime": 18.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 19.21,
"StartTime": 19.21,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "It's",
"EndTime": 19.64,
"StartTime": 19.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "fair",
"EndTime": 20.1,
"StartTime": 19.65,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they",
"EndTime": 20.58,
"StartTime": 20.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "do",
"EndTime": 20.77,
"StartTime": 20.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 20.77,
"StartTime": 20.77,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set. The middle class is the economic engine. It's fair they do."
}
],
"EndTime": 20.82,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.58,
"StartTime": 16.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 17.91,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "is",
"EndTime": 18.08,
"StartTime": 17.92,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 18.19,
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "economic",
"EndTime": 18.78,
"StartTime": 18.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "engine",
"EndTime": 19.21,
"StartTime": 18.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 19.21,
"StartTime": 19.21,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "It's",
"EndTime": 19.64,
"StartTime": 19.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "fair",
"EndTime": 20.1,
"StartTime": 19.65,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 20.1,
"StartTime": 20.1,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "they",
"EndTime": 20.58,
"StartTime": 20.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 20.58,
"StartTime": 20.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "Diz",
"EndTime": 20.88,
"StartTime": 20.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 20.88,
"StartTime": 20.88,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set. The middle class is the economic engine. It's fair, they, Diz."
}
],
"EndTime": 20.92,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.58,
"StartTime": 16.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 17.91,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "is",
"EndTime": 18.08,
"StartTime": 17.92,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 18.19,
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "economic",
"EndTime": 18.78,
"StartTime": 18.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "engine",
"EndTime": 19.21,
"StartTime": 18.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 19.21,
"StartTime": 19.21,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "It's",
"EndTime": 19.64,
"StartTime": 19.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "fair",
"EndTime": 20.1,
"StartTime": 19.65,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they",
"EndTime": 20.58,
"StartTime": 20.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "deserve",
"EndTime": 20.98,
"StartTime": 20.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 20.98,
"StartTime": 20.98,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set. The middle class is the economic engine. It's fair they deserve."
}
],
"EndTime": 21.02,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.58,
"StartTime": 16.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 17.91,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "is",
"EndTime": 18.08,
"StartTime": 17.92,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 18.19,
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "economic",
"EndTime": 18.78,
"StartTime": 18.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "engine",
"EndTime": 19.21,
"StartTime": 18.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 19.21,
"StartTime": 19.21,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "It's",
"EndTime": 19.64,
"StartTime": 19.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "fair",
"EndTime": 20.1,
"StartTime": 19.65,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they",
"EndTime": 20.58,
"StartTime": 20.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "deserve",
"EndTime": 21.34,
"StartTime": 20.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 21.34,
"StartTime": 21.34,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set. The middle class is the economic engine. It's fair they deserve."
}
],
"EndTime": 21.62,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.58,
"StartTime": 16.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 17.91,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "is",
"EndTime": 18.08,
"StartTime": 17.92,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 18.19,
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "economic",
"EndTime": 18.78,
"StartTime": 18.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "engine",
"EndTime": 19.21,
"StartTime": 18.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 19.21,
"StartTime": 19.21,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "It's",
"EndTime": 19.64,
"StartTime": 19.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "fair",
"EndTime": 20.1,
"StartTime": 19.65,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 20.1,
"StartTime": 20.1,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "They",
"EndTime": 20.58,
"StartTime": 20.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "deserve",
"EndTime": 21.34,
"StartTime": 20.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "that",
"EndTime": 21.85,
"StartTime": 21.76,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 21.85,
"StartTime": 21.85,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set. The middle class is the economic engine. It's fair. They deserve that."
}
],
"EndTime": 21.92,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.58,
"StartTime": 16.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 17.91,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "is",
"EndTime": 18.08,
"StartTime": 17.92,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 18.19,
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "economic",
"EndTime": 18.78,
"StartTime": 18.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "engine",
"EndTime": 19.21,
"StartTime": 18.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 19.21,
"StartTime": 19.21,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "It's",
"EndTime": 19.64,
"StartTime": 19.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "fair",
"EndTime": 20.1,
"StartTime": 19.65,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 20.1,
"StartTime": 20.1,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "They",
"EndTime": 20.58,
"StartTime": 20.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "deserve",
"EndTime": 21.34,
"StartTime": 20.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "that",
"EndTime": 21.85,
"StartTime": 21.76,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 21.85,
"StartTime": 21.85,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set. The middle class is the economic engine. It's fair. They deserve that."
}
],
"EndTime": 22.02,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.58,
"StartTime": 16.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 17.91,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "is",
"EndTime": 18.08,
"StartTime": 17.92,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 18.19,
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "economic",
"EndTime": 18.78,
"StartTime": 18.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "engine",
"EndTime": 19.21,
"StartTime": 18.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 19.21,
"StartTime": 19.21,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "It's",
"EndTime": 19.64,
"StartTime": 19.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "fair",
"EndTime": 20.1,
"StartTime": 19.65,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 20.1,
"StartTime": 20.1,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "They",
"EndTime": 20.58,
"StartTime": 20.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "deserve",
"EndTime": 21.34,
"StartTime": 20.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 21.82,
"StartTime": 21.76,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tack",
"EndTime": 22.08,
"StartTime": 21.83,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 22.08,
"StartTime": 22.08,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set. The middle class is the economic engine. It's fair. They deserve the tack."
}
],
"EndTime": 22.12,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.58,
"StartTime": 16.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 17.91,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "is",
"EndTime": 18.08,
"StartTime": 17.92,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 18.19,
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "economic",
"EndTime": 18.78,
"StartTime": 18.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "engine",
"EndTime": 19.21,
"StartTime": 18.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 19.21,
"StartTime": 19.21,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "It's",
"EndTime": 19.64,
"StartTime": 19.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "fair",
"EndTime": 20.1,
"StartTime": 19.65,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 20.1,
"StartTime": 20.1,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "They",
"EndTime": 20.58,
"StartTime": 20.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "deserve",
"EndTime": 21.34,
"StartTime": 20.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 21.82,
"StartTime": 21.76,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 22.18,
"StartTime": 21.83,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 22.18,
"StartTime": 22.18,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set. The middle class is the economic engine. It's fair. They deserve the tax."
}
],
"EndTime": 22.22,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.58,
"StartTime": 16.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 17.91,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "is",
"EndTime": 18.08,
"StartTime": 17.92,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 18.19,
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "economic",
"EndTime": 18.78,
"StartTime": 18.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "engine",
"EndTime": 19.21,
"StartTime": 18.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 19.21,
"StartTime": 19.21,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "It's",
"EndTime": 19.64,
"StartTime": 19.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "fair",
"EndTime": 20.1,
"StartTime": 19.65,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 20.1,
"StartTime": 20.1,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "they",
"EndTime": 20.58,
"StartTime": 20.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "deserve",
"EndTime": 21.34,
"StartTime": 20.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 21.82,
"StartTime": 21.76,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 22.19,
"StartTime": 21.83,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "break",
"EndTime": 22.38,
"StartTime": 22.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 22.38,
"StartTime": 22.38,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set. The middle class is the economic engine. It's fair, they deserve the tax break."
}
],
"EndTime": 22.42,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.58,
"StartTime": 16.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 17.91,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "is",
"EndTime": 18.08,
"StartTime": 17.92,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 18.19,
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "economic",
"EndTime": 18.78,
"StartTime": 18.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "engine",
"EndTime": 19.21,
"StartTime": 18.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 19.21,
"StartTime": 19.21,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "It's",
"EndTime": 19.64,
"StartTime": 19.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "fair",
"EndTime": 20.1,
"StartTime": 19.65,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 20.1,
"StartTime": 20.1,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "they",
"EndTime": 20.58,
"StartTime": 20.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "deserve",
"EndTime": 21.34,
"StartTime": 20.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 21.82,
"StartTime": 21.76,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 22.19,
"StartTime": 21.83,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "breaks",
"EndTime": 22.58,
"StartTime": 22.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 22.58,
"StartTime": 22.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set. The middle class is the economic engine. It's fair, they deserve the tax breaks."
}
],
"EndTime": 22.62,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.58,
"StartTime": 16.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 17.91,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "is",
"EndTime": 18.08,
"StartTime": 17.92,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 18.19,
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "economic",
"EndTime": 18.78,
"StartTime": 18.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "engine",
"EndTime": 19.21,
"StartTime": 18.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 19.21,
"StartTime": 19.21,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "It's",
"EndTime": 19.64,
"StartTime": 19.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "fair",
"EndTime": 20.1,
"StartTime": 19.65,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 20.1,
"StartTime": 20.1,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "they",
"EndTime": 20.58,
"StartTime": 20.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "deserve",
"EndTime": 21.34,
"StartTime": 20.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 21.82,
"StartTime": 21.76,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 22.19,
"StartTime": 21.83,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "breaks",
"EndTime": 22.59,
"StartTime": 22.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 22.59,
"StartTime": 22.59,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set. The middle class is the economic engine. It's fair, they deserve the tax breaks."
}
],
"EndTime": 22.82,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.58,
"StartTime": 16.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 17.91,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "is",
"EndTime": 18.08,
"StartTime": 17.92,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 18.19,
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "economic",
"EndTime": 18.78,
"StartTime": 18.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "engine",
"EndTime": 19.21,
"StartTime": 18.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 19.21,
"StartTime": 19.21,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "It's",
"EndTime": 19.64,
"StartTime": 19.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "fair",
"EndTime": 20.1,
"StartTime": 19.65,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 20.1,
"StartTime": 20.1,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "They",
"EndTime": 20.58,
"StartTime": 20.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "deserve",
"EndTime": 21.34,
"StartTime": 20.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 21.82,
"StartTime": 21.76,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 22.19,
"StartTime": 21.83,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "breaks",
"EndTime": 22.59,
"StartTime": 22.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "now",
"EndTime": 23.07,
"StartTime": 22.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 23.07,
"StartTime": 23.07,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set. The middle class is the economic engine. It's fair. They deserve the tax breaks now."
}
],
"EndTime": 23.12,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.58,
"StartTime": 16.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 17.03,
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 17.91,
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "is",
"EndTime": 18.08,
"StartTime": 17.92,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 18.19,
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "economic",
"EndTime": 18.78,
"StartTime": 18.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "engine",
"EndTime": 19.21,
"StartTime": 18.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 19.21,
"StartTime": 19.21,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "It's",
"EndTime": 19.64,
"StartTime": 19.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "fair",
"EndTime": 20.1,
"StartTime": 19.65,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 20.1,
"StartTime": 20.1,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "They",
"EndTime": 20.58,
"StartTime": 20.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "deserve",
"EndTime": 21.34,
"StartTime": 20.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 21.82,
"StartTime": 21.76,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 22.19,
"StartTime": 21.83,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "breaks",
"EndTime": 22.59,
"StartTime": 22.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 22.59,
"StartTime": 22.59,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "not",
"EndTime": 23.18,
"StartTime": 22.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set. The middle class is the economic engine. It's fair. They deserve the tax breaks, not"
}
],
"EndTime": 23.22,
"IsPartial": true,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "John",
"EndTime": 3.76,
"Speaker": "0",
"StartTime": 3.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wants",
"EndTime": 4.08,
"Speaker": "0",
"StartTime": 3.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 4.19,
"Speaker": "0",
"StartTime": 4.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "add",
"EndTime": 4.41,
"Speaker": "0",
"StartTime": 4.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "$300",
"EndTime": 6.33,
"Speaker": "0",
"StartTime": 4.51,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "million",
"EndTime": 6.83,
"Speaker": "0",
"StartTime": 6.34,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "billion",
"EndTime": 7.4,
"Speaker": "0",
"StartTime": 6.96,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "dollars",
"EndTime": 7.76,
"Speaker": "0",
"StartTime": 7.41,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "in",
"EndTime": 7.9,
"Speaker": "0",
"StartTime": 7.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "new",
"EndTime": 8,
"Speaker": "0",
"StartTime": 7.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 8.38,
"Speaker": "0",
"StartTime": 8.01,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "cuts",
"EndTime": 8.65,
"Speaker": "2",
"StartTime": 8.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "per",
"EndTime": 8.81,
"Speaker": "2",
"StartTime": 8.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "year",
"EndTime": 9.15,
"Speaker": "2",
"StartTime": 8.82,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "for",
"EndTime": 9.78,
"Speaker": "0",
"StartTime": 9.42,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "corporate",
"EndTime": 10.27,
"Speaker": "0",
"StartTime": 9.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "America",
"EndTime": 10.71,
"Speaker": "0",
"StartTime": 10.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 10.71,
"StartTime": 10.71,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 11.03,
"Speaker": "0",
"StartTime": 10.72,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "they're",
"EndTime": 11.12,
"Speaker": "0",
"StartTime": 11.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "very",
"EndTime": 11.31,
"Speaker": "0",
"StartTime": 11.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealthy",
"EndTime": 11.76,
"Speaker": "0",
"StartTime": 11.32,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "while",
"EndTime": 12.4,
"Speaker": "0",
"StartTime": 12.03,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "giving",
"EndTime": 12.86,
"Speaker": "0",
"StartTime": 12.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "virtually",
"EndTime": 13.37,
"Speaker": "0",
"StartTime": 12.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "nothing",
"EndTime": 14.01,
"Speaker": "0",
"StartTime": 13.38,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "to",
"EndTime": 14.35,
"Speaker": "0",
"StartTime": 14.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 14.45,
"Speaker": "0",
"StartTime": 14.36,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 14.63,
"Speaker": "0",
"StartTime": 14.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 15.02,
"Speaker": "0",
"StartTime": 14.64,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 15.02,
"StartTime": 15.02,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "We",
"EndTime": 15.43,
"Speaker": "0",
"StartTime": 15.24,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "have",
"EndTime": 15.54,
"Speaker": "0",
"StartTime": 15.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "a",
"EndTime": 15.65,
"Speaker": "0",
"StartTime": 15.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "different",
"EndTime": 15.97,
"Speaker": "0",
"StartTime": 15.66,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "value",
"EndTime": 16.27,
"Speaker": "0",
"StartTime": 15.98,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "set",
"EndTime": 16.58,
"Speaker": "0",
"StartTime": 16.28,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 16.58,
"StartTime": 16.58,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "The",
"EndTime": 17.03,
"Speaker": "0",
"StartTime": 16.95,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "middle",
"EndTime": 17.45,
"Speaker": "0",
"StartTime": 17.04,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "class",
"EndTime": 17.91,
"Speaker": "0",
"StartTime": 17.55,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "is",
"EndTime": 18.08,
"Speaker": "0",
"StartTime": 17.92,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 18.19,
"Speaker": "0",
"StartTime": 18.09,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "economic",
"EndTime": 18.78,
"Speaker": "0",
"StartTime": 18.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "engine",
"EndTime": 19.21,
"Speaker": "0",
"StartTime": 18.79,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 19.21,
"StartTime": 19.21,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "It's",
"EndTime": 19.64,
"Speaker": "0",
"StartTime": 19.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "fair",
"EndTime": 20.1,
"Speaker": "2",
"StartTime": 19.65,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 20.1,
"StartTime": 20.1,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "They",
"EndTime": 20.58,
"Speaker": "1",
"StartTime": 20.46,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "deserve",
"EndTime": 21.34,
"Speaker": "0",
"StartTime": 20.59,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 21.82,
"Speaker": "3",
"StartTime": 21.76,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 22.19,
"Speaker": "3",
"StartTime": 21.83,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "breaks",
"EndTime": 22.59,
"Speaker": "3",
"StartTime": 22.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 22.59,
"StartTime": 22.59,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "not",
"EndTime": 23.26,
"Speaker": "0",
"StartTime": 22.91,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "John wants to add $300 million billion dollars in new tax cuts per year for corporate America, and they're very wealthy while giving virtually nothing to the middle class. We have a different value set. The middle class is the economic engine. It's fair. They deserve the tax breaks, not"
}
],
"EndTime": 23.58,
"IsPartial": false,
"ResultId": "64f66c03-2ea7-47bc-a5b3-e28dd7f7075e",
"StartTime": 3.51
}
]
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Sue",
"EndTime": 23.94,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 23.94,
"StartTime": 23.94,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Sue."
}
],
"EndTime": 23.98,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Soup",
"EndTime": 24.04,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.04,
"StartTime": 24.04,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Soup."
}
],
"EndTime": 24.08,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Super"
}
],
"EndTime": 24.18,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "The",
"EndTime": 23.79,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.8,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "way",
"EndTime": 24.24,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.24,
"StartTime": 24.24,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "The Super way."
}
],
"EndTime": 24.28,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "well",
"EndTime": 24.34,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.34,
"StartTime": 24.34,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Super well."
}
],
"EndTime": 24.38,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Superwealthy",
"EndTime": 24.44,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.44,
"StartTime": 24.44,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Superwealthy."
}
],
"EndTime": 24.48,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Superwealthy",
"EndTime": 24.48,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "weird",
"EndTime": 24.61,
"StartTime": 24.49,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.61,
"StartTime": 24.61,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Superwealthy weird."
}
],
"EndTime": 24.68,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealth",
"EndTime": 24.38,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "your",
"EndTime": 24.56,
"StartTime": 24.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "DUI",
"EndTime": 24.74,
"StartTime": 24.57,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.74,
"StartTime": 24.74,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Super wealth your DUI."
}
],
"EndTime": 24.78,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealth",
"EndTime": 24.38,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "you're",
"EndTime": 24.56,
"StartTime": 24.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "doing",
"EndTime": 24.84,
"StartTime": 24.57,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.84,
"StartTime": 24.84,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Super wealth you're doing."
}
],
"EndTime": 24.88,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealth",
"EndTime": 24.38,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "you're",
"EndTime": 24.56,
"StartTime": 24.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "doing",
"EndTime": 24.86,
"StartTime": 24.57,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.86,
"StartTime": 24.86,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Super wealth you're doing."
}
],
"EndTime": 25.08,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealth",
"EndTime": 24.38,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "you're",
"EndTime": 24.56,
"StartTime": 24.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "doing",
"EndTime": 24.86,
"StartTime": 24.57,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.86,
"StartTime": 24.86,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Super wealth you're doing."
}
],
"EndTime": 25.18,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealth",
"EndTime": 24.38,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "you're",
"EndTime": 24.56,
"StartTime": 24.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "doing",
"EndTime": 24.86,
"StartTime": 24.57,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "pretty",
"EndTime": 25.2,
"StartTime": 24.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Super wealth you're doing pretty"
}
],
"EndTime": 25.28,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealth",
"EndTime": 24.38,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.38,
"StartTime": 24.38,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "You're",
"EndTime": 24.56,
"StartTime": 24.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "doing",
"EndTime": 24.86,
"StartTime": 24.57,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "pretty",
"EndTime": 25.19,
"StartTime": 24.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "well",
"EndTime": 25.34,
"StartTime": 25.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 25.34,
"StartTime": 25.34,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Super wealth. You're doing pretty well."
}
],
"EndTime": 25.38,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealth",
"EndTime": 24.38,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.38,
"StartTime": 24.38,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "You're",
"EndTime": 24.56,
"StartTime": 24.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "doing",
"EndTime": 24.86,
"StartTime": 24.57,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "pretty",
"EndTime": 25.19,
"StartTime": 24.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "well",
"EndTime": 25.53,
"StartTime": 25.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 25.53,
"StartTime": 25.53,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Super wealth. You're doing pretty well."
}
],
"EndTime": 25.88,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealth",
"EndTime": 24.38,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.38,
"StartTime": 24.38,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "You're",
"EndTime": 24.56,
"StartTime": 24.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "doing",
"EndTime": 24.86,
"StartTime": 24.57,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "pretty",
"EndTime": 25.19,
"StartTime": 24.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "well",
"EndTime": 25.53,
"StartTime": 25.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "there",
"EndTime": 25.94,
"StartTime": 25.84,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 25.94,
"StartTime": 25.94,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Super wealth. You're doing pretty well there."
}
],
"EndTime": 25.98,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealth",
"EndTime": 24.38,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.38,
"StartTime": 24.38,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "You're",
"EndTime": 24.56,
"StartTime": 24.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "doing",
"EndTime": 24.86,
"StartTime": 24.57,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "pretty",
"EndTime": 25.19,
"StartTime": 24.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "well",
"EndTime": 25.53,
"StartTime": 25.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 25.53,
"StartTime": 25.53,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "They",
"EndTime": 25.92,
"StartTime": 25.84,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "do",
"EndTime": 26.03,
"StartTime": 25.93,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 26.03,
"StartTime": 26.03,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Super wealth. You're doing pretty well. They do."
}
],
"EndTime": 26.08,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealth",
"EndTime": 24.38,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.38,
"StartTime": 24.38,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "You're",
"EndTime": 24.56,
"StartTime": 24.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "doing",
"EndTime": 24.86,
"StartTime": 24.57,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "pretty",
"EndTime": 25.19,
"StartTime": 24.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "well",
"EndTime": 25.53,
"StartTime": 25.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 25.53,
"StartTime": 25.53,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "They",
"EndTime": 25.92,
"StartTime": 25.84,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "don't",
"EndTime": 26.12,
"StartTime": 25.93,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Super wealth. You're doing pretty well. They don't"
}
],
"EndTime": 26.18,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealth",
"EndTime": 24.38,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.38,
"StartTime": 24.38,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "You're",
"EndTime": 24.56,
"StartTime": 24.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "doing",
"EndTime": 24.86,
"StartTime": 24.57,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "pretty",
"EndTime": 25.19,
"StartTime": 24.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "well",
"EndTime": 25.53,
"StartTime": 25.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 25.53,
"StartTime": 25.53,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "They",
"EndTime": 25.92,
"StartTime": 25.84,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "don't",
"EndTime": 26.11,
"StartTime": 25.93,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "need",
"EndTime": 26.24,
"StartTime": 26.12,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Super wealth. You're doing pretty well. They don't need"
}
],
"EndTime": 26.28,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealth",
"EndTime": 24.38,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.38,
"StartTime": 24.38,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "You're",
"EndTime": 24.56,
"StartTime": 24.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "doing",
"EndTime": 24.86,
"StartTime": 24.57,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "pretty",
"EndTime": 25.19,
"StartTime": 24.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "well",
"EndTime": 25.53,
"StartTime": 25.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 25.53,
"StartTime": 25.53,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "They",
"EndTime": 25.92,
"StartTime": 25.84,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "don't",
"EndTime": 26.11,
"StartTime": 25.93,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "need",
"EndTime": 26.3,
"StartTime": 26.12,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "any",
"EndTime": 26.54,
"StartTime": 26.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Super wealth. You're doing pretty well. They don't need any"
}
],
"EndTime": 26.58,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealth",
"EndTime": 24.38,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.38,
"StartTime": 24.38,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "You're",
"EndTime": 24.56,
"StartTime": 24.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "doing",
"EndTime": 24.86,
"StartTime": 24.57,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "pretty",
"EndTime": 25.19,
"StartTime": 24.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "well",
"EndTime": 25.53,
"StartTime": 25.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 25.53,
"StartTime": 25.53,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "They",
"EndTime": 25.92,
"StartTime": 25.84,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "don't",
"EndTime": 26.11,
"StartTime": 25.93,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "need",
"EndTime": 26.3,
"StartTime": 26.12,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "any",
"EndTime": 26.66,
"StartTime": 26.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "more",
"EndTime": 26.94,
"StartTime": 26.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 26.94,
"StartTime": 26.94,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Super wealth. You're doing pretty well. They don't need any more."
}
],
"EndTime": 26.98,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealth",
"EndTime": 24.38,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.38,
"StartTime": 24.38,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "You're",
"EndTime": 24.56,
"StartTime": 24.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "doing",
"EndTime": 24.86,
"StartTime": 24.57,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "pretty",
"EndTime": 25.19,
"StartTime": 24.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "well",
"EndTime": 25.53,
"StartTime": 25.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 25.53,
"StartTime": 25.53,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "They",
"EndTime": 25.92,
"StartTime": 25.84,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "don't",
"EndTime": 26.11,
"StartTime": 25.93,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "need",
"EndTime": 26.3,
"StartTime": 26.12,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "any",
"EndTime": 26.66,
"StartTime": 26.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "more",
"EndTime": 27.05,
"StartTime": 26.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 27.05,
"StartTime": 27.05,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Super wealth. You're doing pretty well. They don't need any more."
}
],
"EndTime": 27.28,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealth",
"EndTime": 24.38,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.38,
"StartTime": 24.38,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "You're",
"EndTime": 24.56,
"StartTime": 24.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "doing",
"EndTime": 24.86,
"StartTime": 24.57,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "pretty",
"EndTime": 25.19,
"StartTime": 24.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "well",
"EndTime": 25.53,
"StartTime": 25.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 25.53,
"StartTime": 25.53,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "They",
"EndTime": 25.92,
"StartTime": 25.84,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "don't",
"EndTime": 26.11,
"StartTime": 25.93,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "need",
"EndTime": 26.3,
"StartTime": 26.12,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "any",
"EndTime": 26.66,
"StartTime": 26.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "more",
"EndTime": 27.04,
"StartTime": 26.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tack",
"EndTime": 27.34,
"StartTime": 27.05,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 27.34,
"StartTime": 27.34,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Super wealth. You're doing pretty well. They don't need any more tack."
}
],
"EndTime": 27.38,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealth",
"EndTime": 24.38,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.38,
"StartTime": 24.38,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "You're",
"EndTime": 24.56,
"StartTime": 24.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "doing",
"EndTime": 24.86,
"StartTime": 24.57,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "pretty",
"EndTime": 25.19,
"StartTime": 24.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "well",
"EndTime": 25.53,
"StartTime": 25.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 25.53,
"StartTime": 25.53,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "They",
"EndTime": 25.92,
"StartTime": 25.84,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "don't",
"EndTime": 26.11,
"StartTime": 25.93,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "need",
"EndTime": 26.3,
"StartTime": 26.12,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "any",
"EndTime": 26.66,
"StartTime": 26.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "more",
"EndTime": 27.04,
"StartTime": 26.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 27.44,
"StartTime": 27.05,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 27.44,
"StartTime": 27.44,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Super wealth. You're doing pretty well. They don't need any more tax."
}
],
"EndTime": 27.48,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealth",
"EndTime": 24.38,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.38,
"StartTime": 24.38,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "You're",
"EndTime": 24.56,
"StartTime": 24.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "doing",
"EndTime": 24.86,
"StartTime": 24.57,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "pretty",
"EndTime": 25.19,
"StartTime": 24.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "well",
"EndTime": 25.53,
"StartTime": 25.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 25.53,
"StartTime": 25.53,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "They",
"EndTime": 25.92,
"StartTime": 25.84,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "don't",
"EndTime": 26.11,
"StartTime": 25.93,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "need",
"EndTime": 26.3,
"StartTime": 26.12,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "any",
"EndTime": 26.66,
"StartTime": 26.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "more",
"EndTime": 27.04,
"StartTime": 26.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 27.44,
"StartTime": 27.05,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "break",
"EndTime": 27.64,
"StartTime": 27.45,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 27.64,
"StartTime": 27.64,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Super wealth. You're doing pretty well. They don't need any more tax break."
}
],
"EndTime": 27.68,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealth",
"EndTime": 24.38,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.38,
"StartTime": 24.38,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "You're",
"EndTime": 24.56,
"StartTime": 24.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "doing",
"EndTime": 24.86,
"StartTime": 24.57,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "pretty",
"EndTime": 25.19,
"StartTime": 24.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "well",
"EndTime": 25.53,
"StartTime": 25.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 25.53,
"StartTime": 25.53,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "They",
"EndTime": 25.92,
"StartTime": 25.84,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "don't",
"EndTime": 26.11,
"StartTime": 25.93,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "need",
"EndTime": 26.3,
"StartTime": 26.12,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "any",
"EndTime": 26.66,
"StartTime": 26.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "more",
"EndTime": 27.04,
"StartTime": 26.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 27.44,
"StartTime": 27.05,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "breaks",
"EndTime": 27.81,
"StartTime": 27.45,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 27.81,
"StartTime": 27.81,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Super wealth. You're doing pretty well. They don't need any more tax breaks."
}
],
"EndTime": 27.88,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealth",
"EndTime": 24.38,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.38,
"StartTime": 24.38,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "You're",
"EndTime": 24.56,
"StartTime": 24.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "doing",
"EndTime": 24.86,
"StartTime": 24.57,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "pretty",
"EndTime": 25.19,
"StartTime": 24.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "well",
"EndTime": 25.53,
"StartTime": 25.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 25.53,
"StartTime": 25.53,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "They",
"EndTime": 25.92,
"StartTime": 25.84,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "don't",
"EndTime": 26.11,
"StartTime": 25.93,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "need",
"EndTime": 26.3,
"StartTime": 26.12,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "any",
"EndTime": 26.66,
"StartTime": 26.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "more",
"EndTime": 27.04,
"StartTime": 26.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 27.44,
"StartTime": 27.05,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "breaks",
"EndTime": 27.81,
"StartTime": 27.45,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 28.02,
"StartTime": 27.94,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Super wealth. You're doing pretty well. They don't need any more tax breaks and"
}
],
"EndTime": 28.08,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealth",
"EndTime": 24.38,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.38,
"StartTime": 24.38,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "You're",
"EndTime": 24.56,
"StartTime": 24.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "doing",
"EndTime": 24.86,
"StartTime": 24.57,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "pretty",
"EndTime": 25.19,
"StartTime": 24.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "well",
"EndTime": 25.53,
"StartTime": 25.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 25.53,
"StartTime": 25.53,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "They",
"EndTime": 25.92,
"StartTime": 25.84,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "don't",
"EndTime": 26.11,
"StartTime": 25.93,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "need",
"EndTime": 26.3,
"StartTime": 26.12,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "any",
"EndTime": 26.66,
"StartTime": 26.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "more",
"EndTime": 27.04,
"StartTime": 26.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 27.44,
"StartTime": 27.05,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "breaks",
"EndTime": 27.81,
"StartTime": 27.45,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 28.01,
"StartTime": 27.94,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "buy",
"EndTime": 28.13,
"StartTime": 28.02,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Super wealth. You're doing pretty well. They don't need any more tax breaks and buy"
}
],
"EndTime": 28.18,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealth",
"EndTime": 24.38,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.38,
"StartTime": 24.38,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "You're",
"EndTime": 24.56,
"StartTime": 24.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "doing",
"EndTime": 24.86,
"StartTime": 24.57,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "pretty",
"EndTime": 25.19,
"StartTime": 24.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "well",
"EndTime": 25.53,
"StartTime": 25.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 25.53,
"StartTime": 25.53,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "They",
"EndTime": 25.92,
"StartTime": 25.84,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "don't",
"EndTime": 26.11,
"StartTime": 25.93,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "need",
"EndTime": 26.3,
"StartTime": 26.12,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "any",
"EndTime": 26.66,
"StartTime": 26.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "more",
"EndTime": 27.04,
"StartTime": 26.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 27.44,
"StartTime": 27.05,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "breaks",
"EndTime": 27.81,
"StartTime": 27.45,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 28.01,
"StartTime": 27.94,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "bythe",
"EndTime": 28.21,
"StartTime": 28.02,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 28.21,
"StartTime": 28.21,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Super wealth. You're doing pretty well. They don't need any more tax breaks and bythe."
}
],
"EndTime": 28.28,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealth",
"EndTime": 24.38,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.38,
"StartTime": 24.38,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "You're",
"EndTime": 24.56,
"StartTime": 24.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "doing",
"EndTime": 24.86,
"StartTime": 24.57,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "pretty",
"EndTime": 25.19,
"StartTime": 24.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "well",
"EndTime": 25.53,
"StartTime": 25.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 25.53,
"StartTime": 25.53,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "They",
"EndTime": 25.92,
"StartTime": 25.84,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "don't",
"EndTime": 26.11,
"StartTime": 25.93,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "need",
"EndTime": 26.3,
"StartTime": 26.12,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "any",
"EndTime": 26.66,
"StartTime": 26.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "more",
"EndTime": 27.04,
"StartTime": 26.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 27.44,
"StartTime": 27.05,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "breaks",
"EndTime": 27.81,
"StartTime": 27.45,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 28.01,
"StartTime": 27.94,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "by",
"EndTime": 28.12,
"StartTime": 28.02,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 28.26,
"StartTime": 28.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "way",
"EndTime": 28.34,
"StartTime": 28.27,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 28.34,
"StartTime": 28.34,
"Type": "punctuation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Super wealth. You're doing pretty well. They don't need any more tax breaks and by the way,"
}
],
"EndTime": 28.38,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": []
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealth",
"EndTime": 24.38,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.38,
"StartTime": 24.38,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "You're",
"EndTime": 24.56,
"StartTime": 24.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "doing",
"EndTime": 24.86,
"StartTime": 24.57,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "pretty",
"EndTime": 25.19,
"StartTime": 24.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "well",
"EndTime": 25.53,
"StartTime": 25.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 25.53,
"StartTime": 25.53,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "They",
"EndTime": 25.92,
"StartTime": 25.84,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "don't",
"EndTime": 26.11,
"StartTime": 25.93,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "need",
"EndTime": 26.3,
"StartTime": 26.12,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "any",
"EndTime": 26.66,
"StartTime": 26.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "more",
"EndTime": 27.04,
"StartTime": 26.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 27.44,
"StartTime": 27.05,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "breaks",
"EndTime": 27.81,
"StartTime": 27.45,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 28.01,
"StartTime": 27.94,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "by",
"EndTime": 28.12,
"StartTime": 28.02,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 28.26,
"StartTime": 28.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "way",
"EndTime": 28.4,
"StartTime": 28.27,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "there",
"EndTime": 28.84,
"StartTime": 28.74,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Super wealth. You're doing pretty well. They don't need any more tax breaks and by the way there"
}
],
"EndTime": 28.88,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealth",
"EndTime": 24.38,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.38,
"StartTime": 24.38,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "You're",
"EndTime": 24.56,
"StartTime": 24.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "doing",
"EndTime": 24.86,
"StartTime": 24.57,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "pretty",
"EndTime": 25.19,
"StartTime": 24.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "well",
"EndTime": 25.53,
"StartTime": 25.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 25.53,
"StartTime": 25.53,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "They",
"EndTime": 25.92,
"StartTime": 25.84,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "don't",
"EndTime": 26.11,
"StartTime": 25.93,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "need",
"EndTime": 26.3,
"StartTime": 26.12,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "any",
"EndTime": 26.66,
"StartTime": 26.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "more",
"EndTime": 27.04,
"StartTime": 26.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 27.44,
"StartTime": 27.05,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "breaks",
"EndTime": 27.81,
"StartTime": 27.45,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 27.81,
"StartTime": 27.81,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 28.01,
"StartTime": 27.94,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "by",
"EndTime": 28.12,
"StartTime": 28.02,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 28.26,
"StartTime": 28.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "way",
"EndTime": 28.4,
"StartTime": 28.27,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ",",
"EndTime": 28.4,
"StartTime": 28.4,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "they'll",
"EndTime": 28.89,
"StartTime": 28.74,
"Type": "pronunciation",
"VocabularyFilterMatch": false
}
],
"Transcript": "Super wealth. You're doing pretty well. They don't need any more tax breaks, and by the way, they'll"
}
],
"EndTime": 28.98,
"IsPartial": true,
"ResultId": "a0d3d75f-881c-44a8-ba76-8f4aca7186ae",
"StartTime": 23.77
}
]
}
},
{
"Transcript": {
"Results": [
{
"Alternatives": [
{
"Items": [
{
"Content": "Super",
"EndTime": 24.1,
"StartTime": 23.77,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "wealth",
"EndTime": 24.38,
"StartTime": 24.11,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 24.38,
"StartTime": 24.38,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "You're",
"EndTime": 24.56,
"StartTime": 24.39,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "doing",
"EndTime": 24.86,
"StartTime": 24.57,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "pretty",
"EndTime": 25.19,
"StartTime": 24.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "well",
"EndTime": 25.53,
"StartTime": 25.2,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": ".",
"EndTime": 25.53,
"StartTime": 25.53,
"Type": "punctuation",
"VocabularyFilterMatch": false
},
{
"Content": "They",
"EndTime": 25.92,
"StartTime": 25.84,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "don't",
"EndTime": 26.11,
"StartTime": 25.93,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "need",
"EndTime": 26.3,
"StartTime": 26.12,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "any",
"EndTime": 26.66,
"StartTime": 26.44,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "more",
"EndTime": 27.04,
"StartTime": 26.87,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "tax",
"EndTime": 27.44,
"StartTime": 27.05,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "breaks",
"EndTime": 27.81,
"StartTime": 27.45,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "and",
"EndTime": 28.01,
"StartTime": 27.94,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "by",
"EndTime": 28.12,
"StartTime": 28.02,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "the",
"EndTime": 28.26,
"StartTime": 28.13,
"Type": "pronunciation",
"VocabularyFilterMatch": false
},
{
"Content": "way",
@dannguyen
Copy link
Author

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment