fix latency calculation
Browse files- src/calc_metrics.py +106 -110
- src/data/gaza/transcribe-interim.txt +518 -0
- src/data/gaza/transcribe.txt +7 -0
- src/data/gaza/translate-interim.txt +518 -0
- src/data/gaza/translate.txt +7 -0
- src/gaza-transcript-interim.txt +0 -0
- src/gaza-transcript.txt +0 -16
- src/gaza-translate-interim.txt +0 -0
- src/gaza-translate.txt +0 -16
- src/transcribe_and_translate_streaming_infinite_chirp2_0113.py +10 -8
src/calc_metrics.py
CHANGED
|
@@ -3,104 +3,81 @@ from dataclasses import dataclass
|
|
| 3 |
import os
|
| 4 |
|
| 5 |
@dataclass
|
| 6 |
-
class
|
| 7 |
-
timestamp: float
|
| 8 |
-
word: str
|
| 9 |
-
segment: int
|
| 10 |
-
policy_timestamp: float = None
|
| 11 |
-
|
| 12 |
-
@dataclass
|
| 13 |
-
class Record:
|
| 14 |
timestamp: float
|
| 15 |
transcription: str
|
| 16 |
translation: str
|
|
|
|
| 17 |
|
| 18 |
@dataclass
|
| 19 |
-
class
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
self.history = self.display()
|
| 25 |
|
| 26 |
-
|
| 27 |
-
|
|
|
|
| 28 |
|
| 29 |
def read_data(tag):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30 |
records = []
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
prev_len = 0
|
| 34 |
with (
|
| 35 |
-
open(f"{tag}
|
| 36 |
-
open(f"{tag}
|
| 37 |
):
|
| 38 |
for transcription_line, translation_line in zip(transcription_f, translate_f):
|
| 39 |
-
|
| 40 |
-
|
|
|
|
| 41 |
assert ms == ms2
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
transcription_history.candidate = transcription
|
| 50 |
-
translation_history.candidate = translation
|
| 51 |
|
| 52 |
records.append(
|
| 53 |
-
|
| 54 |
timestamp=float(ms),
|
| 55 |
-
transcription=
|
| 56 |
-
translation=
|
|
|
|
| 57 |
)
|
| 58 |
)
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
return words
|
| 80 |
-
|
| 81 |
-
def get_translation_words(records: list[Record]):
|
| 82 |
-
translations = [r.translation for r in records]
|
| 83 |
-
words = []
|
| 84 |
-
tokenizer = TokenizerZh()
|
| 85 |
-
prev_len = 0
|
| 86 |
-
for i, rec in enumerate(records):
|
| 87 |
-
stable_text = os.path.commonprefix(translations[i:]).strip()
|
| 88 |
-
cur_len = len(stable_text)
|
| 89 |
-
if cur_len == prev_len:
|
| 90 |
-
continue
|
| 91 |
-
new_text = stable_text[prev_len:]
|
| 92 |
-
prev_len = len(stable_text)
|
| 93 |
-
|
| 94 |
-
# input(f"{rec.timestamp}\t{stable_text}")
|
| 95 |
-
|
| 96 |
-
words.extend([
|
| 97 |
-
WordTiming(
|
| 98 |
-
timestamp=float(rec.timestamp),
|
| 99 |
-
word=word,
|
| 100 |
-
)
|
| 101 |
-
for word in tokenizer(new_text).split()
|
| 102 |
-
])
|
| 103 |
-
return words
|
| 104 |
|
| 105 |
def get_words(records, key='transcription'):
|
| 106 |
sents = [getattr(r, key) for r in records]
|
|
@@ -108,7 +85,7 @@ def get_words(records, key='transcription'):
|
|
| 108 |
tokenizer = TokenizerZh()
|
| 109 |
prev_len = 0
|
| 110 |
for i, rec in enumerate(records):
|
| 111 |
-
stable_text = os.path.commonprefix(sents[i:])
|
| 112 |
cur_len = len(stable_text)
|
| 113 |
if cur_len == prev_len:
|
| 114 |
continue
|
|
@@ -121,7 +98,7 @@ def get_words(records, key='transcription'):
|
|
| 121 |
WordTiming(
|
| 122 |
timestamp=float(rec.timestamp),
|
| 123 |
word=word,
|
| 124 |
-
|
| 125 |
)
|
| 126 |
for word in tokenizer(new_text).split()
|
| 127 |
])
|
|
@@ -143,7 +120,7 @@ def calc_policy_timestamps(words: list[WordTiming]):
|
|
| 143 |
y_len = len(words)
|
| 144 |
step = x_len / y_len
|
| 145 |
g_prev = -step
|
| 146 |
-
for
|
| 147 |
g_i = w.timestamp
|
| 148 |
g_i_plum = max(
|
| 149 |
g_i,
|
|
@@ -153,63 +130,82 @@ def calc_policy_timestamps(words: list[WordTiming]):
|
|
| 153 |
w.policy_timestamp = g_i_plum
|
| 154 |
return words
|
| 155 |
|
| 156 |
-
def
|
| 157 |
x_len = words[-1].timestamp
|
| 158 |
y_len = len(words)
|
| 159 |
step = x_len / y_len
|
| 160 |
words = calc_policy_timestamps(words)
|
| 161 |
-
|
| 162 |
-
w.policy_timestamp - (i - 1) * step
|
| 163 |
-
for i,w in enumerate(words)
|
| 164 |
-
]
|
| 165 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 166 |
|
| 167 |
def calc_retranslation_latency(transcription_words, translation_words):
|
| 168 |
transcription_words = calc_policy_timestamps(transcription_words)
|
| 169 |
translation_words = calc_policy_timestamps(translation_words)
|
| 170 |
-
transcription_segments = [[] for _ in range(transcription_words[-1].
|
| 171 |
for w in transcription_words:
|
| 172 |
-
transcription_segments[w.
|
| 173 |
-
cur_end = WordTiming(timestamp=0,word='',
|
| 174 |
for segments in transcription_segments:
|
| 175 |
if segments:
|
| 176 |
cur_end = segments[-1]
|
| 177 |
else:
|
| 178 |
segments.append(cur_end)
|
| 179 |
|
| 180 |
-
translation_segment_len = [0 for _ in range(translation_words[-1].
|
| 181 |
for w in translation_words:
|
| 182 |
-
translation_segment_len[w.
|
| 183 |
|
| 184 |
latency = []
|
| 185 |
cur_segment = 0
|
| 186 |
cur_words = 0
|
| 187 |
for w in translation_words:
|
| 188 |
-
if w.
|
| 189 |
-
cur_segment = w.
|
| 190 |
cur_words = 0
|
| 191 |
# get the pseudo aligned transcription word
|
| 192 |
rel_pos = int((cur_words / translation_segment_len[cur_segment]) * len(transcription_segments[cur_segment]))
|
| 193 |
-
transcript_time = transcription_segments[cur_segment][rel_pos].
|
| 194 |
-
translation_time = w.
|
| 195 |
latency.append(translation_time - transcript_time)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 196 |
cur_words += 1
|
| 197 |
return sum(latency) / len(latency)
|
| 198 |
|
| 199 |
def main():
|
| 200 |
tag = 'gaza'
|
| 201 |
-
|
| 202 |
-
|
| 203 |
-
#
|
| 204 |
-
#
|
| 205 |
-
|
| 206 |
-
#
|
| 207 |
-
|
| 208 |
-
|
| 209 |
-
|
| 210 |
-
|
| 211 |
-
|
| 212 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 213 |
|
| 214 |
if __name__ == "__main__":
|
| 215 |
main()
|
|
|
|
| 3 |
import os
|
| 4 |
|
| 5 |
@dataclass
|
| 6 |
+
class Event:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
timestamp: float
|
| 8 |
transcription: str
|
| 9 |
translation: str
|
| 10 |
+
segment_id: int
|
| 11 |
|
| 12 |
@dataclass
|
| 13 |
+
class WordTiming:
|
| 14 |
+
timestamp: float
|
| 15 |
+
word: str
|
| 16 |
+
event: Event
|
| 17 |
+
policy_timestamp: float = None
|
|
|
|
| 18 |
|
| 19 |
+
@property
|
| 20 |
+
def segment_id(self):
|
| 21 |
+
return self.event.segment_id
|
| 22 |
|
| 23 |
def read_data(tag):
|
| 24 |
+
prev_lines = []
|
| 25 |
+
def is_prefix_of(a, b):
|
| 26 |
+
return a == b[:len(a)]
|
| 27 |
+
def is_any_prefix_of(x, cands):
|
| 28 |
+
return any([
|
| 29 |
+
is_prefix_of(x, c) or is_prefix_of(c, x)
|
| 30 |
+
for c in cands
|
| 31 |
+
])
|
| 32 |
+
|
| 33 |
+
segments = []
|
| 34 |
records = []
|
| 35 |
+
suffix = "-interim"
|
| 36 |
+
# suffix = ""
|
|
|
|
| 37 |
with (
|
| 38 |
+
open(f"data/{tag}/transcribe{suffix}.txt", 'r') as transcription_f,
|
| 39 |
+
open(f"data/{tag}/translate{suffix}.txt", 'r') as translate_f,
|
| 40 |
):
|
| 41 |
for transcription_line, translation_line in zip(transcription_f, translate_f):
|
| 42 |
+
# print("got:", transcription_line)
|
| 43 |
+
ms, transcription = transcription_line.lower().strip().split('\t')
|
| 44 |
+
ms2, translation = translation_line.lower().strip().split('\t')
|
| 45 |
assert ms == ms2
|
| 46 |
+
if not is_any_prefix_of(transcription, prev_lines): # new line
|
| 47 |
+
segments.append(records)
|
| 48 |
+
prev_lines = []
|
| 49 |
+
records = []
|
| 50 |
+
prev_lines += [transcription]
|
| 51 |
+
# input(str(prev_lines))
|
|
|
|
|
|
|
|
|
|
| 52 |
|
| 53 |
records.append(
|
| 54 |
+
Event(
|
| 55 |
timestamp=float(ms),
|
| 56 |
+
transcription=transcription,
|
| 57 |
+
translation=translation,
|
| 58 |
+
segment_id=len(segments)
|
| 59 |
)
|
| 60 |
)
|
| 61 |
+
segments.append(records)
|
| 62 |
+
# for s in segments:
|
| 63 |
+
# print("\n")
|
| 64 |
+
# for r in s:
|
| 65 |
+
# print(r)
|
| 66 |
+
return [records for records in segments if records]
|
| 67 |
+
|
| 68 |
+
def flatten_segments(segments: list[list[Event]]):
|
| 69 |
+
committed_transcription = ""
|
| 70 |
+
committed_translation = ""
|
| 71 |
+
output = []
|
| 72 |
+
for segment in segments:
|
| 73 |
+
for event in segment:
|
| 74 |
+
event.transcription = committed_transcription.rstrip() + " " + event.transcription.lstrip()
|
| 75 |
+
event.translation = committed_translation.rstrip() + " " + event.translation.lstrip()
|
| 76 |
+
if not output or event.transcription != output[-1].transcription:
|
| 77 |
+
output.append(event)
|
| 78 |
+
committed_transcription = segment[-1].transcription
|
| 79 |
+
committed_translation = segment[-1].translation
|
| 80 |
+
return output
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 81 |
|
| 82 |
def get_words(records, key='transcription'):
|
| 83 |
sents = [getattr(r, key) for r in records]
|
|
|
|
| 85 |
tokenizer = TokenizerZh()
|
| 86 |
prev_len = 0
|
| 87 |
for i, rec in enumerate(records):
|
| 88 |
+
stable_text = os.path.commonprefix(sents[i:])
|
| 89 |
cur_len = len(stable_text)
|
| 90 |
if cur_len == prev_len:
|
| 91 |
continue
|
|
|
|
| 98 |
WordTiming(
|
| 99 |
timestamp=float(rec.timestamp),
|
| 100 |
word=word,
|
| 101 |
+
event=rec,
|
| 102 |
)
|
| 103 |
for word in tokenizer(new_text).split()
|
| 104 |
])
|
|
|
|
| 120 |
y_len = len(words)
|
| 121 |
step = x_len / y_len
|
| 122 |
g_prev = -step
|
| 123 |
+
for w in words:
|
| 124 |
g_i = w.timestamp
|
| 125 |
g_i_plum = max(
|
| 126 |
g_i,
|
|
|
|
| 130 |
w.policy_timestamp = g_i_plum
|
| 131 |
return words
|
| 132 |
|
| 133 |
+
def calc_lagging(words: list[WordTiming], reduction='none'):
|
| 134 |
x_len = words[-1].timestamp
|
| 135 |
y_len = len(words)
|
| 136 |
step = x_len / y_len
|
| 137 |
words = calc_policy_timestamps(words)
|
| 138 |
+
laggings = [
|
| 139 |
+
w.policy_timestamp - ((i - 1) * step)
|
| 140 |
+
for i,w in enumerate(words, start=1)
|
| 141 |
+
]
|
| 142 |
+
if reduction == 'none':
|
| 143 |
+
return laggings
|
| 144 |
+
elif reduction == 'sum':
|
| 145 |
+
return sum(laggings)
|
| 146 |
+
return sum(laggings) / y_len
|
| 147 |
|
| 148 |
def calc_retranslation_latency(transcription_words, translation_words):
|
| 149 |
transcription_words = calc_policy_timestamps(transcription_words)
|
| 150 |
translation_words = calc_policy_timestamps(translation_words)
|
| 151 |
+
transcription_segments = [[] for _ in range(transcription_words[-1].segment_id + 1)]
|
| 152 |
for w in transcription_words:
|
| 153 |
+
transcription_segments[w.segment_id].append(w)
|
| 154 |
+
cur_end = WordTiming(timestamp=0,word='',event=Event(0,'','',0),policy_timestamp=0)
|
| 155 |
for segments in transcription_segments:
|
| 156 |
if segments:
|
| 157 |
cur_end = segments[-1]
|
| 158 |
else:
|
| 159 |
segments.append(cur_end)
|
| 160 |
|
| 161 |
+
translation_segment_len = [0 for _ in range(translation_words[-1].segment_id + 1)]
|
| 162 |
for w in translation_words:
|
| 163 |
+
translation_segment_len[w.segment_id] += 1
|
| 164 |
|
| 165 |
latency = []
|
| 166 |
cur_segment = 0
|
| 167 |
cur_words = 0
|
| 168 |
for w in translation_words:
|
| 169 |
+
if w.segment_id != cur_segment:
|
| 170 |
+
cur_segment = w.segment_id
|
| 171 |
cur_words = 0
|
| 172 |
# get the pseudo aligned transcription word
|
| 173 |
rel_pos = int((cur_words / translation_segment_len[cur_segment]) * len(transcription_segments[cur_segment]))
|
| 174 |
+
transcript_time = transcription_segments[cur_segment][rel_pos].timestamp
|
| 175 |
+
translation_time = w.timestamp
|
| 176 |
latency.append(translation_time - transcript_time)
|
| 177 |
+
z = dict(
|
| 178 |
+
w=w.word,
|
| 179 |
+
t=w.timestamp,
|
| 180 |
+
cur_w=cur_segment,
|
| 181 |
+
cur_s=cur_segment,
|
| 182 |
+
tc=transcript_time,
|
| 183 |
+
tt=translation_time,
|
| 184 |
+
lat=latency[-1],
|
| 185 |
+
)
|
| 186 |
+
# input(z)
|
| 187 |
cur_words += 1
|
| 188 |
return sum(latency) / len(latency)
|
| 189 |
|
| 190 |
def main():
|
| 191 |
tag = 'gaza'
|
| 192 |
+
segments = read_data(tag)
|
| 193 |
+
all_events = flatten_segments(segments)
|
| 194 |
+
# for e in all_events:
|
| 195 |
+
# input(e)
|
| 196 |
+
transcription_words = get_words(all_events)
|
| 197 |
+
# calc_policy_timestamps(transcription_words)
|
| 198 |
+
# for w in transcription_words:
|
| 199 |
+
# input(w)
|
| 200 |
+
print("Transcribe DAL: %.2f" % calc_lagging(transcription_words, reduction='mean'))
|
| 201 |
+
|
| 202 |
+
translation_words = get_words(all_events, key='translation')
|
| 203 |
+
latency = calc_retranslation_latency(transcription_words, translation_words)
|
| 204 |
+
print("Translate Latency: %.2f" % latency)
|
| 205 |
+
|
| 206 |
+
erasure = calc_normalized_erasure(all_events)
|
| 207 |
+
print("Translate Erasure: %.2f" % erasure)
|
| 208 |
+
|
| 209 |
|
| 210 |
if __name__ == "__main__":
|
| 211 |
main()
|
src/data/gaza/transcribe-interim.txt
ADDED
|
@@ -0,0 +1,518 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
2352 the
|
| 2 |
+
2470 the U
|
| 3 |
+
2545 the U.S
|
| 4 |
+
2740 the U.S will
|
| 5 |
+
2818 the U.S will take
|
| 6 |
+
2850 the
|
| 7 |
+
2885 the
|
| 8 |
+
2947 the U.S
|
| 9 |
+
3032 the U.S will
|
| 10 |
+
3148 the U.S will take
|
| 11 |
+
3265 the U.S will take over
|
| 12 |
+
3366 the U.S will take over
|
| 13 |
+
3469 the U.S will take over the
|
| 14 |
+
3565 the U.S will take over the
|
| 15 |
+
3627 the U.S will take over the Gaza
|
| 16 |
+
3714 the U.S will take over the Gaza Strip
|
| 17 |
+
3840 the U.S will take over the Gaza Strip
|
| 18 |
+
4045 the U.S will take over the Gaza Strip
|
| 19 |
+
4175 the U.S will take over the Gaza Strip
|
| 20 |
+
4380 the U.S will take over the Gaza Strip
|
| 21 |
+
4464 the U.S will take over the Gaza Strip and
|
| 22 |
+
4559 the U.S will take over the Gaza Strip and we
|
| 23 |
+
4769 the U.S will take over the Gaza Strip and we will
|
| 24 |
+
4848 the U.S will take over the Gaza Strip and we will
|
| 25 |
+
4967 the U.S will take over the Gaza Strip and we will do
|
| 26 |
+
5077 the U.S will take over the Gaza Strip and we will do
|
| 27 |
+
5417 the U.S will take over the Gaza Strip and we will do a
|
| 28 |
+
5515 the U.S will take over the Gaza Strip and we will do a job
|
| 29 |
+
5593 the U.S will take over the Gaza Strip and we will do a job
|
| 30 |
+
5671 the U.S will take over the Gaza Strip and we will do a job with
|
| 31 |
+
5951 the U.S will take over the Gaza Strip and we will do a job with it
|
| 32 |
+
6239 the U.S will take over the Gaza Strip and we will do a job with it too
|
| 33 |
+
6544 the U.S will take over the Gaza Strip and we will do a job with it too
|
| 34 |
+
6755 the U.S will take over the Gaza Strip and we will do a job with it too
|
| 35 |
+
6817 the U.S will take over the Gaza Strip and we will do a job with it too
|
| 36 |
+
7096 the U.S will take over the Gaza Strip and we will do a job with it too will
|
| 37 |
+
7258 the U.S will take over the Gaza Strip and we will do a job with it too will
|
| 38 |
+
7320 the U.S will take over the Gaza Strip and we will do a job with it too will own
|
| 39 |
+
7458 the U.S will take over the Gaza Strip and we will do a job with it too will own it
|
| 40 |
+
7690 the U.S will take over the Gaza Strip and we will do a job with it too will own it
|
| 41 |
+
7879 the U.S will take over the Gaza Strip and we will do a job with it too will own it and
|
| 42 |
+
8032 the U.S will take over the Gaza Strip and we will do a job with it too will own it and
|
| 43 |
+
8251 the U.S will take over the Gaza Strip and we will do a job with it too will own it and
|
| 44 |
+
8351 the U.S will take over the Gaza Strip and we will do a job with it too will own it and
|
| 45 |
+
8508 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be
|
| 46 |
+
8738 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be
|
| 47 |
+
8820 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible
|
| 48 |
+
9055 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for
|
| 49 |
+
9183 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for
|
| 50 |
+
9365 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for
|
| 51 |
+
9507 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for
|
| 52 |
+
9806 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for
|
| 53 |
+
9901 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling
|
| 54 |
+
10004 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all
|
| 55 |
+
10106 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of
|
| 56 |
+
10215 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of
|
| 57 |
+
10331 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the
|
| 58 |
+
10685 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the
|
| 59 |
+
10920 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous
|
| 60 |
+
11109 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous
|
| 61 |
+
11365 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous
|
| 62 |
+
11500 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous
|
| 63 |
+
11611 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded
|
| 64 |
+
12091 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded
|
| 65 |
+
12237 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded
|
| 66 |
+
12332 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs
|
| 67 |
+
12437 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs
|
| 68 |
+
12576 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs
|
| 69 |
+
12669 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and
|
| 70 |
+
12772 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other
|
| 71 |
+
12920 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other
|
| 72 |
+
13078 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons
|
| 73 |
+
13199 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons
|
| 74 |
+
13321 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on
|
| 75 |
+
13449 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the
|
| 76 |
+
13554 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site
|
| 77 |
+
14015 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site
|
| 78 |
+
14261 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site
|
| 79 |
+
14629 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level
|
| 80 |
+
14725 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level
|
| 81 |
+
15045 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the
|
| 82 |
+
15330 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site
|
| 83 |
+
15502 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and
|
| 84 |
+
15740 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and
|
| 85 |
+
15988 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and
|
| 86 |
+
16109 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and
|
| 87 |
+
16264 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get
|
| 88 |
+
16481 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid
|
| 89 |
+
16641 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of
|
| 90 |
+
16723 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the
|
| 91 |
+
16986 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the
|
| 92 |
+
17083 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the
|
| 93 |
+
17704 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed
|
| 94 |
+
18166 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed
|
| 95 |
+
18284 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed buildings
|
| 96 |
+
18508 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed buildings
|
| 97 |
+
18734 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed buildings
|
| 98 |
+
18949 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed buildings level
|
| 99 |
+
19108 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed buildings level
|
| 100 |
+
19238 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed buildings level It
|
| 101 |
+
19382 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed buildings level It
|
| 102 |
+
19558 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed buildings level It Out
|
| 103 |
+
19799 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed buildings level it out
|
| 104 |
+
20019 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed buildings level It Out
|
| 105 |
+
20170 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed buildings level it out create
|
| 106 |
+
20349 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed buildings level it out create
|
| 107 |
+
20524 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed buildings level it out create
|
| 108 |
+
20733 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed buildings level it out create
|
| 109 |
+
21007 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed buildings level it out create
|
| 110 |
+
21175 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed buildings level it out create an
|
| 111 |
+
21342 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed buildings level it out create an economic
|
| 112 |
+
21523 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed buildings level it out create an economic
|
| 113 |
+
21767 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed buildings level it out create an economic development
|
| 114 |
+
21973 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed buildings level it out create an economic development
|
| 115 |
+
22215 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed buildings level it out create an economic development that
|
| 116 |
+
22477 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed buildings level it out create an economic development that
|
| 117 |
+
22661 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed buildings level it out create an economic development that will
|
| 118 |
+
22839 the U.S will take over the Gaza Strip and we will do a job with it too will own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed buildings level it out create an economic development that will supply
|
| 119 |
+
22866 un
|
| 120 |
+
22902 unlim
|
| 121 |
+
22926 Unlimited
|
| 122 |
+
22989 Unlimited numbers
|
| 123 |
+
23050 Unlimited numbers of
|
| 124 |
+
23069 Unlimited
|
| 125 |
+
23289 Unlimited numbers
|
| 126 |
+
23472 Unlimited numbers of
|
| 127 |
+
23853 Unlimited numbers of jobs
|
| 128 |
+
24023 Unlimited numbers of jobs
|
| 129 |
+
24120 Unlimited numbers of jobs and
|
| 130 |
+
24343 Unlimited numbers of jobs and
|
| 131 |
+
24565 Unlimited numbers of jobs and housing
|
| 132 |
+
24956 Unlimited numbers of jobs and housing for
|
| 133 |
+
25438 the
|
| 134 |
+
25627 the people
|
| 135 |
+
25796 the people of
|
| 136 |
+
25925 the people of the
|
| 137 |
+
26054 the
|
| 138 |
+
26316 the people
|
| 139 |
+
26362 the people
|
| 140 |
+
26385 the people of
|
| 141 |
+
26464 the people of the
|
| 142 |
+
26956 the people of the area
|
| 143 |
+
27562 the people of the area
|
| 144 |
+
27819 the people of the area
|
| 145 |
+
27866 the people of the area
|
| 146 |
+
28019 the people of the area
|
| 147 |
+
28146 the people of the area do
|
| 148 |
+
28354 the people of the area do a
|
| 149 |
+
28462 the people of the area do a real
|
| 150 |
+
28620 the people of the area do a real job
|
| 151 |
+
28757 the people of the area do a real job
|
| 152 |
+
28986 the people of the area do a real job
|
| 153 |
+
29370 the people of the area do a real job
|
| 154 |
+
29434 the people of the area do a real job do
|
| 155 |
+
29590 the people of the area do a real job do something
|
| 156 |
+
29802 the people of the area do a real job do something
|
| 157 |
+
29998 the people of the area do a real job do something different
|
| 158 |
+
30107 the people of the area do a real job do something different
|
| 159 |
+
30188 the people of the area do a real job do something different
|
| 160 |
+
30348 the people of the area do a real job do something different just
|
| 161 |
+
30508 the people of the area do a real job do something different just
|
| 162 |
+
30760 the people of the area do a real job do something different just can't
|
| 163 |
+
30854 the people of the area do a real job do something different just can't go
|
| 164 |
+
30965 the people of the area do a real job do something different just can't go
|
| 165 |
+
31052 the people of the area do a real job do something different just can't go
|
| 166 |
+
31220 the people of the area do a real job do something different just can't go back
|
| 167 |
+
31338 the people of the area do a real job do something different just can't go back
|
| 168 |
+
31487 the people of the area do a real job do something different just can't go back if
|
| 169 |
+
31568 the people of the area do a real job do something different just can't go back if you go
|
| 170 |
+
31706 the people of the area do a real job do something different just can't go back if you go back
|
| 171 |
+
31834 the people of the area do a real job do something different just can't go back if you go back
|
| 172 |
+
31930 the people of the area do a real job do something different just can't go back if you go back
|
| 173 |
+
32137 the people of the area do a real job do something different just can't go back if you go back
|
| 174 |
+
32268 the people of the area do a real job do something different just can't go back if you go back
|
| 175 |
+
32426 the people of the area do a real job do something different just can't go back if you go back
|
| 176 |
+
32556 the people of the area do a real job do something different just can't go back if you go back it's
|
| 177 |
+
32653 the people of the area do a real job do something different just can't go back if you go back it's going
|
| 178 |
+
32758 the people of the area do a real job do something different just can't go back if you go back it's going to
|
| 179 |
+
32881 the people of the area do a real job do something different just can't go back if you go back it's going to
|
| 180 |
+
32973 the people of the area do a real job do something different just can't go back if you go back it's going to end
|
| 181 |
+
33058 the people of the area do a real job do something different just can't go back if you go back it's going to end up
|
| 182 |
+
33193 the people of the area do a real job do something different just can't go back if you go back it's going to end up
|
| 183 |
+
33321 the people of the area do a real job do something different just can't go back if you go back it's going to end up the
|
| 184 |
+
33410 the people of the area do a real job do something different just can't go back if you go back it's going to end up the same
|
| 185 |
+
33542 the people of the area do a real job do something different just can't go back if you go back it's going to end up the same
|
| 186 |
+
33675 the people of the area do a real job do something different just can't go back if you go back it's going to end up the same way
|
| 187 |
+
33793 the people of the area do a real job do something different just can't go back if you go back it's going to end up the same way it
|
| 188 |
+
33899 the people of the area do a real job do something different just can't go back if you go back it's going to end up the same way it has
|
| 189 |
+
34006 the people of the area do a real job do something different just can't go back if you go back it's going to end up the same way it has
|
| 190 |
+
34134 the people of the area do a real job do something different just can't go back if you go back it's going to end up the same way it has for
|
| 191 |
+
34239 the people of the area do a real job do something different just can't go back if you go back it's going to end up the same way it has for
|
| 192 |
+
34827 the people of the area do a real job do something different just can't go back if you go back it's going to end up the same way it has for 100 years
|
| 193 |
+
35455 I'm
|
| 194 |
+
35629 I'm hope
|
| 195 |
+
35732 I'm hopeful
|
| 196 |
+
35815 I'm hopeful that
|
| 197 |
+
36108 I'm
|
| 198 |
+
36124 I'm
|
| 199 |
+
36296 I'm hopeful
|
| 200 |
+
36455 I'm hopeful that
|
| 201 |
+
36644 I'm hopeful that
|
| 202 |
+
36728 I'm hopeful that this
|
| 203 |
+
36866 I'm hopeful that this
|
| 204 |
+
37154 I'm hopeful that this
|
| 205 |
+
37217 I'm hopeful that this
|
| 206 |
+
37324 I'm hopeful that this ceasefire
|
| 207 |
+
37445 I'm hopeful that this ceasefire
|
| 208 |
+
37697 I'm hopeful that this ceasefire could
|
| 209 |
+
37958 I'm hopeful that this ceasefire could be
|
| 210 |
+
38052 I'm hopeful that this ceasefire could be
|
| 211 |
+
38114 I'm hopeful that this ceasefire could be
|
| 212 |
+
38253 I'm hopeful that this ceasefire could be the
|
| 213 |
+
38568 I'm hopeful that this ceasefire could be the beginning
|
| 214 |
+
38631 I'm hopeful that this ceasefire could be the beginning
|
| 215 |
+
38727 I'm hopeful that this ceasefire could be the beginning of
|
| 216 |
+
38907 I'm hopeful that this ceasefire could be the beginning of
|
| 217 |
+
39059 I'm hopeful that this ceasefire could be the beginning of
|
| 218 |
+
39154 I'm hopeful that this ceasefire could be the beginning of
|
| 219 |
+
39248 I'm hopeful that this ceasefire could be the beginning of the
|
| 220 |
+
39324 I'm hopeful that this ceasefire could be the beginning of the larger
|
| 221 |
+
39414 I'm hopeful that this ceasefire could be the beginning of the larger and
|
| 222 |
+
39586 I'm hopeful that this ceasefire could be the beginning of the larger and
|
| 223 |
+
39702 I'm hopeful that this ceasefire could be the beginning of the larger and more
|
| 224 |
+
40138 I'm hopeful that this ceasefire could be the beginning of the larger and more
|
| 225 |
+
40228 I'm hopeful that this ceasefire could be the beginning of the larger and more
|
| 226 |
+
40304 I'm hopeful that this ceasefire could be the beginning of the larger and more enduring
|
| 227 |
+
40403 I'm hopeful that this ceasefire could be the beginning of the larger and more enduring
|
| 228 |
+
40619 I'm hopeful that this ceasefire could be the beginning of the larger and more enduring
|
| 229 |
+
40707 I'm hopeful that this ceasefire could be the beginning of the larger and more enduring peace
|
| 230 |
+
40808 I'm hopeful that this ceasefire could be the beginning of the larger and more enduring peace that
|
| 231 |
+
40924 I'm hopeful that this ceasefire could be the beginning of the larger and more enduring peace that will
|
| 232 |
+
41163 I'm hopeful that this ceasefire could be the beginning of the larger and more enduring peace that will end
|
| 233 |
+
41301 I'm hopeful that this ceasefire could be the beginning of the larger and more enduring peace that will end the
|
| 234 |
+
41647 I'm hopeful that this ceasefire could be the beginning of the larger and more enduring peace that will end the
|
| 235 |
+
41933 I'm hopeful that this ceasefire could be the beginning of the larger and more enduring peace that will end the
|
| 236 |
+
42294 I'm hopeful that this ceasefire could be the beginning of the larger and more enduring peace that will end the
|
| 237 |
+
42417 I'm hopeful that this ceasefire could be the beginning of the larger and more enduring peace that will end the
|
| 238 |
+
42552 I'm hopeful that this ceasefire could be the beginning of the larger and more enduring peace that will end the
|
| 239 |
+
42634 I'm hopeful that this ceasefire could be the beginning of the larger and more enduring peace that will end the Bloodshed
|
| 240 |
+
42803 I'm hopeful that this ceasefire could be the beginning of the larger and more enduring peace that will end the Bloodshed and
|
| 241 |
+
42899 I'm hopeful that this ceasefire could be the beginning of the larger and more enduring peace that will end the Bloodshed and
|
| 242 |
+
43094 I'm hopeful that this ceasefire could be the beginning of the larger and more enduring peace that will end the Bloodshed and killing
|
| 243 |
+
43201 I'm hopeful that this ceasefire could be the beginning of the larger and more enduring peace that will end the Bloodshed and killing
|
| 244 |
+
43280 I'm hopeful that this ceasefire could be the beginning of the larger and more enduring peace that will end the Bloodshed and killing
|
| 245 |
+
43421 I'm hopeful that this ceasefire could be the beginning of the larger and more enduring peace that will end the Bloodshed and killing
|
| 246 |
+
43506 I'm hopeful that this ceasefire could be the beginning of the larger and more enduring peace that will end the Bloodshed and killing once
|
| 247 |
+
43644 I'm hopeful that this ceasefire could be the beginning of the larger and more enduring peace that will end the Bloodshed and killing once and
|
| 248 |
+
43802 I'm hopeful that this ceasefire could be the beginning of the larger and more enduring peace that will end the Bloodshed and killing once and for
|
| 249 |
+
43873 I'm hopeful that this ceasefire could be the beginning of the larger and more enduring peace that will end the Bloodshed and killing once and for all
|
| 250 |
+
43936 with
|
| 251 |
+
44034 with the
|
| 252 |
+
44130 with
|
| 253 |
+
44230 with the
|
| 254 |
+
44404 with the same
|
| 255 |
+
44502 with
|
| 256 |
+
44611 with
|
| 257 |
+
44755 with
|
| 258 |
+
44788 with the
|
| 259 |
+
44974 with the same
|
| 260 |
+
44993 with the same
|
| 261 |
+
45067 with the same
|
| 262 |
+
45102 with the same
|
| 263 |
+
45253 with the same goal
|
| 264 |
+
45587 with the same goal
|
| 265 |
+
45664 with the same goal in
|
| 266 |
+
45723 with the same goal in mind
|
| 267 |
+
45828 with the same goal in mind
|
| 268 |
+
45915 with the same goal in mind
|
| 269 |
+
45998 with the same goal in mind
|
| 270 |
+
46094 with the same goal in mind
|
| 271 |
+
46165 with the same goal in mind my
|
| 272 |
+
46575 with the same goal in mind my
|
| 273 |
+
46770 with the same goal in mind my Administration
|
| 274 |
+
46836 with the same goal in mind my Administration
|
| 275 |
+
47114 with the same goal in mind my Administration
|
| 276 |
+
47220 with the same goal in mind my Administration has been
|
| 277 |
+
47309 with the same goal in mind my Administration has been
|
| 278 |
+
47482 with the same goal in mind my Administration has been moving
|
| 279 |
+
47569 with the same goal in mind my Administration has been moving
|
| 280 |
+
47865 with the same goal in mind my Administration has been moving quickly
|
| 281 |
+
47943 with the same goal in mind my Administration has been moving quickly
|
| 282 |
+
48078 with the same goal in mind my Administration has been moving quickly
|
| 283 |
+
48191 with the same goal in mind my Administration has been moving quickly to
|
| 284 |
+
48306 with the same goal in mind my Administration has been moving quickly to
|
| 285 |
+
48475 with the same goal in mind my Administration has been moving quickly to restore
|
| 286 |
+
48603 with the same goal in mind my Administration has been moving quickly to restore
|
| 287 |
+
48773 with the same goal in mind my Administration has been moving quickly to restore trust
|
| 288 |
+
49149 with the same goal in mind my Administration has been moving quickly to restore trust
|
| 289 |
+
49276 with the same goal in mind my Administration has been moving quickly to restore trust in
|
| 290 |
+
49553 with the same goal in mind my Administration has been moving quickly to restore trust in
|
| 291 |
+
49665 with the same goal in mind my Administration has been moving quickly to restore trust in
|
| 292 |
+
49804 with the same goal in mind my Administration has been moving quickly to restore trust in the
|
| 293 |
+
49900 with the same goal in mind my Administration has been moving quickly to restore trust in the
|
| 294 |
+
50188 with the same goal in mind my Administration has been moving quickly to restore trust in the
|
| 295 |
+
50318 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance
|
| 296 |
+
50392 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance
|
| 297 |
+
50558 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and
|
| 298 |
+
50857 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and
|
| 299 |
+
51012 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild
|
| 300 |
+
51255 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild
|
| 301 |
+
51414 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild
|
| 302 |
+
51512 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American
|
| 303 |
+
51609 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American
|
| 304 |
+
51812 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American
|
| 305 |
+
51909 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength
|
| 306 |
+
52114 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength
|
| 307 |
+
52217 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout
|
| 308 |
+
52344 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the
|
| 309 |
+
52568 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region
|
| 310 |
+
52864 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region
|
| 311 |
+
52957 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region
|
| 312 |
+
53079 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region
|
| 313 |
+
53212 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region
|
| 314 |
+
53514 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and
|
| 315 |
+
53605 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and
|
| 316 |
+
53669 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've
|
| 317 |
+
53779 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've
|
| 318 |
+
53871 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really
|
| 319 |
+
54108 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done
|
| 320 |
+
54234 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done
|
| 321 |
+
54358 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that
|
| 322 |
+
54605 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that
|
| 323 |
+
54745 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that
|
| 324 |
+
54881 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're
|
| 325 |
+
55016 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're
|
| 326 |
+
55397 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a
|
| 327 |
+
55594 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected
|
| 328 |
+
55771 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected
|
| 329 |
+
55981 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation
|
| 330 |
+
56372 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again
|
| 331 |
+
56651 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again
|
| 332 |
+
56956 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again
|
| 333 |
+
57363 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A
|
| 334 |
+
57619 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A
|
| 335 |
+
57795 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A
|
| 336 |
+
57959 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A
|
| 337 |
+
58167 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A lot's happened
|
| 338 |
+
58458 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A lot's happened in
|
| 339 |
+
58675 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A lot's happened in the
|
| 340 |
+
58959 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A lot's happened in the last
|
| 341 |
+
59153 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A lot's happened in the last
|
| 342 |
+
59354 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A lot's happened in the last couple
|
| 343 |
+
59540 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A lot's happened in the last couple of
|
| 344 |
+
59732 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A lot's happened in the last couple of
|
| 345 |
+
59891 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A lot's happened in the last couple of
|
| 346 |
+
60042 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A lot's happened in the last couple of weeks
|
| 347 |
+
60262 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A lot's happened in the last couple of weeks we
|
| 348 |
+
60416 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A lot's happened in the last couple of weeks we are
|
| 349 |
+
60548 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A lot's happened in the last couple of weeks we are
|
| 350 |
+
60753 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A lot's happened in the last couple of weeks we are
|
| 351 |
+
61030 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A lot's happened in the last couple of weeks we are actually
|
| 352 |
+
61370 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A lot's happened in the last couple of weeks we are actually a
|
| 353 |
+
61582 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A lot's happened in the last couple of weeks we are actually a
|
| 354 |
+
61746 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A lot's happened in the last couple of weeks we are actually a
|
| 355 |
+
61966 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A lot's happened in the last couple of weeks we are actually a very
|
| 356 |
+
62165 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A lot's happened in the last couple of weeks we are actually a very
|
| 357 |
+
62343 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A lot's happened in the last couple of weeks we are actually a very respected
|
| 358 |
+
62554 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A lot's happened in the last couple of weeks we are actually a very respected
|
| 359 |
+
62807 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A lot's happened in the last couple of weeks we are actually a very respected Nation
|
| 360 |
+
62989 with the same goal in mind my Administration has been moving quickly to restore trust in the alliance and rebuild American strength throughout the region and we've really done that we're a respected Nation again A lot's happened in the last couple of weeks we are actually a very respected Nation again
|
| 361 |
+
63145 I
|
| 362 |
+
63177 I ended
|
| 363 |
+
63495 I ended the
|
| 364 |
+
63744 I ended the last
|
| 365 |
+
63791 I
|
| 366 |
+
63841 I ended
|
| 367 |
+
64010 I ended
|
| 368 |
+
64196 I ended the
|
| 369 |
+
64218 I ended the
|
| 370 |
+
64383 I ended the last
|
| 371 |
+
64460 I ended the last
|
| 372 |
+
64540 I ended the last
|
| 373 |
+
64629 I ended the last
|
| 374 |
+
64847 I ended the last
|
| 375 |
+
65054 I ended the last
|
| 376 |
+
65424 I ended the last
|
| 377 |
+
65488 I ended the last
|
| 378 |
+
65609 I ended the last administration's
|
| 379 |
+
65712 I ended the last administration's
|
| 380 |
+
65823 I ended the last administration's
|
| 381 |
+
66077 I ended the last administration's Defector
|
| 382 |
+
66192 I ended the last administration's Defector
|
| 383 |
+
66390 I ended the last administration's Defector
|
| 384 |
+
66578 I ended the last administration's Defector arms
|
| 385 |
+
66959 I ended the last administration's Defector arms embargo
|
| 386 |
+
67487 I ended the last administration's Defector arms embargo
|
| 387 |
+
67583 I ended the last administration's Defector arms embargo
|
| 388 |
+
67883 I ended the last administration's Defector arms embargo
|
| 389 |
+
68046 I ended the last administration's Defector arms embargo on
|
| 390 |
+
68166 I ended the last administration's Defector arms embargo on over
|
| 391 |
+
68467 I ended the last administration's Defector arms embargo on over
|
| 392 |
+
68590 I ended the last administration's Defector arms embargo on over
|
| 393 |
+
68658 I ended the last administration's Defector arms embargo on over
|
| 394 |
+
68979 I ended the last administration's Defector arms embargo on over
|
| 395 |
+
69073 I ended the last administration's Defector arms embargo on over one billion
|
| 396 |
+
69208 I ended the last administration's Defector arms embargo on over one billion dollars
|
| 397 |
+
69493 I ended the last administration's Defector arms embargo on over one billion dollars in
|
| 398 |
+
69768 I ended the last administration's Defector arms embargo on over one billion dollars in military
|
| 399 |
+
69845 I ended the last administration's Defector arms embargo on over one billion dollars in military
|
| 400 |
+
70401 I ended the last administration's Defector arms embargo on over one billion dollars in military
|
| 401 |
+
70514 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance
|
| 402 |
+
70931 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for
|
| 403 |
+
71031 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for
|
| 404 |
+
71527 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel
|
| 405 |
+
71898 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel
|
| 406 |
+
71993 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel
|
| 407 |
+
72124 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel
|
| 408 |
+
72259 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel
|
| 409 |
+
72422 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel
|
| 410 |
+
72534 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and
|
| 411 |
+
72629 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also
|
| 412 |
+
72779 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also
|
| 413 |
+
72899 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased
|
| 414 |
+
73026 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to
|
| 415 |
+
73171 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to
|
| 416 |
+
73299 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to
|
| 417 |
+
73406 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce
|
| 418 |
+
73630 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that
|
| 419 |
+
73845 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that
|
| 420 |
+
73940 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this
|
| 421 |
+
74089 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this
|
| 422 |
+
74203 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this
|
| 423 |
+
74334 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon
|
| 424 |
+
74586 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon
|
| 425 |
+
74751 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the
|
| 426 |
+
74942 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United
|
| 427 |
+
75104 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United
|
| 428 |
+
75264 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States
|
| 429 |
+
75575 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States
|
| 430 |
+
75741 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States
|
| 431 |
+
75884 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States
|
| 432 |
+
76114 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew
|
| 433 |
+
76287 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from
|
| 434 |
+
76548 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from
|
| 435 |
+
76722 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the
|
| 436 |
+
76961 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the
|
| 437 |
+
77141 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the
|
| 438 |
+
77343 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the
|
| 439 |
+
77600 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the
|
| 440 |
+
77805 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the
|
| 441 |
+
77990 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic
|
| 442 |
+
78176 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic
|
| 443 |
+
78370 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic
|
| 444 |
+
78570 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic and
|
| 445 |
+
78763 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic and human
|
| 446 |
+
78933 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic
|
| 447 |
+
79091 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council
|
| 448 |
+
79267 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council
|
| 449 |
+
79396 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council
|
| 450 |
+
79581 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and
|
| 451 |
+
79827 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and
|
| 452 |
+
80048 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and
|
| 453 |
+
80315 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended
|
| 454 |
+
80558 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of
|
| 455 |
+
80730 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of
|
| 456 |
+
80996 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the
|
| 457 |
+
81178 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support
|
| 458 |
+
81331 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support
|
| 459 |
+
81535 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for
|
| 460 |
+
81652 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the
|
| 461 |
+
81828 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the
|
| 462 |
+
81989 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN
|
| 463 |
+
82266 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief
|
| 464 |
+
82475 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and
|
| 465 |
+
82715 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and
|
| 466 |
+
82880 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and
|
| 467 |
+
83134 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and works
|
| 468 |
+
83267 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and works
|
| 469 |
+
83467 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and works agency
|
| 470 |
+
83626 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and works agency
|
| 471 |
+
83925 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and works agency
|
| 472 |
+
84094 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and works agency which
|
| 473 |
+
84358 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and works agency which
|
| 474 |
+
84597 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and works agency which funneled
|
| 475 |
+
84812 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and works agency which funneled money
|
| 476 |
+
85059 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and works agency which funneled money
|
| 477 |
+
85335 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and works agency which funneled money
|
| 478 |
+
85569 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and works agency which funneled money to
|
| 479 |
+
85772 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and works agency which funneled money to
|
| 480 |
+
86085 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and works agency which funneled money to
|
| 481 |
+
86330 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and works agency which funneled money to
|
| 482 |
+
86504 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and works agency which funneled money to Hamas
|
| 483 |
+
86675 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and works agency which funneled money to Hamas and
|
| 484 |
+
86888 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and works agency which funneled money to Hamas and which
|
| 485 |
+
87124 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and works agency which funneled money to Hamas and which was
|
| 486 |
+
87265 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and works agency which funneled money to Hamas and which was
|
| 487 |
+
87423 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and works agency which funneled money to Hamas and which was very
|
| 488 |
+
87653 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and works agency which funneled money to Hamas and which was very
|
| 489 |
+
87807 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and works agency which funneled money to Hamas and which was very disloyal
|
| 490 |
+
88059 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and works agency which funneled money to Hamas and which was very disloyal to
|
| 491 |
+
88328 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and works agency which funneled money to Hamas and which was very disloyal to
|
| 492 |
+
88546 I ended the last administration's Defector arms embargo on over one billion dollars in military assistance for Israel and I'm also pleased to announce that this afternoon the United States withdrew from the anti-semitic UN Human Rights Council and ended all of the support for the UN relief and works agency which funneled money to Hamas and which was very disloyal to humanity
|
| 493 |
+
88563 today
|
| 494 |
+
88599 today I
|
| 495 |
+
88666 today I also
|
| 496 |
+
88687 today
|
| 497 |
+
88724 today
|
| 498 |
+
88972 today I
|
| 499 |
+
89001 today I
|
| 500 |
+
89162 today I also
|
| 501 |
+
89248 today I also took
|
| 502 |
+
89661 today I also took action
|
| 503 |
+
89768 today I also took action
|
| 504 |
+
89859 today I also took action to
|
| 505 |
+
90077 today I also took action to
|
| 506 |
+
90254 today I also took action to restore
|
| 507 |
+
90418 today I also took action to restore
|
| 508 |
+
90498 today I also took action to restore
|
| 509 |
+
90608 today I also took action to restore a
|
| 510 |
+
90921 today I also took action to restore a
|
| 511 |
+
91025 today I also took action to restore a maximum
|
| 512 |
+
91295 today I also took action to restore a maximum
|
| 513 |
+
91423 today I also took action to restore a maximum
|
| 514 |
+
91529 today I also took action to restore a maximum
|
| 515 |
+
91621 today I also took action to restore a maximum pressure
|
| 516 |
+
91730 today I also took action to restore a maximum pressure
|
| 517 |
+
92001 today I also took action to restore a maximum pressure policy
|
| 518 |
+
92254 today I also took action to restore a maximum pressure policy on
|
src/data/gaza/transcribe.txt
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
23224 the us will take over the gaza strip and we will do a job with it too we'll own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed buildings level it out create an economic development that will supply
|
| 2 |
+
26025 unlimited numbers of jobs in housing for
|
| 3 |
+
36073 the people of the area do a real job do something different just can't go back if you go back it's going to end up the same way it has for 100 years
|
| 4 |
+
44950 i'm hopeful that this cease-fire could be the beginning of a larger and more enduring peace that will end the bloodshed and killing once and for all
|
| 5 |
+
64171 with the same goal in mind my administration has been moving quickly to restore trust in the alliance and rebuild american strength throughout the region and we've really done that we're a respected nation again a lot's happened in the last couple of weeks we are actually a very respected nation again
|
| 6 |
+
88948 i ended the last administration's de facto arms embargo on over $1 billion in military assistance for israel and i'm also pleased to announce that this afternoon the united states withdrew from the anti-semitic un human rights council and ended all of the support for the un relief and works agency which funnelled money to hamas and which was very disloyal to humanity
|
| 7 |
+
93322 today i also took action to restore a maximum pressure policy on
|
src/data/gaza/translate-interim.txt
ADDED
|
@@ -0,0 +1,518 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
2352 這
|
| 2 |
+
2470 美國
|
| 3 |
+
2545 美國
|
| 4 |
+
2740 美國將
|
| 5 |
+
2818 美國將採取
|
| 6 |
+
2850 這
|
| 7 |
+
2885 這
|
| 8 |
+
2947 美國
|
| 9 |
+
3032 美國將
|
| 10 |
+
3148 美國將採取
|
| 11 |
+
3265 美國將接管
|
| 12 |
+
3366 美國將接管
|
| 13 |
+
3469 美國將接管
|
| 14 |
+
3565 美國將接管
|
| 15 |
+
3627 美國將接管加沙
|
| 16 |
+
3714 美國將接管加薩地帶
|
| 17 |
+
3840 美國將接管加薩地帶
|
| 18 |
+
4045 美國將接管加薩地帶
|
| 19 |
+
4175 美國將接管加薩地帶
|
| 20 |
+
4380 美國將接管加薩地帶
|
| 21 |
+
4464 美國將接管加薩地帶,
|
| 22 |
+
4559 美國將接管加薩地帶,我們
|
| 23 |
+
4769 美國將接管加薩地帶,我們將
|
| 24 |
+
4848 美國將接管加薩地帶,我們將
|
| 25 |
+
4967 美國將接管加薩地帶,我們將
|
| 26 |
+
5077 美國將接管加薩地帶,我們將
|
| 27 |
+
5417 美國將接管加薩地帶,我們將
|
| 28 |
+
5515 美國將接管加薩地帶,我們將做一項工作
|
| 29 |
+
5593 美國將接管加薩地帶,我們將做一項工作
|
| 30 |
+
5671 美國將接管加薩地帶,我們將
|
| 31 |
+
5951 美國將接管加薩地帶,我們將利用它完成一項任務
|
| 32 |
+
6239 美國將接管加薩地帶,我們也將在那裡完成一項工作
|
| 33 |
+
6544 美國將接管加薩地帶,我們也將在那裡完成一項工作
|
| 34 |
+
6755 美國將接管加薩地帶,我們也將在那裡完成一項工作
|
| 35 |
+
6817 美國將接管加薩地帶,我們也將在那裡完成一項工作
|
| 36 |
+
7096 美國將接管加薩地帶,我們也會在那裡做事
|
| 37 |
+
7258 美國將接管加薩地帶,我們也會在那裡做事
|
| 38 |
+
7320 美國將接管加薩地帶,我們也會在那裡做事
|
| 39 |
+
7458 美國將接管加薩地帶,我們也會對其進行治理,我們將擁有它
|
| 40 |
+
7690 美國將接管加薩地帶,我們也會對其進行治理,我們將擁有它
|
| 41 |
+
7879 美國將接管加薩地帶,我們也會在那裡做事,擁有它,
|
| 42 |
+
8032 美國將接管加薩地帶,我們也會在那裡做事,擁有它,
|
| 43 |
+
8251 美國將接管加薩地帶,我們也會在那裡做事,擁有它,
|
| 44 |
+
8351 美國將接管加薩地帶,我們也會在那裡做事,擁有它,
|
| 45 |
+
8508 美國將接管加薩地帶,我們也會在那裡做事,擁有它,成為
|
| 46 |
+
8738 美國將接管加薩地帶,我們也會在那裡做事,擁有它,成為
|
| 47 |
+
8820 美國將接管加薩地帶,我們也將對它負責,擁有它並承擔責任
|
| 48 |
+
9055 美國將接管加薩地帶,我們也將對它負責,擁有它,並對其負責
|
| 49 |
+
9183 美國將接管加薩地帶,我們也將對它負責,擁有它,並對其負責
|
| 50 |
+
9365 美國將接管加薩地帶,我們也將對它負責,擁有它並負責
|
| 51 |
+
9507 美國將接管加薩地帶,我們也將對它負責,擁有它並負責
|
| 52 |
+
9806 美國將接管加薩地帶,我們也將對它負責,擁有它,並對其負責
|
| 53 |
+
9901 美國將接管加薩地帶,我們也將對它進行管理,擁有它並負責拆除
|
| 54 |
+
10004 美國將接管加薩地帶,我們也將對它進行管理,擁有它並負責拆除所有
|
| 55 |
+
10106 美國將接管加薩地帶,我們也將對它進行處理,擁有它並負責拆除所有
|
| 56 |
+
10215 美國將接管加薩地帶,我們也將對它進行處理,擁有它並負責拆除所有
|
| 57 |
+
10331 美國將接管加薩地帶,我們也將對它進行管理,擁有它,並負責拆除所有
|
| 58 |
+
10685 美國將接管加薩地帶,我們也將對它進行管理,擁有它,並負責拆除所有
|
| 59 |
+
10920 美國將接管加薩地帶,我們也將對它進行管理,並負責拆除所有危險的
|
| 60 |
+
11109 美國將接管加薩地帶,我們也將對它進行管理,並負責拆除所有危險的
|
| 61 |
+
11365 美國將接管加薩地帶,我們也將對它進行管理,並負責拆除所有危險的
|
| 62 |
+
11500 美國將接管加薩地帶,我們也將對它進行管理,並負責拆除所有危險的
|
| 63 |
+
11611 美國將接管加薩地帶,我們也將對它進行管理,擁有它並負責拆除所有危險的未爆炸裝置
|
| 64 |
+
12091 美國將接管加薩地帶,我們也將對它進行管理,擁有它並負責拆除所有危險的未爆炸裝置
|
| 65 |
+
12237 美國將接管加薩地帶,我們也將對它進行管理,擁有它並負責拆除所有危險的未爆炸裝置
|
| 66 |
+
12332 美國將接管加薩地帶,我們也將對它進行管理,並負責拆除所有危險的未爆炸炸彈
|
| 67 |
+
12437 美國將接管加薩地帶,我們也將對它進行管理,並負責拆除所有危險的未爆炸炸彈
|
| 68 |
+
12576 美國將接管加薩地帶,我們也將對它進行管理,並負責拆除所有危險的未爆炸炸彈
|
| 69 |
+
12669 美國將接管加薩地帶,我們也將對它進行管理,並負責拆除所有危險的未爆炸炸彈,
|
| 70 |
+
12772 美國將接管加薩地帶,我們也將對它進行管理,負責拆除所有危險的未爆炸炸彈和其他
|
| 71 |
+
12920 美國將接管加薩地帶,我們也將對它進行管理,負責拆除所有危險的未爆炸炸彈和其他
|
| 72 |
+
13078 美國將接管加薩地帶,我們也將對它進行管理,並負責拆除所有危險的未爆炸炸彈和其他武器
|
| 73 |
+
13199 美國將接管加薩地帶,我們也將對它進行管理,並負責拆除所有危險的未爆炸炸彈和其他武器
|
| 74 |
+
13321 美國將接管加薩地帶,我們也將對它進行管理,並負責���除那裡所有危險的未爆炸炸彈和其他武器
|
| 75 |
+
13449 美國將接管加薩地帶,我們也將對它進行管理,並負責拆除加薩地帶上所有危險的未爆炸炸彈和其他武器
|
| 76 |
+
13554 美國將接管加薩地帶,我們也將對它進行管理,並負責拆除該地區所有危險的未爆炸炸彈和其他武器
|
| 77 |
+
14015 美國將接管加薩地帶,我們也將對它進行管理,並負責拆除該地區所有危險的未爆炸炸彈和其他武器
|
| 78 |
+
14261 美國將接管加薩地帶,我們也將對它進行管理,並負責拆除該地區所有危險的未爆炸炸彈和其他武器
|
| 79 |
+
14629 美國將接管加薩地帶,我們也將對它進行管理,並負責拆除所有危險的未爆炸炸彈和其他現場武器
|
| 80 |
+
14725 美國將接管加薩地帶,我們也將對它進行管理,並負責拆除所有危險的未爆炸炸彈和其他現場武器
|
| 81 |
+
15045 美國將接管加薩地帶,我們也將對它進行接管,我們將擁有它,並負責拆除現場所有危險的未爆炸炸彈和其他武器
|
| 82 |
+
15330 美國將接管加薩地帶,我們也將對它進行接管,我們將擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,將現場夷為平地
|
| 83 |
+
15502 美國將接管加薩地帶,我們也將對它進行接管,我們將擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,平整現場,
|
| 84 |
+
15740 美國將接管加薩地帶,我們也將對它進行接管,我們將擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,平整現場,
|
| 85 |
+
15988 美國將接管加薩地帶,我們也將對它進行接管,我們將擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,平整現場,
|
| 86 |
+
16109 美國將接管加薩地帶,我們也將對它進行接管,我們將擁有它,並負責拆除現場所有危險的未爆炸炸彈和其他武器,平整現場,
|
| 87 |
+
16264 美國將接管加薩地帶,我們也將對它進行處理,擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場並獲得
|
| 88 |
+
16481 美國將接管加薩地帶,我們也將對它進行處理,擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場並清除
|
| 89 |
+
16641 美國將接管加薩地帶,我們也將對它進行處理,擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場並清除
|
| 90 |
+
16723 美國將接管加薩地帶,我們也將對它進行處理,我們將擁有它,並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,並清除
|
| 91 |
+
16986 美國將接管加薩地帶,我們也將對它進行處理,我們將擁有它,並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,並清除
|
| 92 |
+
17083 美國將接管加薩地帶,我們也將對它進行處理,我們將擁有它,並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,並清除
|
| 93 |
+
17704 美國將接管加薩地帶,我們也將對它進行處理,我們將擁有它,並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,清除被毀壞的
|
| 94 |
+
18166 美國將接管加薩地帶,我們也將對它進行處理,我們將擁有它,並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,清除被毀壞的
|
| 95 |
+
18284 美國將接管加薩地帶,我們也將對它進行接管,我們將擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場並拆除被毀壞的建築物
|
| 96 |
+
18508 美國將接管加薩地帶,我們也將對它進行接管,我們將擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場並拆除被毀壞的建築物
|
| 97 |
+
18734 美國將接管加薩地帶,我們也將對它進行接管,我們將擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場並拆除被毀壞的建築物
|
| 98 |
+
18949 美國將接管加薩地帶,我們也將對它進行接管,我們將擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,清除被毀壞的建築物
|
| 99 |
+
19108 美國將接管加薩地帶,我們也將對它進行接管,我們將擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,清除被毀壞的建築物
|
| 100 |
+
19238 美國將接管加薩地帶,我們也將對它進行處理,我們將擁有它,並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,拆除被毀壞的建築物
|
| 101 |
+
19382 美國將接管加薩地帶,我們也將對它進行處理,我們將擁有它,並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,拆除被毀壞的建築物
|
| 102 |
+
19558 美國將接管加薩地帶,我們也將對它進行接管,我們將擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,拆除被毀壞的建築物,夷平它
|
| 103 |
+
19799 美國將接管加薩地帶,我們也將對它進行處理,我們將擁有它並負責拆除現場所有危��的未爆炸炸彈和其他武器,夷平現場,拆除被毀壞的建築物
|
| 104 |
+
20019 美國將接管加薩地帶,我們也將對它進行接管,我們將擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,拆除被毀壞的建築物,夷平它
|
| 105 |
+
20170 美國將接管加薩地帶,我們也將對它進行處理,我們將擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,拆除被毀壞的建築物,夷平現場,創造
|
| 106 |
+
20349 美國將接管加薩地帶,我們也將對它進行處理,我們將擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,拆除被毀壞的建築物,夷平現場,創造
|
| 107 |
+
20524 美國將接管加薩地帶,我們也將對它進行處理,我們將擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,拆除被毀壞的建築物,夷平現場,創造
|
| 108 |
+
20733 美國將接管加薩地帶,我們也將對它進行處理,我們將擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,拆除被毀壞的建築物,夷平現場,創造
|
| 109 |
+
21007 美國將接管加薩地帶,我們也將對它進行處理,我們將擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,拆除被毀壞的建築物,夷平現場,創造
|
| 110 |
+
21175 美國將接管加薩地帶,我們也將對它進行處理,我們將擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,拆除被毀壞的建築物,夷平現場,創造一個
|
| 111 |
+
21342 美國將接管加薩地帶,我們也將對它進行處理,我們將擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,拆除被毀壞的建築物,創造經濟
|
| 112 |
+
21523 美國將接管加薩地帶,我們也將對它進行處理,我們將擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,拆除被毀壞的建築物,創造經濟
|
| 113 |
+
21767 美國將接管加薩地帶,我們也將對它進行處理,我們將擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,拆除被毀壞的建築物,創造經濟發展
|
| 114 |
+
21973 美國將接管加薩地帶,我們也將對它進行處理,我們將擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,拆除被毀壞的建築物,創造經濟發展
|
| 115 |
+
22215 美國將接管加薩地帶,我們也將對它進行處理,我們將擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,拆除被毀壞的建築物,創造經濟發展,
|
| 116 |
+
22477 美國將接管加薩地帶,我們也將對它進行處理,我們將擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,拆除被毀壞的建築物,創造經濟發展,
|
| 117 |
+
22661 美國將接管加薩地帶,我們也將對它進行處理,我們將擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,拆除被毀壞的建築物,創造經濟發展,這將
|
| 118 |
+
22839 美國將接管加薩地帶,我們也將對它進行處理,我們將擁有它並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,拆除被毀壞的建築物,將其夷平,創造經濟發展,為
|
| 119 |
+
22866 和
|
| 120 |
+
22902 無限
|
| 121 |
+
22926 無限
|
| 122 |
+
22989 數量不限
|
| 123 |
+
23050 無限數量
|
| 124 |
+
23069 無限
|
| 125 |
+
23289 數量不限
|
| 126 |
+
23472 無限數量
|
| 127 |
+
23853 無限數量的作業
|
| 128 |
+
24023 無限數量的作業
|
| 129 |
+
24120 無限數量的工作和
|
| 130 |
+
24343 無限數量的工作和
|
| 131 |
+
24565 無限數量的工作和住房
|
| 132 |
+
24956 無限數量的工作和住房
|
| 133 |
+
25438 這
|
| 134 |
+
25627 人民
|
| 135 |
+
25796 人民
|
| 136 |
+
25925 人民
|
| 137 |
+
26054 這
|
| 138 |
+
26316 人民
|
| 139 |
+
26362 人民
|
| 140 |
+
26385 人民
|
| 141 |
+
26464 人民
|
| 142 |
+
26956 該地區的人民
|
| 143 |
+
27562 該地區的人民
|
| 144 |
+
27819 該地區的人民
|
| 145 |
+
27866 該地區的人民
|
| 146 |
+
28019 該地區的人民
|
| 147 |
+
28146 該地區的人們確實
|
| 148 |
+
28354 該地區的人們
|
| 149 |
+
28462 該地區的人們確實
|
| 150 |
+
28620 該地區的人們確實做了工作
|
| 151 |
+
28757 該地區的人們確實做了工作
|
| 152 |
+
28986 該地區的人們確實做了工作
|
| 153 |
+
29370 該地區的人們確實做了工作
|
| 154 |
+
29434 該地區的人們確實做了工作
|
| 155 |
+
29590 該地區的人們做了一些真正的工作
|
| 156 |
+
29802 該地區的人們做了一些真正的工作
|
| 157 |
+
29998 該地區的人們做了真正的工作,做了一些不同的事情
|
| 158 |
+
30107 該地區的人們做了真正的工作,做了一些不同的事情
|
| 159 |
+
30188 該地區的人們做了真正的工作,做了一些不同的事情
|
| 160 |
+
30348 該地區的人們做了真正的工作,做了一些不同的事情
|
| 161 |
+
30508 該地區的人們做了真正的工作,做了一些不同的事情
|
| 162 |
+
30760 該地區的人們做了真正的工作,做了一些不同的事情,但不能
|
| 163 |
+
30854 該地區的人們做了真正的工作,做了一些不同的事情,但不能去
|
| 164 |
+
30965 該地區的人們做了真正的工作,做了一些不同的事情���但不能去
|
| 165 |
+
31052 該地區的人們做了真正的工作,做了一些不同的事情,但不能去
|
| 166 |
+
31220 該地區的人們做了真正的工作,做了一些不同的事情,但不能回去
|
| 167 |
+
31338 該地區的人們做了真正的工作,做了一些不同的事情,但不能回去
|
| 168 |
+
31487 該地區的人們做了真正的工作,做了一些不同的事情,只是不能回頭,如果
|
| 169 |
+
31568 該地區的人們做了真正的工作,做了一些不同的事情,如果你去了就不能再回去了
|
| 170 |
+
31706 該地區的人們做了真正的工作,做了一些不同的事情,只是不能回去,如果你回去
|
| 171 |
+
31834 該地區的人們做了真正的工作,做了一些不同的事情,如果你回去就不能回去了
|
| 172 |
+
31930 該地區的人們做了真正的工作,做了一些不同的事情,如果你回去就不能回去了
|
| 173 |
+
32137 該地區的人們做了真正的工作,做了一些不同的事情,只是不能回去,如果你回去
|
| 174 |
+
32268 該地區的人們做了真正的工作,做了一些不同的事情,只是不能回去,如果你回去
|
| 175 |
+
32426 該地區的人們做了真正的工作,做了一些不同的事情,如果你回去就不能回去了
|
| 176 |
+
32556 該地區的人們做了真正的工作,做了一些不同的事情,只是不能回去,如果你回去
|
| 177 |
+
32653 該地區的人們做了真正的工作,做了一些不同的事情,只是不能回去,如果你回去,它就會
|
| 178 |
+
32758 該地區的人們做了真正的工作,做了一些不同的事情,只是不能回去,如果你回去,它將會
|
| 179 |
+
32881 該地區的人們做了真正的工作,做了一些不同的事情,只是不能回去,如果你回去,它將會
|
| 180 |
+
32973 該地區的人們做了真正的工作,做了一些不同的事情,只是不能回去,如果你回去,它就會結束
|
| 181 |
+
33058 該地區的人們做了真正的工作,做了一些不同的事情,只是不能回去,如果你回去,它最終會變成
|
| 182 |
+
33193 該地區的人們做了真正的工作,做了一些不同的事情,只是不能回去,如果你回去,它最終會變成
|
| 183 |
+
33321 該地區的人們做了真正的工作,做了一些不同的事情,只是不能回去,如果你回去,它最終會變成
|
| 184 |
+
33410 該地區的人們做著真正的工作,做了一些不同的事情,但不能回去,如果你回去,結果還是一樣
|
| 185 |
+
33542 該地區的人們做著真正的工作,做了一些不同的事情,但不能回去,如果你回去,結果還是一樣
|
| 186 |
+
33675 該地區的人們做著真正的工作,做了一些不同的事情,只是不能回去,如果你回去,它最終會以同樣的方式結束
|
| 187 |
+
33793 該地區的人們做著真正的工作,做了一些不同的事情,只是不能回去,如果你回去,它最終會以同樣的方式結束
|
| 188 |
+
33899 該地區的人們做著真正的工作,做了一些不同的事情,只是不能回去,如果你回去,它最終會以同樣的方式結束
|
| 189 |
+
34006 該地區的人們做著真正的工作,做了一些不同的事情,只是不能回去,如果你回去,它最終會以同樣的方式結束
|
| 190 |
+
34134 該地區的人們做著真正的工作,做了一些不同的事情,只是不能回去,如果你回去,它最終會以同樣的方式結束
|
| 191 |
+
34239 該地區的人們做著真正的工作,做了一些不同的事情,只是不能回去,如果你回去,它最終會以同樣的方式結束
|
| 192 |
+
34827 當地人做著真正的工作,做了一些與眾不同的事情,根本就不可能回去,如果你回去,它最終會變成 100 年來的樣子
|
| 193 |
+
35455 我是
|
| 194 |
+
35629 我希望
|
| 195 |
+
35732 我充滿希望
|
| 196 |
+
35815 我希望
|
| 197 |
+
36108 我是
|
| 198 |
+
36124 我是
|
| 199 |
+
36296 我充滿希望
|
| 200 |
+
36455 我希望
|
| 201 |
+
36644 我希望
|
| 202 |
+
36728 我希望這
|
| 203 |
+
36866 我希望這
|
| 204 |
+
37154 我希望這
|
| 205 |
+
37217 我希望這
|
| 206 |
+
37324 我希望這次停火
|
| 207 |
+
37445 我希望這次停火
|
| 208 |
+
37697 我希望這次停火能夠
|
| 209 |
+
37958 我希望這次停火能夠
|
| 210 |
+
38052 我希望這次停火能夠
|
| 211 |
+
38114 我希望這次停火能夠
|
| 212 |
+
38253 我希望這次停火能夠成為
|
| 213 |
+
38568 我希望這次停火能成為一個開始
|
| 214 |
+
38631 我希望這次停火能成為一個開始
|
| 215 |
+
38727 我希望這次停火能成為
|
| 216 |
+
38907 我希望這次停火能成為
|
| 217 |
+
39059 我希望這次停火能成為
|
| 218 |
+
39154 我希望這次停火能成為
|
| 219 |
+
39248 我希望這次停火能成為
|
| 220 |
+
39324 我希望這次停火能成為更大規模停火的開始
|
| 221 |
+
39414 我希望這次停火能變得更大、更
|
| 222 |
+
39586 我希望這次停火能變得更大、更
|
| 223 |
+
39702 我希望這次停火能變得更大、更
|
| 224 |
+
40138 我希望這次停火能變得更大、更
|
| 225 |
+
40228 我希望這次停火能變得更大、更
|
| 226 |
+
40304 我希望這次停火能成為更大規模、更持久的
|
| 227 |
+
40403 我希望這次停火能成為更大規模、更持久的
|
| 228 |
+
40619 我希望這次停火能成為更大規模、更持久的
|
| 229 |
+
40707 我希望這次停火能成為更廣泛、更持久和平的開始
|
| 230 |
+
40808 我希望這次停火能成為更廣泛、更持久的和平的開始
|
| 231 |
+
40924 我希望���次停火能成為更廣泛、更持久的和平的開始,
|
| 232 |
+
41163 我希望這次停火能成為更廣泛、更持久的和平的開始,並最終
|
| 233 |
+
41301 我希望這次停火能成為更廣泛、更持久的和平的開始,從而結束
|
| 234 |
+
41647 我希望這次停火能成為更廣泛、更持久的和平的開始,從而結束
|
| 235 |
+
41933 我希望這次停火能成為更廣泛、更持久的和平的開始,從而結束
|
| 236 |
+
42294 我希望這次停火能成為更廣泛、更持久的和平的開始,從而結束
|
| 237 |
+
42417 我希望這次停火能成為更廣泛、更持久的和平的開始,從而結束
|
| 238 |
+
42552 我希望這次停火能成為更廣泛、更持久的和平的開始,從而結束
|
| 239 |
+
42634 我希望這次停火能成為更廣泛、更持久的和平的開始,從而結束流血事件
|
| 240 |
+
42803 我希望這次停火能成為更廣泛、更持久的和平的開始,結束流血事件和
|
| 241 |
+
42899 我希望這次停火能成為更廣泛、更持久的和平的開始,結束流血事件和
|
| 242 |
+
43094 我希望這次停火能成為更廣泛、更持久的和平的開始,結束流血和殺戮
|
| 243 |
+
43201 我希望這次停火能成為更廣泛、更持久的和平的開始,結束流血和殺戮
|
| 244 |
+
43280 我希望這次停火能成為更廣泛、更持久的和平的開始,結束流血和殺戮
|
| 245 |
+
43421 我希望這次停火能成為更廣泛、更持久的和平的開始,結束流血和殺戮
|
| 246 |
+
43506 我希望這次停火能成為更廣泛、更持久的和平的開始,結束流血和殺戮。
|
| 247 |
+
43644 我希望這次停火能成為更廣泛、更持久的和平的開始,結束流血和殺戮。
|
| 248 |
+
43802 我希望這次停火能成為更廣泛、更持久的和平的開始,一勞永逸地結束流血和殺戮
|
| 249 |
+
43873 我希望這次停火能成為更廣泛、更持久的和平的開始,一勞永逸地結束流血和殺戮
|
| 250 |
+
43936 和
|
| 251 |
+
44034 與
|
| 252 |
+
44130 和
|
| 253 |
+
44230 與
|
| 254 |
+
44404 相同
|
| 255 |
+
44502 和
|
| 256 |
+
44611 和
|
| 257 |
+
44755 和
|
| 258 |
+
44788 與
|
| 259 |
+
44974 相同
|
| 260 |
+
44993 相同
|
| 261 |
+
45067 相同
|
| 262 |
+
45102 相同
|
| 263 |
+
45253 同一個目標
|
| 264 |
+
45587 同一個目標
|
| 265 |
+
45664 同樣的
|
| 266 |
+
45723 懷著同樣的目標
|
| 267 |
+
45828 懷著同樣的目標
|
| 268 |
+
45915 懷著同樣的目標
|
| 269 |
+
45998 懷著同樣的目標
|
| 270 |
+
46094 懷著同樣的目標
|
| 271 |
+
46165 懷著同樣的目標,我的
|
| 272 |
+
46575 懷著同樣的目標
|
| 273 |
+
46770 本著同樣的目標,我的政府
|
| 274 |
+
46836 本著同樣的目標,我的政府
|
| 275 |
+
47114 本著同樣的目標,我的政府
|
| 276 |
+
47220 本著同樣的目標,我的政府一直
|
| 277 |
+
47309 本著同樣的目標,我的政府一直
|
| 278 |
+
47482 本著同樣的目標,我的政府一直在採取行動
|
| 279 |
+
47569 本著同樣的目標,我的政府一直在採取行動
|
| 280 |
+
47865 本著同樣的目標,我的政府一直在迅速行動
|
| 281 |
+
47943 本著同樣的目標,我的政府一直在迅速行動
|
| 282 |
+
48078 本著同樣的目標,我的政府一直在迅速行動
|
| 283 |
+
48191 本著同樣的目標,我的政府一直在迅速採取行動
|
| 284 |
+
48306 本著同樣的目標,我的政府一直在迅速採取行動
|
| 285 |
+
48475 本著同樣的目標,我的政府一直在迅速採取行動恢復
|
| 286 |
+
48603 本著同樣的目標,我的政府一直在迅速採取行動恢復
|
| 287 |
+
48773 本著同樣的目標,我的政府一直在迅速採取行動恢復信任
|
| 288 |
+
49149 本著同樣的目標,我的政府一直在迅速採取行動恢復信任
|
| 289 |
+
49276 本著同樣的目標,我的政府一直在迅速採取行動,恢復人們對
|
| 290 |
+
49553 本著同樣的目標,我的政府一直在迅速採取行動,恢復人們對
|
| 291 |
+
49665 本著同樣的目標,我的政府一直在迅速採取行動,恢復人們對
|
| 292 |
+
49804 本著同樣的目標,我的政府一直在迅速採取行動,恢復人們對
|
| 293 |
+
49900 本著同樣的目標,我的政府一直在迅速採取行動,恢復人們對
|
| 294 |
+
50188 本著同樣的目標,我的政府一直在迅速採取行動,恢復人們對
|
| 295 |
+
50318 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任
|
| 296 |
+
50392 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任
|
| 297 |
+
50558 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,
|
| 298 |
+
50857 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,
|
| 299 |
+
51012 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建
|
| 300 |
+
51255 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建
|
| 301 |
+
51414 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建
|
| 302 |
+
51512 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國
|
| 303 |
+
51609 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國
|
| 304 |
+
51812 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國
|
| 305 |
+
51909 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國實力
|
| 306 |
+
52114 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任並重建美國實力
|
| 307 |
+
52217 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國實力
|
| 308 |
+
52344 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國在整個
|
| 309 |
+
52568 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,並重建美國在整個地區的實力
|
| 310 |
+
52864 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,並重建美國在整個地區的實力
|
| 311 |
+
52957 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,並重建美國在整個地區的實力
|
| 312 |
+
53079 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,並重建美國在整個地區的實力
|
| 313 |
+
53212 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,並重建美國在整個地區的實力
|
| 314 |
+
53514 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國在整個地區的實力,
|
| 315 |
+
53605 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國在整個地區的實力,
|
| 316 |
+
53669 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國在整個地區的實力,我們
|
| 317 |
+
53779 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國在整個地區的實力,我們
|
| 318 |
+
53871 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國在整個地區的實力,我們真的
|
| 319 |
+
54108 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國在整個地區的實力,我們確實做到了
|
| 320 |
+
54234 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國在整個地區的實力,我們確實做到了
|
| 321 |
+
54358 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國在整個地區的實力,我們確實做到了
|
| 322 |
+
54605 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國在整個地區的實力,我們確實做到了
|
| 323 |
+
54745 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國在整個地區的實力,我們確實做到了
|
| 324 |
+
54881 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國在整個地區的實力,我們確實做到了
|
| 325 |
+
55016 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國在整個地區的實力,我們確實做到了
|
| 326 |
+
55397 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國在整個地區的實力,我們確實做到了這一點。
|
| 327 |
+
55594 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們是一個受人尊敬的
|
| 328 |
+
55771 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們是一個受人尊敬的
|
| 329 |
+
55981 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們是一個受人尊敬的國家
|
| 330 |
+
56372 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家
|
| 331 |
+
56651 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家
|
| 332 |
+
56956 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家
|
| 333 |
+
57363 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家。
|
| 334 |
+
57619 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家。
|
| 335 |
+
57795 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家。
|
| 336 |
+
57959 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家。
|
| 337 |
+
58167 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家。
|
| 338 |
+
58458 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家。
|
| 339 |
+
58675 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家。
|
| 340 |
+
58959 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家。
|
| 341 |
+
59153 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家。
|
| 342 |
+
59354 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家。
|
| 343 |
+
59540 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家。
|
| 344 |
+
59732 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家。
|
| 345 |
+
59891 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家。
|
| 346 |
+
60042 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了這一點,我們再次成為一個受人尊敬的國家。
|
| 347 |
+
60262 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家。
|
| 348 |
+
60416 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家。
|
| 349 |
+
60548 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家。
|
| 350 |
+
60753 本著同樣的目標,我的政府一直在迅速採取行動,恢復對聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家。
|
| 351 |
+
61030 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家。
|
| 352 |
+
61370 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家。
|
| 353 |
+
61582 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家。
|
| 354 |
+
61746 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家。
|
| 355 |
+
61966 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家。
|
| 356 |
+
62165 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家。
|
| 357 |
+
62343 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家。
|
| 358 |
+
62554 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家。
|
| 359 |
+
62807 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了這一點,我們再次成為一個受人尊敬的國家。
|
| 360 |
+
62989 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家,過去幾週發生了很多事情,我們實���上再次成為一個非常受人尊敬的國家
|
| 361 |
+
63145 我
|
| 362 |
+
63177 我結束了
|
| 363 |
+
63495 我結束了
|
| 364 |
+
63744 我結束了最後
|
| 365 |
+
63791 我
|
| 366 |
+
63841 我結束了
|
| 367 |
+
64010 我結束了
|
| 368 |
+
64196 我結束了
|
| 369 |
+
64218 我結束了
|
| 370 |
+
64383 我結束了最後
|
| 371 |
+
64460 我結束了最後
|
| 372 |
+
64540 我結束了最後
|
| 373 |
+
64629 我結束了最後
|
| 374 |
+
64847 我結束了最後
|
| 375 |
+
65054 我結束了最後
|
| 376 |
+
65424 我結束了最後
|
| 377 |
+
65488 我結束了最後
|
| 378 |
+
65609 我結束了上屆政府
|
| 379 |
+
65712 我結束了上屆政府
|
| 380 |
+
65823 我結束了上屆政府
|
| 381 |
+
66077 我結束了上屆政府的叛逃
|
| 382 |
+
66192 我結束了上屆政府的叛逃
|
| 383 |
+
66390 我結束了上屆政府的叛逃
|
| 384 |
+
66578 我結束了上屆政府的叛逃者武裝
|
| 385 |
+
66959 我結束了上屆政府對叛逃者的武器禁運
|
| 386 |
+
67487 我結束了上屆政府對叛逃者的武器禁運
|
| 387 |
+
67583 我結束了上屆政府對叛逃者的武器禁運
|
| 388 |
+
67883 我結束了上屆政府對叛逃者的武器禁運
|
| 389 |
+
68046 我結束了上屆政府對叛逃者的武器禁運
|
| 390 |
+
68166 我結束了上屆政府對叛逃者的武器禁運
|
| 391 |
+
68467 我結束了上屆政府對叛逃者的武器禁運
|
| 392 |
+
68590 我結束了上屆政府對叛逃者的武器禁運
|
| 393 |
+
68658 我結束了上屆政府對叛逃者的武器禁運
|
| 394 |
+
68979 我結束了上屆政府對叛逃者的武器禁運
|
| 395 |
+
69073 我結束了上屆政府對十多億叛逃者的武器禁運
|
| 396 |
+
69208 我結束了上屆政府對叛逃者價值超過 10 億美元的武器禁運
|
| 397 |
+
69493 我結束了上屆政府對叛逃者價值超過 10 億美元的武器禁運。
|
| 398 |
+
69768 我結束了上屆政府對叛逃者價值超過 10 億美元的軍火禁運
|
| 399 |
+
69845 我結束了上屆政府對叛逃者價值超過 10 億美元的軍火禁運
|
| 400 |
+
70401 我結束了上屆政府對叛逃者價值超過 10 億美元的軍火禁運
|
| 401 |
+
70514 我結束了上屆政府對叛逃者武器禁運的行動,並提供了超過 10 億美元的軍事援助
|
| 402 |
+
70931 我結束了上屆政府對叛逃者武器禁運的行動,為美國提供了超過 10 億美元的軍事援助。
|
| 403 |
+
71031 我結束了上屆政府對叛逃者武器禁運的行動,為美國提供了超過 10 億美元的軍事援助。
|
| 404 |
+
71527 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運
|
| 405 |
+
71898 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運
|
| 406 |
+
71993 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運
|
| 407 |
+
72124 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運
|
| 408 |
+
72259 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運
|
| 409 |
+
72422 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運
|
| 410 |
+
72534 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,
|
| 411 |
+
72629 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也
|
| 412 |
+
72779 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也
|
| 413 |
+
72899 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興
|
| 414 |
+
73026 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興
|
| 415 |
+
73171 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興
|
| 416 |
+
73299 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興
|
| 417 |
+
73406 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布
|
| 418 |
+
73630 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布
|
| 419 |
+
73845 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布
|
| 420 |
+
73940 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,
|
| 421 |
+
74089 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,
|
| 422 |
+
74203 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,
|
| 423 |
+
74334 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午
|
| 424 |
+
74586 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午
|
| 425 |
+
74751 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午
|
| 426 |
+
74942 我結束了上屆政府對以色列超過 10 億美元的軍事援助實施的叛逃者武器禁運,我也很高興地宣布,今天下午美國
|
| 427 |
+
75104 我結束了上屆政府對以色列超過 10 億美元的軍事援助實施的叛逃者武器禁運,我也很高興地宣布,今天下午美國
|
| 428 |
+
75264 我結束了上屆政府對���色列超過 10 億美元的軍事援助實施的叛逃者武器禁運,我也很高興地宣布,今天下午美國
|
| 429 |
+
75575 我結束了上屆政府對以色列超過 10 億美元的軍事援助實施的叛逃者武器禁運,我也很高興地宣布,今天下午美國
|
| 430 |
+
75741 我結束了上屆政府對以色列超過 10 億美元的軍事援助實施的叛逃者武器禁運,我也很高興地宣布,今天下午美國
|
| 431 |
+
75884 我結束了上屆政府對以色列超過 10 億美元的軍事援助實施的叛逃者武器禁運,我也很高興地宣布,今天下午美國
|
| 432 |
+
76114 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國撤回了
|
| 433 |
+
76287 我結束了上屆政府對以色列超過 10 億美元的軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了
|
| 434 |
+
76548 我結束了上屆政府對以色列超過 10 億美元的軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了
|
| 435 |
+
76722 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了
|
| 436 |
+
76961 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了
|
| 437 |
+
77141 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了
|
| 438 |
+
77343 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了
|
| 439 |
+
77600 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了
|
| 440 |
+
77805 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了
|
| 441 |
+
77990 我結束了上屆政府對以色列超過 10 億美元的軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太主義
|
| 442 |
+
78176 我結束了上屆政府對以色列超過 10 億美元的軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太主義
|
| 443 |
+
78370 我結束了上屆政府對以色列超過 10 億美元的軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太主義
|
| 444 |
+
78570 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太主義和
|
| 445 |
+
78763 我結束了上屆政府對以色列超過 10 億美元的軍事援助實施的叛逃者武器禁運,我也高興地宣布,今天下午美國退出了反猶太和人類
|
| 446 |
+
78933 我結束了上屆政府對以色列超過 10 億美元的軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太主義
|
| 447 |
+
79091 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會
|
| 448 |
+
79267 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會
|
| 449 |
+
79396 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會
|
| 450 |
+
79581 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,
|
| 451 |
+
79827 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,
|
| 452 |
+
80048 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,
|
| 453 |
+
80315 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並結束了
|
| 454 |
+
80558 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,結束了
|
| 455 |
+
80730 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,結束了
|
| 456 |
+
80996 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,結束了所有
|
| 457 |
+
81178 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對以色列的所有支持。
|
| 458 |
+
81331 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對以色列的所有支持。
|
| 459 |
+
81535 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對
|
| 460 |
+
81652 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對
|
| 461 |
+
81828 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對
|
| 462 |
+
81989 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國的所有支持
|
| 463 |
+
82266 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國救援行動的所有支持
|
| 464 |
+
82475 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國救災和
|
| 465 |
+
82715 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國救災和
|
| 466 |
+
82880 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國救災和
|
| 467 |
+
83134 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國救濟和工程的所有支持。
|
| 468 |
+
83267 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國救濟和工程的所有支持。
|
| 469 |
+
83467 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國救濟和工程處的所有支持
|
| 470 |
+
83626 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國救濟和工程處的所有支持
|
| 471 |
+
83925 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國救濟和工程處的所有支持
|
| 472 |
+
84094 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國救濟和工程處的所有支持,該機構
|
| 473 |
+
84358 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國救濟和工程處的所有支持,該機構
|
| 474 |
+
84597 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國救濟和工程處的所有支持,該機構為以色列提供了
|
| 475 |
+
84812 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太主義的聯合國人權理事會,並終止了對聯合國救濟和工程處的所有支持,該機構為以色列提供了資金
|
| 476 |
+
85059 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太主義的聯合國人權理事會,並終止了對聯合國救濟和工程處的所有支持,該機構為以色列提供了資金
|
| 477 |
+
85335 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太主義的聯合國人權理事會,並終止了對聯合國救濟和工程處的所有支持,該機構為以色列提供了資金
|
| 478 |
+
85569 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國救濟和工程處的所有支持,該機構向以色列提供資金
|
| 479 |
+
85772 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國救濟和工程處的所有支持,該機構向以色列提供資金
|
| 480 |
+
86085 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國救濟和工程處的所有支持,該機構向以色列提供資金
|
| 481 |
+
86330 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國救濟和工程處的所有支持,該機構向以色列提供資金
|
| 482 |
+
86504 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對向哈馬斯輸送資金的聯合國救濟和工程機構的所有支持
|
| 483 |
+
86675 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國救濟和工程機構的所有支持,該機構向哈馬斯和
|
| 484 |
+
86888 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國救濟和工程機構的所有支持,該機構向哈馬斯輸送資金,並且
|
| 485 |
+
87124 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國救濟和工程機構的所有支持,該機構向哈馬斯輸送資金,並且
|
| 486 |
+
87265 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國救濟和工程機構的所有支持,該機構向哈馬斯輸送資金,並且
|
| 487 |
+
87423 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國救濟和工程機構的所有支持,該機構向哈馬斯輸送資金,並且非常
|
| 488 |
+
87653 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國救濟和工程機構的所有支持,該機構向哈馬斯輸送資金,並且非常
|
| 489 |
+
87807 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國救濟和工程機構的所有支持,該機構向哈馬斯輸送資金,並且非常不忠誠
|
| 490 |
+
88059 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國救濟和工程機構的所有支持,該機構向哈馬斯輸送資金,並且對以色列非常不忠誠。
|
| 491 |
+
88328 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國救濟和工程機構的所有支持,該機構向哈馬斯輸送資金,並且對以色列非常不忠誠。
|
| 492 |
+
88546 我結束了上屆政府對以色列超過 10 億美元軍事援助的叛逃者武器禁運,我也很高興地宣布,今天下午美國退出了反猶太的聯合國人權理事會,並終止了對聯合國救濟和工程機構的所有支持,該機構向哈馬斯輸送資金,對人類非常不忠誠
|
| 493 |
+
88563 今天
|
| 494 |
+
88599 今天我
|
| 495 |
+
88666 今天我也
|
| 496 |
+
88687 今天
|
| 497 |
+
88724 今天
|
| 498 |
+
88972 今天我
|
| 499 |
+
89001 今天我
|
| 500 |
+
89162 今天我也
|
| 501 |
+
89248 今天我也拍了
|
| 502 |
+
89661 今天我也採取了行動
|
| 503 |
+
89768 今天我也採取了行動
|
| 504 |
+
89859 今天我也採取了行動
|
| 505 |
+
90077 今天我也採取了行動
|
| 506 |
+
90254 今天我也採取了行動來恢復
|
| 507 |
+
90418 今天我也採取了行動來恢復
|
| 508 |
+
90498 今天我也採取了行動來恢復
|
| 509 |
+
90608 今天我還採取了行動來恢復
|
| 510 |
+
90921 今天我還採取了行��來恢復
|
| 511 |
+
91025 今天我也採取了行動恢復最大
|
| 512 |
+
91295 今天我也採取了行動恢復最大
|
| 513 |
+
91423 今天我也採取了行動恢復最大
|
| 514 |
+
91529 今天我也採取了行動恢復最大
|
| 515 |
+
91621 今天我還採取了恢復最大壓力的行動
|
| 516 |
+
91730 今天我還採取了恢復最大壓力的行動
|
| 517 |
+
92001 今天我還採取行動恢復最大壓力政策
|
| 518 |
+
92254 今天我還採取行動恢復了對
|
src/data/gaza/translate.txt
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
23224 美國將接管加薩地帶,我們也將對它進行處理,我們將擁有它,並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,拆除被毀壞的建築物,將其夷平,創造經濟發展,為當地提供
|
| 2 |
+
26025 住房就業人數不受限制
|
| 3 |
+
36073 當地人做著真正的工作,做了一些與眾不同的事情,根本就不可能回去,如果你回去,它最終會變成 100 年來的樣子
|
| 4 |
+
44950 我希望這次停火能成為更廣泛、更持久的和平的開始,一勞永逸地結束流血和殺戮
|
| 5 |
+
64171 本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家,過去幾週發生了很多事情,我們實際上再次成為一個非常受人尊敬的國家
|
| 6 |
+
88948 我結束了上屆政府對以色列超過10億美元軍事援助的事實上的武器禁運,我也很高興地宣布,今天下午美國退出了反猶太主義的聯合國人權理事會,並終止了對聯合國近東巴勒斯坦難民救濟和工程處的所有支持,該機構向哈馬斯輸送資金,對人類非常不忠誠
|
| 7 |
+
93322 今天我還採取行動恢復了對
|
src/gaza-transcript-interim.txt
DELETED
|
The diff for this file is too large to render.
See raw diff
|
|
|
src/gaza-transcript.txt
DELETED
|
@@ -1,16 +0,0 @@
|
|
| 1 |
-
the us will take over the gaza strip and we will do a job with it too we'll own it and be responsible for dismantling all of the dangerous unexploded bombs and other weapons on the site level the site and get rid of the destroyed buildings level it out create an economic development that will supply
|
| 2 |
-
unlimited numbers of jobs in housing for
|
| 3 |
-
the people of the area do a real job do something different just can't go back if you go back it's going to end up the same way it has for 100 years
|
| 4 |
-
i'm hopeful that this cease-fire could be the beginning of a larger and more enduring peace that will end the bloodshed and killing once and for all
|
| 5 |
-
with the same goal in mind my administration has been moving quickly to restore trust in the alliance and rebuild american strength throughout the region and we've really done that we're a respected nation again a lot's happened in the last couple of weeks we are actually a very respected nation again
|
| 6 |
-
i ended the last administration's de facto arms embargo on over $1 billion in military assistance for israel and i'm also pleased to announce that this afternoon the united states withdrew from the anti-semitic un human rights council and ended all of the support for the un relief and works agency which funnelled money to hamas and which was very disloyal to humanity
|
| 7 |
-
today i also took action to restore a maximum pressure policy on the iranian regime and we will once again enforce the most aggressive possible sanctions drive iranian oil exports to zero and diminish the regime's capacity to fund terror throughout the region and throughout the world uh we had no threat when i left office iran was
|
| 8 |
-
not able to sell oil nobody was buying oil because i said don't buy it if you buy it you're not doing any business with the united states and hamas was not being funded hezbollah was not being funded nobody was being funded there would never have been an october 7th
|
| 9 |
-
2 weeks ago i once again
|
| 10 |
-
designated the houthi's as a terrorist organization trying to destroy world shipping lanes and that's not going to happen and over the weekend i ordered air strikes against senior isis leaders isis leaders hiding in somali and took them out here in america we've begun the process of deporting foreign terrorists jihadists and hamas sympathizers from our soil just as we have
|
| 11 |
-
people that are extremely evil
|
| 12 |
-
and we're sending them out of our country they came from jails they came from mental institutions and insane asylums and they were dumped into our country they're gang members we're getting them out at numbers that nobody can actually
|
| 13 |
-
believe and every single country is taking those people back they said they would never take them back and they're all taking them back and they're taking them back very gladly
|
| 14 |
-
and i recently signed an executive order combating the vile wave of anti-semitism that we've seen in the aftermath of the october 7th attacks together america and israel will renew the optimism that shines so brightly just four years ago it was really a bright beautiful light
|
| 15 |
-
we will restore calm and stability to the region and expand prosperity opportunity and hope to our nations and for all people of the middle east including the arab and muslim nations very important we want the arab and muslim nations to have peace and have tranquility and have
|
| 16 |
-
great lives
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
src/gaza-translate-interim.txt
DELETED
|
The diff for this file is too large to render.
See raw diff
|
|
|
src/gaza-translate.txt
DELETED
|
@@ -1,16 +0,0 @@
|
|
| 1 |
-
美國將接管加薩地帶,我們也將對它進行處理,我們將擁有它,並負責拆除現場所有危險的未爆炸炸彈和其他武器,夷平現場,拆除被毀壞的建築物,將其夷平,創造經濟發展,為當地提供
|
| 2 |
-
住房中無限數量的工作
|
| 3 |
-
當地人做著真正的工作,做了一些與眾不同的事情,根本就不可能回去,如果你回去,它最終會變成 100 年來的樣子
|
| 4 |
-
我希望這次停火能成為更廣泛、更持久的和平的開始,一勞永逸地結束流血和殺戮
|
| 5 |
-
本著同樣的目標,我的政府一直在迅速採取行動,恢復聯盟的信任,重建美國在整個地區的實力,我們確實做到了,我們再次成為一個受人尊敬的國家,過去幾週發生了很多事情,我們實際上再次成為一個非常受人尊敬的國家
|
| 6 |
-
我結束了上屆政府對以色列超過10億美元軍事援助的事實上的武器禁運,我也很高興地宣布,今天下午美國退出了反猶太主義的聯合國人權理事會,並終止了對聯合國近東巴勒斯坦難民救濟和工程處的所有支持,該機構向哈馬斯輸送資金,對人類非常不忠誠
|
| 7 |
-
今天,我還採取行動恢復對伊朗政權的最大壓力政策,我們將再次實施最嚴厲的製裁,迫使伊朗石油出口降至零,並削弱該政權資助該地區和世界恐怖主義的能力,呃,當我離任時,伊朗沒有受到威脅
|
| 8 |
-
賣不出石油,沒人買石油,因為我說不出,如果你買了,你就沒有和美國做生意,哈馬斯沒有得到資助,真主黨沒有得到資助,沒有人得到資助,就不會有 10 月 7 日事件
|
| 9 |
-
2週前我再次
|
| 10 |
-
指定胡塞武裝為試圖摧毀世界航道的恐怖組織,而這不會發生,上週末,我下令對躲藏在索馬裡的伊斯蘭國高級領導人進行空襲,並將他們趕出美國,我們已經開始了將外國恐怖分子、聖戰分子和哈馬斯同情者驅逐出我們的領土的進程,就像我們已經
|
| 11 |
-
極度邪惡的人
|
| 12 |
-
我們把他們遣送出國,他們來自監獄,來自精神病院和瘋人院,他們被扔進我們國家,他們是幫派成員,我們把他們遣送出去,人數之多無人能及
|
| 13 |
-
相信每個國家都會接收這些人,他們說他們永遠不會接收他們,但他們都接收了他們,而且他們非常高興地接收了他們
|
| 14 |
-
我最近簽署了一項行政命令,打擊我們在 10 月 7 日襲擊事件後看到的邪惡反猶太主義浪潮,美國和以色列將共同重振樂觀主義,這種樂觀主義在四年前是如此耀眼,它真的是一道明亮美麗的光芒
|
| 15 |
-
我們將恢復該地區的平靜和穩定,擴大我們各國以及包括阿拉伯和穆斯林國家在內的所有中東人民的繁榮機會和希望。
|
| 16 |
-
偉大的生活
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
src/transcribe_and_translate_streaming_infinite_chirp2_0113.py
CHANGED
|
@@ -308,16 +308,18 @@ def listen_print_loop(responses: object, stream: object, location:str, target_la
|
|
| 308 |
)
|
| 309 |
# Display interim results, but with a carriage return at the end of the
|
| 310 |
# line, so subsequent lines will overwrite them.
|
|
|
|
| 311 |
|
| 312 |
if result.is_final:
|
| 313 |
sys.stdout.write(GREEN)
|
| 314 |
sys.stdout.write("\033[K")
|
| 315 |
sys.stdout.write(str(corrected_time) + ": " + transcript + "=> translation:" + translated_text + "\n")
|
| 316 |
|
| 317 |
-
with open(f"{name}
|
| 318 |
-
f.write(
|
| 319 |
-
with open(f"{name}
|
| 320 |
-
f.write(
|
|
|
|
| 321 |
|
| 322 |
stream.is_final_end_time = stream.result_end_time
|
| 323 |
stream.last_transcript_was_final = True
|
|
@@ -334,10 +336,10 @@ def listen_print_loop(responses: object, stream: object, location:str, target_la
|
|
| 334 |
sys.stdout.write("\033[K")
|
| 335 |
sys.stdout.write(str(corrected_time) + ": " + transcript + "=> translation:" + translated_text + "\r")
|
| 336 |
|
| 337 |
-
with open(f"{name}-
|
| 338 |
-
f.write(f"{
|
| 339 |
-
with open(f"{name}
|
| 340 |
-
f.write(f"{
|
| 341 |
|
| 342 |
stream.last_transcript_was_final = False
|
| 343 |
|
|
|
|
| 308 |
)
|
| 309 |
# Display interim results, but with a carriage return at the end of the
|
| 310 |
# line, so subsequent lines will overwrite them.
|
| 311 |
+
real_time = get_current_time() - stream.start_time
|
| 312 |
|
| 313 |
if result.is_final:
|
| 314 |
sys.stdout.write(GREEN)
|
| 315 |
sys.stdout.write("\033[K")
|
| 316 |
sys.stdout.write(str(corrected_time) + ": " + transcript + "=> translation:" + translated_text + "\n")
|
| 317 |
|
| 318 |
+
with open(f"data/{name}/transcribe.txt", "a") as f:
|
| 319 |
+
f.write(f"{real_time}\t{transcript}\n")
|
| 320 |
+
with open(f"data/{name}/translate.txt", "a") as f:
|
| 321 |
+
f.write(f"{real_time}\t{translated_text}\n")
|
| 322 |
+
result_counter += 1
|
| 323 |
|
| 324 |
stream.is_final_end_time = stream.result_end_time
|
| 325 |
stream.last_transcript_was_final = True
|
|
|
|
| 336 |
sys.stdout.write("\033[K")
|
| 337 |
sys.stdout.write(str(corrected_time) + ": " + transcript + "=> translation:" + translated_text + "\r")
|
| 338 |
|
| 339 |
+
with open(f"data/{name}/transcribe-interim.txt", "a") as f:
|
| 340 |
+
f.write(f"{real_time}\t{transcript}\n")
|
| 341 |
+
with open(f"data/{name}/translate-interim.txt", "a") as f:
|
| 342 |
+
f.write(f"{real_time}\t{translated_text}\n")
|
| 343 |
|
| 344 |
stream.last_transcript_was_final = False
|
| 345 |
|