diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..4aae0802bc2f22700dabce710cfb7388280515c5 --- /dev/null +++ b/README.md @@ -0,0 +1,147 @@ +--- +license: cc-by-nc-4.0 +task_categories: + - automatic-speech-recognition + - voice-activity-detection +language: + - en + - zh + - multilingual +size_categories: + - n<1K +pretty_name: MSDWild (val = test) — Speaker Diarization in the Wild +tags: + - speaker-diarization + - diarization + - msdwild + - in-the-wild + - multimodal + - rttm + - audio +annotations_creators: + - expert-generated +source_datasets: + - extended|msdwild +dataset_info: + - config_name: few + features: + - name: audio + dtype: audio + - name: rttm + dtype: string + - name: file_id + dtype: string + splits: + - name: test + num_examples: 490 + - config_name: many + features: + - name: audio + dtype: audio + - name: rttm + dtype: string + - name: file_id + dtype: string + splits: + - name: test + num_examples: 177 +--- + +# MSDWild — validation / test split (speaker diarization in the wild) + +Copie du split d'évaluation de **MSDWild** (Liu et al., Interspeech 2022), un +corpus de diarisation *in the wild* multimodal construit à partir de vidéos +réelles (talk-shows, interviews, débats…). MSDWild fournit deux sets de +validation utilisés comme **test de facto** par la communauté : + +- **few** : 2 à 4 locuteurs par session (490 fichiers) — tâche "classique" +- **many** : 5+ locuteurs par session (177 fichiers) — tâche conversationnelle + dense, beaucoup plus difficile + +Les RTTMs sont ceux distribués officiellement sur le repo upstream. Les audios +sont les WAV officiels (Google Drive, 7.56 GB). + +## Contenu + +| Sous-split | Fichiers | Profil | +|------------|----------|--------| +| few | 490 | 2–4 locuteurs, segments courts | +| many | 177 | 5+ locuteurs, densité de tour de parole élevée | + +- Audio : **WAV** 16 kHz mono (tels que distribués par MSDWild upstream) +- Annotations : **RTTM** standard pyannote +- Langues : multilingue (principalement anglais et chinois, sources web) +- Licence : **CC-BY-NC-4.0** — recherche uniquement (voir l'accord de licence + MSDWild upstream) + +## Structure + +``` +dia-MsdWild-test/ +├── README.md +├── audio/ +│ ├── few/.wav # 490 +│ └── many/.wav # 177 +└── rttm/ + ├── few/.rttm # 490 + └── many/.rttm # 177 +``` + +Chaque ligne RTTM suit le format standard : +``` +SPEAKER 1 +``` + +## Utilisation + +### Téléchargement +```python +from huggingface_hub import snapshot_download +root = snapshot_download("ggfox00000/dia-MsdWild-test", repo_type="dataset") +# root/audio/few/*.wav, root/rttm/few/*.rttm, root/audio/many/*.wav, ... +``` + +### Évaluation DER (pyannote) +```python +from pathlib import Path +from pyannote.audio import Pipeline +from pyannote.metrics.diarization import DiarizationErrorRate +from pyannote.database.util import load_rttm + +pipe = Pipeline.from_pretrained("pyannote/speaker-diarization-3.1") + +for subset in ("few", "many"): + metric = DiarizationErrorRate() + audio_dir = Path(root) / "audio" / subset + rttm_dir = Path(root) / "rttm" / subset + for wav in sorted(audio_dir.glob("*.wav")): + hyp = pipe(str(wav)) + ref = next(iter(load_rttm(str(rttm_dir / f"{wav.stem}.rttm")).values())) + metric(ref, hyp) + print(f"{subset}: DER = {abs(metric):.3f}") +``` + +## Source + +- MSDWild — Liu et al. 2022 + https://github.com/X-LANCE/MSDWILD + https://x-lance.github.io/MSDWILD + +## Licence + +**CC-BY-NC-4.0** — usage **non commercial**, recherche uniquement. Se référer +à l'accord de licence MSDWild upstream +(`MSDWILD_license_agreement.pdf`) avant toute réutilisation. + +## Citation + +```bibtex +@inproceedings{liu22t_interspeech, + author = {Tao Liu and Shuai Fan and Xu Xiang and Hongbo Song and Shaoxiong Lin and Jiaqi Sun and Tianyuan Han and Siyuan Chen and Binwei Yao and Sen Liu and Yifei Wu and Yanmin Qian and Kai Yu}, + title = {{MSDWild: Multi-modal Speaker Diarization Dataset in the Wild}}, + booktitle = {Interspeech}, + year = {2022}, + pages = {1476--1480}, + doi = {10.21437/Interspeech.2022-10466}, +} +``` diff --git a/audio/few/00017.wav b/audio/few/00017.wav new file mode 100644 index 0000000000000000000000000000000000000000..8ecc7767f0136f37fd2e12752d4fc3217caa53cd --- /dev/null +++ b/audio/few/00017.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eb8ac788d5dc70d313537620e5c99aa7fb8cf7b89e80404c01ba85765a1a198 +size 1457176 diff --git a/audio/few/00018.wav b/audio/few/00018.wav new file mode 100644 index 0000000000000000000000000000000000000000..e03e9b37f286cd24f4e49da59f5a837640c00dbe --- /dev/null +++ b/audio/few/00018.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ad5219b33c87ab6a48ef82aca283b305533d09a567e157ddbbab292289a3c7c +size 13264802 diff --git a/audio/few/00028.wav b/audio/few/00028.wav new file mode 100644 index 0000000000000000000000000000000000000000..94738a347b8ac436d83de76fbbdabe6cc440566f --- /dev/null +++ b/audio/few/00028.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11064b0f29b33a8869433a5bac65aa01c79d2d57954ee6ecf328ee27f1e96b99 +size 1226834 diff --git a/audio/few/00029.wav b/audio/few/00029.wav new file mode 100644 index 0000000000000000000000000000000000000000..a939cd061f7a6d6262bb10a90c1abbac7d0b3185 --- /dev/null +++ b/audio/few/00029.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c70f5fc6eefa31b4ae59be7bab6ec805684a0bbf9e147f73966ad69c447697f4 +size 12050678 diff --git a/audio/few/00036.wav b/audio/few/00036.wav new file mode 100644 index 0000000000000000000000000000000000000000..4c6bcc12766dbca06f1043e99746c2a13b64985c --- /dev/null +++ b/audio/few/00036.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6e67be51cb96a8cc0c9cef1d33ce4ebeea08b03ed00467b9719f7bc83016f8d +size 2299040 diff --git a/audio/few/00053.wav b/audio/few/00053.wav new file mode 100644 index 0000000000000000000000000000000000000000..cb098597ba321753deb2879ae6d7dea7956a0062 --- /dev/null +++ b/audio/few/00053.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4b0e2b50947dbe49b614dcec3f738eea0491fdc603baa7a6e9587bdfc0ee07d +size 1018042 diff --git a/audio/few/00066.wav b/audio/few/00066.wav new file mode 100644 index 0000000000000000000000000000000000000000..d2e9f821388c8d174d9b8033cf22b9da166d79fa --- /dev/null +++ b/audio/few/00066.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75abf23d888bcb09636b3845a6cea693cfe582847bab85a637ef449e52bae15c +size 806276 diff --git a/audio/few/00073.wav b/audio/few/00073.wav new file mode 100644 index 0000000000000000000000000000000000000000..1e6065d9ecdd1186f0a9f0ca92302b5360b906b9 --- /dev/null +++ b/audio/few/00073.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9ef9061642fbd6b0555182f733c063066354282c71df0ecfb313537cae5bf68 +size 1090858 diff --git a/audio/few/00080.wav b/audio/few/00080.wav new file mode 100644 index 0000000000000000000000000000000000000000..d5468ae96770266eea96ee5a2711f57f7daa30e6 --- /dev/null +++ b/audio/few/00080.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b0fd46d4a395b467390128f8cd94664c9a369b9052e54999d569519f58e9faf +size 911044 diff --git a/audio/few/00084.wav b/audio/few/00084.wav new file mode 100644 index 0000000000000000000000000000000000000000..34e97a029d808b82ad1e4445bab7fb6ffb9fc470 --- /dev/null +++ b/audio/few/00084.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a4ceef04e048da96d06cb549e889b89017698269dc7642eede016e63657082f +size 934820 diff --git a/audio/few/00090.wav b/audio/few/00090.wav new file mode 100644 index 0000000000000000000000000000000000000000..e693d13cded2c96be3b5d02690d0814be005a5fa --- /dev/null +++ b/audio/few/00090.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d0196c568db3394a3ab800fe6001b2cf2eebe49c5436d4938866dddbb61a4f8 +size 810734 diff --git a/audio/few/00091.wav b/audio/few/00091.wav new file mode 100644 index 0000000000000000000000000000000000000000..1b776087a909c917cd98545f58cb30ddc33da65f --- /dev/null +++ b/audio/few/00091.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:230263b2eaa7beac2ee4ae9cb9f47f7e66bbf3bf5ececbe88b982187f5fe46ac +size 1764052 diff --git a/audio/few/00099.wav b/audio/few/00099.wav new file mode 100644 index 0000000000000000000000000000000000000000..4713c255b86f9d705bd047e830d636555c00f77b --- /dev/null +++ b/audio/few/00099.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3afc313a82690df8be636b27fe4e9303f3cb7efb33f699e1578fb3aceca9f4c +size 1689004 diff --git a/audio/few/00104.wav b/audio/few/00104.wav new file mode 100644 index 0000000000000000000000000000000000000000..103c801d81bd976dc88127b79023a9638a94d825 --- /dev/null +++ b/audio/few/00104.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f5b6756a6d6dfa66fee4d66ba16b444f0d93b621f11e4695a2274e32158e17d +size 3466354 diff --git a/audio/few/00133.wav b/audio/few/00133.wav new file mode 100644 index 0000000000000000000000000000000000000000..1fcd5bb7fd26102ce8979b64fdf6f232d0088f98 --- /dev/null +++ b/audio/few/00133.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c04457ef0e2cbf99d5965e0e77e04bd71367335ee2ecf4d51bc5134f0d813bf +size 1231294 diff --git a/audio/few/00134.wav b/audio/few/00134.wav new file mode 100644 index 0000000000000000000000000000000000000000..e43c9eec8b59f84fa153f65649750efc948b8823 --- /dev/null +++ b/audio/few/00134.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bf2d230d047a76981e8670a23dc89857662808f8bc45f35867571870039bac2 +size 1624360 diff --git a/audio/few/00142.wav b/audio/few/00142.wav new file mode 100644 index 0000000000000000000000000000000000000000..18e8bedb90254b2bab0ec5c4eaa054a01fca6e91 --- /dev/null +++ b/audio/few/00142.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1c40099c5b4ce6fd0c6432aa5b261463be72746ebb354f785a9a86ceaebf480 +size 1808634 diff --git a/audio/few/00143.wav b/audio/few/00143.wav new file mode 100644 index 0000000000000000000000000000000000000000..330a3ca50fa1ac77c027ab462ce52a716fa77455 --- /dev/null +++ b/audio/few/00143.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e7681ba04bbac5ce98e4d9af2b67e504e7baf6472fd11209ccda0e9281caf04 +size 1211974 diff --git a/audio/few/00144.wav b/audio/few/00144.wav new file mode 100644 index 0000000000000000000000000000000000000000..8bc046227ef1879055d6cf3c4210f7ff5b150f7f --- /dev/null +++ b/audio/few/00144.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6fa54759eb728aa2a70b10a74aa9dbe9ed78b30f69e2300d25dd7c5a93bd841 +size 946710 diff --git a/audio/few/00169.wav b/audio/few/00169.wav new file mode 100644 index 0000000000000000000000000000000000000000..3ee6ef7b5e8d3067eca03b882be5ba4638cd600e --- /dev/null +++ b/audio/few/00169.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:959579e2e0f05c0aa28c9924cc5e2f76c2999db6baa6cb568037df2da469a3a2 +size 3793290 diff --git a/audio/few/00177.wav b/audio/few/00177.wav new file mode 100644 index 0000000000000000000000000000000000000000..9ef81ef03e65424560de1d0696f614e9df2ad853 --- /dev/null +++ b/audio/few/00177.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3836789c23c123652538a16ec9b19194862b1aa994c84e3a979891401a785ab +size 1157732 diff --git a/audio/few/00180.wav b/audio/few/00180.wav new file mode 100644 index 0000000000000000000000000000000000000000..932e0b014d51bb6d8e16430693a7cfd2eeec10fe --- /dev/null +++ b/audio/few/00180.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f4bcf64cac11e1acaa23e54f565325f5d4aeb56aa0a4fc298920635c8d83783 +size 904356 diff --git a/audio/few/00190.wav b/audio/few/00190.wav new file mode 100644 index 0000000000000000000000000000000000000000..2c62cc37b8aef39cf82eca69385e30942ce08791 --- /dev/null +++ b/audio/few/00190.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d1b383442c8191801edac6381126d69c46546caa704537f889cb2f204437eae +size 783984 diff --git a/audio/few/00198.wav b/audio/few/00198.wav new file mode 100644 index 0000000000000000000000000000000000000000..8d7d7fa68dd111e6d032433979278405558b495f --- /dev/null +++ b/audio/few/00198.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2220feb84daeb7c222016200b0c42c1c4e0630e77f65a897e39068abbbed10e3 +size 1673402 diff --git a/audio/few/00200.wav b/audio/few/00200.wav new file mode 100644 index 0000000000000000000000000000000000000000..6acbdeb06f7eccfa54f846144e24bfbd1d63f1bd --- /dev/null +++ b/audio/few/00200.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d91b4f2813dafe26a608a4665391b9171fe55173a810fedb7a84938a085fdc45 +size 1414824 diff --git a/audio/few/00208.wav b/audio/few/00208.wav new file mode 100644 index 0000000000000000000000000000000000000000..184fd5534c157e87f68a2eb137c2a39c79529d1d --- /dev/null +++ b/audio/few/00208.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:323809b72c37df3b5ab18a1f048dea04ef2759386fcc6e59f06c4273d19da4df +size 2452848 diff --git a/audio/few/00215.wav b/audio/few/00215.wav new file mode 100644 index 0000000000000000000000000000000000000000..e22441235c36b1a37569f4276eea77b344d6f220 --- /dev/null +++ b/audio/few/00215.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e075b7818eba303ff2cdc737eeea9a70278944ea7d9ede86dbf8f7bd2a9832d +size 663612 diff --git a/audio/few/00222.wav b/audio/few/00222.wav new file mode 100644 index 0000000000000000000000000000000000000000..aa398e36ee31db7bf38c8da87d2fd6e9e52b8b1a --- /dev/null +++ b/audio/few/00222.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a00d16daad0bb8d499aa2e606ac8219d7b5dd28b4141fb0a7480fe271fa81d1 +size 2252972 diff --git a/audio/few/00225.wav b/audio/few/00225.wav new file mode 100644 index 0000000000000000000000000000000000000000..139def42517d4c56d33bdfb7377adf06d2ae8506 --- /dev/null +++ b/audio/few/00225.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65b81bdfc2a8e76b6ea5fd5ef2ddca6608c5a2006d3324205112f9b70436432e +size 885780 diff --git a/audio/few/00227.wav b/audio/few/00227.wav new file mode 100644 index 0000000000000000000000000000000000000000..4592a28727cd455d213809b4bdc8283338971a76 --- /dev/null +++ b/audio/few/00227.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df20d2824a9919d4541884fa9a6a506b44bd33fb227789203c386a603e274767 +size 1237980 diff --git a/audio/few/00233.wav b/audio/few/00233.wav new file mode 100644 index 0000000000000000000000000000000000000000..8b74da02ef53edf46b5eb769740cecadfab51b25 --- /dev/null +++ b/audio/few/00233.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4f80d0045d60c828e2f6e4aebd6beef0d817afb37afa89170915a3c8eb6b316 +size 885780 diff --git a/audio/few/00235.wav b/audio/few/00235.wav new file mode 100644 index 0000000000000000000000000000000000000000..5021a83ea55decfb4f82f62ad2d867880d5319fb --- /dev/null +++ b/audio/few/00235.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d46c6680b735472dbd22f293102b063f9040bbcca35f9c3293bce7363c70538 +size 695716 diff --git a/audio/few/00239.wav b/audio/few/00239.wav new file mode 100644 index 0000000000000000000000000000000000000000..b5461a72e6d497e856b630cd7a1f359b1132fba2 --- /dev/null +++ b/audio/few/00239.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecc77d0c8ff498af758287bb007c83cd1fcf98c1d79a778dbb69cf1f9e963817 +size 646522 diff --git a/audio/few/00240.wav b/audio/few/00240.wav new file mode 100644 index 0000000000000000000000000000000000000000..75190abf45851c96115cb215d2c12509c9f0846a --- /dev/null +++ b/audio/few/00240.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adec452126c6ffdba27f27a68057eb0415ef46dc37d3a22602aeca4e3aa69506 +size 796616 diff --git a/audio/few/00241.wav b/audio/few/00241.wav new file mode 100644 index 0000000000000000000000000000000000000000..0df5578781244da85b8e1a0a4530152155e87844 --- /dev/null +++ b/audio/few/00241.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d613a4b25cad1cc8ce811dc88ebed61e0a01fc6bdb1c6c8018b2590e8e125ec3 +size 18065574 diff --git a/audio/few/00242.wav b/audio/few/00242.wav new file mode 100644 index 0000000000000000000000000000000000000000..72e19c1238123313cbea4f86b3a4373192595b74 --- /dev/null +++ b/audio/few/00242.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7574ad89b0238165f157a737755208686ddcaaa380ea83ff346948d420ba444f +size 1468322 diff --git a/audio/few/00246.wav b/audio/few/00246.wav new file mode 100644 index 0000000000000000000000000000000000000000..909cd6f3d2485c4d79102fdcaa2deb07ba7a6850 --- /dev/null +++ b/audio/few/00246.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7423ee8d7df6d7c834cf9c3b79516fecd7cdc163071eb3d4b9d8f8933f0f87c8 +size 796616 diff --git a/audio/few/00250.wav b/audio/few/00250.wav new file mode 100644 index 0000000000000000000000000000000000000000..d6da9cb143a4f08b5d35f4866c37dbc618c9dbfc --- /dev/null +++ b/audio/few/00250.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c480ef470c1c6fa60fdf4e79298f3be57aeb29221da023846461ee7a2dbd669b +size 1982506 diff --git a/audio/few/00277.wav b/audio/few/00277.wav new file mode 100644 index 0000000000000000000000000000000000000000..f3792b6e1189178585e31fc30e4520e7a2f5342c --- /dev/null +++ b/audio/few/00277.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d64bbf1ea0aaede976bbcb1db737ce313b4c6c421e8f46bd0c01a50cebc242e +size 1495072 diff --git a/audio/few/00282.wav b/audio/few/00282.wav new file mode 100644 index 0000000000000000000000000000000000000000..4b0d6adc7b2af762cea92c1ecf97a98b502b2d99 --- /dev/null +++ b/audio/few/00282.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7213a078c6384cc1f05adb3dfc2a0b98e8cc453e9f3866bc442ac8402fe0f46 +size 1987706 diff --git a/audio/few/00284.wav b/audio/few/00284.wav new file mode 100644 index 0000000000000000000000000000000000000000..b7792b19dbc57b8d50be91fc45e1ea4ff2c9b496 --- /dev/null +++ b/audio/few/00284.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d90cf59626d2aa55bda6d190124000c8be127ffaaaa32561457a75a6868f16c4 +size 1000208 diff --git a/audio/few/00297.wav b/audio/few/00297.wav new file mode 100644 index 0000000000000000000000000000000000000000..b50e09f5225e5ea858f704b23a86c601a7b5056a --- /dev/null +++ b/audio/few/00297.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c0ace5a44d216827205d36c0b5dccd0a5552dfe63d3f125bf6d1804663ab974 +size 807762 diff --git a/audio/few/00298.wav b/audio/few/00298.wav new file mode 100644 index 0000000000000000000000000000000000000000..63909f76fc6d738140c842a4c4789a71094c9860 --- /dev/null +++ b/audio/few/00298.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37cbfdf02eab098af1e6068d6dc9e538c4e5fdf96706c23459d362efb9107459 +size 1090858 diff --git a/audio/few/00302.wav b/audio/few/00302.wav new file mode 100644 index 0000000000000000000000000000000000000000..f06ca140edcccb4ff43e06fa5bf88df7e748c3c2 --- /dev/null +++ b/audio/few/00302.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe5c98952bfab30aaa20b251d7efe278fbd01ea196221f061819f133aee67320 +size 768380 diff --git a/audio/few/00313.wav b/audio/few/00313.wav new file mode 100644 index 0000000000000000000000000000000000000000..0a57a01a222d893b2d48344873c6a9cff00c1789 --- /dev/null +++ b/audio/few/00313.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c9a542192a2b1a9ea3f9f875170557fb7fb374260970beaa888412b2a53d3bf +size 886524 diff --git a/audio/few/00328.wav b/audio/few/00328.wav new file mode 100644 index 0000000000000000000000000000000000000000..db39ec493f1a1f0cb926bcc40b92cf9e7a9e227a --- /dev/null +++ b/audio/few/00328.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f61c47733a5376369a6d95e284ecdf265251d3511b3c1f475c0dd8204126905c +size 2997496 diff --git a/audio/few/00329.wav b/audio/few/00329.wav new file mode 100644 index 0000000000000000000000000000000000000000..026323779e8aa056d819bf8835bdd10f3e67e27d --- /dev/null +++ b/audio/few/00329.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:553c0d992aee17a109b451c8e2b1ebab7eddd963a0daf80409860a5c65a6471d +size 880580 diff --git a/audio/few/00332.wav b/audio/few/00332.wav new file mode 100644 index 0000000000000000000000000000000000000000..c0bb488ab2f15e951d6bc7fda7f642dde43c57da --- /dev/null +++ b/audio/few/00332.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fd3ab7105e7d401358b08162e21eb18d0c993599d3da8e436be64c2c22bc578 +size 876120 diff --git a/audio/few/00341.wav b/audio/few/00341.wav new file mode 100644 index 0000000000000000000000000000000000000000..c825ad23d71a37d14e3e13139d6a84d5822cecc6 --- /dev/null +++ b/audio/few/00341.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0189dee59e623258a0a8055b9b6ac530aee800ead6af88b8ef62320f535a005 +size 2330990 diff --git a/audio/few/00342.wav b/audio/few/00342.wav new file mode 100644 index 0000000000000000000000000000000000000000..ed09c19993f430fb1f7ad5a42c2aa429bed0e58d --- /dev/null +++ b/audio/few/00342.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceecda1afe38228e21d0467ee519118dbcb8ddd7ab540ce74e3974419a7e704f +size 789928 diff --git a/audio/few/00347.wav b/audio/few/00347.wav new file mode 100644 index 0000000000000000000000000000000000000000..3af28d7c09f239f1bfe6861d967bdabddcd33598 --- /dev/null +++ b/audio/few/00347.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b5153a498cf535e59a797f944b52d78e5a0d7ec9111538ae12dff805dc6b879 +size 1069310 diff --git a/audio/few/00353.wav b/audio/few/00353.wav new file mode 100644 index 0000000000000000000000000000000000000000..273dc04f4246b58620e193a3b3db61ff48e15f37 --- /dev/null +++ b/audio/few/00353.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acd844c0c168264c5b9fed56f092e8761b7561a15cbeda4fee6b47c4972f16ff +size 1438600 diff --git a/audio/few/00354.wav b/audio/few/00354.wav new file mode 100644 index 0000000000000000000000000000000000000000..d43f2dbe07d91e3db6af5b4fa3fa6b4bbfd24e1e --- /dev/null +++ b/audio/few/00354.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1af5d42c1f96472cbe6fb97fa3f4a23ff3ad62671af4343a7f5a95222568e182 +size 1618416 diff --git a/audio/few/00369.wav b/audio/few/00369.wav new file mode 100644 index 0000000000000000000000000000000000000000..fdbaf957057e7093285aec1270c05dd79455783a --- /dev/null +++ b/audio/few/00369.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36070258478c6c57ede959f708656dbea502774ead209a9935ab3dc7219ffb7d +size 1699408 diff --git a/audio/few/00378.wav b/audio/few/00378.wav new file mode 100644 index 0000000000000000000000000000000000000000..f1f9ca3c7bfe0152028caa8d5abf30b4221b8a91 --- /dev/null +++ b/audio/few/00378.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8ab56ad23822ce884591a5ace7bb83c7e2b15a1e6b965fcf3535afe2c4ac7c7 +size 2177182 diff --git a/audio/few/00386.wav b/audio/few/00386.wav new file mode 100644 index 0000000000000000000000000000000000000000..4d008338fcbc49760a9cdd0364bcf7dc4559412e --- /dev/null +++ b/audio/few/00386.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b5e6e674eb0c022da123df5b263f22ae1fb00ae621af1942ffa669533af5042 +size 658410 diff --git a/audio/few/00387.wav b/audio/few/00387.wav new file mode 100644 index 0000000000000000000000000000000000000000..7390d069e411a0f9546cbb6d2d858812250dca6d --- /dev/null +++ b/audio/few/00387.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c304c7dd6d17bc51cf1f1958c19334a16abe768f174578af6f71aa752ba8ff8b +size 685160 diff --git a/audio/few/00407.wav b/audio/few/00407.wav new file mode 100644 index 0000000000000000000000000000000000000000..e779a096ab0a9650fc2f639969e3551b5c85c12f --- /dev/null +++ b/audio/few/00407.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ee3be88ec2d441eb675f67cb8a9cfff30a1cb9e447c9927496979a8902d028d +size 710734 diff --git a/audio/few/00423.wav b/audio/few/00423.wav new file mode 100644 index 0000000000000000000000000000000000000000..b1c258ddb9d53d0ee40bf4d7cb44f8a7f1e75e43 --- /dev/null +++ b/audio/few/00423.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d41aa0992102e5141a89ea46d26567d81fdf0bb4b9534b2388ccc15d0dcdfb1f +size 1308570 diff --git a/audio/few/00427.wav b/audio/few/00427.wav new file mode 100644 index 0000000000000000000000000000000000000000..85284903e688daa73dd91b24cc22f44c2981deab --- /dev/null +++ b/audio/few/00427.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:684f7652456d6eb3fde99e56c067f4373ea61b994e76bcff298c9ef102ca00b9 +size 950424 diff --git a/audio/few/00428.wav b/audio/few/00428.wav new file mode 100644 index 0000000000000000000000000000000000000000..b2906c37da048b26d91d6138b7131cbf3f91c2fc --- /dev/null +++ b/audio/few/00428.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:372cbb333ab983e227a3876a02819fdcf33f56e45262deed93591a567aeafe23 +size 1026958 diff --git a/audio/few/00431.wav b/audio/few/00431.wav new file mode 100644 index 0000000000000000000000000000000000000000..7eb326f931c252ec10b365f72014eb30f3d6e1d8 --- /dev/null +++ b/audio/few/00431.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:953dcba2ba4066e0c05ee01e13d25c645990bbaaca5e51ab8cc789d123a6e3f1 +size 1380644 diff --git a/audio/few/00433.wav b/audio/few/00433.wav new file mode 100644 index 0000000000000000000000000000000000000000..058de05726a96f0a7836aebb5790fce2c7360495 --- /dev/null +++ b/audio/few/00433.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4d49c67f5190ec62d39e5939aca62ce828065616383e0a43f166f4c0fd6aba0 +size 966772 diff --git a/audio/few/00449.wav b/audio/few/00449.wav new file mode 100644 index 0000000000000000000000000000000000000000..14c7e25ebb4b884adf645a4f1324f77382a698c2 --- /dev/null +++ b/audio/few/00449.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3ba1c0a7580f843fff27a752c755813be9e82d767b5bfc7b7b1c5340b2fab0c +size 3895830 diff --git a/audio/few/00450.wav b/audio/few/00450.wav new file mode 100644 index 0000000000000000000000000000000000000000..d3b60f80fa30848646471b1975edb329fc7e42ad --- /dev/null +++ b/audio/few/00450.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87b618d6f478efe74a5b2a675f79650585ac256f0cac8df156422b7e94593a6e +size 809990 diff --git a/audio/few/00465.wav b/audio/few/00465.wav new file mode 100644 index 0000000000000000000000000000000000000000..98d0010922667aaabba00942642e2ad1e0e8b505 --- /dev/null +++ b/audio/few/00465.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c8c101e3370f4ff64cc5b7a95814058282923e59912febbfa04399ba88adeea +size 883448 diff --git a/audio/few/00474.wav b/audio/few/00474.wav new file mode 100644 index 0000000000000000000000000000000000000000..62b6b82dbef5d8659d9cc0cccf3de462c6af66c0 --- /dev/null +++ b/audio/few/00474.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cd85ba6be258515d17be4c55ad06ea06504f6c783c4b6acf9285d7633699001 +size 3293262 diff --git a/audio/few/00475.wav b/audio/few/00475.wav new file mode 100644 index 0000000000000000000000000000000000000000..fabb7efada2a004a7ade051f858cb0c5f904e8a0 --- /dev/null +++ b/audio/few/00475.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:990ad8c7e8dafed013cd0627635ec390efa91726ea213b310c88c713d7f26f6a +size 1074512 diff --git a/audio/few/00479.wav b/audio/few/00479.wav new file mode 100644 index 0000000000000000000000000000000000000000..580231e838a2ac49898d40e034312602e13e4838 --- /dev/null +++ b/audio/few/00479.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9afa3ee174d9b4bd14bfd92ba8b9e1dc80c944c00f2f4a967ae830ff466cd0ab +size 3826726 diff --git a/audio/few/00481.wav b/audio/few/00481.wav new file mode 100644 index 0000000000000000000000000000000000000000..719024032645a7ad4c617c280125af74c73e1341 --- /dev/null +++ b/audio/few/00481.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c250b79ddc71909f04350bd4972ae4dc6ee52ddc958da8e1db4e191a844b38bd +size 1825724 diff --git a/audio/few/00493.wav b/audio/few/00493.wav new file mode 100644 index 0000000000000000000000000000000000000000..cc9447e2f3420c929d288ec120843f52c3f22a9f --- /dev/null +++ b/audio/few/00493.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71bf3aca829aec9a62d216b141092b03d301fde5a0b73b9a05c91eb834b41207 +size 1134698 diff --git a/audio/few/00501.wav b/audio/few/00501.wav new file mode 100644 index 0000000000000000000000000000000000000000..5dc249cf851224a3ebaf8e3f46d5bf230d98e0e6 --- /dev/null +++ b/audio/few/00501.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af106766499075a6eee6d4fd4ab195f49be8eb5b2e72a64d16cf70cb1c1b866b +size 1352408 diff --git a/audio/few/00532.wav b/audio/few/00532.wav new file mode 100644 index 0000000000000000000000000000000000000000..43c7ffbfa08112ab84e21767cfe02c7802581f89 --- /dev/null +++ b/audio/few/00532.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67de6d4b2dce7e20239907969f539657afa5976ded88129fe392225a931a4dae +size 694350 diff --git a/audio/few/00535.wav b/audio/few/00535.wav new file mode 100644 index 0000000000000000000000000000000000000000..bd0e6f4534268e0a9297c1b1b609dabe0e99a1c4 --- /dev/null +++ b/audio/few/00535.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6071cc75f2c6ff9c009fd7c1352892d8f7e296537bfcbc48fecb6b947c93a3a5 +size 733458 diff --git a/audio/few/00540.wav b/audio/few/00540.wav new file mode 100644 index 0000000000000000000000000000000000000000..44f9da9f73d4d0e9c38786a66b32809ad8e66f27 --- /dev/null +++ b/audio/few/00540.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b9182c64a67ea912509477f8cd69cfe3d0a64e43ec576cfe7f5a292e3641773 +size 699278 diff --git a/audio/few/00551.wav b/audio/few/00551.wav new file mode 100644 index 0000000000000000000000000000000000000000..2e6bcd9d2701c7731c8dfaab30a867af9c4b2825 --- /dev/null +++ b/audio/few/00551.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91316e31022dc6b12cb61920c0556282dfb90b9f9eda5e0ef940b73a997a9757 +size 929620 diff --git a/audio/few/00557.wav b/audio/few/00557.wav new file mode 100644 index 0000000000000000000000000000000000000000..e1b6097c0cbf543eee983efd28909ab49ee1e4be --- /dev/null +++ b/audio/few/00557.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdb2060a73971f7068a17baf33c2ae746f33b23a63916ec31219a89c17f6178d +size 2076128 diff --git a/audio/few/00560.wav b/audio/few/00560.wav new file mode 100644 index 0000000000000000000000000000000000000000..ecd4133b57806977ed2e0b4f5b4acea7ab09fd08 --- /dev/null +++ b/audio/few/00560.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b8370f376239f6993f36f13c99ff86a0a538d7e2fb99aab7b827f4099043c68 +size 877606 diff --git a/audio/few/00562.wav b/audio/few/00562.wav new file mode 100644 index 0000000000000000000000000000000000000000..02cf4de9487ac4e7a2ef0915ad4815db64b42398 --- /dev/null +++ b/audio/few/00562.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6a9e49a1eb05d06e9dd038fa178da8a771e860165b4a8679b95e794bf262633 +size 11161260 diff --git a/audio/few/00567.wav b/audio/few/00567.wav new file mode 100644 index 0000000000000000000000000000000000000000..169aa9e0ae2d9c0f4d75cfc26e84a80f41880f6f --- /dev/null +++ b/audio/few/00567.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f06e00e047d0da4d202acc6eaa0bb97b8e2b3da86655ceed1de13ad93eb44c22 +size 4592056 diff --git a/audio/few/00571.wav b/audio/few/00571.wav new file mode 100644 index 0000000000000000000000000000000000000000..3a0b7f02025672092d4d4cc57b15586d79141b16 --- /dev/null +++ b/audio/few/00571.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce7b472ab4e46660793d5985ce41f709e15bdc9e0acc341da5d2989e7ee79945 +size 1128010 diff --git a/audio/few/00572.wav b/audio/few/00572.wav new file mode 100644 index 0000000000000000000000000000000000000000..c594b183769b4888e3d67feae05bbaae153ac7b9 --- /dev/null +++ b/audio/few/00572.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca25f280ce4a2fce8d6211d1420c56843b903928ba499b2dd377a5806e05e7ae +size 983862 diff --git a/audio/few/00573.wav b/audio/few/00573.wav new file mode 100644 index 0000000000000000000000000000000000000000..55c5110df844897218ba3a48f29388f8ea40fa0b --- /dev/null +++ b/audio/few/00573.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fd1491b81625dcdc1990cce0af1d9d23c571dafa582506e0c8c76f28972a904 +size 6972010 diff --git a/audio/few/00583.wav b/audio/few/00583.wav new file mode 100644 index 0000000000000000000000000000000000000000..89aa097c9fe3d2562239c72be6c76c02ddce504f --- /dev/null +++ b/audio/few/00583.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d5471aa07d95a203120bae23847309e22cf4556130cef8af4a8c318d9adb207 +size 1612472 diff --git a/audio/few/00585.wav b/audio/few/00585.wav new file mode 100644 index 0000000000000000000000000000000000000000..d2e32358b13562310a8b304fa82b1903e03863b5 --- /dev/null +++ b/audio/few/00585.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1e85ab0d3c90b3a799dd3ee6d6d9b2cb72e7a23e8a77f6bb66381c576adb06f +size 5806182 diff --git a/audio/few/00598.wav b/audio/few/00598.wav new file mode 100644 index 0000000000000000000000000000000000000000..a8f467c210b131122d3005811dca1736bc9dbe96 --- /dev/null +++ b/audio/few/00598.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d47a360f3f61050f22aef049cbb60638ea10da4314b7627e4246822fde59ee5b +size 2306470 diff --git a/audio/few/00603.wav b/audio/few/00603.wav new file mode 100644 index 0000000000000000000000000000000000000000..c40b5f51144ec93a3a169bcdb2ae118595660ff1 --- /dev/null +++ b/audio/few/00603.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b769e88e4abbd9d469e26bb77b09501f5a5cc4e531edeed5426a4706c81d4c3f +size 2169750 diff --git a/audio/few/00604.wav b/audio/few/00604.wav new file mode 100644 index 0000000000000000000000000000000000000000..87bc1fb302b43765ff6b602a1c4e87a5058aebdd --- /dev/null +++ b/audio/few/00604.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a68f5759a32e712faaa5d59dd804933c96f03a9c4e02c9750bcca9535a4945 +size 882066 diff --git a/audio/few/00614.wav b/audio/few/00614.wav new file mode 100644 index 0000000000000000000000000000000000000000..d158df2673fc9be24ae87bfd09cc3e0ca7586e33 --- /dev/null +++ b/audio/few/00614.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acede13ea9134492b5d8b8b58f87b008ee399d65fcd9f5abbb374605234a9643 +size 1564918 diff --git a/audio/few/00619.wav b/audio/few/00619.wav new file mode 100644 index 0000000000000000000000000000000000000000..aabd5a3acf49af8616ddf3b1abb60a228de07a9f --- /dev/null +++ b/audio/few/00619.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ca58eb2371e887fb549f06a14524377bc8aade31a8e7df7de64d8c45bbcbccb +size 4656700 diff --git a/audio/few/00628.wav b/audio/few/00628.wav new file mode 100644 index 0000000000000000000000000000000000000000..98ac778cd380be0384ec5fca5a8b1973528b7d39 --- /dev/null +++ b/audio/few/00628.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d2ea2d17ec784efbce794a4e2ed5b9a90281aa7e589198d593b15423a17c39e +size 649494 diff --git a/audio/few/00631.wav b/audio/few/00631.wav new file mode 100644 index 0000000000000000000000000000000000000000..cb1d31b8e38ef15b0fab21dc39401933510a3093 --- /dev/null +++ b/audio/few/00631.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ff1a064680e4eda51fc94f3591bb7b622c9530d700d4e1bae266af8c704d438 +size 1600584 diff --git a/audio/few/00635.wav b/audio/few/00635.wav new file mode 100644 index 0000000000000000000000000000000000000000..b2608f4057d040d4134db71398cc8bc50445f01d --- /dev/null +++ b/audio/few/00635.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:796d2251858dcfa454122ca4116145aeb9fe7e1f0f632fb152472e9e86d7a846 +size 2049378 diff --git a/audio/few/00636.wav b/audio/few/00636.wav new file mode 100644 index 0000000000000000000000000000000000000000..11e1730d0071371fed4151859371a39911c814fc --- /dev/null +++ b/audio/few/00636.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c00ea996e8a23458042316b29ac0d99f9febe6679fce230d5e629349fca24494 +size 6767674 diff --git a/audio/few/00641.wav b/audio/few/00641.wav new file mode 100644 index 0000000000000000000000000000000000000000..c89cc9626b936ae1f08b890e014f779b5c9fa7d5 --- /dev/null +++ b/audio/few/00641.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4d2b3e557fc40ac22c656e9a06c923d1891536c280fa27e535906981976aab1 +size 777296 diff --git a/audio/few/00645.wav b/audio/few/00645.wav new file mode 100644 index 0000000000000000000000000000000000000000..502094789742ad72fe7ceddc599c0df83cbaaa4e --- /dev/null +++ b/audio/few/00645.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:977b24900bcf2d5c00e94aeea7f438ba119385ec4dcd21cdef2feeb4e8d0b3d9 +size 2802820 diff --git a/audio/few/00660.wav b/audio/few/00660.wav new file mode 100644 index 0000000000000000000000000000000000000000..66a9b15e6bf1d1de0e27593c1325e71474ce4cff --- /dev/null +++ b/audio/few/00660.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01653fc5a106a23125bc7178c7d1f99b2857cd20a2cdf7d113ca74c258e9ecf2 +size 2306470 diff --git a/audio/few/00666.wav b/audio/few/00666.wav new file mode 100644 index 0000000000000000000000000000000000000000..fce4c5069331113776e954557e05d903999307ab --- /dev/null +++ b/audio/few/00666.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52d0192872f18896f327e053965961a4b120e8f0ab05ba5b4b765476237b5b03 +size 677730 diff --git a/audio/few/00668.wav b/audio/few/00668.wav new file mode 100644 index 0000000000000000000000000000000000000000..7822cdeeebeee9765eeb628faf748370bcedb4fa --- /dev/null +++ b/audio/few/00668.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cf76fb8dc78da01a3c148d61c475afc854aac5160fec726d90bbbc13c3afd04 +size 1194142 diff --git a/audio/few/00669.wav b/audio/few/00669.wav new file mode 100644 index 0000000000000000000000000000000000000000..d3ee32fb559e5478605ba5304b8122047e80b636 --- /dev/null +++ b/audio/few/00669.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:341fd828ac6627246a52a8f6ad591e0f7cbd3a201f36d574342e00d12b6c67c9 +size 2688392 diff --git a/audio/few/00677.wav b/audio/few/00677.wav new file mode 100644 index 0000000000000000000000000000000000000000..d1d26a7add0c4f9bcd5608b1392ab696b813dc4b --- /dev/null +++ b/audio/few/00677.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:647ca34e894811380d0f072b39c603fccfe7a2fc45a3411b4e406e156dad6d89 +size 2809508 diff --git a/audio/few/00682.wav b/audio/few/00682.wav new file mode 100644 index 0000000000000000000000000000000000000000..68ec711a177dcc237b063728fde3bbe5ed36eb79 --- /dev/null +++ b/audio/few/00682.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8e27268b1fd4103c2b909fc100780ecbf8e5a483b9c2462641908b119c2e846 +size 2191300 diff --git a/audio/few/00683.wav b/audio/few/00683.wav new file mode 100644 index 0000000000000000000000000000000000000000..1e86b3a820ce4398285694e8f831bd567f33c4ac --- /dev/null +++ b/audio/few/00683.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a4019ca88c666f83861b4c4e439e5997a3c037a0027b3c2a50a28bdddc7b44a +size 882066 diff --git a/audio/few/00689.wav b/audio/few/00689.wav new file mode 100644 index 0000000000000000000000000000000000000000..b9ce24b3a5513466dc5b3690d27669e450413359 --- /dev/null +++ b/audio/few/00689.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c870c7179986b3491d17d3000fc8ba05a37cae27edec4879f661072e985ea681 +size 1395504 diff --git a/audio/few/00695.wav b/audio/few/00695.wav new file mode 100644 index 0000000000000000000000000000000000000000..2dd70863887a05a390acece61db6f3a66ca3a40e --- /dev/null +++ b/audio/few/00695.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c39b35a89756b5fbfe87139f22b65f48efaa404703b5e97961d8955ae7da9484 +size 1517364 diff --git a/audio/few/00700.wav b/audio/few/00700.wav new file mode 100644 index 0000000000000000000000000000000000000000..7361edefca7c313d2f53f4f6ef9e83921f4d988e --- /dev/null +++ b/audio/few/00700.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cd4f2db1e5e2dc0439bc761a82f64001bcc4fcb395777a9e89a010a0f4822d5 +size 1501760 diff --git a/audio/few/00701.wav b/audio/few/00701.wav new file mode 100644 index 0000000000000000000000000000000000000000..188710c039b1132d07f97147af824e75c6c5739b --- /dev/null +++ b/audio/few/00701.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c20864fced9349fe298a72036c3e050e1fc7d1c547cf0d917672758536e68a6 +size 1069310 diff --git a/audio/few/00705.wav b/audio/few/00705.wav new file mode 100644 index 0000000000000000000000000000000000000000..77cb75ee1102070c6d4d748500f944e2b0c67311 --- /dev/null +++ b/audio/few/00705.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:241855e3e4b0901734506d7a222be5d82fbd545305d5377657ad8b02f386cc3a +size 705964 diff --git a/audio/few/00706.wav b/audio/few/00706.wav new file mode 100644 index 0000000000000000000000000000000000000000..f269ad3431f5dd546168409ddd1821f529c73f67 --- /dev/null +++ b/audio/few/00706.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a59e3031fbc0d6ac46de709d21c00cb4dcc6be7c3c1b71ca6a1c35a416e8ece7 +size 3829700 diff --git a/audio/few/00708.wav b/audio/few/00708.wav new file mode 100644 index 0000000000000000000000000000000000000000..59b23adcaeaaeb6076ab816fa94657789741c792 --- /dev/null +++ b/audio/few/00708.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:062f47565358981ff8c90d266cc743d8dffb3479040b4728571467d06977c235 +size 693334 diff --git a/audio/few/00719.wav b/audio/few/00719.wav new file mode 100644 index 0000000000000000000000000000000000000000..80adaa1de504e0c4180ccbf37010668e466c6806 --- /dev/null +++ b/audio/few/00719.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50aa5824ab7194d6471a6c29932e029ba8666a26c8b1efa6354c1445e1c3e252 +size 892468 diff --git a/audio/few/00734.wav b/audio/few/00734.wav new file mode 100644 index 0000000000000000000000000000000000000000..32075238c02ca7b396e2ad3153fc74c0db889e5f --- /dev/null +++ b/audio/few/00734.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc19b2fa625580928e108b6008da97895fb282f58b4c25c38308dabde8e11216 +size 877606 diff --git a/audio/few/00737.wav b/audio/few/00737.wav new file mode 100644 index 0000000000000000000000000000000000000000..c22855ae31e42395f2a558f933c5b2876bcdff7b --- /dev/null +++ b/audio/few/00737.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92c15a8e635d648f7f83c4b4b99338d2960c5e311fb596474064df18eb231c53 +size 873892 diff --git a/audio/few/00740.wav b/audio/few/00740.wav new file mode 100644 index 0000000000000000000000000000000000000000..be70418285e733dd338ffed7be27628bc3c24704 --- /dev/null +++ b/audio/few/00740.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7cb15724c4321ead02a801c075b06e0a086e840928cbad0ed9c1e857e016081 +size 1555258 diff --git a/audio/few/00743.wav b/audio/few/00743.wav new file mode 100644 index 0000000000000000000000000000000000000000..0db702b9634c4fb4909105ce3ef79f96b25cdc68 --- /dev/null +++ b/audio/few/00743.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:961afcdb931f5b239c66a4a65d93336c73db1394c0a38312c6650480fe039ce0 +size 1487642 diff --git a/audio/few/00745.wav b/audio/few/00745.wav new file mode 100644 index 0000000000000000000000000000000000000000..c2658084d6447e9d2ec53131216c6c8f6402edd8 --- /dev/null +++ b/audio/few/00745.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a53b11d245b435146fa3ff74ea886242e3d027b98db4e8b64f82296e9c8f325b +size 756492 diff --git a/audio/few/00756.wav b/audio/few/00756.wav new file mode 100644 index 0000000000000000000000000000000000000000..bdeeb1c0e931a179df53d59f4fd874a2b427bb79 --- /dev/null +++ b/audio/few/00756.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4e6301219f9f4031bbed3d6b4e06b68ff8ba571c2aaac561cd557140199894b +size 647264 diff --git a/audio/few/00762.wav b/audio/few/00762.wav new file mode 100644 index 0000000000000000000000000000000000000000..2c24c20948c7b9fe012b09959b8a8fc48a6e17d2 --- /dev/null +++ b/audio/few/00762.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9073568e943b4933469eccb8c2901cdeadcc0a7734d980d36182fff60d18475c +size 905842 diff --git a/audio/few/00770.wav b/audio/few/00770.wav new file mode 100644 index 0000000000000000000000000000000000000000..7cc8ab111ca4f624dc762118af9c0e30bd3b19b7 --- /dev/null +++ b/audio/few/00770.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33ef7136990078a3be122bad49cc77e1cdc546a09e1001beb7f5dff348efa721 +size 3247900 diff --git a/audio/few/00778.wav b/audio/few/00778.wav new file mode 100644 index 0000000000000000000000000000000000000000..9bb7d66d9dd1efa5fb9445440314bbbe35c03631 --- /dev/null +++ b/audio/few/00778.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52760d5e287083b729bc91f4df72d0e793f5565c882b4888debead45097b52ca +size 993520 diff --git a/audio/few/00785.wav b/audio/few/00785.wav new file mode 100644 index 0000000000000000000000000000000000000000..f262fa73e1450129b5f701538223b902136440b6 --- /dev/null +++ b/audio/few/00785.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:992da876f7bfcefab3cdb93517b1ddbd4eae0c322da17e036296580bd26453c6 +size 743860 diff --git a/audio/few/00788.wav b/audio/few/00788.wav new file mode 100644 index 0000000000000000000000000000000000000000..d9009801f0aa83757e20cb3f6293b588533de3b2 --- /dev/null +++ b/audio/few/00788.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8288cdad9ed206085e7a2e8e1e95dff3e6253a9a7ddfd2f595c1a56840b792a8 +size 664354 diff --git a/audio/few/00799.wav b/audio/few/00799.wav new file mode 100644 index 0000000000000000000000000000000000000000..0a299803740b998782b0618921ba3e7bc43ff118 --- /dev/null +++ b/audio/few/00799.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c49dc14a52673a1cb03eb1e16779f9a01ea0216614a67ef2e8a0d7b73e00237d +size 668814 diff --git a/audio/few/00801.wav b/audio/few/00801.wav new file mode 100644 index 0000000000000000000000000000000000000000..72310916f0ccc214aa4b49bda1d5c3de72428843 --- /dev/null +++ b/audio/few/00801.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1298d9a79e057b16ef46801d3b9362bfa1f62442a1ba5950b45e4ec4c453c4da +size 2619290 diff --git a/audio/few/00804.wav b/audio/few/00804.wav new file mode 100644 index 0000000000000000000000000000000000000000..6ef1cef56e961fc9742f48041bd872e251d4432e --- /dev/null +++ b/audio/few/00804.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cc130e89f6fcbb15178893f3835146ba0404ba90bde4580375dc9d3243c4028 +size 4745866 diff --git a/audio/few/00808.wav b/audio/few/00808.wav new file mode 100644 index 0000000000000000000000000000000000000000..dddde899355b0dd5864a35ecc4ffaaa6531fdd45 --- /dev/null +++ b/audio/few/00808.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c4ebc97945d76c119c623872fbd67895a1e367fcb5cc5b069f24fc3f969a91e +size 769124 diff --git a/audio/few/00809.wav b/audio/few/00809.wav new file mode 100644 index 0000000000000000000000000000000000000000..161c428e86d7d71a74f11db02021ea89f5997326 --- /dev/null +++ b/audio/few/00809.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ecf1d13dfc37427e4c46f0870a6bc409d67a46c3f36d48f6e85076c8a57dc31 +size 920704 diff --git a/audio/few/00817.wav b/audio/few/00817.wav new file mode 100644 index 0000000000000000000000000000000000000000..fe6dbe55b8de6bd892ac1749ee68758bdf184c1b --- /dev/null +++ b/audio/few/00817.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7ed5cafdf56ef5c607a4b51fe41c12bc27fe12cca205600077898607e027abe +size 1437858 diff --git a/audio/few/00844.wav b/audio/few/00844.wav new file mode 100644 index 0000000000000000000000000000000000000000..74009146645992f06984f48d878f563a5f35bf0c --- /dev/null +++ b/audio/few/00844.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75a6c9a56a36a74488b53d638a4daddc484355528ee7095c15621cf6bacfcd32 +size 989806 diff --git a/audio/few/00850.wav b/audio/few/00850.wav new file mode 100644 index 0000000000000000000000000000000000000000..cf161fedbb6b3b76436f6fc87f60b3deb3e94616 --- /dev/null +++ b/audio/few/00850.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d26b27912d39b31a92ab60a93fe142db5441f295092443f03e3b5f8ad223eb3 +size 3903260 diff --git a/audio/few/00852.wav b/audio/few/00852.wav new file mode 100644 index 0000000000000000000000000000000000000000..3d4df5964afbeb4b18b3ff646e452ec8c23871d8 --- /dev/null +++ b/audio/few/00852.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e854f755e02df162b7162960d7eeba82658ba8ff5cc804276452ff8e4185d057 +size 1572348 diff --git a/audio/few/00856.wav b/audio/few/00856.wav new file mode 100644 index 0000000000000000000000000000000000000000..cc2a4d8e4be6a6700ee445ce07742b562fc77a22 --- /dev/null +++ b/audio/few/00856.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8a0adfe0a801dc7cafef9f099b14487ca1ec611d5268eb43f52552c572820fc +size 1302624 diff --git a/audio/few/00864.wav b/audio/few/00864.wav new file mode 100644 index 0000000000000000000000000000000000000000..2a825347ecb109833fca524e73f42713560b2dd5 --- /dev/null +++ b/audio/few/00864.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fca2e0b5ccd3890b060b9f9a50e7068e91dcb00dea350b54b4629076a3422ec +size 896182 diff --git a/audio/few/00872.wav b/audio/few/00872.wav new file mode 100644 index 0000000000000000000000000000000000000000..68ca84c1a2757e75e96c5a069362124f68b530a1 --- /dev/null +++ b/audio/few/00872.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a86ef559d3906246d0ff61f54a8d5aeb4035b6093c99b47f39fa6f9c4e43c8b +size 2725544 diff --git a/audio/few/00882.wav b/audio/few/00882.wav new file mode 100644 index 0000000000000000000000000000000000000000..6333e0bbf11031276a4d1fb8fb286e5dcfc02eb9 --- /dev/null +++ b/audio/few/00882.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee18ef45c1775700f6760103bd46cabccad62270e4137ef545d41a6d1b137069 +size 879092 diff --git a/audio/few/00888.wav b/audio/few/00888.wav new file mode 100644 index 0000000000000000000000000000000000000000..c1592220333489d5ea44b751ca0ac4a2bc299f89 --- /dev/null +++ b/audio/few/00888.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:365154b0390b19e412038414a3f46fbcfa0267027db2d3d794c12fe916bcf209 +size 810734 diff --git a/audio/few/00897.wav b/audio/few/00897.wav new file mode 100644 index 0000000000000000000000000000000000000000..f7ee37065c8e9a829cae8aa537801dcf4e1f8f0e --- /dev/null +++ b/audio/few/00897.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb82d836f8e0a9243038be9af9fb0f6e6afd3380bc8e7efbc3b667e2bbfbcd5f +size 5174598 diff --git a/audio/few/00902.wav b/audio/few/00902.wav new file mode 100644 index 0000000000000000000000000000000000000000..ed7c6fe40ded0117a10635cf629a19d14ec0b2f5 --- /dev/null +++ b/audio/few/00902.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cb8c1084cfcc854beeda2c46e51d0214a9282a7778db7b402075df766d8cde6 +size 790672 diff --git a/audio/few/00917.wav b/audio/few/00917.wav new file mode 100644 index 0000000000000000000000000000000000000000..fc33490d59e64c0fda9f947281db2f1ef16a9404 --- /dev/null +++ b/audio/few/00917.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b8574321c9ac095d31b6cb696adbd9d42df7194f1239b57e0c4aadf0b608a03 +size 1352408 diff --git a/audio/few/00925.wav b/audio/few/00925.wav new file mode 100644 index 0000000000000000000000000000000000000000..6807880cd74f5e339c8c57447be75ffaa3f353c3 --- /dev/null +++ b/audio/few/00925.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9656cf6a9aa1a905c7364ec8add64329afddb3f89f00a8da52bba4fc0262bb82 +size 4505122 diff --git a/audio/few/00928.wav b/audio/few/00928.wav new file mode 100644 index 0000000000000000000000000000000000000000..5df8f7d225f02ff5067cd698cafa5a5f02c01d7f --- /dev/null +++ b/audio/few/00928.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08a602092144aea462f046c816582ff87158a02674559fba082429c46588ae8e +size 2638608 diff --git a/audio/few/00942.wav b/audio/few/00942.wav new file mode 100644 index 0000000000000000000000000000000000000000..075a79157e855cecd6d77e1d78e4fc6317bffa5e --- /dev/null +++ b/audio/few/00942.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b238e2838781ffbd1ecb7e7aee1930561b83635167ba6c2bafe2b798f67aa304 +size 1636250 diff --git a/audio/few/00947.wav b/audio/few/00947.wav new file mode 100644 index 0000000000000000000000000000000000000000..8ba0e2ed41abdaaaa46cbaf0f28be515dee6911d --- /dev/null +++ b/audio/few/00947.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a6ff11bd76d3b224675bf2bb5871e131a7672cbc537c36b6a8f17488260808 +size 3669202 diff --git a/audio/few/00948.wav b/audio/few/00948.wav new file mode 100644 index 0000000000000000000000000000000000000000..31731fbc75d389bc958c7a7d7c809131969645ce --- /dev/null +++ b/audio/few/00948.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2d5be880e8429cc6fafc993092f6d5e8bac11608626c690f2b34f6bb7284787 +size 753520 diff --git a/audio/few/00949.wav b/audio/few/00949.wav new file mode 100644 index 0000000000000000000000000000000000000000..3767af880a9561645373adf843f4a09a451ea10d --- /dev/null +++ b/audio/few/00949.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:406a8cfee67d76689b08dc1b3c115eb4a5b7708a61b816e084917c95424f322a +size 905100 diff --git a/audio/few/00954.wav b/audio/few/00954.wav new file mode 100644 index 0000000000000000000000000000000000000000..5abfe1de2a82133039363d831fab5d205882be52 --- /dev/null +++ b/audio/few/00954.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6fa83ba15c1aaeadc616b30d824782b21520aac1d356323855470a981fb0706 +size 752034 diff --git a/audio/few/00957.wav b/audio/few/00957.wav new file mode 100644 index 0000000000000000000000000000000000000000..e6b6e0dbcb2cb8b49adc592ded01cf1c272a9400 --- /dev/null +++ b/audio/few/00957.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb79f6a2559e0595da2e2032486fabc1be4d4b73286c68f484b718484254bdba +size 656182 diff --git a/audio/few/00972.wav b/audio/few/00972.wav new file mode 100644 index 0000000000000000000000000000000000000000..34a2329cb3f96d403c516c1d82365eac2519223d --- /dev/null +++ b/audio/few/00972.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc6e52f1d64d9a39a46956fe261b2ac448c216e37bd879b774761247b17dc560 +size 772096 diff --git a/audio/few/00973.wav b/audio/few/00973.wav new file mode 100644 index 0000000000000000000000000000000000000000..c11a9ddae9367319f43867964047f55f58082824 --- /dev/null +++ b/audio/few/00973.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ec9cbd7597896b928675d937fee9e6d2ac0eab0668ab0d30a052a712a1a14fe +size 658410 diff --git a/audio/few/00979.wav b/audio/few/00979.wav new file mode 100644 index 0000000000000000000000000000000000000000..993c5d07ff3407e5b1423cd11032514305d95c97 --- /dev/null +++ b/audio/few/00979.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9d6ae1ca1861e239d0aefdbcf33fec24023a85cad0f62a39b329da5cc35dbd0 +size 1437858 diff --git a/audio/few/00980.wav b/audio/few/00980.wav new file mode 100644 index 0000000000000000000000000000000000000000..2c7209e0ace69368e94ce91a9d87920e08f2a371 --- /dev/null +++ b/audio/few/00980.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4a4cddd0a26b337ffe18f6d69a97dc33e841c730b4ea5af1281992aa60c9185 +size 672528 diff --git a/audio/few/00982.wav b/audio/few/00982.wav new file mode 100644 index 0000000000000000000000000000000000000000..7dee85a7b62494315934aadd70e8a64990d14228 --- /dev/null +++ b/audio/few/00982.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de3f8acf9a50a82c9b5c9a110e5fdabbfcbac8d1d08ec5bd77b0c06a424834b8 +size 2904616 diff --git a/audio/few/00991.wav b/audio/few/00991.wav new file mode 100644 index 0000000000000000000000000000000000000000..25cc37db3c7b4a85f7e1b4e0f7bfe15b29ac9608 --- /dev/null +++ b/audio/few/00991.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffedb7469cdf2c158f9815ac86b050af4f6de0e63a25afc2ff2ceeae8fe77857 +size 871662 diff --git a/audio/few/00994.wav b/audio/few/00994.wav new file mode 100644 index 0000000000000000000000000000000000000000..1332228cdad14e0889770ecdec568127945c3a4d --- /dev/null +++ b/audio/few/00994.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:718fe3ec8d3afc584a8289f7daa5bee9e92a919ef7d906b962e9d0bba514076d +size 4175212 diff --git a/audio/few/00995.wav b/audio/few/00995.wav new file mode 100644 index 0000000000000000000000000000000000000000..47ce75c21f84db4cf8103e5976400b671fbcb773 --- /dev/null +++ b/audio/few/00995.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:094360b63982ca4412a3f54702a1f1327d770b565fae9d5614b95fb18a7bf4db +size 2354768 diff --git a/audio/few/00996.wav b/audio/few/00996.wav new file mode 100644 index 0000000000000000000000000000000000000000..30323ccdfd286cc59ccc6a9a154be246f552c7aa --- /dev/null +++ b/audio/few/00996.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff586d273f73cf0af55f76c5995855e53af99cc7b29fb58975171719e88f8aee +size 1173336 diff --git a/audio/few/01002.wav b/audio/few/01002.wav new file mode 100644 index 0000000000000000000000000000000000000000..f6b9c8bf83e12e49c246f62867edf248dca39648 --- /dev/null +++ b/audio/few/01002.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:368c81bd6b150b8a6da827c18f6f3189aa7686edd6570fb61c7b3250d3ad065f +size 892468 diff --git a/audio/few/01009.wav b/audio/few/01009.wav new file mode 100644 index 0000000000000000000000000000000000000000..1f177759465cbe41f502321dbf6029b4af8d880b --- /dev/null +++ b/audio/few/01009.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eda566d261020cbb0c469de045d62e14bce738053163389f5ebd5a01010b888 +size 1489870 diff --git a/audio/few/01019.wav b/audio/few/01019.wav new file mode 100644 index 0000000000000000000000000000000000000000..0cc2a527762d5063bfa2bd9f0393b46a07ea07f0 --- /dev/null +++ b/audio/few/01019.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55102258d05fd04ab05239b90ca21dd1ea8291cfa1cb47943ed79e0f50deffe +size 2628948 diff --git a/audio/few/01031.wav b/audio/few/01031.wav new file mode 100644 index 0000000000000000000000000000000000000000..74e6af912257ed712a977f6d000373adcb4e47dd --- /dev/null +++ b/audio/few/01031.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dddea2e976adfe94b9f3a834686ca5efa5d73eb112f3fa68c146244da8aa2a1 +size 829310 diff --git a/audio/few/01032.wav b/audio/few/01032.wav new file mode 100644 index 0000000000000000000000000000000000000000..a118d7b4a9a2120a84df7a909095e6b9566d8c62 --- /dev/null +++ b/audio/few/01032.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24a574cedaebc3a6670236b824ad1b84739c876a189d798b30ebb8146ffa713b +size 710424 diff --git a/audio/few/01034.wav b/audio/few/01034.wav new file mode 100644 index 0000000000000000000000000000000000000000..00dc66470072e3c9680e0dc55555710604b768b9 --- /dev/null +++ b/audio/few/01034.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ff075f3a8a053d7b03e7e71a3870073d90bc80c25a226b130d783704f6bb589 +size 1113150 diff --git a/audio/few/01070.wav b/audio/few/01070.wav new file mode 100644 index 0000000000000000000000000000000000000000..78e5113f870073f07cb325fd47884db9003bb23a --- /dev/null +++ b/audio/few/01070.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a761ce01bcbd2f5d6da568aa5c9c33eb63ad191304ec73aef37b62914bead51 +size 944480 diff --git a/audio/few/01086.wav b/audio/few/01086.wav new file mode 100644 index 0000000000000000000000000000000000000000..1aae467ce335ac70209e47d6f3f8d4e0aeeb8772 --- /dev/null +++ b/audio/few/01086.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbf3197ab1b4f1b5ba99b0193ab801d94aceaf2bb0ccecfad895ed1bc0f3d877 +size 2034518 diff --git a/audio/few/01087.wav b/audio/few/01087.wav new file mode 100644 index 0000000000000000000000000000000000000000..acf021512b325f5a4cc6892ea9efbc9d7757d578 --- /dev/null +++ b/audio/few/01087.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eac6b4dea64fb479b9d9cb08e615ba5a1a66c24421746bfd7662caa62d455a5d +size 4436762 diff --git a/audio/few/01092.wav b/audio/few/01092.wav new file mode 100644 index 0000000000000000000000000000000000000000..4caacf5b479a2a2370af28ea7567ee45cb0f8b3e --- /dev/null +++ b/audio/few/01092.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:476a48b59bfd01f85db6c8d35f41b4f25e1aa11af6b6feee4550a32efcbce6ba +size 1324174 diff --git a/audio/few/01124.wav b/audio/few/01124.wav new file mode 100644 index 0000000000000000000000000000000000000000..53d4cfef693622b279ca62294bf0d4c423145edc --- /dev/null +++ b/audio/few/01124.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ade072f07a567a3070fa10e2ea97204ea3822a24c4eabe496b191b6c57a7d0e +size 2842944 diff --git a/audio/few/01136.wav b/audio/few/01136.wav new file mode 100644 index 0000000000000000000000000000000000000000..31dfe81b2f7255a12dcb44e3b750416edc6b3903 --- /dev/null +++ b/audio/few/01136.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00311efce5cd6ff0bd514ec8fe48124d825964fdc747e72a50207835984301a8 +size 2050864 diff --git a/audio/few/01137.wav b/audio/few/01137.wav new file mode 100644 index 0000000000000000000000000000000000000000..0579af0eeeb2901a6a7a908f881951113d14504a --- /dev/null +++ b/audio/few/01137.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fa05a3252b6a74fa61ae3caf7b661f7046420e2e712462ad294dd4985658b87 +size 2802076 diff --git a/audio/few/01152.wav b/audio/few/01152.wav new file mode 100644 index 0000000000000000000000000000000000000000..d87b427872046fc8992cf10032f30548657a0c8c --- /dev/null +++ b/audio/few/01152.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12ac68a51153874117be4843f6ac2058a8332957321d1eb9560eb8041969c56d +size 1316000 diff --git a/audio/few/01157.wav b/audio/few/01157.wav new file mode 100644 index 0000000000000000000000000000000000000000..ce9320d0a380e4258aec4111bf297692e7b2be38 --- /dev/null +++ b/audio/few/01157.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:168da66a0eb16ab1b6312b386d9c7fecefde7f7c7204032cfd4a09db06f679e4 +size 5806182 diff --git a/audio/few/01158.wav b/audio/few/01158.wav new file mode 100644 index 0000000000000000000000000000000000000000..e82d0384255ca414b0e2bcd7603f1ff7f07f44ec --- /dev/null +++ b/audio/few/01158.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f34cb0955fd67ed85c94c2ac804c0406df6bd4a5edee0a593057f4c280568212 +size 1532224 diff --git a/audio/few/01167.wav b/audio/few/01167.wav new file mode 100644 index 0000000000000000000000000000000000000000..bb4a83607efa282048a35aa6cb1357aa54c4794a --- /dev/null +++ b/audio/few/01167.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db9de467dfa2631bfc5b5da09e3ca643c6edb33e48e4a982495132068804b5ae +size 719340 diff --git a/audio/few/01169.wav b/audio/few/01169.wav new file mode 100644 index 0000000000000000000000000000000000000000..9a700e6fc951cd542f1e14f16c02a50d1da4f809 --- /dev/null +++ b/audio/few/01169.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41993e6b5039667fa5ce3711b53badc4e2955992dabcec35625265bd24f9a159 +size 1128010 diff --git a/audio/few/01170.wav b/audio/few/01170.wav new file mode 100644 index 0000000000000000000000000000000000000000..441ca60415724ec1c8891e3d8ef2f65b7e86a61d --- /dev/null +++ b/audio/few/01170.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a617277ad94aa8e40d8fa3bc6d4e5d39f220a759190a394bbc124cf332ab2f1 +size 2264116 diff --git a/audio/few/01172.wav b/audio/few/01172.wav new file mode 100644 index 0000000000000000000000000000000000000000..01a89de0ff8a2449e4a89a0bddc36687a42b97a9 --- /dev/null +++ b/audio/few/01172.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69126e7e0213d0620c002fa35eb3c59271be9912cf8f28d807181b592132e3e2 +size 1304110 diff --git a/audio/few/01178.wav b/audio/few/01178.wav new file mode 100644 index 0000000000000000000000000000000000000000..336eb9e5d6fbf0f828df4dc36c6fdaf97e2fea15 --- /dev/null +++ b/audio/few/01178.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34930589271087ccfb8321624a7a761c55b5cf66a05e26ed7713bd6f6aab5de9 +size 5936956 diff --git a/audio/few/01180.wav b/audio/few/01180.wav new file mode 100644 index 0000000000000000000000000000000000000000..1a567c8a509e16a61776ef81f235df0e0d5423ea --- /dev/null +++ b/audio/few/01180.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27a99a6c3ef0277b420226ecc420e3b61d4ecc06ae7c7eb9faf10f8e3641c7df +size 2466966 diff --git a/audio/few/01182.wav b/audio/few/01182.wav new file mode 100644 index 0000000000000000000000000000000000000000..6d82d4c0c387a4203a509ca9f714eea26e512060 --- /dev/null +++ b/audio/few/01182.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce83fc351ba8f8c668a4af2b92ed3b1aa1787c4fd6bc913da693dcb2098edb6c +size 3141646 diff --git a/audio/few/01191.wav b/audio/few/01191.wav new file mode 100644 index 0000000000000000000000000000000000000000..8da2c3c7b885ca205d72c21d12aff43cc25d8555 --- /dev/null +++ b/audio/few/01191.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb205dbb38a1cd6ad661405a0015137c299204daa724e2dccb5df36fa32d55c3 +size 5223640 diff --git a/audio/few/01195.wav b/audio/few/01195.wav new file mode 100644 index 0000000000000000000000000000000000000000..511fee6da6d27199942732e506e6b486285d7cf1 --- /dev/null +++ b/audio/few/01195.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:087f6948c051e8e238608d9ca077a09eb4f6be75e94ba3629da6ed1dbbb978f3 +size 688876 diff --git a/audio/few/01196.wav b/audio/few/01196.wav new file mode 100644 index 0000000000000000000000000000000000000000..d056c348a6073d3ccb9f80a4e7005dab8839db91 --- /dev/null +++ b/audio/few/01196.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fad600b0ffd214acd646d8dcc3ad92227d4e0cc9164c34824fa08ba8a3da207 +size 4035520 diff --git a/audio/few/01197.wav b/audio/few/01197.wav new file mode 100644 index 0000000000000000000000000000000000000000..3b588f33c3bb1e981805fb87b7edeeb3535b5e5c --- /dev/null +++ b/audio/few/01197.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:337b42b30476d08a665e91e810f42175c8ece4ea8f5acf293998258a68e005ff +size 1156990 diff --git a/audio/few/01198.wav b/audio/few/01198.wav new file mode 100644 index 0000000000000000000000000000000000000000..c0a672d3da0f8f939675f9f474764996340707ee --- /dev/null +++ b/audio/few/01198.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:057bfdbad15264ac31050f049d36b72411e5abb5fa924d9bbd4e898f72aafe8f +size 703736 diff --git a/audio/few/01211.wav b/audio/few/01211.wav new file mode 100644 index 0000000000000000000000000000000000000000..762e69425a26de290c0b1c7ae048b24a1fa8b2da --- /dev/null +++ b/audio/few/01211.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a579011fe23fa049b16e7a5b63dfa215394633f98cbbaf99b87edba36b04036d +size 5229584 diff --git a/audio/few/01226.wav b/audio/few/01226.wav new file mode 100644 index 0000000000000000000000000000000000000000..f7fe07a7fb8d9f40da8f44d29dd688897606b1d4 --- /dev/null +++ b/audio/few/01226.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f660529a11b3195952810c21609776b4fe24dea5cc34db6cdf547680aa897cd0 +size 1313770 diff --git a/audio/few/01228.wav b/audio/few/01228.wav new file mode 100644 index 0000000000000000000000000000000000000000..bf374bba35a5856745a1417a554beeaca7a1140c --- /dev/null +++ b/audio/few/01228.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1f37849a937d6417adeb9f8077a0d2e4e82a94ad259ef68d610d930dfcfa200 +size 648750 diff --git a/audio/few/01229.wav b/audio/few/01229.wav new file mode 100644 index 0000000000000000000000000000000000000000..20a02083cf96f76d468a34b216e11fd16c548d94 --- /dev/null +++ b/audio/few/01229.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76ad550f656b8053abb217d7d0c37614d97b716b833566e6acd6aa3a7dcfe0ce +size 668814 diff --git a/audio/few/01230.wav b/audio/few/01230.wav new file mode 100644 index 0000000000000000000000000000000000000000..45882674a91e77835f70f8c7dfb8a462ceaf5bbd --- /dev/null +++ b/audio/few/01230.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f06dc7ead5c295a78f5c0acd48af0a2864f2c00c5ed3e84c138bfbc1d0fb5be6 +size 6972010 diff --git a/audio/few/01236.wav b/audio/few/01236.wav new file mode 100644 index 0000000000000000000000000000000000000000..2f74406a2c419f4ad0da404609e6800ddf5360fa --- /dev/null +++ b/audio/few/01236.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c49587d081d6352e39fd7b03f02583068a2a675308289b2afb7b7346b6246cc7 +size 935564 diff --git a/audio/few/01240.wav b/audio/few/01240.wav new file mode 100644 index 0000000000000000000000000000000000000000..e1d3a2d1b7ce78c913771d5261fff106109e75e4 --- /dev/null +++ b/audio/few/01240.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ad6b02118c74e9768baa05360790f72a049da391f14fdf1af5776eafe58bb7e +size 789186 diff --git a/audio/few/01246.wav b/audio/few/01246.wav new file mode 100644 index 0000000000000000000000000000000000000000..9ec9cee1b6c78c020c9e0882ff64e5e9e570eb12 --- /dev/null +++ b/audio/few/01246.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dc11f698ba6180945bab5a5887ca8d640a4afe20a1d385cda31b91b637b794f +size 2458792 diff --git a/audio/few/01257.wav b/audio/few/01257.wav new file mode 100644 index 0000000000000000000000000000000000000000..6ec330f6fbf89d6c4d7288e34f5e54cbf49b27ad --- /dev/null +++ b/audio/few/01257.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1426397b086fdb4686b17ad6f2f1d0610ede051f07cb8d3bef0f55f766ac5a5 +size 807762 diff --git a/audio/few/01264.wav b/audio/few/01264.wav new file mode 100644 index 0000000000000000000000000000000000000000..d35bf024991f977c7e3eae511fbb06d992eb7cb7 --- /dev/null +++ b/audio/few/01264.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7253d6aafc979ff2aca4bc7aa3e2e387381f1217e5373c6427345cfa81edcafd +size 729000 diff --git a/audio/few/01266.wav b/audio/few/01266.wav new file mode 100644 index 0000000000000000000000000000000000000000..2d68981ee4fc3454e88ee052d1dbd7ef94ad22c9 --- /dev/null +++ b/audio/few/01266.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66d040ab3cee13c51b2a294023970044eabd0fa6771c2feb46e1b65e9669972a +size 733458 diff --git a/audio/few/01273.wav b/audio/few/01273.wav new file mode 100644 index 0000000000000000000000000000000000000000..922070cb20ce4f53e3d914eb0cd04e7b8dc5d4ed --- /dev/null +++ b/audio/few/01273.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca48566282da02acc6fad1af848126531db62f0e8ff1c0b2f759aed99595ba08 +size 1557488 diff --git a/audio/few/01274.wav b/audio/few/01274.wav new file mode 100644 index 0000000000000000000000000000000000000000..b8d38d0f443cf17041defb6f91259d11371265b6 --- /dev/null +++ b/audio/few/01274.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e73057da22227b370f97f29c10fd2077b6c55a9efce537c94268af699ce58d39 +size 766152 diff --git a/audio/few/01281.wav b/audio/few/01281.wav new file mode 100644 index 0000000000000000000000000000000000000000..e6fcff369bea94a1513b040ca542388befc09dd5 --- /dev/null +++ b/audio/few/01281.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fbcd64897f13afa5c1343f61a87358f50f179f4f395aa995a0423514b83072d +size 852344 diff --git a/audio/few/01284.wav b/audio/few/01284.wav new file mode 100644 index 0000000000000000000000000000000000000000..9e0a09b66fe04fd5e91ea4f5bbbe4424f9393770 --- /dev/null +++ b/audio/few/01284.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbff726ee32d39ee66686de3ea4c9b3f5839589b919754665d0c51c950eb5bee +size 1724670 diff --git a/audio/few/01288.wav b/audio/few/01288.wav new file mode 100644 index 0000000000000000000000000000000000000000..2ed4d8d135ff33a6266b2e90800c9a9c7087f9d8 --- /dev/null +++ b/audio/few/01288.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a158bdc133ec541e8401a9b16ebad8efb349e190dd1086dd6aaee9d70d6f394 +size 993520 diff --git a/audio/few/01290.wav b/audio/few/01290.wav new file mode 100644 index 0000000000000000000000000000000000000000..a3bb4fb35feb153182789edc1e204c0c04014685 --- /dev/null +++ b/audio/few/01290.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28d660c10ca49f251d579475cbdd9d0bfe6117d153bf41b7eefbbb41119db4e6 +size 1508446 diff --git a/audio/few/01296.wav b/audio/few/01296.wav new file mode 100644 index 0000000000000000000000000000000000000000..dbdf252c929d48fe91c86caacc687d1d97851de7 --- /dev/null +++ b/audio/few/01296.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c37d0b532d91772ef1bdb1a2a813a94ab45aefbcab66cc2b985f907e8d177cba +size 651724 diff --git a/audio/few/01320.wav b/audio/few/01320.wav new file mode 100644 index 0000000000000000000000000000000000000000..e5c9d6c7f0e381e4003d40aa476dcd70565f840b --- /dev/null +++ b/audio/few/01320.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9547a6cd80b69a7c49c766318467128732246175c6853cab2e36447c20580046 +size 1033644 diff --git a/audio/few/01321.wav b/audio/few/01321.wav new file mode 100644 index 0000000000000000000000000000000000000000..89e083e798ec0fe88086b4b5c97843f642bd521d --- /dev/null +++ b/audio/few/01321.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7caff04c1b481904474f47af8368a541874182025e07c5f312a52e9328e2085 +size 714882 diff --git a/audio/few/01324.wav b/audio/few/01324.wav new file mode 100644 index 0000000000000000000000000000000000000000..bf82719a4b30b91959bfcf95109d58fab6edd4d0 --- /dev/null +++ b/audio/few/01324.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25bbfa8f1f1c0d2487334b936f0dc2462a35f18c3569d51673988a85de2a4f64 +size 2197244 diff --git a/audio/few/01325.wav b/audio/few/01325.wav new file mode 100644 index 0000000000000000000000000000000000000000..75af544e727335531ee9cfe515f6fe19761e7094 --- /dev/null +++ b/audio/few/01325.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b053322ffad9180f0493abd252a584d947c3c7d761cea6eb2341ed99ad93ccb5 +size 2449876 diff --git a/audio/few/01327.wav b/audio/few/01327.wav new file mode 100644 index 0000000000000000000000000000000000000000..7f2f18f2df73f93eaea1fd268cd4b9d92658779f --- /dev/null +++ b/audio/few/01327.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8088a24e2f572cf6634cd5c044a09c0939d9a6b386f1bafa0eddbf88f917f15 +size 805532 diff --git a/audio/few/01329.wav b/audio/few/01329.wav new file mode 100644 index 0000000000000000000000000000000000000000..ddfd5855da4a531a70a9c2395665c850ff7c2488 --- /dev/null +++ b/audio/few/01329.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d19a361416a8d1a62fcba9e65d7eb64cbb256e6b45468035e3a4102471eea346 +size 1706094 diff --git a/audio/few/01330.wav b/audio/few/01330.wav new file mode 100644 index 0000000000000000000000000000000000000000..a02761573c07cbca4617dfded060eef04de8f9c2 --- /dev/null +++ b/audio/few/01330.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:663efe23e180d53e0b000f9dc71a6ab2410ea8623dabcd6d5e810a79050474ed +size 789186 diff --git a/audio/few/01333.wav b/audio/few/01333.wav new file mode 100644 index 0000000000000000000000000000000000000000..29abab8a0580b1daf8400008f40f44b58b1130b1 --- /dev/null +++ b/audio/few/01333.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e13227ad714f3165d87893ae41624cd9c6956932e1d42ee199d43cb43ff360cd +size 1035874 diff --git a/audio/few/01342.wav b/audio/few/01342.wav new file mode 100644 index 0000000000000000000000000000000000000000..2c0ffb829c1c029a20f6829561b25e7050184a58 --- /dev/null +++ b/audio/few/01342.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5ad144ec56d0e253497fc52bbfd48988fb538ee29222c1a2a3386ae2e507a43 +size 2650496 diff --git a/audio/few/01344.wav b/audio/few/01344.wav new file mode 100644 index 0000000000000000000000000000000000000000..0548941c247c2ac165bf845473b6fcddc22d01c4 --- /dev/null +++ b/audio/few/01344.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d6b02a7b86f6bdce216e02d0acdb458d6127c4a18ea3180444bc54fa2357403 +size 789186 diff --git a/audio/few/01348.wav b/audio/few/01348.wav new file mode 100644 index 0000000000000000000000000000000000000000..44038cb754b744468d4a8c10f21b18564c81a780 --- /dev/null +++ b/audio/few/01348.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:886cb2bf5077c90f08b9e9a3d87eb7418a103de17118a4ee53d1a077bbf02856 +size 6513554 diff --git a/audio/few/01356.wav b/audio/few/01356.wav new file mode 100644 index 0000000000000000000000000000000000000000..55f1f9bd969704002a72275f6978b75b82ea8058 --- /dev/null +++ b/audio/few/01356.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27bcada85ce59ce55818018b7bf73b823116d1a8db3532f3aeaa3d02f3efb09e +size 6503894 diff --git a/audio/few/01370.wav b/audio/few/01370.wav new file mode 100644 index 0000000000000000000000000000000000000000..924ab357fb01a5c6ba8cc3321a3f042480daff37 --- /dev/null +++ b/audio/few/01370.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c116c4469e8f235019e8c95c1fa29ff03268f744019ae48700d67f4e78c7d198 +size 825594 diff --git a/audio/few/01378.wav b/audio/few/01378.wav new file mode 100644 index 0000000000000000000000000000000000000000..d567c45d61ad98e802198e4d22f22a4f2a054924 --- /dev/null +++ b/audio/few/01378.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa3df4ba65b987a4df80d442c6993017d718bb1d25104686c61b3f4f11c72944 +size 1912660 diff --git a/audio/few/01380.wav b/audio/few/01380.wav new file mode 100644 index 0000000000000000000000000000000000000000..2841256558f331e005b20119d3a835b3160723b6 --- /dev/null +++ b/audio/few/01380.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eb8fd09a7016418325aff5c775427db693e88e6ffe2304940473e9bfe432cbc +size 937050 diff --git a/audio/few/01385.wav b/audio/few/01385.wav new file mode 100644 index 0000000000000000000000000000000000000000..40272252cec638c935b82eddf6235d5caffec645 --- /dev/null +++ b/audio/few/01385.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d64afecff19f76b71181c669097488c659f385d77cca7bb26a300845aab4be0f +size 1477982 diff --git a/audio/few/01392.wav b/audio/few/01392.wav new file mode 100644 index 0000000000000000000000000000000000000000..b0f6a44f04e97a3864e328e6bbfea67b5645cbf4 --- /dev/null +++ b/audio/few/01392.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b3026646e69b202926d10e1ceb840b75bcc25f53908d18d3ed239620296f82f +size 662126 diff --git a/audio/few/01398.wav b/audio/few/01398.wav new file mode 100644 index 0000000000000000000000000000000000000000..3972c4141f91fd1e6fbb583389606723ee57310d --- /dev/null +++ b/audio/few/01398.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65c7a760d07164b715f32011643a7601980ddc3f3fab4fede419a05294b3673e +size 1027700 diff --git a/audio/few/01399.wav b/audio/few/01399.wav new file mode 100644 index 0000000000000000000000000000000000000000..ebd33f04a23eaebf30ce0c76d378d1bda7d00859 --- /dev/null +++ b/audio/few/01399.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7911662f3278f84f221ce7660cd39b38ae6755f96d2861fec65153b91f76b9d7 +size 824108 diff --git a/audio/few/01407.wav b/audio/few/01407.wav new file mode 100644 index 0000000000000000000000000000000000000000..e0df7fe79671e884d25c35cc336551f46c8f9363 --- /dev/null +++ b/audio/few/01407.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:876f8ff908471d2d762887ebe20cdb388cbc5c4cda4494c966200a338510f388 +size 5672434 diff --git a/audio/few/01418.wav b/audio/few/01418.wav new file mode 100644 index 0000000000000000000000000000000000000000..53d40ecd33f5edf890352c2eac137c0fc4dfe71c --- /dev/null +++ b/audio/few/01418.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f87f27e12a415b3f4ec7785a3478b4ed5f9d9d2da208867def91ef28e9faf9b +size 1350180 diff --git a/audio/few/01424.wav b/audio/few/01424.wav new file mode 100644 index 0000000000000000000000000000000000000000..f61741f76130d26908a51e3afb015d8104f5db82 --- /dev/null +++ b/audio/few/01424.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0db119652ecd7f68f066bd6639f6f39d9759dbf829b12335fb9ae148ee482419 +size 841942 diff --git a/audio/few/01429.wav b/audio/few/01429.wav new file mode 100644 index 0000000000000000000000000000000000000000..c5910e8e189dd5895e9f99e6a9895c5afc5bb810 --- /dev/null +++ b/audio/few/01429.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c12bcfaec2d06d35702431cb0705e396ecdc74894ae489d7d3c3d6b0b451ff6f +size 935564 diff --git a/audio/few/01432.wav b/audio/few/01432.wav new file mode 100644 index 0000000000000000000000000000000000000000..4a67a2b4eaacc1ddb3fcd217391b6be4d49ba5c6 --- /dev/null +++ b/audio/few/01432.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b101ca7c9a10ad8935a672a52a4da60247a57ebe6b9df2ff2603299133fbed6f +size 777296 diff --git a/audio/few/01433.wav b/audio/few/01433.wav new file mode 100644 index 0000000000000000000000000000000000000000..17f580a51902f0a9b8a3fb1c616877df15797da2 --- /dev/null +++ b/audio/few/01433.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdb0747a0458390346941e3f3a49ac134ec5df2ce74facf0c59135fd0276001f +size 691104 diff --git a/audio/few/01441.wav b/audio/few/01441.wav new file mode 100644 index 0000000000000000000000000000000000000000..3ea34a66b3b859be79d3e7f2883165ad49786594 --- /dev/null +++ b/audio/few/01441.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:679d84e69c6e1099d95103bd0c30cb10fdcbd11ab260f45050734091d49d3bb4 +size 2059782 diff --git a/audio/few/01443.wav b/audio/few/01443.wav new file mode 100644 index 0000000000000000000000000000000000000000..3c63e515faa16e97d398e1048d3f24b3ca03977a --- /dev/null +++ b/audio/few/01443.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e909315360b5bd26d6f1d1f34397e8109d9d454cac6673de949c63ecb09b6a0b +size 27153680 diff --git a/audio/few/01447.wav b/audio/few/01447.wav new file mode 100644 index 0000000000000000000000000000000000000000..4129924ee97c23d2e7025e118d0c49c43a3bc1b6 --- /dev/null +++ b/audio/few/01447.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb3cd81468dd807350e3e9609b3a83036108879b88fe04a284eab0da3b111075 +size 847886 diff --git a/audio/few/01450.wav b/audio/few/01450.wav new file mode 100644 index 0000000000000000000000000000000000000000..4c2809db690624128ff711ce43afb197f9505f6e --- /dev/null +++ b/audio/few/01450.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:681e3bd95402e15f80594e9ebe17e0b9f73878b613ba0a29d8844f2fa8586bc0 +size 1547828 diff --git a/audio/few/01452.wav b/audio/few/01452.wav new file mode 100644 index 0000000000000000000000000000000000000000..3f86fd244a470d143563d7c3afc43bd2c4be1d24 --- /dev/null +++ b/audio/few/01452.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7722e7bc12615d3c59ea7eb889d4750d541a4683da654e2c18bcd2ee821eb790 +size 714882 diff --git a/audio/few/01457.wav b/audio/few/01457.wav new file mode 100644 index 0000000000000000000000000000000000000000..46f33b2fd9c678ee1da487a7ef537a1197251c26 --- /dev/null +++ b/audio/few/01457.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fef3998bc37f4f6f476c22a865a4662a1661d89c47e91e2d2e00c82071c79952 +size 890982 diff --git a/audio/few/01484.wav b/audio/few/01484.wav new file mode 100644 index 0000000000000000000000000000000000000000..66c7b62c37fa37c7f94d77db5a1398515e818614 --- /dev/null +++ b/audio/few/01484.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8c1b3ccb7446e1ac47e9965a227ff67d29ae985754994ff1b3b05c9589ef02e +size 1217918 diff --git a/audio/few/01487.wav b/audio/few/01487.wav new file mode 100644 index 0000000000000000000000000000000000000000..c8263f003ff15550eddf5aa7d281bec4f4a79fde --- /dev/null +++ b/audio/few/01487.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59dbd1a1c141a3fe3a2f921deff4700542c1623b215edc0ef24647f582d41770 +size 5630824 diff --git a/audio/few/01499.wav b/audio/few/01499.wav new file mode 100644 index 0000000000000000000000000000000000000000..1630d3f07ce8cb437f24e21948e47492224eb691 --- /dev/null +++ b/audio/few/01499.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b51bc78664ae6869d6bed74f61677da84edef55fdf9f3d0006ec6fb8746b7a8d +size 2022630 diff --git a/audio/few/01500.wav b/audio/few/01500.wav new file mode 100644 index 0000000000000000000000000000000000000000..9cdda0395796655568bf0d2a38e5cc2a3abbc88c --- /dev/null +++ b/audio/few/01500.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13db1865acfa834809ef69539310a7cac9b5374879dec3b4470d983e7950bbf2 +size 896182 diff --git a/audio/few/01509.wav b/audio/few/01509.wav new file mode 100644 index 0000000000000000000000000000000000000000..21e03c760c14e2c0cad936140164b34d148a8c7b --- /dev/null +++ b/audio/few/01509.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c3686996e8aed7069da9f1f3510057efc880514680b58eb028bd7e2c7b3c191 +size 3161708 diff --git a/audio/few/01511.wav b/audio/few/01511.wav new file mode 100644 index 0000000000000000000000000000000000000000..6eaf7dbfa2c97b58c65caba848e0c747c7cc5ad6 --- /dev/null +++ b/audio/few/01511.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81af5638485bce8853ad7e209f4ef3f681aaf2735a9681a970ca5f0f0fe288b5 +size 678472 diff --git a/audio/few/01520.wav b/audio/few/01520.wav new file mode 100644 index 0000000000000000000000000000000000000000..edb51ec154e504bf1efee91abc62c67628859e30 --- /dev/null +++ b/audio/few/01520.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dce601c17a1c79f64cb6365a1a77506324cd3aeb9f00a0438f352926a5a61ec7 +size 1041818 diff --git a/audio/few/01527.wav b/audio/few/01527.wav new file mode 100644 index 0000000000000000000000000000000000000000..64aae64fecb27dafbe9c62d7fc5ae59276a82cc1 --- /dev/null +++ b/audio/few/01527.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb8e41283fd911b8535e9e46047e7cac5078b95ae916f60996772629e9a2e11b +size 1072282 diff --git a/audio/few/01536.wav b/audio/few/01536.wav new file mode 100644 index 0000000000000000000000000000000000000000..fa4df3905cdd401785e1abab3ba886d4dae2f900 --- /dev/null +++ b/audio/few/01536.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba10679d18d1ad53b0a638cd9985a2660f96c2041a314b76f861e5cb72bff0db +size 1108692 diff --git a/audio/few/01537.wav b/audio/few/01537.wav new file mode 100644 index 0000000000000000000000000000000000000000..51edea572c3610c00b0e6c9e3a3383e0c608f6d8 --- /dev/null +++ b/audio/few/01537.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d459c00a96809d3780d15845d7aab92c32dbce925bf4eb1069c179660e168e2 +size 827080 diff --git a/audio/few/01539.wav b/audio/few/01539.wav new file mode 100644 index 0000000000000000000000000000000000000000..c260c82ec6e694d7734f53547a2e73b73d7eae01 --- /dev/null +++ b/audio/few/01539.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b30fccb3260cd9f4a98e04f554f626144affee3570399340b2772c9d2acdd5ca +size 715624 diff --git a/audio/few/01540.wav b/audio/few/01540.wav new file mode 100644 index 0000000000000000000000000000000000000000..b5c7f2c7f5420b74d9a4ba14c6a810dfca4f2cfc --- /dev/null +++ b/audio/few/01540.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14632581dfb2eb393c9fa0216550f4bafa1b91718d0f3aa2bb02b293fc8c19dd +size 16609962 diff --git a/audio/few/01542.wav b/audio/few/01542.wav new file mode 100644 index 0000000000000000000000000000000000000000..0adf52c5bff125843c3e62685b7f5d3e82df45f0 --- /dev/null +++ b/audio/few/01542.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33c788c9e1a5dfaef28a9cc7039ae73dc1b8246d4c065bfe05a8f3bcba28a3e9 +size 4652986 diff --git a/audio/few/01543.wav b/audio/few/01543.wav new file mode 100644 index 0000000000000000000000000000000000000000..73cd29d506221c1953b1935da6faf7b325ab66e3 --- /dev/null +++ b/audio/few/01543.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0040cbb4ea262385b8908ae6ffcf3aeb716ce3b549f7f662b6cce3e2f45c7de2 +size 1154018 diff --git a/audio/few/01548.wav b/audio/few/01548.wav new file mode 100644 index 0000000000000000000000000000000000000000..f8101eb07db1a464ccf99e50bf66571d9a0f5d47 --- /dev/null +++ b/audio/few/01548.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e3db2e5146cbbd3c25f92f12e61e9a1fa8d0a46e236c143e34210856ca08a33 +size 3387592 diff --git a/audio/few/01549.wav b/audio/few/01549.wav new file mode 100644 index 0000000000000000000000000000000000000000..b625a945f907c62a6187e208df1e5b449c895f66 --- /dev/null +++ b/audio/few/01549.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e126f8cb2dea357d65208e2a93e59c408bbc048739b9579b442e46130aceca54 +size 1028444 diff --git a/audio/few/01567.wav b/audio/few/01567.wav new file mode 100644 index 0000000000000000000000000000000000000000..cad68a340e0f13ed7d0aba9d27bb814ff2a3c9d7 --- /dev/null +++ b/audio/few/01567.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a97000b2041840fe7ce04c413563078fc874e536626c0c19571d02948d03c2dd +size 810734 diff --git a/audio/few/01568.wav b/audio/few/01568.wav new file mode 100644 index 0000000000000000000000000000000000000000..b045f2ee8d20cc4ec25b208b6eefabf87e48ea54 --- /dev/null +++ b/audio/few/01568.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1770db4f1410fd32e48f0850cccd07bb05ceb2f35df45b520991bff5b5fabcaf +size 885780 diff --git a/audio/few/01594.wav b/audio/few/01594.wav new file mode 100644 index 0000000000000000000000000000000000000000..f7bfe87a3e293fbb0f36c28b82ace95b8d5489cb --- /dev/null +++ b/audio/few/01594.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff34bf613a52a52808668827c38ed937150991206aa9a053030f9980a68d805e +size 786214 diff --git a/audio/few/01599.wav b/audio/few/01599.wav new file mode 100644 index 0000000000000000000000000000000000000000..ebbeb44f55bc040fa0e5eac6c49cbc9aaf54b549 --- /dev/null +++ b/audio/few/01599.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:356760aebcdcc4b9bec5dc18ca81ec12513e281a579689cfd2752d04d51b562c +size 1056680 diff --git a/audio/few/01607.wav b/audio/few/01607.wav new file mode 100644 index 0000000000000000000000000000000000000000..300bed5e57e16775e2b7624c6c8ea83da8397c0c --- /dev/null +++ b/audio/few/01607.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f793682696c4c4c68e4d324f4b27b4177027cb94b82464f218f88634e3052d24 +size 1298910 diff --git a/audio/few/01617.wav b/audio/few/01617.wav new file mode 100644 index 0000000000000000000000000000000000000000..26295d4aa652f7e042cd3ae6845c7e3dec7c5bb5 --- /dev/null +++ b/audio/few/01617.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8bbce2011ec541e24c19a1cdb1454f0942942c4d9249d43f0799b01c9b3b907 +size 1005410 diff --git a/audio/few/01657.wav b/audio/few/01657.wav new file mode 100644 index 0000000000000000000000000000000000000000..cad6ee9592288b3247290a678a3131e52ed41c15 --- /dev/null +++ b/audio/few/01657.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44af79ea3d3b6b471ebbad2528c9b0be971f6cf5226568f1996d96b168f6bc31 +size 3218922 diff --git a/audio/few/01660.wav b/audio/few/01660.wav new file mode 100644 index 0000000000000000000000000000000000000000..cab6911b0c05ae1ee53870b6559834878df2296a --- /dev/null +++ b/audio/few/01660.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2818f63ec82911eaf68c6fa2c70e4a10a54d85cfaff65c0caad6479e7a63750c +size 1018042 diff --git a/audio/few/01661.wav b/audio/few/01661.wav new file mode 100644 index 0000000000000000000000000000000000000000..301be1c743be63309ab4fbf6fb9bdbf4a5b806b3 --- /dev/null +++ b/audio/few/01661.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61f04359b9efa9bb13557e35be6a82f7e5f60a01641c8e1e075247833e9c6c02 +size 1223862 diff --git a/audio/few/01664.wav b/audio/few/01664.wav new file mode 100644 index 0000000000000000000000000000000000000000..1c5644940259228b3128e2e33d37de33935acb93 --- /dev/null +++ b/audio/few/01664.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70c3f30c822c6abac427a0eb1fc72170fb14c41ab546b52239bc975293ba5d07 +size 645778 diff --git a/audio/few/01672.wav b/audio/few/01672.wav new file mode 100644 index 0000000000000000000000000000000000000000..6ddd271a435c1d7b3dc5649c448ed09f28e2ef24 --- /dev/null +++ b/audio/few/01672.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46d6ba93b9ef29ba1fd9c325e1271f3e3e61e86506e503dea54e9613f9e0ccec +size 679216 diff --git a/audio/few/01674.wav b/audio/few/01674.wav new file mode 100644 index 0000000000000000000000000000000000000000..c78366cc2e1d4db9f42f73b22c6f13cf324bcca4 --- /dev/null +++ b/audio/few/01674.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61737e8044bcbeded7486ad8a9c3760dfdcab7b1bfb582b5e133f0a4e1aa9d13 +size 932592 diff --git a/audio/few/01688.wav b/audio/few/01688.wav new file mode 100644 index 0000000000000000000000000000000000000000..da776af8ff5f894cca2a704a898f1da6c099d83a --- /dev/null +++ b/audio/few/01688.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f68d9ad5b9aa0262e7ff96cd7856a6f46749c3c393a347951af6b112acbbbae0 +size 1069310 diff --git a/audio/few/01697.wav b/audio/few/01697.wav new file mode 100644 index 0000000000000000000000000000000000000000..3dcdfd7eb75776b9571cd4cd7d0b2b15fd1e90f2 --- /dev/null +++ b/audio/few/01697.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d968b8c6b062b6055cfc735f00b3ebd2933bfa48d5d1bc8bea8138292f1a8655 +size 5217696 diff --git a/audio/few/01700.wav b/audio/few/01700.wav new file mode 100644 index 0000000000000000000000000000000000000000..dda4c52fbfb9c9cc6f419a3ec7e5c954a0a7e07c --- /dev/null +++ b/audio/few/01700.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0383a74f5a329debb146168975c856060ba35a26adfc2ceab33a738d53c1f148 +size 1041818 diff --git a/audio/few/01719.wav b/audio/few/01719.wav new file mode 100644 index 0000000000000000000000000000000000000000..5b8cc05f65b8ef5b5d6f731b49154ce96587b81f --- /dev/null +++ b/audio/few/01719.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:868870a48251c66d43b7af0c1600f27bc8ff10840c21744510ed6a9da32d9642 +size 7706132 diff --git a/audio/few/01725.wav b/audio/few/01725.wav new file mode 100644 index 0000000000000000000000000000000000000000..63e881f409baf155d99d5f4e4a96233cd8621895 --- /dev/null +++ b/audio/few/01725.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebc1773b367d117da12c4878c471965255a9462c4742eda3c388fa6144ccacf4 +size 1749192 diff --git a/audio/few/01726.wav b/audio/few/01726.wav new file mode 100644 index 0000000000000000000000000000000000000000..b876602d714ddd94f63102970d1e21700e33e56c --- /dev/null +++ b/audio/few/01726.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:510bfce507cb9a4f4617f8d0c077141d92a6794e4d22a725ce6e3b2228bb1110 +size 1232036 diff --git a/audio/few/01731.wav b/audio/few/01731.wav new file mode 100644 index 0000000000000000000000000000000000000000..7d3abb98d93bcb96cd52b21e7908d38a4365a119 --- /dev/null +++ b/audio/few/01731.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cc3fdc897e6a8e18606a30cb0fb10ce9b6ea03ff2daeb6d9045a6aa0d6e2d12 +size 884294 diff --git a/audio/few/01740.wav b/audio/few/01740.wav new file mode 100644 index 0000000000000000000000000000000000000000..b143efb3caa563b048017ceed718f888d94af8a4 --- /dev/null +++ b/audio/few/01740.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad653dc05294c23220050a3804ca7f3e6df069d0ce4b2cd4ea5c908c07bdf475 +size 832282 diff --git a/audio/few/01755.wav b/audio/few/01755.wav new file mode 100644 index 0000000000000000000000000000000000000000..d96f3da861b5f61dbfa73fc478f04ffd11ea0056 --- /dev/null +++ b/audio/few/01755.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2aba7d9468ec2397537435eb8e21ade47a68c9ca93757ba92a9e6334b482dfd +size 763922 diff --git a/audio/few/01763.wav b/audio/few/01763.wav new file mode 100644 index 0000000000000000000000000000000000000000..89c329ecc4eb2441fdcb26314159377252fd8e85 --- /dev/null +++ b/audio/few/01763.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f10e23f4830d6df67e1ac915eb8ab3098ea2d6bacca9f85edf973413cd650fe1 +size 1497302 diff --git a/audio/few/01764.wav b/audio/few/01764.wav new file mode 100644 index 0000000000000000000000000000000000000000..353293c9f66cf7c957020af9515bdf1d4bec7aa9 --- /dev/null +++ b/audio/few/01764.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00bb42b8a133ef3fa35fd20871283f69107bfc0ec7acaeff205d214bc68fcbac +size 1903000 diff --git a/audio/few/01772.wav b/audio/few/01772.wav new file mode 100644 index 0000000000000000000000000000000000000000..301daa9ccdd0ec6a5736dfb06ead3397d98e0fd2 --- /dev/null +++ b/audio/few/01772.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92115c347535a7afad086445110885ff300290ce1f9d97951426a8bf9d30c1fa +size 726770 diff --git a/audio/few/01774.wav b/audio/few/01774.wav new file mode 100644 index 0000000000000000000000000000000000000000..9fa03aacf4d6aabd4c938044996de7a844aea32f --- /dev/null +++ b/audio/few/01774.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6be9f531440f640870fccb3da76617107309a49a813d0d3ea10b5916b5498242 +size 743860 diff --git a/audio/few/01776.wav b/audio/few/01776.wav new file mode 100644 index 0000000000000000000000000000000000000000..feed295f88df217ae839701f41e4808615b7b352 --- /dev/null +++ b/audio/few/01776.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9152d677c59d0c34918e7daf33a9b26cff5934d62c2c62aaaaf8fefdbea5e908 +size 1000952 diff --git a/audio/few/01777.wav b/audio/few/01777.wav new file mode 100644 index 0000000000000000000000000000000000000000..98bce5d7ab410d21fd7a5e4064b2e338d5a24607 --- /dev/null +++ b/audio/few/01777.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd8771152a26048ed0f9ce3d1f7ea2b8d37fa499a7ce38364d64754f0de3773a +size 1987706 diff --git a/audio/few/01788.wav b/audio/few/01788.wav new file mode 100644 index 0000000000000000000000000000000000000000..87ecfbb27f03f9b9fff3779b3642dfd1f0bf49da --- /dev/null +++ b/audio/few/01788.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04ed76f92af16b52932c46d75bfd2457d6cdf9ee5f69f3c6742a46b0575321af +size 5936956 diff --git a/audio/few/01791.wav b/audio/few/01791.wav new file mode 100644 index 0000000000000000000000000000000000000000..2438f8cfc3c66e6f33d3b2747ca99e350db23dca --- /dev/null +++ b/audio/few/01791.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2690ccd94fcd09e94aec17c2a384de3d6b59555b3ad3edbf9c3a9258865736da +size 647264 diff --git a/audio/few/01796.wav b/audio/few/01796.wav new file mode 100644 index 0000000000000000000000000000000000000000..72b95894cee094534f0b12155bbade0997d4b382 --- /dev/null +++ b/audio/few/01796.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b156f8f0cf99d4374188a6d06383dfdbcffc65b71f0f0f6c0a52d00479387709 +size 1113150 diff --git a/audio/few/01825.wav b/audio/few/01825.wav new file mode 100644 index 0000000000000000000000000000000000000000..6f7a69074e8020214db87bb830c74f587c15e5b4 --- /dev/null +++ b/audio/few/01825.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6630cd21974289112f82b4618104fb2b38742602167b3dfeda9a3e30058a143c +size 1298910 diff --git a/audio/few/01826.wav b/audio/few/01826.wav new file mode 100644 index 0000000000000000000000000000000000000000..4e0c89d8f64a8907ccc6bb71de91381a2bf2a300 --- /dev/null +++ b/audio/few/01826.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:407f34b2971fc85b7fde9b734b0dd2d6e7ca5b55328c3b1ba2c2eb97fd29cd56 +size 2827340 diff --git a/audio/few/01827.wav b/audio/few/01827.wav new file mode 100644 index 0000000000000000000000000000000000000000..ef23ec0057193b328d6523250cb3229cafa92ef1 --- /dev/null +++ b/audio/few/01827.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed80bdc818d2c2862ee3790a742dbe689476184f115115721a75f6697c0e12dc +size 1839098 diff --git a/audio/few/01830.wav b/audio/few/01830.wav new file mode 100644 index 0000000000000000000000000000000000000000..fd27060da41e0a489c981d37a7932a447c885cc4 --- /dev/null +++ b/audio/few/01830.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b49b22ff9d5b8804b4b00b50698db8a5a1a6ec5c4d158964abe7591ecd68780e +size 25098434 diff --git a/audio/few/01834.wav b/audio/few/01834.wav new file mode 100644 index 0000000000000000000000000000000000000000..eabc3c8202c1361a684b86e012264487158c43d7 --- /dev/null +++ b/audio/few/01834.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88a58ed82e9352cbb80701b9cb169578ad941099ca9a1b66e1e94cd2a9113369 +size 1226834 diff --git a/audio/few/01848.wav b/audio/few/01848.wav new file mode 100644 index 0000000000000000000000000000000000000000..adf49637de5c37af70d89df1d1c4d1c48fba9aa9 --- /dev/null +++ b/audio/few/01848.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4a1ae2c2a95fbf650e776292845a45e586d51b4733010586df52ebb8a57c92 +size 798102 diff --git a/audio/few/01855.wav b/audio/few/01855.wav new file mode 100644 index 0000000000000000000000000000000000000000..fed9f195103628560008b67b83a831a5ce5afff2 --- /dev/null +++ b/audio/few/01855.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9f52ec7f8619c3fc62c1d1f11878ff29a153dab6a20689c8a00b7c0fff472b7 +size 1210488 diff --git a/audio/few/01859.wav b/audio/few/01859.wav new file mode 100644 index 0000000000000000000000000000000000000000..fc416b8e671efa45193be3a47eb0acea0bf64690 --- /dev/null +++ b/audio/few/01859.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64ed4a97b21892e5bb9c1210845eb6f2486f9aed175e17915170d72aa2130d43 +size 10601010 diff --git a/audio/few/01866.wav b/audio/few/01866.wav new file mode 100644 index 0000000000000000000000000000000000000000..a4fc605aee8cece6ba36dcc4ec6d5c2b1e37eb02 --- /dev/null +++ b/audio/few/01866.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a19020134008427e636ccef1a8ef8a23452a0083597b6f87cad850007805dc8 +size 1980276 diff --git a/audio/few/01874.wav b/audio/few/01874.wav new file mode 100644 index 0000000000000000000000000000000000000000..6c4e17b4e0df603a00d9638c967fb333b015fa65 --- /dev/null +++ b/audio/few/01874.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:734e65e198d70a835047c6ba6374e08ab6d782917d512f0231f39838d3722f5c +size 688132 diff --git a/audio/few/01875.wav b/audio/few/01875.wav new file mode 100644 index 0000000000000000000000000000000000000000..b14deb932ead62da29a952a6df88d3c4dc18b41a --- /dev/null +++ b/audio/few/01875.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b083b5feb0aa69b2ffbf7f82aa61845c102a60e92068d6adc16bda206ca44ac +size 1387332 diff --git a/audio/few/01888.wav b/audio/few/01888.wav new file mode 100644 index 0000000000000000000000000000000000000000..5d4e0ef7e5cd2298b0e64b290f7b0a2dbf35c224 --- /dev/null +++ b/audio/few/01888.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee461ba6ac34fb81d439624e5600849a0d030f3d3ba5c1c677983fa1a592fa00 +size 1104234 diff --git a/audio/few/01893.wav b/audio/few/01893.wav new file mode 100644 index 0000000000000000000000000000000000000000..bb7dc95ebabc7b7fa1e3b94bdde676e8f325ff92 --- /dev/null +++ b/audio/few/01893.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dac8cf70ec6694112e5d18c25a93e15347b9b6f090ec36d0be3efc841efc4d6c +size 6460798 diff --git a/audio/few/01899.wav b/audio/few/01899.wav new file mode 100644 index 0000000000000000000000000000000000000000..cae07f30ae6eb8327d0dd3290815375d6cf614fa --- /dev/null +++ b/audio/few/01899.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2559ecf83ab1c39cdc67c89e21238ae3af1352a407fd490c1bf97978cdaef4b8 +size 700764 diff --git a/audio/few/01909.wav b/audio/few/01909.wav new file mode 100644 index 0000000000000000000000000000000000000000..6bbf34172246bbc7cd28b8f246bedb60ae2be885 --- /dev/null +++ b/audio/few/01909.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb146ca6c6e9ebadec39c2fbf4cc2f63e1dfd0f33532865c6433a4c810d97d52 +size 1494328 diff --git a/audio/few/01912.wav b/audio/few/01912.wav new file mode 100644 index 0000000000000000000000000000000000000000..14e4623b2bb6a20460f340fbda660b038e493da2 --- /dev/null +++ b/audio/few/01912.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:008ca5cd2d6d92fe71c2e2fd60648b07df18c3f588590552c22546af34129020 +size 978660 diff --git a/audio/few/01913.wav b/audio/few/01913.wav new file mode 100644 index 0000000000000000000000000000000000000000..1566058581df6ca98c5c30d0b7a80deb93f3c827 --- /dev/null +++ b/audio/few/01913.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dd1ec0839ebbd0b7a0c486a39dbe620ee070bb73d199f58cf4c7f539722f065 +size 6152438 diff --git a/audio/few/01914.wav b/audio/few/01914.wav new file mode 100644 index 0000000000000000000000000000000000000000..e95ee15c8e6f757c12b1ee3c7f2c79f4ed2103b5 --- /dev/null +++ b/audio/few/01914.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e917772ce8be13379690f90c4ceff6c536c15894eb6d1615943ab9c06d2b0df +size 1216432 diff --git a/audio/few/01927.wav b/audio/few/01927.wav new file mode 100644 index 0000000000000000000000000000000000000000..daef32c65b6a484a810779876ae1580bc2abf771 --- /dev/null +++ b/audio/few/01927.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef3de197074a6fc168979b0e8b1f0f07fe0f2583dc6614ce74e8c1c18f988cb2 +size 2009998 diff --git a/audio/few/01939.wav b/audio/few/01939.wav new file mode 100644 index 0000000000000000000000000000000000000000..9d5c736f687f2c203ef1eca5fc03d228439b4993 --- /dev/null +++ b/audio/few/01939.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6b5f40e22e1deb53a235d5a2297a88b033440ddc2ff936de0f8d123112bfa07 +size 2685420 diff --git a/audio/few/01943.wav b/audio/few/01943.wav new file mode 100644 index 0000000000000000000000000000000000000000..38024ae415ddeaceaf48b166df2b926be7f87147 --- /dev/null +++ b/audio/few/01943.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b645684f68182d4bdf2acf0c7fff393fec7050a13a6ff28cb96fb16c1532a88c +size 1953526 diff --git a/audio/few/01945.wav b/audio/few/01945.wav new file mode 100644 index 0000000000000000000000000000000000000000..79e8b13b90fe138474fcbcd30874ae754f875a08 --- /dev/null +++ b/audio/few/01945.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2928c1fbaf1db69676cc3908eed6f010548f4b436ad44e22331b1e1719d415c0 +size 812220 diff --git a/audio/few/01951.wav b/audio/few/01951.wav new file mode 100644 index 0000000000000000000000000000000000000000..f0c221b500b93714885ad17deb8d84e20d9fa554 --- /dev/null +++ b/audio/few/01951.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16876718b72c6a5a6af63d28ee9990560d5bcd7a03833c4074072fb2b4718048 +size 658410 diff --git a/audio/few/01967.wav b/audio/few/01967.wav new file mode 100644 index 0000000000000000000000000000000000000000..8051a6369e8c1d17e291ef45393c9cb814771a69 --- /dev/null +++ b/audio/few/01967.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e28c71482e787ccf2f505452ac5278b331f58f8b665a56816a9d4979f33c23c +size 4489518 diff --git a/audio/few/01976.wav b/audio/few/01976.wav new file mode 100644 index 0000000000000000000000000000000000000000..9727b21f1c1e1ba81c4f149210546976e171d9c9 --- /dev/null +++ b/audio/few/01976.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:317a84120f6220a3decd83b248a123ba71b92b91a89a12dea3108854cbabe6d3 +size 3250872 diff --git a/audio/few/01980.wav b/audio/few/01980.wav new file mode 100644 index 0000000000000000000000000000000000000000..c5026b8159b36ffb28a00032d2afb2635d3e1145 --- /dev/null +++ b/audio/few/01980.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ec5fac7c696a88bab05ab3c9d364d634e6289934c095b725e1ba3f8be476b77 +size 1033644 diff --git a/audio/few/01989.wav b/audio/few/01989.wav new file mode 100644 index 0000000000000000000000000000000000000000..934b2d8f437f7e5e9cb2f5340cf86f25d5b6f80e --- /dev/null +++ b/audio/few/01989.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fb1e8ec96223ebbc508e650f516bdd8282ed09e6af0fecd6d12bbf54a86e990 +size 2316130 diff --git a/audio/few/01998.wav b/audio/few/01998.wav new file mode 100644 index 0000000000000000000000000000000000000000..116b9f99388eeae7ff4e05a05f385ab30d28d344 --- /dev/null +++ b/audio/few/01998.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fda663cc52abfb07762544c5df4ba8c39b9a7bf14fae25038aa369c58c1a2cd +size 1718726 diff --git a/audio/few/01999.wav b/audio/few/01999.wav new file mode 100644 index 0000000000000000000000000000000000000000..2df6a2ed5455fba4d935850e440a41529cf2d9bc --- /dev/null +++ b/audio/few/01999.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e653d6702de381e5b2b6c070bda57d0d128b40e1735c998b7a709e4241624b68 +size 1662256 diff --git a/audio/few/02003.wav b/audio/few/02003.wav new file mode 100644 index 0000000000000000000000000000000000000000..5d5cceea803babc45267f87b97cb715c3321355e --- /dev/null +++ b/audio/few/02003.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd73c395dbba5d7a7761baea191f8a72e017a9cefe42e06cf231e72f1071ccf9 +size 1477982 diff --git a/audio/few/02005.wav b/audio/few/02005.wav new file mode 100644 index 0000000000000000000000000000000000000000..81e74e2b727431fa0f1000a9b5f68a631a37c63f --- /dev/null +++ b/audio/few/02005.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72dc9ffeed6d6a38b0b2639b3f8e114f9e5d6905ef2b80f80cbe66972241266b +size 3351182 diff --git a/audio/few/02019.wav b/audio/few/02019.wav new file mode 100644 index 0000000000000000000000000000000000000000..756bd040ae74ac697bf7ca62a963dfcb17a386c6 --- /dev/null +++ b/audio/few/02019.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e2297fc866873a2e39b9091e405ac90fcaeefe6db915a039f9d5e127807b3c7 +size 661382 diff --git a/audio/few/02020.wav b/audio/few/02020.wav new file mode 100644 index 0000000000000000000000000000000000000000..ba424445bb844aa74a76fae0e59dd1175e6744d4 --- /dev/null +++ b/audio/few/02020.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13b44e230de12d19e9632724d1dfb5503455d56f210ba3da8d6368dc902b592b +size 1367270 diff --git a/audio/few/02021.wav b/audio/few/02021.wav new file mode 100644 index 0000000000000000000000000000000000000000..1d6da1392c767d927e18322c07b7ba0e0a05be6e --- /dev/null +++ b/audio/few/02021.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d49ed6318f78a3b3861ccd869e3ab789b395588ca6b36556f1bf8df930a1215d +size 3126042 diff --git a/audio/few/02025.wav b/audio/few/02025.wav new file mode 100644 index 0000000000000000000000000000000000000000..628a553d06a0c6be5fbc730a51897dabb69e10a4 --- /dev/null +++ b/audio/few/02025.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f83ec29c889ff1db68278fe6730bad2af3b7b1b954fcd0197c4050e428dc271 +size 720826 diff --git a/audio/few/02035.wav b/audio/few/02035.wav new file mode 100644 index 0000000000000000000000000000000000000000..a1048a7cd1a1a5a98516d8b236640aa459f17137 --- /dev/null +++ b/audio/few/02035.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c620be1a44d519d8ac292cd3009e3c7dca3513bca2f3ad8ba0255d8c06cbd84a +size 1283306 diff --git a/audio/few/02036.wav b/audio/few/02036.wav new file mode 100644 index 0000000000000000000000000000000000000000..90804f2c4d1d8ec85513ab16acf721b97be7180e --- /dev/null +++ b/audio/few/02036.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4d0805851834ffa0ed649f8fe280452fe7b330c8a542ae297af84aff09398b2 +size 1822008 diff --git a/audio/few/02047.wav b/audio/few/02047.wav new file mode 100644 index 0000000000000000000000000000000000000000..f0b58a5c5e80a434155dd6986ec78cddabcefb30 --- /dev/null +++ b/audio/few/02047.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e54ecf48c1280c42cd81c9afc66a9bef55958c05921a1b14f3bd2f6e36c533a5 +size 3123812 diff --git a/audio/few/02049.wav b/audio/few/02049.wav new file mode 100644 index 0000000000000000000000000000000000000000..8a9fbe2dee311a414f3399708f406c66b475fe86 --- /dev/null +++ b/audio/few/02049.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:046730285e1418c8cec43d0a69b295065d46411d912b1041866adc4ab7ca1b96 +size 4161838 diff --git a/audio/few/02053.wav b/audio/few/02053.wav new file mode 100644 index 0000000000000000000000000000000000000000..e172903aa7574bff3b5f294d48dbf7f68a57ae98 --- /dev/null +++ b/audio/few/02053.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eca86b9627a18169eff2e9dea4d5919a3c447f98d7b56ba4bde32a20a8dfcea +size 1529252 diff --git a/audio/few/02057.wav b/audio/few/02057.wav new file mode 100644 index 0000000000000000000000000000000000000000..038136b827bc1c373bf9b7817189b40cfe81fb43 --- /dev/null +++ b/audio/few/02057.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07ff2de4ebc22963f826025b4f4f5c031952f195b4acc17334fee1dcdcb75dc1 +size 1779656 diff --git a/audio/few/02061.wav b/audio/few/02061.wav new file mode 100644 index 0000000000000000000000000000000000000000..ae005c612e13355ee05aa8377e8b9bb64c504c77 --- /dev/null +++ b/audio/few/02061.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc6cd8197324667389c1beea63ad567c066d29d9b45ab7ffe232465b875ed521 +size 2249256 diff --git a/audio/few/02062.wav b/audio/few/02062.wav new file mode 100644 index 0000000000000000000000000000000000000000..04558201eb89490e158294e41b5ec0a2ec0cb94e --- /dev/null +++ b/audio/few/02062.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76973be519e23dfe969f25ce59d001aa77711399c44f63e455136408c24cc0e9 +size 8941062 diff --git a/audio/few/02074.wav b/audio/few/02074.wav new file mode 100644 index 0000000000000000000000000000000000000000..6080984925fe6c810a2c9233cef003b19dc7a9bd --- /dev/null +++ b/audio/few/02074.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecd5c25b85a5ecdd36bb0e7a4570957699f920befaa0633b1068ef17583d4fee +size 777636 diff --git a/audio/few/02081.wav b/audio/few/02081.wav new file mode 100644 index 0000000000000000000000000000000000000000..4335c1d85f9ea7a4554101d4bda942c0a3525306 --- /dev/null +++ b/audio/few/02081.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:441e6ed937ac87ead3dc313801ee28c7cdecddf6b3df35d55028e0a4059b8e4c +size 2202444 diff --git a/audio/few/02093.wav b/audio/few/02093.wav new file mode 100644 index 0000000000000000000000000000000000000000..c1cbf7a314a730623b7726e2bd69f245830f5343 --- /dev/null +++ b/audio/few/02093.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fe9fa3d79a708053ee4f720fda674d966bf2a61d8e9269267399566734c9d78 +size 1582008 diff --git a/audio/few/02095.wav b/audio/few/02095.wav new file mode 100644 index 0000000000000000000000000000000000000000..6670ec77cc2e6f35ca2e12106844141f5e188e8a --- /dev/null +++ b/audio/few/02095.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc6cb2ab5e00f961a7f33e8fa3ab3d49d6c183122b01d64fffd3e0acadfe5883 +size 1416310 diff --git a/audio/few/02098.wav b/audio/few/02098.wav new file mode 100644 index 0000000000000000000000000000000000000000..bc90cb8b798ac4921d3e4b99bbf1c81435e59729 --- /dev/null +++ b/audio/few/02098.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9b18527cfc882f83ad8c4cb730a634ceed4801e8bc709d3575b5c38f34b1d24 +size 9868374 diff --git a/audio/few/02109.wav b/audio/few/02109.wav new file mode 100644 index 0000000000000000000000000000000000000000..f4d87631300abcaba9c27de9597045ad502a7647 --- /dev/null +++ b/audio/few/02109.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1384ce1f706e8b9094d318e4535298d93739d3ef0ca5f428f1368d60493420c1 +size 900642 diff --git a/audio/few/02110.wav b/audio/few/02110.wav new file mode 100644 index 0000000000000000000000000000000000000000..a243591a1d7122bdaa66c999079cae64d16f39c1 --- /dev/null +++ b/audio/few/02110.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47ea2f92cbdeac821879b365b3bf0628671fb2ceec6b5da22f40e383ba3b5629 +size 2428328 diff --git a/audio/few/02123.wav b/audio/few/02123.wav new file mode 100644 index 0000000000000000000000000000000000000000..ffadef3f65983e95f8943427761290d546674eb6 --- /dev/null +++ b/audio/few/02123.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60da7d2fdee83fdf3c6fde91c9efaba376ea0c51ed320f95949be28776ec92b3 +size 830796 diff --git a/audio/few/02127.wav b/audio/few/02127.wav new file mode 100644 index 0000000000000000000000000000000000000000..30c0f49a451930d50b29e8d9a4fcf281f8d3e4bb --- /dev/null +++ b/audio/few/02127.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec550336ed8e24b51502c50c4a6c67938d65b39b27525431f2f3f9de221ef651 +size 1001694 diff --git a/audio/few/02135.wav b/audio/few/02135.wav new file mode 100644 index 0000000000000000000000000000000000000000..73e12d12aafec5c0dec341c622a3f92da5c89427 --- /dev/null +++ b/audio/few/02135.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e88438d85f75747068b798f62ac7b0c5095e1c3214d6b03880b098b2bcb70337 +size 2180896 diff --git a/audio/few/02138.wav b/audio/few/02138.wav new file mode 100644 index 0000000000000000000000000000000000000000..fe080a44deed75af6c7ecaddf277679888a29188 --- /dev/null +++ b/audio/few/02138.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58c4ea13e4775299c69f222e3d996f9c25a94e0ee60235f2f19c4da9ece237e4 +size 32583062 diff --git a/audio/few/02147.wav b/audio/few/02147.wav new file mode 100644 index 0000000000000000000000000000000000000000..2028b7ca06edf0eed52d94e69f1176c1d201bedd --- /dev/null +++ b/audio/few/02147.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bdbfc87db8332b733bb377a2a8094b80fb363b2f7710cf33f647ac5951c5dd4 +size 2562818 diff --git a/audio/few/02150.wav b/audio/few/02150.wav new file mode 100644 index 0000000000000000000000000000000000000000..47fd5738b1576b13e3ea1a37bcdddb8123459436 --- /dev/null +++ b/audio/few/02150.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:185b6a910f183e8ddba8b22abd060db7a356fa27632949d32238fe1ee4961077 +size 1350922 diff --git a/audio/few/02153.wav b/audio/few/02153.wav new file mode 100644 index 0000000000000000000000000000000000000000..491d11dc39507d414f496d15851cbcdac75103e9 --- /dev/null +++ b/audio/few/02153.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05a3c070655a2e944f8bde1ae45af488e9ec4f32e9468e6582da48d6ee2a2176 +size 5170140 diff --git a/audio/few/02160.wav b/audio/few/02160.wav new file mode 100644 index 0000000000000000000000000000000000000000..ccfeec4186480a07a0abc2d70a48363e866f4852 --- /dev/null +++ b/audio/few/02160.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56f22e37461930e2505c6ac1e07b3741ca09793d99a4eca57c8b9f7cf04e5be8 +size 5011874 diff --git a/audio/few/02161.wav b/audio/few/02161.wav new file mode 100644 index 0000000000000000000000000000000000000000..6a046f6a8390e4b46d1de0ac21d4ff1b9d13d224 --- /dev/null +++ b/audio/few/02161.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6857e5daff0c073256a38a391e1c7d18399ac3be8f44aab584f3ad3a82c2cde7 +size 1437858 diff --git a/audio/few/02169.wav b/audio/few/02169.wav new file mode 100644 index 0000000000000000000000000000000000000000..390c6aee89266d7bd1b2ad851f24e912a91f03a4 --- /dev/null +++ b/audio/few/02169.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7556b671ab74cd2ee2eca940a45fbde413ab363f9b3d12b913977b368ba864f5 +size 660640 diff --git a/audio/few/02176.wav b/audio/few/02176.wav new file mode 100644 index 0000000000000000000000000000000000000000..c231fa0350cae1dc7fa52282a43314e109e2063c --- /dev/null +++ b/audio/few/02176.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8440d6f2ffcecc0e4f435d6c17a119289e3c13be3180aaff6fd6d047b6af2209 +size 1308570 diff --git a/audio/few/02187.wav b/audio/few/02187.wav new file mode 100644 index 0000000000000000000000000000000000000000..f82dfba38b6076b52e76d0f55e06674c2cdb5cea --- /dev/null +++ b/audio/few/02187.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ede546cfbfff5bab45fb086181c55238e1ae0c6abcbdb85f6b8870463d8fc94f +size 1308570 diff --git a/audio/few/02189.wav b/audio/few/02189.wav new file mode 100644 index 0000000000000000000000000000000000000000..8504bddaaa0a1afb7a4dfa3acddb48e29205ded0 --- /dev/null +++ b/audio/few/02189.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:140732b70a81fd9e4ed8f569c28ea595ab356705317443feb4fe9a301df80fe8 +size 1236494 diff --git a/audio/few/02190.wav b/audio/few/02190.wav new file mode 100644 index 0000000000000000000000000000000000000000..86bb46e6d30e51c3bec62a7b6807f9f3edcb58d4 --- /dev/null +++ b/audio/few/02190.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cde4208c228512403b2f43fdbdc4eb6409e2e6f02458504f53de9c0d5fe6b50 +size 2213590 diff --git a/audio/few/02215.wav b/audio/few/02215.wav new file mode 100644 index 0000000000000000000000000000000000000000..48bcce9dc2015aa847be26ccdd00754c6b14bffa --- /dev/null +++ b/audio/few/02215.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4daf16bc04d2e15e35fad8a74edb4833bcb0edc4d020eb15ff6ac1921fc88818 +size 801816 diff --git a/audio/few/02218.wav b/audio/few/02218.wav new file mode 100644 index 0000000000000000000000000000000000000000..758b3846d7b45fdde3e70fcb88d36b9d2fb6774b --- /dev/null +++ b/audio/few/02218.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf998699c07cb38cd26f09ef66b1bbcbb9d9ce4ea628a722a114ac1b463f1f00 +size 685160 diff --git a/audio/few/02221.wav b/audio/few/02221.wav new file mode 100644 index 0000000000000000000000000000000000000000..016d186539a0adb96aa5f5e2d702509ac8faf7b2 --- /dev/null +++ b/audio/few/02221.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aec6a50f5e7d89c79840a88bd1501184f25b28b5c52d908add2c4ab3d0ed886 +size 748318 diff --git a/audio/few/02227.wav b/audio/few/02227.wav new file mode 100644 index 0000000000000000000000000000000000000000..961286eee8150a653be7b10e6bb3c3a79545afcf --- /dev/null +++ b/audio/few/02227.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eac4b8692d098f88532a0d3ce17723f60a0fa76c313315af239509df96cd5b4a +size 2541270 diff --git a/audio/few/02238.wav b/audio/few/02238.wav new file mode 100644 index 0000000000000000000000000000000000000000..ab9649f3f15401d79f6dafb597bea2c8c72ba0db --- /dev/null +++ b/audio/few/02238.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5686aa78b0f361543004af3480fb2f731733f53971337abe8675b170752ed933 +size 783984 diff --git a/audio/few/02241.wav b/audio/few/02241.wav new file mode 100644 index 0000000000000000000000000000000000000000..a9f58e9ae018c0bca3580049e455234f02293480 --- /dev/null +++ b/audio/few/02241.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffe3cd53a3d3f2d612998b42750a093906b985f549bf658089a6e03438556008 +size 2027830 diff --git a/audio/few/02249.wav b/audio/few/02249.wav new file mode 100644 index 0000000000000000000000000000000000000000..edd5256f470c4caa455c9f7c0a84da39e33d2d13 --- /dev/null +++ b/audio/few/02249.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2589b68c690161ea02d46516c2ea338da2334e4e5cddb61827aaddf7971eb1e6 +size 944480 diff --git a/audio/few/02252.wav b/audio/few/02252.wav new file mode 100644 index 0000000000000000000000000000000000000000..7267542b038fa22841365d385bfef99bdd31766a --- /dev/null +++ b/audio/few/02252.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50879ffa2446bcc79390fa96404796243066a3407d63698a29aa820995ebcb27 +size 2051608 diff --git a/audio/few/02262.wav b/audio/few/02262.wav new file mode 100644 index 0000000000000000000000000000000000000000..147e449f6e0daf70441feea8372eacd032fe0fd3 --- /dev/null +++ b/audio/few/02262.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb8dd294247f0b20956e09653841e37355344502b181ddb257fd566565f90bae +size 1125782 diff --git a/audio/few/02265.wav b/audio/few/02265.wav new file mode 100644 index 0000000000000000000000000000000000000000..df4622c693f581d139dda3b1b3a2d54dcc3f18d7 --- /dev/null +++ b/audio/few/02265.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dccde3916f3949c4e3577959d916e19d4f88713e4b34f03e43aae582c1dad74 +size 2183868 diff --git a/audio/few/02271.wav b/audio/few/02271.wav new file mode 100644 index 0000000000000000000000000000000000000000..f38bfb131c5801cd6cff9a89fcff065b4252674f --- /dev/null +++ b/audio/few/02271.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13b7abb31b39773d82fb364a5e2d05b45efb3cb7b6d90d7a49539174f3322c42 +size 1161448 diff --git a/audio/few/02285.wav b/audio/few/02285.wav new file mode 100644 index 0000000000000000000000000000000000000000..2dc11fb3f02ca524adb88168bb408b5221d180d2 --- /dev/null +++ b/audio/few/02285.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e8690a37d5a9e0e0cd1e3812c74dbf2fd0067d9cded0085797c3036f48566d4 +size 1437858 diff --git a/audio/few/02293.wav b/audio/few/02293.wav new file mode 100644 index 0000000000000000000000000000000000000000..fa33f0a6172cff2ac8ba8e48193b2993c7b4d0df --- /dev/null +++ b/audio/few/02293.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49d2fcbbbf378d714917ccc6ae4f6e060d73e54f97ac2f408d59547c7f7c1308 +size 680702 diff --git a/audio/few/02295.wav b/audio/few/02295.wav new file mode 100644 index 0000000000000000000000000000000000000000..6d400c74a51dd17334dcb4f7c2e7df294d8d138b --- /dev/null +++ b/audio/few/02295.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53601efb784220795f682404cb20ca1486178ba84e11d775e7a382aab73d3f13 +size 1349436 diff --git a/audio/few/02301.wav b/audio/few/02301.wav new file mode 100644 index 0000000000000000000000000000000000000000..01f288680e799ce15dae0b7222dd2234cf2c7acf --- /dev/null +++ b/audio/few/02301.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85dfa0cac03fcd9d01b6761b5ae3376bc2c87861034ac083bd286d671fe7d5a5 +size 1963930 diff --git a/audio/few/02305.wav b/audio/few/02305.wav new file mode 100644 index 0000000000000000000000000000000000000000..8484659b839ad5adf8a21c86ce98548a19f83637 --- /dev/null +++ b/audio/few/02305.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00cfaf1eccaac88cf7d37c0f8c6ef906aecfe21d4aed19518274b853d1553330 +size 977174 diff --git a/audio/few/02314.wav b/audio/few/02314.wav new file mode 100644 index 0000000000000000000000000000000000000000..19528371842a5d1582fdab11f9b6639a4c16523f --- /dev/null +++ b/audio/few/02314.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c3fe633dfe5416cce33d914e2cf6ad3a19c6055beb105d4b477a719f17b7315 +size 2767896 diff --git a/audio/few/02316.wav b/audio/few/02316.wav new file mode 100644 index 0000000000000000000000000000000000000000..80adc28fbb21c15ebae7d32711bcec2a946b6997 --- /dev/null +++ b/audio/few/02316.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b7dea8e5d36fd495b5a3fcc91065371f03f597fc06e6a974930fd291ce5db59 +size 3014586 diff --git a/audio/few/02319.wav b/audio/few/02319.wav new file mode 100644 index 0000000000000000000000000000000000000000..31fc934e6c23f76e177ef08712de1e2ecbb002e8 --- /dev/null +++ b/audio/few/02319.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ccd08302fc5691c159d7bbf030abe43e2ffe6d08b016336a02e1822dfae20b1 +size 786214 diff --git a/audio/few/02325.wav b/audio/few/02325.wav new file mode 100644 index 0000000000000000000000000000000000000000..e0db1404b813cd20ec33a5966ff95bc48efa0d0e --- /dev/null +++ b/audio/few/02325.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:084d09138fec80d8db87bd7932e054e8676e64f759b289f3d9751372aaf09e86 +size 9687118 diff --git a/audio/few/02340.wav b/audio/few/02340.wav new file mode 100644 index 0000000000000000000000000000000000000000..d40caf72bcd02876ed6594d5eed0ab37de62f031 --- /dev/null +++ b/audio/few/02340.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:150e53d37fa5f2162a7865fac1ced6b7417191712998cafb7e3cb0e010ce237e +size 1763308 diff --git a/audio/few/02359.wav b/audio/few/02359.wav new file mode 100644 index 0000000000000000000000000000000000000000..959a44ffa86fe25ae4d725d9346796b37548c1cb --- /dev/null +++ b/audio/few/02359.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb7be56a018ec55f1c16f7709a95ead26abc167cae7338481a81f831759adee4 +size 1221634 diff --git a/audio/few/02364.wav b/audio/few/02364.wav new file mode 100644 index 0000000000000000000000000000000000000000..95749c8b7a2d5f23fd0186a4ebeff042448661d5 --- /dev/null +++ b/audio/few/02364.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef4752e986f68dba03b35d98e62b52e93da2a3f94fbc5948489e36de16e6bca1 +size 2970004 diff --git a/audio/few/02365.wav b/audio/few/02365.wav new file mode 100644 index 0000000000000000000000000000000000000000..ea4b3af76f7c06a1332a339e3054a59aaa667e24 --- /dev/null +++ b/audio/few/02365.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5779630538567211c21165ead81e03aa61a585e28db2d978d2a222d5b491da96 +size 1038104 diff --git a/audio/few/02370.wav b/audio/few/02370.wav new file mode 100644 index 0000000000000000000000000000000000000000..77e4f5252ce0bfd2147526d6fe623d2907aa34bd --- /dev/null +++ b/audio/few/02370.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07a5e0e9428860e8102607b59f3217b2212d1881858e8a31b87a3be146b23b43 +size 798102 diff --git a/audio/few/02373.wav b/audio/few/02373.wav new file mode 100644 index 0000000000000000000000000000000000000000..3bd7386ed1deb2ed6eb89631638589827b4f6e1e --- /dev/null +++ b/audio/few/02373.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f394fbbd8739484a4f0546b054b7e7b17ca5d606b139a7160ca25d0f910be3e +size 1029930 diff --git a/audio/few/02374.wav b/audio/few/02374.wav new file mode 100644 index 0000000000000000000000000000000000000000..1dd35e7c005c52c390165543a2db69a36ce2e0c0 --- /dev/null +++ b/audio/few/02374.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ca505df4bd5a40356af3aef2b4d730f44eea5c3aae0d9515a462ddef1241714 +size 866462 diff --git a/audio/few/02377.wav b/audio/few/02377.wav new file mode 100644 index 0000000000000000000000000000000000000000..7294042963b927b74f004d1e4c019d8e0dbb256b --- /dev/null +++ b/audio/few/02377.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18470309d517ee6d220bbe727c5af487dcc322a03fa14bdb51812aa8fc315ec2 +size 1304854 diff --git a/audio/few/02380.wav b/audio/few/02380.wav new file mode 100644 index 0000000000000000000000000000000000000000..4bff92a74beb83ee38929f989e4e60e2335e708b --- /dev/null +++ b/audio/few/02380.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4407c8066fba50078fa7ac667dfe3fa3ef9ee4df99b0b93b74aa7a3a7c61ea13 +size 2026344 diff --git a/audio/few/02383.wav b/audio/few/02383.wav new file mode 100644 index 0000000000000000000000000000000000000000..4981f009f2d91d6e463355fbdccb60c6f4ced792 --- /dev/null +++ b/audio/few/02383.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:877deb707122bf134f5ecb3809fd26c7af315b6045d94a476ee3e8e948b4da4d +size 1244668 diff --git a/audio/few/02386.wav b/audio/few/02386.wav new file mode 100644 index 0000000000000000000000000000000000000000..ab56d74a3f85b3e252638f4b9385e0f908c0bd61 --- /dev/null +++ b/audio/few/02386.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ca674e3644b4989cf24def7d8bbff4ff2cc231a30174bfb4b53f21046a90b4c +size 4809766 diff --git a/audio/few/02388.wav b/audio/few/02388.wav new file mode 100644 index 0000000000000000000000000000000000000000..b44bede9fd0f20ea4c955554f56bc2e3a198015b --- /dev/null +++ b/audio/few/02388.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68a30dd57950c328eb7d5182498ed5f123c14ad0fe7171fd17d74cc47c065d74 +size 1059652 diff --git a/audio/few/02394.wav b/audio/few/02394.wav new file mode 100644 index 0000000000000000000000000000000000000000..76fb36a2ae7b6b919285b8b3f54e8d2bc6b4e662 --- /dev/null +++ b/audio/few/02394.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cbf34b5d38f53e8fdb3ad4f9686afd4af8e24274a5d4efbaec5376c6286d50b +size 3030932 diff --git a/audio/few/02405.wav b/audio/few/02405.wav new file mode 100644 index 0000000000000000000000000000000000000000..fdbd0be93c1dabefb0f221b502d2eb8c92fb28df --- /dev/null +++ b/audio/few/02405.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb0f1db8a2860d382eee2a4e187ce8e6c08696fdd33d98af0b0aea1e5e671d1c +size 1512162 diff --git a/audio/few/02412.wav b/audio/few/02412.wav new file mode 100644 index 0000000000000000000000000000000000000000..90678fcd36e604ffda0a056102b54bb3fa5b505a --- /dev/null +++ b/audio/few/02412.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9748ace0b600d9dbd125e787f5f1b3b0ac589559e9a78931461ab51b6dc4af8 +size 5192432 diff --git a/audio/few/02432.wav b/audio/few/02432.wav new file mode 100644 index 0000000000000000000000000000000000000000..576367c35a1096137af0e2b656152966ea9346ec --- /dev/null +++ b/audio/few/02432.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9973491a504ee07b70f169c8042afe8c267f675c79084a78fe31cbecc14da1f +size 719340 diff --git a/audio/few/02433.wav b/audio/few/02433.wav new file mode 100644 index 0000000000000000000000000000000000000000..baca10be8a442ffb7cd10f3efb1c46cd4624f624 --- /dev/null +++ b/audio/few/02433.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3a62961cd44120770a8f64b15ad387e3e64c336d1a11f54836463b843984798 +size 2219534 diff --git a/audio/few/02448.wav b/audio/few/02448.wav new file mode 100644 index 0000000000000000000000000000000000000000..80cd8d7f0dd035f3c6dbf6d578fd4fe8202b2bfe --- /dev/null +++ b/audio/few/02448.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c61512e0e97560c651a711d2e03c862de94fcf4f3df1d1c8a459901d0a1e7a32 +size 705964 diff --git a/audio/few/02451.wav b/audio/few/02451.wav new file mode 100644 index 0000000000000000000000000000000000000000..996018eafbd20bad0583bfce5af3e8d42e0f1f67 --- /dev/null +++ b/audio/few/02451.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3df9f722212f2b30d8176d15f1dcf50cd1afe92d558c7e4a99b9c22f03807d51 +size 1039590 diff --git a/audio/few/02452.wav b/audio/few/02452.wav new file mode 100644 index 0000000000000000000000000000000000000000..35abfc4f1326ee39d1483e58f46fc535fa47abea --- /dev/null +++ b/audio/few/02452.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe0daa5ad498740193317ddbc18ed49ad0c9c74dfe6094263877394e24c690c5 +size 662126 diff --git a/audio/few/02457.wav b/audio/few/02457.wav new file mode 100644 index 0000000000000000000000000000000000000000..39e28b0474c01d52c5a007d1ae3ff9773e0f8403 --- /dev/null +++ b/audio/few/02457.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ec32ec7ad212e46b8e614c82b9e33ab9d61ad20176f61c74713a014099c654b +size 1368756 diff --git a/audio/few/02459.wav b/audio/few/02459.wav new file mode 100644 index 0000000000000000000000000000000000000000..632dc08bd2e461df81e2b0d902bb96df1579f3c3 --- /dev/null +++ b/audio/few/02459.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2c2ec3d1ca5cc43ae0aa5d00417a9900a2004889ea332d33c314061b7bacfaf +size 995006 diff --git a/audio/few/02464.wav b/audio/few/02464.wav new file mode 100644 index 0000000000000000000000000000000000000000..e13ed3693ef75bfd04da72615b98e9dc337c66d0 --- /dev/null +++ b/audio/few/02464.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:846285d1e83dd8e5bc33f996338aee0f73f58d6a6039e7495c0f434c8e9aab4f +size 1827954 diff --git a/audio/few/02465.wav b/audio/few/02465.wav new file mode 100644 index 0000000000000000000000000000000000000000..26299d1ee1211e3be9363bd67d43a3dc7b09464d --- /dev/null +++ b/audio/few/02465.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a62054e1bcdfaebe654f8f57fc7996a926e9143b4a58037736e3ed2d8bba5539 +size 1017298 diff --git a/audio/few/02469.wav b/audio/few/02469.wav new file mode 100644 index 0000000000000000000000000000000000000000..a3cf90158feb19a398defa4fd8c3badc11330415 --- /dev/null +++ b/audio/few/02469.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f337c4868063763c8efe5bde23b3e373db72fad0a90eba4d24dc31acbeca8f71 +size 734200 diff --git a/audio/few/02470.wav b/audio/few/02470.wav new file mode 100644 index 0000000000000000000000000000000000000000..abcd10771504f0b130fffe852918b80f4717ccf2 --- /dev/null +++ b/audio/few/02470.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:909afb40d079ba590a360b6fe47bb2e1e14bdc55fa363f012dfba7d382c909c0 +size 42255938 diff --git a/audio/few/02508.wav b/audio/few/02508.wav new file mode 100644 index 0000000000000000000000000000000000000000..8d91edaec2f47b6925dafdd5d31c9ae491ce794f --- /dev/null +++ b/audio/few/02508.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:958dbd4cb64e1202f969be1f118d86fc617f2c5e49f20d7e32566fefc5fcdf84 +size 18048484 diff --git a/audio/few/02509.wav b/audio/few/02509.wav new file mode 100644 index 0000000000000000000000000000000000000000..c6a8bbc0342d64c8d3a2ee337d309b8b9e403a2c --- /dev/null +++ b/audio/few/02509.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8773bcb8219842e53bdac873f7fd7e4eee73734981be7333ec613bd11c56fa8f +size 754262 diff --git a/audio/few/02513.wav b/audio/few/02513.wav new file mode 100644 index 0000000000000000000000000000000000000000..acd8b184da7be0cda7bf69a61de84d7f60f405c1 --- /dev/null +++ b/audio/few/02513.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e437a85021347f9ad734b3cfbc88e78ad65e542d14fc0150bd7612fcecce404 +size 1693464 diff --git a/audio/few/02515.wav b/audio/few/02515.wav new file mode 100644 index 0000000000000000000000000000000000000000..e8fd29abc9809c0a5ef49aa675f576d1615b84cf --- /dev/null +++ b/audio/few/02515.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bd38265e630b98159927dab6171b0b919097c0f4f650c68452bce63f367481c +size 1746962 diff --git a/audio/few/02532.wav b/audio/few/02532.wav new file mode 100644 index 0000000000000000000000000000000000000000..2293a912fdf6c133997bec634de015daf5e6fe3e --- /dev/null +++ b/audio/few/02532.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:469b6424775d16914c713248d85850232aaa373784878d90cef61b2e0fba9fab +size 1035874 diff --git a/audio/few/02535.wav b/audio/few/02535.wav new file mode 100644 index 0000000000000000000000000000000000000000..4729340bc3f91d8d33227e5c1c886b777a38f469 --- /dev/null +++ b/audio/few/02535.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:257c27decc131c84f08e8a798e56ff2578308352efd4f8572ff68c1bf962d037 +size 7540434 diff --git a/audio/few/02536.wav b/audio/few/02536.wav new file mode 100644 index 0000000000000000000000000000000000000000..dea91774a405a73178ca30ebed555cf195a40fdd --- /dev/null +++ b/audio/few/02536.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:432bfca9d0ff58c284a8fe7451ba79f884e47a47e14ece8715996cbd977af08d +size 1072282 diff --git a/audio/few/02544.wav b/audio/few/02544.wav new file mode 100644 index 0000000000000000000000000000000000000000..cf0d7adc628e1f17f4d63bce0cb600c988e802eb --- /dev/null +++ b/audio/few/02544.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5d7c2aadc3e4d706fb44db65515a4b94d7fa56bc05adfa0129d9345c0d59efa +size 1189684 diff --git a/audio/few/02564.wav b/audio/few/02564.wav new file mode 100644 index 0000000000000000000000000000000000000000..59659621bd325749de2f3842f07b6d1b0edc28ce --- /dev/null +++ b/audio/few/02564.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7831d4161f6d5559f19088d79d749ea17dcf3d21eef4eb8e0a17c0f182f9c5cf +size 1620646 diff --git a/audio/few/02567.wav b/audio/few/02567.wav new file mode 100644 index 0000000000000000000000000000000000000000..a4f10d75aa10b01e1ce44174eac034ddf48e39b8 --- /dev/null +++ b/audio/few/02567.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8610bb98850d23fcac85e0dbc8d9ef4666b94a241b9ef891cb00d143dec4b9b9 +size 1211232 diff --git a/audio/few/02589.wav b/audio/few/02589.wav new file mode 100644 index 0000000000000000000000000000000000000000..2686e2f00c7c2b4f2d20e45ad5d6c27b739e7bdf --- /dev/null +++ b/audio/few/02589.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e45e909ddd82e897b254b23be0eadad59674391a5644c052f828d3399bc71260 +size 1923062 diff --git a/audio/few/02590.wav b/audio/few/02590.wav new file mode 100644 index 0000000000000000000000000000000000000000..bc8c1f9e76ebc4f30a3d081aec4b4caea6842595 --- /dev/null +++ b/audio/few/02590.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9f20e5112fc2dca7018583e36216d326a0fc7b295243ea256e5ad8d3d035219 +size 2162320 diff --git a/audio/few/02595.wav b/audio/few/02595.wav new file mode 100644 index 0000000000000000000000000000000000000000..f40b799795edf39dce19efd2a881d220dc13a5f5 --- /dev/null +++ b/audio/few/02595.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b544b4de2527afbd82f4aaf0f08e3a04323e731f18076bc16d9a2c6b4a60bb4 +size 904356 diff --git a/audio/few/02596.wav b/audio/few/02596.wav new file mode 100644 index 0000000000000000000000000000000000000000..b77b6f0fa5dd1c5c05655ea6a7198f46194e9ade --- /dev/null +++ b/audio/few/02596.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b093739ba9108079167667ac0c4e67d569cdb7b24441e96a473f1ea55c2392c +size 830052 diff --git a/audio/few/02605.wav b/audio/few/02605.wav new file mode 100644 index 0000000000000000000000000000000000000000..232c4ccca20a70751067342dfc9f1468fdd9ebd9 --- /dev/null +++ b/audio/few/02605.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a56627b94f2175bccb19fa8e0b8223fa9d36294dc5d17b592ab068f397237d66 +size 1619902 diff --git a/audio/few/02606.wav b/audio/few/02606.wav new file mode 100644 index 0000000000000000000000000000000000000000..cdf4d06051f422ecf9cdb6c205528b79bd499f5a --- /dev/null +++ b/audio/few/02606.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61effc29e11947a8169a178b3f4b7ac1ae1c4eaf4a8b510331c7e35abfb4372a +size 1892598 diff --git a/audio/few/02611.wav b/audio/few/02611.wav new file mode 100644 index 0000000000000000000000000000000000000000..39a1dce26bf028e4913b37628046d96083129024 --- /dev/null +++ b/audio/few/02611.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfcfffba34e8ebd5dfcb95009cbbf7da98e2530f5e3f0cd819ad5bbd8acd94aa +size 1741760 diff --git a/audio/few/02619.wav b/audio/few/02619.wav new file mode 100644 index 0000000000000000000000000000000000000000..b36d131d0c1dc1d16fcaa3366db6cfa8bbd8b822 --- /dev/null +++ b/audio/few/02619.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bc4b51bcd5af994b68b4cd6ebc3cabbcb494a2cdede4137a88d52b91f97e08d +size 1362068 diff --git a/audio/few/02621.wav b/audio/few/02621.wav new file mode 100644 index 0000000000000000000000000000000000000000..8bcab7d57f84ae808f556fd70a668fdded238493 --- /dev/null +++ b/audio/few/02621.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2fa4da721721fa4f067b37bf6a25b2f281485bb3010e2613e343df9729fa575 +size 4702026 diff --git a/audio/few/02622.wav b/audio/few/02622.wav new file mode 100644 index 0000000000000000000000000000000000000000..e792f90697ba06848e40a5080d88aea6191f6f0e --- /dev/null +++ b/audio/few/02622.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01638edf9b61a6ceb9f33c97965d135974bbc7d07eee7d577990a9cc838e9972 +size 706708 diff --git a/audio/few/02624.wav b/audio/few/02624.wav new file mode 100644 index 0000000000000000000000000000000000000000..4bb90752a461574a7fa6223cae2e6982feefb245 --- /dev/null +++ b/audio/few/02624.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acd30c2d41eac80fc3cb6701cd6697b937da52ca876af3bd336a8938bc46c1ee +size 896182 diff --git a/audio/few/02629.wav b/audio/few/02629.wav new file mode 100644 index 0000000000000000000000000000000000000000..660752efae0a78699e5296d446286f2888577f54 --- /dev/null +++ b/audio/few/02629.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76ddf02e8152fe8e26ce99706eec073c5dfd35a731240790520b731da989c1fc +size 774904 diff --git a/audio/few/02631.wav b/audio/few/02631.wav new file mode 100644 index 0000000000000000000000000000000000000000..0a9a423c6037d80db1ec36d55c164594edd8b4be --- /dev/null +++ b/audio/few/02631.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbee32fcf405b4526e60f079d202392b4e128f12903743ebc11cd1e9cabdab0b +size 12292166 diff --git a/audio/few/02641.wav b/audio/few/02641.wav new file mode 100644 index 0000000000000000000000000000000000000000..20fe782d18738c4804632683c220d4af1b499325 --- /dev/null +++ b/audio/few/02641.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0a7d386da342ef4f8671b3a333c7817cabfb2abf069ad172f80fe2866cb5ba4 +size 683674 diff --git a/audio/few/02650.wav b/audio/few/02650.wav new file mode 100644 index 0000000000000000000000000000000000000000..8b210e42b2c7dc97e262344887417792b573abaa --- /dev/null +++ b/audio/few/02650.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caa6dc09d5db9af2c0a3ab9790581e8dd5635809455bb17456bdb0ab0980b27d +size 737172 diff --git a/audio/few/02662.wav b/audio/few/02662.wav new file mode 100644 index 0000000000000000000000000000000000000000..34d02f4f3b5c7cd85832ba1356705dbb2dc47922 --- /dev/null +++ b/audio/few/02662.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49b3d6fbc5c282c892f896d871b3c6b8ffa479d75ea49ce18a45b01ffa726f35 +size 2870436 diff --git a/audio/few/02663.wav b/audio/few/02663.wav new file mode 100644 index 0000000000000000000000000000000000000000..0fc6da61cc1cb0471de2e5758ee5b7030ba3dc5a --- /dev/null +++ b/audio/few/02663.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0a1816b2a5958f3cc637d4c8a96375243414fd8f0f8e0af8b0ba25543ae3e26 +size 827080 diff --git a/audio/few/02677.wav b/audio/few/02677.wav new file mode 100644 index 0000000000000000000000000000000000000000..101812c9ff1731edb24e15720ea5af711b51cdc9 --- /dev/null +++ b/audio/few/02677.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:126b77766dd1a34f7fc6f81a34c66149edabd54b1ecc5f34a87d9db75be3980d +size 2027088 diff --git a/audio/few/02678.wav b/audio/few/02678.wav new file mode 100644 index 0000000000000000000000000000000000000000..93cc77860ccb8cc43c753a522608e3c11d9e43e2 --- /dev/null +++ b/audio/few/02678.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98761307596b48e580b4e1e604e777829d010aa01e07654320fb4053ff18cd77 +size 23477868 diff --git a/audio/few/02680.wav b/audio/few/02680.wav new file mode 100644 index 0000000000000000000000000000000000000000..7a4abd07aa7cd4575c273980ec25dcbe4b0845b3 --- /dev/null +++ b/audio/few/02680.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:846c1052062488b77f26754ae3770d867ab84d6efd9c3c9c8552d38ca4d5e60d +size 2796132 diff --git a/audio/few/02683.wav b/audio/few/02683.wav new file mode 100644 index 0000000000000000000000000000000000000000..53db4e4ec4c7e70bcbbf77e24e262a0bcbd94b5b --- /dev/null +++ b/audio/few/02683.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a5e98f424411d3011cf2efb79db0ee3ded59f739372d530da7455039a993119 +size 775810 diff --git a/audio/few/02692.wav b/audio/few/02692.wav new file mode 100644 index 0000000000000000000000000000000000000000..fc99c4bff24dd551d67778b200d54fa0db709d69 --- /dev/null +++ b/audio/few/02692.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c564f8a01d389d5572be5352365a670afbd276c142e2490c19f39e254ae04970 +size 910300 diff --git a/audio/few/02693.wav b/audio/few/02693.wav new file mode 100644 index 0000000000000000000000000000000000000000..cec86e22e919d96768d170999f2ae8e854f34ec9 --- /dev/null +++ b/audio/few/02693.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e493a7b3de64537850a71668d7fe5b53c4e02abb82d29c348ce67efaf5393ef +size 1596868 diff --git a/audio/few/02722.wav b/audio/few/02722.wav new file mode 100644 index 0000000000000000000000000000000000000000..6d6689aeacd176e839048f569697920c49b58f64 --- /dev/null +++ b/audio/few/02722.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24572e7be560e590a285cbe957320a881e8d037cf6a3c0aede2e79209086edbe +size 35961658 diff --git a/audio/few/02731.wav b/audio/few/02731.wav new file mode 100644 index 0000000000000000000000000000000000000000..0c1f291afe967f3cc6381679dbd33c6644e5576f --- /dev/null +++ b/audio/few/02731.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc79aa478eec342ac019fbb7cffb5c284fcf70e15d551bb43ec7f2f1a02dead7 +size 3224122 diff --git a/audio/few/02735.wav b/audio/few/02735.wav new file mode 100644 index 0000000000000000000000000000000000000000..de419a6aed0f478a112e33554aa2022aa303e2f6 --- /dev/null +++ b/audio/few/02735.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:778816742b2efec6c72f0e422cb358823bc167b3e509f0d080bad2de9c86edd2 +size 798844 diff --git a/audio/few/02736.wav b/audio/few/02736.wav new file mode 100644 index 0000000000000000000000000000000000000000..3c3c92d11e47eefa2717a467eeeb3aa07f040839 --- /dev/null +++ b/audio/few/02736.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be17b6821128b64434d2de479667f41ea3c16a8aa292f0c617ed21202a486447 +size 654756 diff --git a/audio/few/02743.wav b/audio/few/02743.wav new file mode 100644 index 0000000000000000000000000000000000000000..79825f75951283f622acae68083a3b45e0bcd02a --- /dev/null +++ b/audio/few/02743.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e829e932ababbc7f2407897b92e82ce4e83a2e1a82158f4593f2fcde819e2e74 +size 1289994 diff --git a/audio/few/02749.wav b/audio/few/02749.wav new file mode 100644 index 0000000000000000000000000000000000000000..238230c82787d031b7fb41f69e0fdb8bc2171a98 --- /dev/null +++ b/audio/few/02749.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41d785f8a91e1aef7ecb628fcb3687bd61b31e497f7019258ec866a9a3fa2558 +size 680702 diff --git a/audio/few/02751.wav b/audio/few/02751.wav new file mode 100644 index 0000000000000000000000000000000000000000..01822a720a9cf1f4fb37f5621bc1692063e6a240 --- /dev/null +++ b/audio/few/02751.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f28b93f1202963858fde44e2298b3b88badaa32ea6990d52e2a011e08dbdb237 +size 1189684 diff --git a/audio/few/02753.wav b/audio/few/02753.wav new file mode 100644 index 0000000000000000000000000000000000000000..9862f9ae83644fb457ad0c11e0091aea1880e52c --- /dev/null +++ b/audio/few/02753.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adff54cef99f7c0e750c44d38d2f0612aa670a9b9a7de4344f4e4ba33e452393 +size 903614 diff --git a/audio/few/02759.wav b/audio/few/02759.wav new file mode 100644 index 0000000000000000000000000000000000000000..350f9657e9241c28c68bf5b13f21732fb7360d39 --- /dev/null +++ b/audio/few/02759.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c903cbf6ffcf45054e247731a9a70791b00c04a182baf6f48aeb92750997118b +size 3134214 diff --git a/audio/few/02766.wav b/audio/few/02766.wav new file mode 100644 index 0000000000000000000000000000000000000000..88c3cf2c7c7fdd21eaee5acda47bdc26538f76b8 --- /dev/null +++ b/audio/few/02766.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f90bbed59021ccfdb5028b514d9f652a6b9a5c3ab02a4dd081dcdddae379061d +size 937050 diff --git a/audio/few/02768.wav b/audio/few/02768.wav new file mode 100644 index 0000000000000000000000000000000000000000..9c21cce0b54b2228592be3c17bf6dc97aa0d8c47 --- /dev/null +++ b/audio/few/02768.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bee2dc633bfbed721b31696bc67203d271bd9f27ae8ba359cd0f934865afeb06 +size 2996010 diff --git a/audio/few/02773.wav b/audio/few/02773.wav new file mode 100644 index 0000000000000000000000000000000000000000..212e2081f5ed63c5e9e302e5d0a7a48982e36ad6 --- /dev/null +++ b/audio/few/02773.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a75f2da813850bc4a4ea5145101257cd818878ea7511d71fa23edcf69d1a738c +size 1255814 diff --git a/audio/few/02778.wav b/audio/few/02778.wav new file mode 100644 index 0000000000000000000000000000000000000000..13d286b6ca76df1dacff18b6fcdc4e09a4a54dd8 --- /dev/null +++ b/audio/few/02778.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:904ca1adf0f36bbc7a85761970b89214013d690b480486fc32a297062be73e89 +size 801816 diff --git a/audio/few/02785.wav b/audio/few/02785.wav new file mode 100644 index 0000000000000000000000000000000000000000..00197d46c317e950be3c224c973d8b8af8bc8f4b --- /dev/null +++ b/audio/few/02785.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9930bad5137c96f83ae870921eb517f94b244e8471e4893b25a1c5b5ae243cc5 +size 1677116 diff --git a/audio/few/02802.wav b/audio/few/02802.wav new file mode 100644 index 0000000000000000000000000000000000000000..ec03ed736cfac82fc36f43e1000b73722137d451 --- /dev/null +++ b/audio/few/02802.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41c308b83400adc7b97c48927fb52e40329e42a79dbf4488e03be3b4418672e7 +size 6483832 diff --git a/audio/few/02817.wav b/audio/few/02817.wav new file mode 100644 index 0000000000000000000000000000000000000000..79faf43c7bf17dbad78cc756a634b9bd6f95acd3 --- /dev/null +++ b/audio/few/02817.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:939d0dd83befbda1a5f857eac399919eb1c71ee9f1587eed5dda1c8768a38c97 +size 786214 diff --git a/audio/few/02823.wav b/audio/few/02823.wav new file mode 100644 index 0000000000000000000000000000000000000000..a72c0422e5dea26dd0139aa34ba81b11dd2426cc --- /dev/null +++ b/audio/few/02823.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c47f58a9d74840538c3ec5d278f7c5e9b1732615ef563e358ae0b8bc6ad7f6 +size 2063496 diff --git a/audio/few/02828.wav b/audio/few/02828.wav new file mode 100644 index 0000000000000000000000000000000000000000..fcb2db3e7e8764d1462e0b613aec76f07818e618 --- /dev/null +++ b/audio/few/02828.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a918f515bc7f35e776acbe169565b7d67a7dbaa7e9f1e1b8e82a9cbc82069246 +size 813706 diff --git a/audio/few/02830.wav b/audio/few/02830.wav new file mode 100644 index 0000000000000000000000000000000000000000..3a83f392c93bf4b8d062f706153e3fcaffcb3ac1 --- /dev/null +++ b/audio/few/02830.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ff35351ddb20db9cfbd5aae6f4390750fc84860c197c02b2980d77b0d7d2bd5 +size 2486286 diff --git a/audio/few/02832.wav b/audio/few/02832.wav new file mode 100644 index 0000000000000000000000000000000000000000..aa1dccd8eda30bc7fd313bf65119a17496d92b7b --- /dev/null +++ b/audio/few/02832.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57a17335eda1f7c368e2acd63931f582da9f62157dad25c530c7ec0c5680df83 +size 1967644 diff --git a/audio/few/02837.wav b/audio/few/02837.wav new file mode 100644 index 0000000000000000000000000000000000000000..df5c48d05c939738b08f9c450f0f2b2b78e4c43f --- /dev/null +++ b/audio/few/02837.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4642c6618ff7c45703e57ffe03e11e078bedbcf006c90857b0db2c141c23b253 +size 1147330 diff --git a/audio/few/02848.wav b/audio/few/02848.wav new file mode 100644 index 0000000000000000000000000000000000000000..8589f579c7793a52c252d40c91dd964e096e79b9 --- /dev/null +++ b/audio/few/02848.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03a073cceac0931e90dccb9c4d7ae9d9d3e80919611a6962f3afa768be3a1269 +size 1710840 diff --git a/audio/few/02852.wav b/audio/few/02852.wav new file mode 100644 index 0000000000000000000000000000000000000000..5afc1b0669bb867e2e9796dabf612b4c8806fced --- /dev/null +++ b/audio/few/02852.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:138e99a203953ee4c1cdd89042ad7dcde9d88ad8b113edf04414dd94ce5b94d1 +size 714882 diff --git a/audio/few/02856.wav b/audio/few/02856.wav new file mode 100644 index 0000000000000000000000000000000000000000..4fa88a15ac1c4cdfc391214d090c1042817fdc3c --- /dev/null +++ b/audio/few/02856.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b758d2d0d5b3d38b6008c5889e5454cb05c373f809301468469696061dba0d3 +size 1817550 diff --git a/audio/few/02864.wav b/audio/few/02864.wav new file mode 100644 index 0000000000000000000000000000000000000000..cd9501bfd70954473a2259e1e203f970c8fdabc9 --- /dev/null +++ b/audio/few/02864.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be12d9a4f7768362acce9a57b06187d607a76a8d6e4cfa45c9ae048509c7e9ac +size 2090988 diff --git a/audio/few/02866.wav b/audio/few/02866.wav new file mode 100644 index 0000000000000000000000000000000000000000..c44fdcf9d6702e0f58f63a2b56f1943b9a16721b --- /dev/null +++ b/audio/few/02866.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52984d430e0852864f33f495c2773a827b374930af1091178c1983ab3df31eb7 +size 658410 diff --git a/audio/few/02867.wav b/audio/few/02867.wav new file mode 100644 index 0000000000000000000000000000000000000000..dc61b9cc36108a1713a22501539f3f4aa3583ef3 --- /dev/null +++ b/audio/few/02867.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37d9870444304e0b79907dcb4fd0cbb91fd70c1a6ed0139ae045ce56d10fcce1 +size 1068568 diff --git a/audio/few/02869.wav b/audio/few/02869.wav new file mode 100644 index 0000000000000000000000000000000000000000..5d26288893b9c5557f38bdc67e87a59b3e0f5e24 --- /dev/null +++ b/audio/few/02869.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c19b705627c4a77053359e2a83ed081838122a171f6b63c55b0d9e24ae429df3 +size 665840 diff --git a/audio/few/02881.wav b/audio/few/02881.wav new file mode 100644 index 0000000000000000000000000000000000000000..74caa67d427a69f3f2d7073e5bba641a0859b728 --- /dev/null +++ b/audio/few/02881.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a2ea5104edf1785bf10634448f4353507e72a329ae82f5951f86246f1cfa2a5 +size 1263244 diff --git a/audio/few/02883.wav b/audio/few/02883.wav new file mode 100644 index 0000000000000000000000000000000000000000..424359ebc014a1956fa5f196b79faac09dba6c7d --- /dev/null +++ b/audio/few/02883.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c75ef66dc762f5d752c6a7424fe577c9a47744c674118e55f64f63c925e11ff +size 1061880 diff --git a/audio/few/02885.wav b/audio/few/02885.wav new file mode 100644 index 0000000000000000000000000000000000000000..23a746b03eed20c331f7302595ad4c5f9a763b66 --- /dev/null +++ b/audio/few/02885.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b91a6af493cac421f446e68b1600802ab08e33186c22231d1866336891864d76 +size 989806 diff --git a/audio/few/02891.wav b/audio/few/02891.wav new file mode 100644 index 0000000000000000000000000000000000000000..23ccf1574223bc09d9424d59a9e90282a19a574b --- /dev/null +++ b/audio/few/02891.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:406429d1e12a65baf43646ae5f4b686f65cbf704257f31c8716fa3c922163c16 +size 748318 diff --git a/audio/few/02897.wav b/audio/few/02897.wav new file mode 100644 index 0000000000000000000000000000000000000000..0e9e603528e9e4c5a6a93b2723974f3004f115b2 --- /dev/null +++ b/audio/few/02897.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:943117f453b7c3466fec9b446c6552eda200b37cceb13d252224efb534550150 +size 2651240 diff --git a/audio/few/02899.wav b/audio/few/02899.wav new file mode 100644 index 0000000000000000000000000000000000000000..d1996d83bd7ff1b6b89eb30a8ed6f17e16c6276f --- /dev/null +++ b/audio/few/02899.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b21211934371220eebb810df322b9d7e5617c3866924c44a7341e6dd2fc9e9c +size 736430 diff --git a/audio/few/02901.wav b/audio/few/02901.wav new file mode 100644 index 0000000000000000000000000000000000000000..7f35df9ed54a8646b507dfb4c6dc792c1177050a --- /dev/null +++ b/audio/few/02901.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ac9af615d039921e9f564cc45ad266b6f87d451ed70ca39633571ea6bf65e34 +size 1345722 diff --git a/audio/few/02905.wav b/audio/few/02905.wav new file mode 100644 index 0000000000000000000000000000000000000000..827330301e755d6adae54046268de192b3c429b5 --- /dev/null +++ b/audio/few/02905.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ac0a7434b6a2f15b6fb5e47b090b5430f6545ffdc2c63003b9ed7928ec2a4be +size 647264 diff --git a/audio/few/02906.wav b/audio/few/02906.wav new file mode 100644 index 0000000000000000000000000000000000000000..b4c17b23d46bf3325cb7d8f54a513941331e90d5 --- /dev/null +++ b/audio/few/02906.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b83901543ea4bedf0876d81709176b20ed896fa31b4fc2efb3f8b648b5d31ed +size 695562 diff --git a/audio/few/02925.wav b/audio/few/02925.wav new file mode 100644 index 0000000000000000000000000000000000000000..f0120d469d67322d7b5cecb4f520b26ca8cb35fc --- /dev/null +++ b/audio/few/02925.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05077bf7295244b047d01f776789690883e1adf6d62c1e8f9b669d24c04432ed +size 904356 diff --git a/audio/few/02934.wav b/audio/few/02934.wav new file mode 100644 index 0000000000000000000000000000000000000000..846d6f3c0ed04bd0acf61d3b39d5babeb5ddc863 --- /dev/null +++ b/audio/few/02934.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79e4f49fcef9800804c734976e54d5c0f8c2a2d0d46d34687c634219f9060594 +size 1248384 diff --git a/audio/few/02942.wav b/audio/few/02942.wav new file mode 100644 index 0000000000000000000000000000000000000000..bc2437f72fb5c7c752b562bebe236e6583faa748 --- /dev/null +++ b/audio/few/02942.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f76ae464adf897113056eef76b86262c71478f8ec426be37042481e0f4eb2ad +size 1310056 diff --git a/audio/few/02944.wav b/audio/few/02944.wav new file mode 100644 index 0000000000000000000000000000000000000000..ad566581c6a2f3f3376134d7f5f3763458d647f5 --- /dev/null +++ b/audio/few/02944.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5450745062cae40728f10abca1d82d55596ebde62263ead4633db45fe26060c6 +size 645036 diff --git a/audio/few/02960.wav b/audio/few/02960.wav new file mode 100644 index 0000000000000000000000000000000000000000..fdbef55595e0fcf76611623c4d4cc714bb3469ee --- /dev/null +++ b/audio/few/02960.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:081d45a9d1c8a3fe082dc56ff2557c1a924bee768a588fcc21357224c8e753a6 +size 2851860 diff --git a/audio/few/02967.wav b/audio/few/02967.wav new file mode 100644 index 0000000000000000000000000000000000000000..db6367f0fdb3df713ccc2b873fc5a4a1818d54ff --- /dev/null +++ b/audio/few/02967.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbe6e31527cc333662428b21d96f67fde0c295d68226f1079591f7ee931fa17c +size 1855446 diff --git a/audio/few/02971.wav b/audio/few/02971.wav new file mode 100644 index 0000000000000000000000000000000000000000..c9ab78d12d3dfd2688b0deefab5e615d6ec110e6 --- /dev/null +++ b/audio/few/02971.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c89990a62739c785f8a8d2b9d24ac3339e74faf5c147a3b20b22366cd9e69ed2 +size 3169138 diff --git a/audio/few/02972.wav b/audio/few/02972.wav new file mode 100644 index 0000000000000000000000000000000000000000..cd92af727378e01e273bee1db2dbfbd0e0ffa81c --- /dev/null +++ b/audio/few/02972.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e5d99c631bc2d6a7357bc8d169af87ba0f6c01f94f2bce153d6b3bfd4644e3b +size 1469066 diff --git a/audio/few/02974.wav b/audio/few/02974.wav new file mode 100644 index 0000000000000000000000000000000000000000..8a441864660a9c60f97c231e51730eeea5baa0a6 --- /dev/null +++ b/audio/few/02974.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3b7b4559c9612508d01c8b590dd91b93c4cd0843b0b1f32ff13501aea182d5d +size 646522 diff --git a/audio/few/02976.wav b/audio/few/02976.wav new file mode 100644 index 0000000000000000000000000000000000000000..f31a058f2dbdab9649937405bf0223d6b9131165 --- /dev/null +++ b/audio/few/02976.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3afe5c36691c2b0892b9bfc7243495f64aebabe7063e25a86aa58b6b66d27879 +size 2687648 diff --git a/audio/few/02978.wav b/audio/few/02978.wav new file mode 100644 index 0000000000000000000000000000000000000000..285112029034820c3eb5ddd4b21b2a7e3deb8ae3 --- /dev/null +++ b/audio/few/02978.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fc5f85359220b8032dc07f51be62210741c6366fe846b6ac8055818752fcaed +size 1368756 diff --git a/audio/few/02984.wav b/audio/few/02984.wav new file mode 100644 index 0000000000000000000000000000000000000000..7ca8a7c7887aacb79a4c5b42537f2ca718e7509b --- /dev/null +++ b/audio/few/02984.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0e83e6ed2667312c9d0e13dc21be4bb910af5922970a781216b806ce33f0c44 +size 775810 diff --git a/audio/few/02985.wav b/audio/few/02985.wav new file mode 100644 index 0000000000000000000000000000000000000000..92c0749db863047c307cd61967348dd34b1f92c8 --- /dev/null +++ b/audio/few/02985.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0d14e55a3c28eba626ac6aafde9e416072e37b1b2f6de006572de888a1d4bd5 +size 914016 diff --git a/audio/few/02991.wav b/audio/few/02991.wav new file mode 100644 index 0000000000000000000000000000000000000000..97aa56b1aa7c7993b41bd36d4600fcf15fd68a51 --- /dev/null +++ b/audio/few/02991.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c7f3af2095175cdae78dc4bc77bc73bc279a411dc7f0b9ec42259bf02dcc375 +size 3958244 diff --git a/audio/few/02994.wav b/audio/few/02994.wav new file mode 100644 index 0000000000000000000000000000000000000000..67bcb4e05c5d0cef014dd16fe3be7a36e1c53980 --- /dev/null +++ b/audio/few/02994.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:238b99196423452599f66024cbfd9f228e0fa74a9be7470c013a0694dbc4c95f +size 1582750 diff --git a/audio/few/02995.wav b/audio/few/02995.wav new file mode 100644 index 0000000000000000000000000000000000000000..9c308896db8f02f00cd402678d045948b9d784d4 --- /dev/null +++ b/audio/few/02995.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c13955505ef0c64ff265696a3de6bcff7c4685e28952b020cb70ac91baa09064 +size 2613344 diff --git a/audio/few/03014.wav b/audio/few/03014.wav new file mode 100644 index 0000000000000000000000000000000000000000..cc4cb522dea7c19739bd77b504cbbef461582f69 --- /dev/null +++ b/audio/few/03014.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c53941414a4a882fbbe9be47e51771e0087cb9b54d11cfeda1c48625d8c258d7 +size 694076 diff --git a/audio/few/03022.wav b/audio/few/03022.wav new file mode 100644 index 0000000000000000000000000000000000000000..27f35bb3d85a8078db7eb76e9d775da3bb7c7d9f --- /dev/null +++ b/audio/few/03022.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eba00598e9a470507fa33d109cd032a97768feb6330043c742a1f6b2c81250e +size 795130 diff --git a/audio/few/03028.wav b/audio/few/03028.wav new file mode 100644 index 0000000000000000000000000000000000000000..5868a927131eba3cea3d79cdecf590e581f2ddb6 --- /dev/null +++ b/audio/few/03028.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cacba509932659c02f01d213e67700cc945b3dcd8c0cf171f10db486c3818f3 +size 1504732 diff --git a/audio/few/03043.wav b/audio/few/03043.wav new file mode 100644 index 0000000000000000000000000000000000000000..0f2991fc3201292333531493fd6488b0fb2be3c0 --- /dev/null +++ b/audio/few/03043.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59b478fcc82e6a40056618a56a6c9e0e7ca8bef258cd6eec4e3a4cc05b04a04b +size 854572 diff --git a/audio/few/03049.wav b/audio/few/03049.wav new file mode 100644 index 0000000000000000000000000000000000000000..bf3ab4b36d5feb9cb40a25afe7fcdb54983ec8ad --- /dev/null +++ b/audio/few/03049.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b61b41fcd4451bf9508f2578929b6b05f0ec847738fdef4aee66d18d74894ad +size 855460 diff --git a/audio/few/03054.wav b/audio/few/03054.wav new file mode 100644 index 0000000000000000000000000000000000000000..71ddfa3d90523f00906af4d455bacfaeffe3d7e5 --- /dev/null +++ b/audio/few/03054.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:778e5d516aabef6cb705affdd55379b46981f779b9df528fc112a86f57ca7941 +size 671042 diff --git a/audio/few/03055.wav b/audio/few/03055.wav new file mode 100644 index 0000000000000000000000000000000000000000..9dba8eab509fd06aa753fb7444041d485c1d21e9 --- /dev/null +++ b/audio/few/03055.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db844d759a6f482a803555d138cb096a25899de15bf2eab1081977610edd12e1 +size 2017428 diff --git a/audio/few/03062.wav b/audio/few/03062.wav new file mode 100644 index 0000000000000000000000000000000000000000..463f088ebd4a6e7de3b9311d684ff5c9e2ee2e59 --- /dev/null +++ b/audio/few/03062.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a90c07f3d8fbfca0ebfafc1eb673dfcd47f936be0241e10b26b872bc4094719 +size 2430558 diff --git a/audio/few/03064.wav b/audio/few/03064.wav new file mode 100644 index 0000000000000000000000000000000000000000..28ee67573222490c8e1901ace3adc82f595714e7 --- /dev/null +++ b/audio/few/03064.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:130cb942a0f09c286a392c58fd3fed65c064d71e80a392382adb25a309160335 +size 1281820 diff --git a/audio/few/03070.wav b/audio/few/03070.wav new file mode 100644 index 0000000000000000000000000000000000000000..42a576c3ce5645b5731f4c38180dafa268b36a57 --- /dev/null +++ b/audio/few/03070.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b1dd02d8a2c37b6b3d9840527ac8ac6dee83c33b27bffb48f343003fc925b5c +size 771352 diff --git a/audio/few/03075.wav b/audio/few/03075.wav new file mode 100644 index 0000000000000000000000000000000000000000..31a9bebde4c0cb17c2c1842e5dae82e97e7be46b --- /dev/null +++ b/audio/few/03075.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb85c22aea95c45f0c3bb4ce2ae405bcb58b6b9aff750a3e80c8d7b4a64ac535 +size 2264116 diff --git a/audio/few/03078.wav b/audio/few/03078.wav new file mode 100644 index 0000000000000000000000000000000000000000..f728d8d2a131465d35ff8be28fa0fc0d5128b305 --- /dev/null +++ b/audio/few/03078.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ef49f687892df5528ae889c4acc622ec35968059f9430ca68563c96d0a04e6a +size 1419282 diff --git a/audio/few/03129.wav b/audio/few/03129.wav new file mode 100644 index 0000000000000000000000000000000000000000..bdc5f210c16fd064a3815faa465211261c402354 --- /dev/null +++ b/audio/few/03129.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a2a136eae29a6f04b8ebb41a822ee8a60e8b21ffd479989452207af7712658e +size 649494 diff --git a/audio/few/03135.wav b/audio/few/03135.wav new file mode 100644 index 0000000000000000000000000000000000000000..64553bea4b14ea6de45f49f23b97221e25ca36e9 --- /dev/null +++ b/audio/few/03135.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab8f1b1a2fe5e764774bc24560e1ee03e4d6cc778800085b27c3e0ecfe9ef3fb +size 1573834 diff --git a/audio/few/03138.wav b/audio/few/03138.wav new file mode 100644 index 0000000000000000000000000000000000000000..46e3e21214c2de252f69df86bbde584fc26ee044 --- /dev/null +++ b/audio/few/03138.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7345ce62b3a3fd6ce54dfe043cc4625b1dbc52e6032fd1479e5ef9f60c1f246 +size 692590 diff --git a/audio/many/00004.wav b/audio/many/00004.wav new file mode 100644 index 0000000000000000000000000000000000000000..76af69c55d33a22b8f51306a2a93df4e9d63fcde --- /dev/null +++ b/audio/many/00004.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd28cadefd2e5e1c1255e938bc2ea2a32ddb426a0c7f7603ad5d51a7f3038f7e +size 881322 diff --git a/audio/many/00008.wav b/audio/many/00008.wav new file mode 100644 index 0000000000000000000000000000000000000000..46f14b1ba2009a5e98cb5318035230f154acc391 --- /dev/null +++ b/audio/many/00008.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:565168a5ec0f6f2f73354064183192e659afe21b4b81641be4bffae2b042add6 +size 969744 diff --git a/audio/many/00025.wav b/audio/many/00025.wav new file mode 100644 index 0000000000000000000000000000000000000000..df88f671935081ce42439512b5481f255af126a5 --- /dev/null +++ b/audio/many/00025.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86c350eb6a7b3bf59c529e98e271920801facaaeef6a347ac95420df5f6ba2fa +size 705222 diff --git a/audio/many/00055.wav b/audio/many/00055.wav new file mode 100644 index 0000000000000000000000000000000000000000..ba129ae4dbfb0facd523f0baa76630a6d60ca859 --- /dev/null +++ b/audio/many/00055.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7d5c543719eddf09c2b82d163286fb7d337dab31d0d02a803c86add2c6273b3 +size 724540 diff --git a/audio/many/00059.wav b/audio/many/00059.wav new file mode 100644 index 0000000000000000000000000000000000000000..9701d1ec8df61843a8c0742257733ffb2e52e6de --- /dev/null +++ b/audio/many/00059.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:038328e9f056253cd2d5ab6e198fcf57a898969a5e8c3f72f415edf6c102982b +size 1083428 diff --git a/audio/many/00070.wav b/audio/many/00070.wav new file mode 100644 index 0000000000000000000000000000000000000000..5bf640182b397923c1dec2b752bffdfb70b957c9 --- /dev/null +++ b/audio/many/00070.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bc0703fe9b7d0b13afee72474a8e7f8efa3b4cdf42c0e67e524db4ed17777d6 +size 697048 diff --git a/audio/many/00077.wav b/audio/many/00077.wav new file mode 100644 index 0000000000000000000000000000000000000000..6d6a3182d0fcaaeb550728e0be43e8e9dd849030 --- /dev/null +++ b/audio/many/00077.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e6856315c4c69ef7ebd27e7d4b9c412639a407f854e3de0043f2f4aadbc5ea6 +size 2264860 diff --git a/audio/many/00128.wav b/audio/many/00128.wav new file mode 100644 index 0000000000000000000000000000000000000000..9f4a133aa0b3817a227097b7448d0b7ff7a3d950 --- /dev/null +++ b/audio/many/00128.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06e1f1afcc5f89215ef1d560cb2f5bb5895a9d23f2f6a89331b0f72fba78c3ee +size 1037360 diff --git a/audio/many/00131.wav b/audio/many/00131.wav new file mode 100644 index 0000000000000000000000000000000000000000..2f4efad68ae2344caba2dd04bebcb06d3bef9004 --- /dev/null +++ b/audio/many/00131.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a430fb5fe6416e2ed87c1c313419063c42bbb9d049a67c3eddbd589f9fac3405 +size 717110 diff --git a/audio/many/00162.wav b/audio/many/00162.wav new file mode 100644 index 0000000000000000000000000000000000000000..9d5bb45ac04d40dd0244a2825523ff226cb62258 --- /dev/null +++ b/audio/many/00162.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1669ea0e1ec147003b87b1e928e48771098b7308a5672d182481fa5ee1e9ddeb +size 801074 diff --git a/audio/many/00170.wav b/audio/many/00170.wav new file mode 100644 index 0000000000000000000000000000000000000000..b09d3a9ce3e47d0bbb08c9d27cb2bdd1c8a5bd9d --- /dev/null +++ b/audio/many/00170.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c169fbb0d615b57504a9eec314907e0067493c07d8d9f9a4d68fad8c5e84691 +size 1421512 diff --git a/audio/many/00179.wav b/audio/many/00179.wav new file mode 100644 index 0000000000000000000000000000000000000000..41bce0b3cce09d22ab00de6a664c1714291f77c7 --- /dev/null +++ b/audio/many/00179.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a93206099672641d0b10b0fbff5e5686f49b57f1c350f178c54fdbba6b32e4b7 +size 836740 diff --git a/audio/many/00206.wav b/audio/many/00206.wav new file mode 100644 index 0000000000000000000000000000000000000000..adaed0bda455ca846322d636379e833d3d20d0ab --- /dev/null +++ b/audio/many/00206.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae89b66b9251a330cdd03f3f889561409a9b48615ad8534838dfc450bf197c28 +size 38400310 diff --git a/audio/many/00248.wav b/audio/many/00248.wav new file mode 100644 index 0000000000000000000000000000000000000000..f54851d533c1496879da77424aced4979df96c66 --- /dev/null +++ b/audio/many/00248.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d5b5be143047d1107af24c62140dedb686717aaeec10e6ffd2be3f9288ce49e +size 1100518 diff --git a/audio/many/00254.wav b/audio/many/00254.wav new file mode 100644 index 0000000000000000000000000000000000000000..3b0b17ad362f843ae6a70a57d440e8eeae9376c6 --- /dev/null +++ b/audio/many/00254.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4164de6bf19b4e5917b2ea84152b86df422c6acc8e5b3d1d1ca2fe86012e42cf +size 690254 diff --git a/audio/many/00269.wav b/audio/many/00269.wav new file mode 100644 index 0000000000000000000000000000000000000000..c5d6ae11e9faac106b000b2a41d950de8200e75f --- /dev/null +++ b/audio/many/00269.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e71d6315a6919cd4f0d9b7a4d7f50d01736daab332937b4b6e5d1bde6f188ba9 +size 1130984 diff --git a/audio/many/00340.wav b/audio/many/00340.wav new file mode 100644 index 0000000000000000000000000000000000000000..693a4f8eed30d324f4c4bf3ffe2c62164e0f5259 --- /dev/null +++ b/audio/many/00340.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17599441d863587213e023763519f40f933dcf89f2df66008eb83bc27c1e8cf9 +size 1582750 diff --git a/audio/many/00392.wav b/audio/many/00392.wav new file mode 100644 index 0000000000000000000000000000000000000000..5160c18504e3b5dd432d341d6817f116ea5083ed --- /dev/null +++ b/audio/many/00392.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e43c209ef9a573041e431ed159f2c04a3714dccd36bc1af773c1ba971ac14e3e +size 2701024 diff --git a/audio/many/00398.wav b/audio/many/00398.wav new file mode 100644 index 0000000000000000000000000000000000000000..1e04a0dea3f27c8d1b3322e18a84e40797b5a479 --- /dev/null +++ b/audio/many/00398.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9c87d5981fa8c9ee905aa07e3c9a1a82a442b4a2b5f60c7a42e7111de264db0 +size 993520 diff --git a/audio/many/00401.wav b/audio/many/00401.wav new file mode 100644 index 0000000000000000000000000000000000000000..70e3ca6c17e9ce2d50c5c2e1695a1d0453b55f62 --- /dev/null +++ b/audio/many/00401.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bf5468b9136d77c36a50ae57b6dc6237c17b44cb5454e6c7b070526e7840d66 +size 942252 diff --git a/audio/many/00417.wav b/audio/many/00417.wav new file mode 100644 index 0000000000000000000000000000000000000000..7c6430bf8d65ac5f98dccc912d28e9efa93d2dbd --- /dev/null +++ b/audio/many/00417.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dc57ecf7a23e78fa05a66e7d9e6921d22694d35039619e8a93bd06109b94cae +size 1769996 diff --git a/audio/many/00429.wav b/audio/many/00429.wav new file mode 100644 index 0000000000000000000000000000000000000000..559fd6b07c89fc8e4daca1f744bf856534533d93 --- /dev/null +++ b/audio/many/00429.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:185e8b32e98cb7b5c34daaa9d395b43f117786f84f0ffb4e877d1a6bf8276a06 +size 1087886 diff --git a/audio/many/00430.wav b/audio/many/00430.wav new file mode 100644 index 0000000000000000000000000000000000000000..376555be7bd259d441092f310d590489113953b5 --- /dev/null +++ b/audio/many/00430.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad32a96d13ff9d58c14eb119a408e79cb391ef997338ec972cb3f056973cb71c +size 1796002 diff --git a/audio/many/00443.wav b/audio/many/00443.wav new file mode 100644 index 0000000000000000000000000000000000000000..c92976ec18f4121a80d275f191a99d84ba2dbb57 --- /dev/null +++ b/audio/many/00443.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78007f3a7d9ac251e88afa9ba67982281ead426120fe491719faf3160323e99e +size 1142872 diff --git a/audio/many/00471.wav b/audio/many/00471.wav new file mode 100644 index 0000000000000000000000000000000000000000..09e9c6377883aa8d53cb2f916f20c860bce58037 --- /dev/null +++ b/audio/many/00471.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc79476e0d71153d3c49d9acd4217fe2cb2e451c47b6a0c8b6b4f431aeb291c6 +size 1223862 diff --git a/audio/many/00523.wav b/audio/many/00523.wav new file mode 100644 index 0000000000000000000000000000000000000000..15967933b19295ff5ad6a28e958a3d7fc9af7f64 --- /dev/null +++ b/audio/many/00523.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4124c96109b49a934f7ff6aea0ec5af18f24ed72cf0a363c0a8ed96e81ff76e +size 1191170 diff --git a/audio/many/00548.wav b/audio/many/00548.wav new file mode 100644 index 0000000000000000000000000000000000000000..86a13ba7e67c5b8c3056c6cc10a143cb79f4cec2 --- /dev/null +++ b/audio/many/00548.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91c37247c88ff8c38b63b8cf98272352c4807003d480bbc3db5ffb0d74fd6217 +size 3749450 diff --git a/audio/many/00554.wav b/audio/many/00554.wav new file mode 100644 index 0000000000000000000000000000000000000000..03f1fe36055aa9d83f986533992d3794c2dfa6d2 --- /dev/null +++ b/audio/many/00554.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a138b6e1af3e041a2a63375fbaf17a35a02dc6ab8d48b86efe69db762a72e8f +size 746832 diff --git a/audio/many/00600.wav b/audio/many/00600.wav new file mode 100644 index 0000000000000000000000000000000000000000..70fd7cfd0e48c319d8c6134491eff55f64ea94ea --- /dev/null +++ b/audio/many/00600.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad955eaaf8389d689815289a024ef98d153b6f4b1e1ebac2c1932342ec9a7c24 +size 1069310 diff --git a/audio/many/00616.wav b/audio/many/00616.wav new file mode 100644 index 0000000000000000000000000000000000000000..26de4914ab5cc06a8826343a1fae75e26420799a --- /dev/null +++ b/audio/many/00616.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2edf1693199f1666f4cb88a9ab40d82af7473f47806fef3010cc7d406e0ea352 +size 1582008 diff --git a/audio/many/00646.wav b/audio/many/00646.wav new file mode 100644 index 0000000000000000000000000000000000000000..d313f7adebfcbda806fd2b7556ebbdd9fb41d634 --- /dev/null +++ b/audio/many/00646.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27466d4b0e54d156b5d4664735709b78479369f81b95d61cc95224e7fcf9c693 +size 4555648 diff --git a/audio/many/00656.wav b/audio/many/00656.wav new file mode 100644 index 0000000000000000000000000000000000000000..cf15da21cd431e06b5b411776ad19cec55c7d7ed --- /dev/null +++ b/audio/many/00656.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a306fa2a17aa70f084c0d5cfb01bc79ef303ae02c73a088e6b85010a00820f3b +size 671042 diff --git a/audio/many/00663.wav b/audio/many/00663.wav new file mode 100644 index 0000000000000000000000000000000000000000..96289dfa63e20a67ad6d2dd3a999e04799565d87 --- /dev/null +++ b/audio/many/00663.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0b2e7d727b8993c7cab4586d81195031480d3b491f92ad532bfb969a4261070 +size 1468322 diff --git a/audio/many/00678.wav b/audio/many/00678.wav new file mode 100644 index 0000000000000000000000000000000000000000..ccac94cecfb9f594134e42642719ef30f2829e9d --- /dev/null +++ b/audio/many/00678.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfbef67cd3675af83e8e3020b8b3ac2d960149642a39ed6669e0b105a6ea1984 +size 674014 diff --git a/audio/many/00692.wav b/audio/many/00692.wav new file mode 100644 index 0000000000000000000000000000000000000000..9544ca39518b2ba77a4f7d214a1e2dba11a3a24e --- /dev/null +++ b/audio/many/00692.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cc6a482ce87904c46380db099d3d5d61c01042f47c5e0d6f1eb790df67b344f +size 746832 diff --git a/audio/many/00714.wav b/audio/many/00714.wav new file mode 100644 index 0000000000000000000000000000000000000000..971cea3116d7a8cb61e38724d09a4bd324315460 --- /dev/null +++ b/audio/many/00714.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fbc064443de37fe47cf87588b25aa7dc6641b253cee2044bffd7b5097ad034e +size 2934338 diff --git a/audio/many/00721.wav b/audio/many/00721.wav new file mode 100644 index 0000000000000000000000000000000000000000..02d78c5229b2ae99672d0b78fa8e1c230900ba76 --- /dev/null +++ b/audio/many/00721.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6541bec78895735d00f71134bbb85d6b3d6b97b337c35e1bce09828505994bc8 +size 3928524 diff --git a/audio/many/00727.wav b/audio/many/00727.wav new file mode 100644 index 0000000000000000000000000000000000000000..d8b491a5791acb63d54c63fbc8576474ade1c5c0 --- /dev/null +++ b/audio/many/00727.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b72f72350bedfdf4a4ac04d8b3554a16e6cca500e7077fd6ad665778324b2a4 +size 1978790 diff --git a/audio/many/00746.wav b/audio/many/00746.wav new file mode 100644 index 0000000000000000000000000000000000000000..9269ecf87976153d61953c324c83885e7a2f4c71 --- /dev/null +++ b/audio/many/00746.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d06108084be6bb29f90190e824e1c322aed9db534fea7367a8315b1ffcd8e39 +size 827080 diff --git a/audio/many/00760.wav b/audio/many/00760.wav new file mode 100644 index 0000000000000000000000000000000000000000..c989e377e7c98262fd6cbe7de5cad614917297d1 --- /dev/null +++ b/audio/many/00760.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef015afafb56018a7b3d371819626c5bcefe090aeecc813a96ff9001f3a08774 +size 1297424 diff --git a/audio/many/00769.wav b/audio/many/00769.wav new file mode 100644 index 0000000000000000000000000000000000000000..3a25c5fa9b9f674eedcd9851659a67c416264aad --- /dev/null +++ b/audio/many/00769.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ac351713b8549a759c93595bf251bf608d58c33d29f66ef388a1bb5eb5a03 +size 2399350 diff --git a/audio/many/00776.wav b/audio/many/00776.wav new file mode 100644 index 0000000000000000000000000000000000000000..96630b1bfa329d1b65791bbb11c3bca30dae7df7 --- /dev/null +++ b/audio/many/00776.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c86fe0bff139ddba60a6f5f671810138f7afec86e92e060ceb671c53b4ef2047 +size 1191912 diff --git a/audio/many/00777.wav b/audio/many/00777.wav new file mode 100644 index 0000000000000000000000000000000000000000..e8cc50325960b107b382aee4a36fa7646207af78 --- /dev/null +++ b/audio/many/00777.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8197e06bd67ea09a7bc20a3c7afb5cc32c020ad53b125cc9cfe1fd002c8c65c6 +size 748318 diff --git a/audio/many/00780.wav b/audio/many/00780.wav new file mode 100644 index 0000000000000000000000000000000000000000..e2dff248d07b3e0a67c4858289a78bf3cd374800 --- /dev/null +++ b/audio/many/00780.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f287528273a7d08f4a80a0ed6bdd57236e31faa789af7162227b71bad6d3616b +size 838968 diff --git a/audio/many/00783.wav b/audio/many/00783.wav new file mode 100644 index 0000000000000000000000000000000000000000..d6834d932bf53c5dc9baeba8f5bbc9a81f1adf86 --- /dev/null +++ b/audio/many/00783.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21372b8b527492aa8c093c0252ec212cf04247177eb09898b81dd041e69d8fb1 +size 830052 diff --git a/audio/many/00816.wav b/audio/many/00816.wav new file mode 100644 index 0000000000000000000000000000000000000000..c3516ab8cbfdb1f2b2bf2a57f1df66941cd20ccb --- /dev/null +++ b/audio/many/00816.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be7e106a13d36b74649ea9ae75a6975b8b2b8b7aa68cb5d465d28bff5991b3f9 +size 4235398 diff --git a/audio/many/00820.wav b/audio/many/00820.wav new file mode 100644 index 0000000000000000000000000000000000000000..b6d6ede66c40a1356cb6edd8694131b1c2532e04 --- /dev/null +++ b/audio/many/00820.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c79bd344b0e5cd7dccfe7202dae3b634cd2036903e72df6c11acee3f8a988a5d +size 977174 diff --git a/audio/many/00823.wav b/audio/many/00823.wav new file mode 100644 index 0000000000000000000000000000000000000000..e08385b0713bb3bcd88cdb7c600061cc8d455a6c --- /dev/null +++ b/audio/many/00823.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a35208ca36a246001adf38cde51baa468b6eae10a28c55c789a4b93d6da8928a +size 718596 diff --git a/audio/many/00840.wav b/audio/many/00840.wav new file mode 100644 index 0000000000000000000000000000000000000000..bf85d4d7d6ea5e4f4a98dfde825bd6b330f0270e --- /dev/null +++ b/audio/many/00840.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a364b3f4defb4e0eeb844f8a61fdd6573bf5f76abf5c6a6e728e19156f21786c +size 3097806 diff --git a/audio/many/00841.wav b/audio/many/00841.wav new file mode 100644 index 0000000000000000000000000000000000000000..d17cf2c9cd57168277ad05db770d2d154d3b099e --- /dev/null +++ b/audio/many/00841.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ef9f0f82b88d050159615ecf81fc674df7bf80bacc280f06803341695524584 +size 2391920 diff --git a/audio/many/00877.wav b/audio/many/00877.wav new file mode 100644 index 0000000000000000000000000000000000000000..c5744fa6942b9867f74e51d31beda112f03a4776 --- /dev/null +++ b/audio/many/00877.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49e52e5568cafa43576ef3f9601303c1239d8ea44d7728940d6f1137b2e25635 +size 1373214 diff --git a/audio/many/00884.wav b/audio/many/00884.wav new file mode 100644 index 0000000000000000000000000000000000000000..09ea8ba546983826bcf17face8a3690a56c12ecc --- /dev/null +++ b/audio/many/00884.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42c7388907e9db778ab7f9ac6123ca542a5b5619d462702202a5b04568b16ad4 +size 26600116 diff --git a/audio/many/00906.wav b/audio/many/00906.wav new file mode 100644 index 0000000000000000000000000000000000000000..acf488526a4b71636620437aaa401d205b6a73f1 --- /dev/null +++ b/audio/many/00906.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:688d14f3b0c870012b024aa3652643f502dfd22fb24c0269990a9ec0d235244a +size 849372 diff --git a/audio/many/00913.wav b/audio/many/00913.wav new file mode 100644 index 0000000000000000000000000000000000000000..289b84a0bc3e527097bb50e25820612131c750dc --- /dev/null +++ b/audio/many/00913.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c049e7ce4b48a2005a03a9c949dd8cdb134850f9d9ce4572a298a6fd71322b1 +size 746832 diff --git a/audio/many/00919.wav b/audio/many/00919.wav new file mode 100644 index 0000000000000000000000000000000000000000..06e225ba74cd7e458ee7f22f14bc96d2154bf247 --- /dev/null +++ b/audio/many/00919.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:529a1a07f5edb1bca430d29dee8b03ef57e279e300163e124ddd810af5d48630 +size 2959600 diff --git a/audio/many/00927.wav b/audio/many/00927.wav new file mode 100644 index 0000000000000000000000000000000000000000..feea68c7ca699e8e5a982e41f68d2efa8db860f0 --- /dev/null +++ b/audio/many/00927.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfd161dd4fa45b9bde1962f79659d963860eb4d5cca01066300a153578538cfa +size 8944034 diff --git a/audio/many/00934.wav b/audio/many/00934.wav new file mode 100644 index 0000000000000000000000000000000000000000..fd9bcd3d804cfaa0ec6b3ee125c9efabcc1eca37 --- /dev/null +++ b/audio/many/00934.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ceb5d58c572e25428c2a7fb03c3033d69f21dfd17cc2922cc3fc900ee119ab8 +size 1136184 diff --git a/audio/many/00935.wav b/audio/many/00935.wav new file mode 100644 index 0000000000000000000000000000000000000000..6ad8eae3c65341065c482db5c5cc4485f5a95df9 --- /dev/null +++ b/audio/many/00935.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc039dd46c65840c81bfacd53d996c0b2301cb8caa1f6cee37f69da1ef328b0a +size 1184482 diff --git a/audio/many/00938.wav b/audio/many/00938.wav new file mode 100644 index 0000000000000000000000000000000000000000..6175d715d5ea6bd769856685bc1a28aa281cb505 --- /dev/null +++ b/audio/many/00938.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11e244ef8a7f845b61152ec6f41c3a6de987a8d65b3da47794cd3c463a4613d9 +size 3004926 diff --git a/audio/many/00939.wav b/audio/many/00939.wav new file mode 100644 index 0000000000000000000000000000000000000000..cd95bb62ff7f94530d31af0faaacb09106829d89 --- /dev/null +++ b/audio/many/00939.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36dc03fb0448cca76c08b6e36ef396533e3b20eaf3d5be246964bbfccf10e138 +size 1197114 diff --git a/audio/many/00978.wav b/audio/many/00978.wav new file mode 100644 index 0000000000000000000000000000000000000000..e6584c48b038ada389dac5f0aa4084156dfacc13 --- /dev/null +++ b/audio/many/00978.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc4b8a7cc6cf8802445b42032cb6f3165f58cc1483fd07db594e63c8e26c9ba9 +size 1853960 diff --git a/audio/many/00990.wav b/audio/many/00990.wav new file mode 100644 index 0000000000000000000000000000000000000000..447de14c5ca43531dbfff1c853fbf0faa9dc3cbc --- /dev/null +++ b/audio/many/00990.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4612262d9ed833c3da1ee3b429d9e5d94fcc35b6dc1d05ef75eaf7a735c72609 +size 801074 diff --git a/audio/many/01003.wav b/audio/many/01003.wav new file mode 100644 index 0000000000000000000000000000000000000000..661914c76537dd38494bb5ebc93043c37b7b041e --- /dev/null +++ b/audio/many/01003.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41a5f3470aa90258d169044eec0eb2aa1cf9c21e5acfa268187a38a181b3955b +size 2037490 diff --git a/audio/many/01008.wav b/audio/many/01008.wav new file mode 100644 index 0000000000000000000000000000000000000000..ab7013a20c66b7966d8bac07139fdbb9406ed6e9 --- /dev/null +++ b/audio/many/01008.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9cca0b2d6535a580beb9c14a02c86ef59f5589e1896f7331ad4b936587081c8 +size 729742 diff --git a/audio/many/01011.wav b/audio/many/01011.wav new file mode 100644 index 0000000000000000000000000000000000000000..afc2e6e1f9a3e49771a9579b2d09ae034ebcdf54 --- /dev/null +++ b/audio/many/01011.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaefab726f3d09ce0238fb103f73744b570d17e708efa64459335f3b6e817f81 +size 1142128 diff --git a/audio/many/01012.wav b/audio/many/01012.wav new file mode 100644 index 0000000000000000000000000000000000000000..da18c8deaf66336da179da2a2b0a4d6cb3f8b2f0 --- /dev/null +++ b/audio/many/01012.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc609872ca29aafddb06da9c2bc48287d40bef0fef79961a38e93430d16828d3 +size 821136 diff --git a/audio/many/01036.wav b/audio/many/01036.wav new file mode 100644 index 0000000000000000000000000000000000000000..e5798e8ce5dde3da93c896378422bfe39117c402 --- /dev/null +++ b/audio/many/01036.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23cac9cbde943d61f52eeb17b3b7b0ed6908ac2e17c686c8d04eb30588e5e948 +size 1800460 diff --git a/audio/many/01039.wav b/audio/many/01039.wav new file mode 100644 index 0000000000000000000000000000000000000000..5e43f1fe46ff2772e9aaf7eeb8b6b0c86145e6bc --- /dev/null +++ b/audio/many/01039.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f392975e41c4ea4d2f9250a2dcf16f532855446f1918763121c0c16f00be9cfc +size 1269188 diff --git a/audio/many/01065.wav b/audio/many/01065.wav new file mode 100644 index 0000000000000000000000000000000000000000..54e19ab3893a4b032e37cadd214a73374a3187ab --- /dev/null +++ b/audio/many/01065.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3b069682f4673fc83cb2d591022c1e056dc14a31a61b0ae903c68d243adf6b5 +size 26666988 diff --git a/audio/many/01067.wav b/audio/many/01067.wav new file mode 100644 index 0000000000000000000000000000000000000000..ca6a0a3789f119adddab887c222bc839d81e76bc --- /dev/null +++ b/audio/many/01067.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfed483d112f5de29e948dfdc1453bf5d5d32f0bce0bd216ac10ea9302364c8b +size 3072542 diff --git a/audio/many/01068.wav b/audio/many/01068.wav new file mode 100644 index 0000000000000000000000000000000000000000..e08385b0713bb3bcd88cdb7c600061cc8d455a6c --- /dev/null +++ b/audio/many/01068.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a35208ca36a246001adf38cde51baa468b6eae10a28c55c789a4b93d6da8928a +size 718596 diff --git a/audio/many/01097.wav b/audio/many/01097.wav new file mode 100644 index 0000000000000000000000000000000000000000..cfabf3c3e4a887596b2e89566d11dd3c5600e103 --- /dev/null +++ b/audio/many/01097.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d6bd307e956c32a445efa13211e207ffad6976cf41b177cf7a6be21a88446d0 +size 1257300 diff --git a/audio/many/01104.wav b/audio/many/01104.wav new file mode 100644 index 0000000000000000000000000000000000000000..fe6813bb876c856f49d928f7ea8223a801c13ddf --- /dev/null +++ b/audio/many/01104.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c2f20fa7fb41bee0bc800aeacea63200b1c789dd1417d4ebf55cc519c0a8a84 +size 2913532 diff --git a/audio/many/01111.wav b/audio/many/01111.wav new file mode 100644 index 0000000000000000000000000000000000000000..a53ada3b2f37f2a7786764c85be7e7dc6e8993a3 --- /dev/null +++ b/audio/many/01111.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a946bd418387d7b587f60832966efb79a40c20e949183c44851d626493071be5 +size 761692 diff --git a/audio/many/01112.wav b/audio/many/01112.wav new file mode 100644 index 0000000000000000000000000000000000000000..3e8cfec54921cc6d5b6cb48ca60144ee48b033d8 --- /dev/null +++ b/audio/many/01112.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44f1ab5ec8e7f41762b30ff81ef5ca586822d9fc7027b0bd762e27723ca5ee2f +size 1092346 diff --git a/audio/many/01118.wav b/audio/many/01118.wav new file mode 100644 index 0000000000000000000000000000000000000000..9a624ec57d687ff58ebddf95b1a6b20de8c41447 --- /dev/null +++ b/audio/many/01118.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c721972d3719c18acfc1ec7497565ced4bbcc590f60d2046a11bc01753001d55 +size 3080270 diff --git a/audio/many/01151.wav b/audio/many/01151.wav new file mode 100644 index 0000000000000000000000000000000000000000..a9445332e7c40d026261e2849ef084fbb280b603 --- /dev/null +++ b/audio/many/01151.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aad71e4720795c06d5d7e9f52bcc5c01c6742c381b98d9b3d762dc07ea37bc5b +size 38400310 diff --git a/audio/many/01166.wav b/audio/many/01166.wav new file mode 100644 index 0000000000000000000000000000000000000000..93c2827c56e7da0a92cf596d8bd49b9be59e5ea1 --- /dev/null +++ b/audio/many/01166.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:068ccb3fe8e4dc067bf33be5035face5b3fdfc8ffe69052d4edabc1d2f8e8094 +size 1471294 diff --git a/audio/many/01219.wav b/audio/many/01219.wav new file mode 100644 index 0000000000000000000000000000000000000000..17a62bf6bbac22bd47d4bcc20576db5e51292497 --- /dev/null +++ b/audio/many/01219.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df29ac6de350a5bc4500f1df162e90f804270e08ad498e5ebb3f81746da5f2ac +size 844914 diff --git a/audio/many/01242.wav b/audio/many/01242.wav new file mode 100644 index 0000000000000000000000000000000000000000..337c0215abd0abe31b5d37053b4fc9c4b7fe2518 --- /dev/null +++ b/audio/many/01242.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6feedcc74f3b645bf712c00f2972ba7e93349809b91577566c18dcdfbd9b715 +size 3179540 diff --git a/audio/many/01247.wav b/audio/many/01247.wav new file mode 100644 index 0000000000000000000000000000000000000000..7a2c51ae6b823bec514986741f16b73bd8649495 --- /dev/null +++ b/audio/many/01247.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4024db54a4c330e7834bbf179470db209b1e40e5807be78c0f7e5aed2f3fe1ad +size 781012 diff --git a/audio/many/01253.wav b/audio/many/01253.wav new file mode 100644 index 0000000000000000000000000000000000000000..c0f5656dec9e4b243e3adb972ef301c08c257e47 --- /dev/null +++ b/audio/many/01253.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59c271256847090457bffbfe15f178c8942860538cf4ff09c730f4674a26b372 +size 1129496 diff --git a/audio/many/01261.wav b/audio/many/01261.wav new file mode 100644 index 0000000000000000000000000000000000000000..e0bbc74e05109c0e887cad898d9b453c933645b4 --- /dev/null +++ b/audio/many/01261.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6f313eb17bf4fe6cea253789e40ad3da90aedf9bbd9182ec492426fc32ac6f0 +size 656182 diff --git a/audio/many/01265.wav b/audio/many/01265.wav new file mode 100644 index 0000000000000000000000000000000000000000..bfff7f59011a8b6818280fcb27bd30226a7bfe53 --- /dev/null +++ b/audio/many/01265.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccb3f260102c28f834f95c9584045c5b39ae0c742fa7ef98c5ec395df6b952a4 +size 6698570 diff --git a/audio/many/01267.wav b/audio/many/01267.wav new file mode 100644 index 0000000000000000000000000000000000000000..d360a4c727d1db928fdd4e9fcf2c34a44ea419bf --- /dev/null +++ b/audio/many/01267.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c5280ffc6664e11b362d06a65cb602f79f32d241641b0143d817c7b5ae3e409 +size 948938 diff --git a/audio/many/01337.wav b/audio/many/01337.wav new file mode 100644 index 0000000000000000000000000000000000000000..42f870b30930e428d9dc9f31865b859e17edd00b --- /dev/null +++ b/audio/many/01337.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f2f15b7570502803c65ef756a1dfcdecc1ca4697f2f3c7a09e9d3aa8e18886 +size 1770740 diff --git a/audio/many/01340.wav b/audio/many/01340.wav new file mode 100644 index 0000000000000000000000000000000000000000..799be131c10207131ddc3dc11b39eeb1e5a174ba --- /dev/null +++ b/audio/many/01340.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6096fe794bd3d88a1d7dcdeffd271cb565bba210bcca40b15166e67352e96e59 +size 793644 diff --git a/audio/many/01345.wav b/audio/many/01345.wav new file mode 100644 index 0000000000000000000000000000000000000000..2a3132b9981e45b3bb111c756d672a533a32cb33 --- /dev/null +++ b/audio/many/01345.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04b1d6ac60b4957db6eda27a2ddc732f03c421a3516a9fc35d01fa8ebcb7304f +size 1233522 diff --git a/audio/many/01368.wav b/audio/many/01368.wav new file mode 100644 index 0000000000000000000000000000000000000000..a3bb0c922235dbdf4157a5d8d3cc01e061cdee81 --- /dev/null +++ b/audio/many/01368.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bccd1eff1e89a8cca208abc3237206af7cd70c3e8b8c2a0c790bfa610dc027fd +size 1980276 diff --git a/audio/many/01372.wav b/audio/many/01372.wav new file mode 100644 index 0000000000000000000000000000000000000000..96e798d3387bb6c3401daf152307249474b630b3 --- /dev/null +++ b/audio/many/01372.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:748495d91985a27420dff50c15bcef8757a8ae1beca9854311c0feaf794bc650 +size 2349566 diff --git a/audio/many/01434.wav b/audio/many/01434.wav new file mode 100644 index 0000000000000000000000000000000000000000..4deed4452cdde091cf8324761187b112dcce5f37 --- /dev/null +++ b/audio/many/01434.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7a2b0e27694990f8c2415db157692501dd19fbdc682910bf7458008f6563b22 +size 685160 diff --git a/audio/many/01458.wav b/audio/many/01458.wav new file mode 100644 index 0000000000000000000000000000000000000000..fd6c12a259f8da4b0e78f6842fac50d9520c55be --- /dev/null +++ b/audio/many/01458.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7142a0c2347de29d4433b7737b28825fa5d7bf50a1f4f7116b083bccad5c60a +size 663612 diff --git a/audio/many/01461.wav b/audio/many/01461.wav new file mode 100644 index 0000000000000000000000000000000000000000..a736182d64cbad46aabf6023a07016ef2df8c026 --- /dev/null +++ b/audio/many/01461.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66817a19196e46a39ffee1e2f3ea452370451047f0b4d0d122d9acd71a950601 +size 643550 diff --git a/audio/many/01491.wav b/audio/many/01491.wav new file mode 100644 index 0000000000000000000000000000000000000000..c13f4b00b66a7e18706ee1bdf439cd002b2b256d --- /dev/null +++ b/audio/many/01491.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bddb1036936e891a1680c9e16abdaae53ff1313ece354857d20f396493ee350 +size 1318228 diff --git a/audio/many/01497.wav b/audio/many/01497.wav new file mode 100644 index 0000000000000000000000000000000000000000..f2b047b8540e1df345f4f42e229e4bd0f8ee4ebb --- /dev/null +++ b/audio/many/01497.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c9c8432eae350dab7874f7225b7b1418242242d1435a86590e77ccdc4c43767 +size 1165162 diff --git a/audio/many/01521.wav b/audio/many/01521.wav new file mode 100644 index 0000000000000000000000000000000000000000..8fd710d3404a1793953814e504461176a8e9e1e7 --- /dev/null +++ b/audio/many/01521.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c40074e8647f2e3d524222ec20ed44812e4775db982b022a5d2b9a428ad48020 +size 948938 diff --git a/audio/many/01554.wav b/audio/many/01554.wav new file mode 100644 index 0000000000000000000000000000000000000000..1291153e0acfc87fe00c2644933b453c2032eb90 --- /dev/null +++ b/audio/many/01554.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bfbd625fb6fbd4284c88b5e8e3550883285e465ab0e1d3b0b8e547396c09b1d +size 688132 diff --git a/audio/many/01559.wav b/audio/many/01559.wav new file mode 100644 index 0000000000000000000000000000000000000000..c14e360d4f940bd0e6b5373ba869e06abc330266 --- /dev/null +++ b/audio/many/01559.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ff5631d062e1f6255bdc3b6bcc75e88cfee59ce8acc6e7bf77fe866ce9f9492 +size 1105720 diff --git a/audio/many/01580.wav b/audio/many/01580.wav new file mode 100644 index 0000000000000000000000000000000000000000..e06f48b8317fc80927f738a58dbd93d39175c856 --- /dev/null +++ b/audio/many/01580.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66ac848a5e524d24c07672e052091e6a00409a8ee7378008da18ae8d72d99c22 +size 2417926 diff --git a/audio/many/01596.wav b/audio/many/01596.wav new file mode 100644 index 0000000000000000000000000000000000000000..4da31c3998651f1cdbeb5737d7e334a5eecba1e7 --- /dev/null +++ b/audio/many/01596.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e43f4053961b49c020d67ee582f53de3435cfccfc62c2bd6df3a726f9b3358d +size 1769254 diff --git a/audio/many/01616.wav b/audio/many/01616.wav new file mode 100644 index 0000000000000000000000000000000000000000..62642e5c9d269069578a55c93f192b1f86e75d6e --- /dev/null +++ b/audio/many/01616.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1fc3607991617cbf7247472df3f8f8588d27fdc5e65d5b886801cd9d2c28630 +size 5850020 diff --git a/audio/many/01641.wav b/audio/many/01641.wav new file mode 100644 index 0000000000000000000000000000000000000000..8e8e475efcc77c7f25129974c9a77bc534c4840c --- /dev/null +++ b/audio/many/01641.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dea349c05c7b702ba3e9f9c06c9b535ee69293dd9f6788ee243efd6a58868d0d +size 1072282 diff --git a/audio/many/01649.wav b/audio/many/01649.wav new file mode 100644 index 0000000000000000000000000000000000000000..699566131236004dee63d86542c37ce268d8657f --- /dev/null +++ b/audio/many/01649.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5790c832416aa1014a6391a1abd8dfa0df7d7eb756eb2b7f12650be46a24b5e +size 1528508 diff --git a/audio/many/01662.wav b/audio/many/01662.wav new file mode 100644 index 0000000000000000000000000000000000000000..fb6e911220940e923f66e097646811daeedba4f9 --- /dev/null +++ b/audio/many/01662.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18aeae0944498eb47768dc31e26c503dcf4f0c03fdd501c63aa9a3a0576a40ed +size 1934950 diff --git a/audio/many/01663.wav b/audio/many/01663.wav new file mode 100644 index 0000000000000000000000000000000000000000..eb18d14c08c6d635cb890b299ee73cb12a1ac460 --- /dev/null +++ b/audio/many/01663.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c97484219e222357cf1f3dc5016e10feb54aacffffb99dabe4769f8188bdbf6 +size 1047762 diff --git a/audio/many/01668.wav b/audio/many/01668.wav new file mode 100644 index 0000000000000000000000000000000000000000..f6304bee829f0313ef8203ee9aa273fefc07d987 --- /dev/null +++ b/audio/many/01668.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b56a9937782dc48649bec422c8d595a4cf1873b199213e9567edcbcc72e8310 +size 4663388 diff --git a/audio/many/01691.wav b/audio/many/01691.wav new file mode 100644 index 0000000000000000000000000000000000000000..16a1e8f3a034e2a7dfb1cea122f621a7d0e9f73c --- /dev/null +++ b/audio/many/01691.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc89138eec81a6caefe1a9459f634c0e1589f5f55500f07ab61b268bafe077bd +size 2615574 diff --git a/audio/many/01694.wav b/audio/many/01694.wav new file mode 100644 index 0000000000000000000000000000000000000000..8e10a6ce2b1c743e275a41667948cfd8fccaadaf --- /dev/null +++ b/audio/many/01694.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:910bf30cf4a10e9f8f6de4712154be5f48d39a35d82690fb63db0e71a2849fdd +size 2524180 diff --git a/audio/many/01703.wav b/audio/many/01703.wav new file mode 100644 index 0000000000000000000000000000000000000000..003d538ec029ea1aad5edb1e43a566a207dc4b6b --- /dev/null +++ b/audio/many/01703.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e712f89e9db49ab45041d5559a414b245e69411cfa47d7e0300b3bfa220a8336 +size 4401838 diff --git a/audio/many/01744.wav b/audio/many/01744.wav new file mode 100644 index 0000000000000000000000000000000000000000..ca8ab71cd281d62fa9cafdfc9cc17b66c9388f59 --- /dev/null +++ b/audio/many/01744.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70c06c69963ebf56e2ea4ac4a095f5309e194c72195eb52bb09e9955e3ebd933 +size 1331604 diff --git a/audio/many/01768.wav b/audio/many/01768.wav new file mode 100644 index 0000000000000000000000000000000000000000..038887ddd7393e7a575eb66a0d75e7451744f477 --- /dev/null +++ b/audio/many/01768.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f757bacd5da30b7d5f1a493be583910ae8e750e58e757ac1832ea87bc152437 +size 804790 diff --git a/audio/many/01771.wav b/audio/many/01771.wav new file mode 100644 index 0000000000000000000000000000000000000000..fcca2fb885519b9734ccaf3e74acdc131985b5e9 --- /dev/null +++ b/audio/many/01771.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e5eb447b55f95e60c28d04d4d9600843b10e864113bcf6c6fe97dfcf4e1ca5e +size 903614 diff --git a/audio/many/01793.wav b/audio/many/01793.wav new file mode 100644 index 0000000000000000000000000000000000000000..05b0fa749adba3784877fd803228067a4d6fde82 --- /dev/null +++ b/audio/many/01793.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd00272ef0401123c2dc4da5c266f1c2e50d10974052fe2e450aa334f570c3a8 +size 1106462 diff --git a/audio/many/01803.wav b/audio/many/01803.wav new file mode 100644 index 0000000000000000000000000000000000000000..e64d089d09e76c8efe6548d934adfa80e0bc3a8e --- /dev/null +++ b/audio/many/01803.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45a2daa48192ac662c889f790f261285b10666ab3513f6db59ba40d16658060b +size 905100 diff --git a/audio/many/01820.wav b/audio/many/01820.wav new file mode 100644 index 0000000000000000000000000000000000000000..4d97e650d79ce998b10fa592f0d505cd823152b3 --- /dev/null +++ b/audio/many/01820.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64f29874c9315109777437201aaa9a2b829e7ffac4cc4ae9a97b1769e71c2b72 +size 951168 diff --git a/audio/many/01865.wav b/audio/many/01865.wav new file mode 100644 index 0000000000000000000000000000000000000000..2d9b04dd8b8e3cf87852fb8ed11220691bd75785 --- /dev/null +++ b/audio/many/01865.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b269feb4846a47ad74d8360965d60e41ec2ec97a9307a3d5d6c8691cf86e4f64 +size 803304 diff --git a/audio/many/01935.wav b/audio/many/01935.wav new file mode 100644 index 0000000000000000000000000000000000000000..9a3153758c813669d5a91c8c9b77e9b006bb441b --- /dev/null +++ b/audio/many/01935.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2763b65d759b4a17ed8ba8dba8198dcc4e028675877e79ee1d2664298d1314e +size 733458 diff --git a/audio/many/01954.wav b/audio/many/01954.wav new file mode 100644 index 0000000000000000000000000000000000000000..782be56eb9d11f9521b3e67f8ca7016082fa72d2 --- /dev/null +++ b/audio/many/01954.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5b8b637bbc66773f626ffdb1e665700464191ca4f608b759778ab217f86cc71 +size 1295938 diff --git a/audio/many/01955.wav b/audio/many/01955.wav new file mode 100644 index 0000000000000000000000000000000000000000..303963a3c56d88702af0bc72556a81960ec45a5e --- /dev/null +++ b/audio/many/01955.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:585c8d37443a497ce57df349be6bd0180f43e6dcfb5b26066365c74cbd679a25 +size 3561462 diff --git a/audio/many/01984.wav b/audio/many/01984.wav new file mode 100644 index 0000000000000000000000000000000000000000..2b38d0c83c4627e3597692742a405c818ce6728e --- /dev/null +++ b/audio/many/01984.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12223ec209585afb0716d398f72010be6ff3e26086289d118c397b5db6462355 +size 1842070 diff --git a/audio/many/01997.wav b/audio/many/01997.wav new file mode 100644 index 0000000000000000000000000000000000000000..6fdc16fbeafaa0367256d3b7272e1845812ffd58 --- /dev/null +++ b/audio/many/01997.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4c1881637635e882a5f73d5602bf5087bbba7f6c0fca9f6260e0480b0062745 +size 1637736 diff --git a/audio/many/02040.wav b/audio/many/02040.wav new file mode 100644 index 0000000000000000000000000000000000000000..80cd03c681a5854018b627141f718c476bbe122f --- /dev/null +++ b/audio/many/02040.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bacb0db50aa2a972e3d274d0393aaec790f7c433b46af365700f42858f661b44 +size 5032678 diff --git a/audio/many/02071.wav b/audio/many/02071.wav new file mode 100644 index 0000000000000000000000000000000000000000..646e7d6a8426372504e01596c3eb57dc13b0bdf6 --- /dev/null +++ b/audio/many/02071.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2050a100c5ddb8ec37af39d6d48a48f03ae098220dff5e7e1d4902cb4c4aecf +size 1325660 diff --git a/audio/many/02116.wav b/audio/many/02116.wav new file mode 100644 index 0000000000000000000000000000000000000000..fbb097bf55791ab4721ef37d7cd13ee23f3a5e61 --- /dev/null +++ b/audio/many/02116.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aed1bfb9b49660c3319fc93916fdc07abad0b724a3be65691798c99a08a49902 +size 786214 diff --git a/audio/many/02130.wav b/audio/many/02130.wav new file mode 100644 index 0000000000000000000000000000000000000000..755bda0fc450bfb1bcecf3eac5e1e651355b7dee --- /dev/null +++ b/audio/many/02130.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3257d66848722d251d3b4bb1dfd88c9889a0f2297ff901de19cee2d83423d1c +size 1261014 diff --git a/audio/many/02144.wav b/audio/many/02144.wav new file mode 100644 index 0000000000000000000000000000000000000000..73a54eb2ba4ad21f2d5fd53b8c6fbe823b9bc147 --- /dev/null +++ b/audio/many/02144.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee8b1f345b53d80a6e7cf1b0e0b151f34a1a04244d5df2e01861c23712c6387d +size 2819166 diff --git a/audio/many/02162.wav b/audio/many/02162.wav new file mode 100644 index 0000000000000000000000000000000000000000..16da1d8b1dda6441d9b3a8a92cd375e8bc9aa01e --- /dev/null +++ b/audio/many/02162.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e03f760ad95f4a0bc00ad6042e291df448e52c3afa59b4088fe69132fa0492a +size 1846530 diff --git a/audio/many/02180.wav b/audio/many/02180.wav new file mode 100644 index 0000000000000000000000000000000000000000..0f016eaf92b0a8a12d7a20d62161eca7d4d095a7 --- /dev/null +++ b/audio/many/02180.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed3c1435b4f27db306645ab806986bd3287930a9dde3dbdd0aeb075c164d5842 +size 2685688 diff --git a/audio/many/02209.wav b/audio/many/02209.wav new file mode 100644 index 0000000000000000000000000000000000000000..8bcb557ebc124fc5fa8f0dab677e6488ad7b292d --- /dev/null +++ b/audio/many/02209.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d01e3ea725f7ce6902eaa2b93431d073c6d69e3ba85af1aba3d6e9189f7389e +size 2090988 diff --git a/audio/many/02239.wav b/audio/many/02239.wav new file mode 100644 index 0000000000000000000000000000000000000000..6202d9c66af953d5227682da9df34dd1596f2372 --- /dev/null +++ b/audio/many/02239.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0c41b308df40cd7328cecb16990677f786df6332e72e1953fbfab8fb008c411 +size 1331604 diff --git a/audio/many/02242.wav b/audio/many/02242.wav new file mode 100644 index 0000000000000000000000000000000000000000..1d58d0e38feb6745165a8d037aab57fa7fa53ce5 --- /dev/null +++ b/audio/many/02242.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4e26c1eae1e47d2a911d3abad72f0a57ce8bab1d3848eb4d8a737afc7a68a24 +size 714138 diff --git a/audio/many/02243.wav b/audio/many/02243.wav new file mode 100644 index 0000000000000000000000000000000000000000..fcbc7bbbd2a3b74ca008b145ee3b90d2abdad579 --- /dev/null +++ b/audio/many/02243.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e7751cad0eb8359bf9e9875dc86938e98a261a9a96f665b3d303c40f4c42438 +size 9927816 diff --git a/audio/many/02250.wav b/audio/many/02250.wav new file mode 100644 index 0000000000000000000000000000000000000000..3ccacd365c06ea9c1b0c589827a4773864a0c0ae --- /dev/null +++ b/audio/many/02250.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51453e988ffe84d7637282b78214df84c9d202f60766ddfb28a7670eaaf5666b +size 942252 diff --git a/audio/many/02258.wav b/audio/many/02258.wav new file mode 100644 index 0000000000000000000000000000000000000000..fb784d7121a7657df885a0cc49e683ab7ca8d5be --- /dev/null +++ b/audio/many/02258.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbbd271814ff728d76723fde3a14df4b1bfb0455a0c38b37f12dca38c6b10a67 +size 1381388 diff --git a/audio/many/02260.wav b/audio/many/02260.wav new file mode 100644 index 0000000000000000000000000000000000000000..f24821c697276c54ba64350e389f07f45ff96749 --- /dev/null +++ b/audio/many/02260.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fc3fd41144bd10a95f7339e32fabf410ef04490d2efa394768cc2e9c2a80c51 +size 775068 diff --git a/audio/many/02289.wav b/audio/many/02289.wav new file mode 100644 index 0000000000000000000000000000000000000000..8d09d6b16adf6142f4d9cf0a7f7e55fef6797da1 --- /dev/null +++ b/audio/many/02289.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:421f1ee46e980b114bb70a3251457e87d1151e347ad774453a7727a135fbbf50 +size 2082816 diff --git a/audio/many/02311.wav b/audio/many/02311.wav new file mode 100644 index 0000000000000000000000000000000000000000..db5bbcde16cb01155080af6bf483e2aa61d23660 --- /dev/null +++ b/audio/many/02311.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9853bd35f22a36cd1570a681a26f0cb20dd752f236d1e587b6c237dbd416196 +size 1712040 diff --git a/audio/many/02329.wav b/audio/many/02329.wav new file mode 100644 index 0000000000000000000000000000000000000000..3174b492cfe0916c5c60ad8d31753d3f9f51809b --- /dev/null +++ b/audio/many/02329.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cff4d4677c125cc6c489100f68cfa4794833e50fb87c50edc8a8ada4724d956 +size 2316130 diff --git a/audio/many/02339.wav b/audio/many/02339.wav new file mode 100644 index 0000000000000000000000000000000000000000..cead30bd88d59d67b02b6396ea649a432ce6338e --- /dev/null +++ b/audio/many/02339.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee2950918c2845e2ac4640f41c4aa6ce4af7d2b8dec14a82ea206f7b89b30d2f +size 1012840 diff --git a/audio/many/02341.wav b/audio/many/02341.wav new file mode 100644 index 0000000000000000000000000000000000000000..e18ce6daf3ce840e5e415c6c807ba4113684345d --- /dev/null +++ b/audio/many/02341.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a53a230b68082062081effb3551c8555d33f144daa27c3c662c3da3dd7257d5 +size 23185854 diff --git a/audio/many/02399.wav b/audio/many/02399.wav new file mode 100644 index 0000000000000000000000000000000000000000..0855c0ae8021d0bb6d8afacc26ed26a6f2dd5007 --- /dev/null +++ b/audio/many/02399.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c8536d1d912ab62a777dce995c228b39f3526379d992568d7871e668ae442af +size 1268446 diff --git a/audio/many/02404.wav b/audio/many/02404.wav new file mode 100644 index 0000000000000000000000000000000000000000..f9ff8af570b837c0ddf2042e2c2bb8851c2cfcc4 --- /dev/null +++ b/audio/many/02404.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:782c06d04fd95031b4c38e5542a7e63970508a91766bf23f07f80551835148b5 +size 9161000 diff --git a/audio/many/02409.wav b/audio/many/02409.wav new file mode 100644 index 0000000000000000000000000000000000000000..d7726730f50d15c2752ff7e7ae974da47da7fbf8 --- /dev/null +++ b/audio/many/02409.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bd0cf26d65cb00b140ee701c7ad7c4812e04ef06b5f0ee326289c96b7e19a75 +size 1900028 diff --git a/audio/many/02418.wav b/audio/many/02418.wav new file mode 100644 index 0000000000000000000000000000000000000000..aad40ce21794c319f4007ba7dbb8c5d470b73fa7 --- /dev/null +++ b/audio/many/02418.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73fa8d90b7b8527751c2746536094c14ef5465daabe6cdd8a68b17736acfe0ac +size 711166 diff --git a/audio/many/02436.wav b/audio/many/02436.wav new file mode 100644 index 0000000000000000000000000000000000000000..b129aa8af2ed30dfb8fdcc52d847673d7668791b --- /dev/null +++ b/audio/many/02436.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b1620db1415e921ab73b880e6792e27d27123f599f7bc3a0582366e4f543a18 +size 711910 diff --git a/audio/many/02441.wav b/audio/many/02441.wav new file mode 100644 index 0000000000000000000000000000000000000000..4f91e09901ead814105d5e5aebcfde1272ab6307 --- /dev/null +++ b/audio/many/02441.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6efe4b7db4b6b39d2f1780def2877fc0d2ac108e4fc852b7923c9e2306ff1731 +size 8845210 diff --git a/audio/many/02443.wav b/audio/many/02443.wav new file mode 100644 index 0000000000000000000000000000000000000000..646127fcbf5586758561817577f55241ecc0107c --- /dev/null +++ b/audio/many/02443.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e3577592e69d83a5409d2b71b22fe8cd5b2b09769b641cdab5dbfbd4a131997 +size 2006282 diff --git a/audio/many/02446.wav b/audio/many/02446.wav new file mode 100644 index 0000000000000000000000000000000000000000..41bce0b3cce09d22ab00de6a664c1714291f77c7 --- /dev/null +++ b/audio/many/02446.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a93206099672641d0b10b0fbff5e5686f49b57f1c350f178c54fdbba6b32e4b7 +size 836740 diff --git a/audio/many/02497.wav b/audio/many/02497.wav new file mode 100644 index 0000000000000000000000000000000000000000..b797ced5ff855c0dafc25ad518e42ece6d0b9f42 --- /dev/null +++ b/audio/many/02497.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef5bff4ffc7769d51d3dc81e996d57e40960607e972d438ab0d8d224d66b3b2d +size 3388334 diff --git a/audio/many/02541.wav b/audio/many/02541.wav new file mode 100644 index 0000000000000000000000000000000000000000..8beac006abb448e9dea6f661af64b20047b6c1c9 --- /dev/null +++ b/audio/many/02541.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cedaeb10d3541b1eaa824a3549bb6547847abb4be4bb68390294fb7551c2b78 +size 5425002 diff --git a/audio/many/02552.wav b/audio/many/02552.wav new file mode 100644 index 0000000000000000000000000000000000000000..08f125711c84789e28b5e691e06ceb90ffcc1a90 --- /dev/null +++ b/audio/many/02552.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e01e1be9b8dc08a30aadf22aa72206f25583f925557e4c9a0a3200e712212a0 +size 1988450 diff --git a/audio/many/02584.wav b/audio/many/02584.wav new file mode 100644 index 0000000000000000000000000000000000000000..3d086e13383254facc7e16a4dd2eb8ceb8a57e7c --- /dev/null +++ b/audio/many/02584.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d24e9d5ac5c13c7d807cc53a4e6811e8459e779a6e55cff2c719befa205240af +size 1240952 diff --git a/audio/many/02644.wav b/audio/many/02644.wav new file mode 100644 index 0000000000000000000000000000000000000000..cdb88e3a5b85b7130c3fd82bc9f50d3c1e0d867f --- /dev/null +++ b/audio/many/02644.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06fd5735cfaccd4f90965a32f9fc93344d8f4f715794344f802a85f0851256e6 +size 888752 diff --git a/audio/many/02646.wav b/audio/many/02646.wav new file mode 100644 index 0000000000000000000000000000000000000000..907a90662e80a68b4e8317e6db74fc7553671833 --- /dev/null +++ b/audio/many/02646.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:056b9e8d05a1cbb7dbf2d6db4cef8fbb98b1f873433cb2d544a2a4222f525747 +size 2218792 diff --git a/audio/many/02707.wav b/audio/many/02707.wav new file mode 100644 index 0000000000000000000000000000000000000000..8ae20c3b62f90af9c185fb1936f4e407f18ae312 --- /dev/null +++ b/audio/many/02707.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77161db6300e3fe8a3a968fa1156c8a3b97cba01119ce061808775b63b4e4bd0 +size 1700150 diff --git a/audio/many/02709.wav b/audio/many/02709.wav new file mode 100644 index 0000000000000000000000000000000000000000..ae7d538949d95d7f58f87ca63b0d5e802eb6e285 --- /dev/null +++ b/audio/many/02709.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e81d09bc1b852a1d5c7bb0dc5098e91a15dd23e237589e3ff582d2c934a22744 +size 715624 diff --git a/audio/many/02712.wav b/audio/many/02712.wav new file mode 100644 index 0000000000000000000000000000000000000000..eceabb42f8ee49e8d71516a529a9279dce2e3929 --- /dev/null +++ b/audio/many/02712.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba30758c2f83c14a422245a7333154424b22a669e44160ecc48ac8003315de70 +size 778782 diff --git a/audio/many/02737.wav b/audio/many/02737.wav new file mode 100644 index 0000000000000000000000000000000000000000..7e57961e189db3fd26f51773884087986f4cd629 --- /dev/null +++ b/audio/many/02737.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5db8de2cd48412052b258b7683f10c0d2091d851e0f9867fbcfed3ff03484525 +size 1134698 diff --git a/audio/many/02752.wav b/audio/many/02752.wav new file mode 100644 index 0000000000000000000000000000000000000000..83413bed7257f701b711886e11c1aed3fbcf5c15 --- /dev/null +++ b/audio/many/02752.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c6755e099d3175ca026b9c08ae1cd95f0f9915e4874241af7d24242c1330a86 +size 2342878 diff --git a/audio/many/02790.wav b/audio/many/02790.wav new file mode 100644 index 0000000000000000000000000000000000000000..b15486d7894f537195cfdf5cd5cf7c4ee8fea76f --- /dev/null +++ b/audio/many/02790.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fa001d99048290fcf3472085c9ed523e5ad37547d6e697f7dbc010451a8b838 +size 1043304 diff --git a/audio/many/02795.wav b/audio/many/02795.wav new file mode 100644 index 0000000000000000000000000000000000000000..b129aa8af2ed30dfb8fdcc52d847673d7668791b --- /dev/null +++ b/audio/many/02795.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b1620db1415e921ab73b880e6792e27d27123f599f7bc3a0582366e4f543a18 +size 711910 diff --git a/audio/many/02808.wav b/audio/many/02808.wav new file mode 100644 index 0000000000000000000000000000000000000000..52eef12bbc85eb5aa904339fa7171237bb5ee462 --- /dev/null +++ b/audio/many/02808.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b93fe0684eb202423e3d9d2d09c8f68f6fca12596e965d61317636cab7db04b +size 3391306 diff --git a/audio/many/02825.wav b/audio/many/02825.wav new file mode 100644 index 0000000000000000000000000000000000000000..06fbf6f084c3b270fa7bebe78c411f1bcd21dae5 --- /dev/null +++ b/audio/many/02825.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4e66bcb0a0727f8e7879e8133d3432eef8f430484d0c6f444800982c23c68bd +size 3195888 diff --git a/audio/many/02846.wav b/audio/many/02846.wav new file mode 100644 index 0000000000000000000000000000000000000000..65c476bbd189836327397e0937df0b461e9cb108 --- /dev/null +++ b/audio/many/02846.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89696c33b4c1c07d1bf4a6fc57338d9523c60c7fce971524ce78c68aa51e1730 +size 1709068 diff --git a/audio/many/02868.wav b/audio/many/02868.wav new file mode 100644 index 0000000000000000000000000000000000000000..79ab0453e783b7805e2b1b4774d6a7def67f301a --- /dev/null +++ b/audio/many/02868.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3b2703a9481df7b5571f4b9a4c0c1147c356e8c3aac9247d7b0878f918466cb +size 3777686 diff --git a/audio/many/02870.wav b/audio/many/02870.wav new file mode 100644 index 0000000000000000000000000000000000000000..6b1e3f22a9c1580620164b6d6b924601cc3fcfb0 --- /dev/null +++ b/audio/many/02870.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b4a5f977e6335468cbbc29f197725f50e063094af88ba776aae68b4a7aae08a +size 844170 diff --git a/audio/many/02878.wav b/audio/many/02878.wav new file mode 100644 index 0000000000000000000000000000000000000000..c93f1e92aa6c0f51a62c60fc00056be830bd8fae --- /dev/null +++ b/audio/many/02878.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cadad0145390985cf7aa07eeb83e91194d4e1ade2761d30f52bd2fa79c7511f +size 1491356 diff --git a/audio/many/02895.wav b/audio/many/02895.wav new file mode 100644 index 0000000000000000000000000000000000000000..4d7884a915fbf1b18789f90edc6a1f38252461c5 --- /dev/null +++ b/audio/many/02895.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cdbd979f8e14b1659becb34505a93097d5df74b6f512ef6df3a43d5dfa3a083 +size 902870 diff --git a/audio/many/02904.wav b/audio/many/02904.wav new file mode 100644 index 0000000000000000000000000000000000000000..41b00f60459fce27db131c2ecfa943f1448d7aad --- /dev/null +++ b/audio/many/02904.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e650868b723dc4ead6e0ac453dcc7dce933ba2ed6d0bdc33ed12cb1dde27be26 +size 3600844 diff --git a/audio/many/02913.wav b/audio/many/02913.wav new file mode 100644 index 0000000000000000000000000000000000000000..510a2a78a286f1f5a7b6eda26a1485a0dcdcfe2c --- /dev/null +++ b/audio/many/02913.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d609400ff0ee14e816055cf8aa3562ba268595fc842d9defeb046b82bcc04af7 +size 1215690 diff --git a/audio/many/02951.wav b/audio/many/02951.wav new file mode 100644 index 0000000000000000000000000000000000000000..6083cc9a46dab702499236e872d4a29080ce1d61 --- /dev/null +++ b/audio/many/02951.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f4607e5030fac4b09a118e298bf174341e814dfc0e42fea48f345028fa97e8d +size 3258302 diff --git a/audio/many/03010.wav b/audio/many/03010.wav new file mode 100644 index 0000000000000000000000000000000000000000..aba94d5491c19752c55a0d93b0694ea89295119c --- /dev/null +++ b/audio/many/03010.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2e3c1e860e6ef2526650ec2f8d1933e03cdd4a7f2b49faf57a5660b16cec52b +size 1875508 diff --git a/audio/many/03020.wav b/audio/many/03020.wav new file mode 100644 index 0000000000000000000000000000000000000000..239ca86d9bd7739c5d8ac230a88196c45164bee7 --- /dev/null +++ b/audio/many/03020.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93f84aa0b525146c04fe0f7f692f4fe84ddcf21fca2f2df7386e36377dfbc7f4 +size 1836126 diff --git a/audio/many/03031.wav b/audio/many/03031.wav new file mode 100644 index 0000000000000000000000000000000000000000..4824657a7fb78c896a5a15655badcd23a231d0f4 --- /dev/null +++ b/audio/many/03031.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f34bbcdf60cd7be6bb3a46ecec23c14e354c0bc308a0f467a7f2508b6e704f4 +size 2825110 diff --git a/audio/many/03047.wav b/audio/many/03047.wav new file mode 100644 index 0000000000000000000000000000000000000000..a870bb3f6832c0a0e1321da7a5d49886a4602942 --- /dev/null +++ b/audio/many/03047.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc07e682e0fcd7726a06e790898ee1424774912589194c4473de766dbdb661f2 +size 1988450 diff --git a/audio/many/03114.wav b/audio/many/03114.wav new file mode 100644 index 0000000000000000000000000000000000000000..03da83a9aab8fcba452b10fb1b55107ed2d5379d --- /dev/null +++ b/audio/many/03114.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baee08e456df99ec4064ef1326e3cd219e2c0a4e3d6f8ad903ba99150f4b2547 +size 1055936 diff --git a/audio/many/03141.wav b/audio/many/03141.wav new file mode 100644 index 0000000000000000000000000000000000000000..eb89d95a881a61fc5e9f057260ff691556cbd2a5 --- /dev/null +++ b/audio/many/03141.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e436bb6ca1985abe5eafa13cb93473748b6f1253de2fef304e0e39cfb8505ab7 +size 1942382 diff --git a/rttm/few/00017.rttm b/rttm/few/00017.rttm new file mode 100644 index 0000000000000000000000000000000000000000..1e5ffee42c0cd50814345e2a11bc2832d8fd24b1 --- /dev/null +++ b/rttm/few/00017.rttm @@ -0,0 +1,12 @@ +SPEAKER 00017 0 9.393000 1.130000 h0 +SPEAKER 00017 0 35.449000 2.055000 2 +SPEAKER 00017 0 42.533770 1.637230 2 +SPEAKER 00017 0 35.600000 0.885730 0 +SPEAKER 00017 0 37.282000 2.500000 0 +SPEAKER 00017 0 42.282000 0.822380 0 +SPEAKER 00017 0 43.870000 0.949000 0 +SPEAKER 00017 0 0.697000 3.989020 1 +SPEAKER 00017 0 5.482000 3.744830 1 +SPEAKER 00017 0 9.839000 7.357220 1 +SPEAKER 00017 0 17.764000 5.795810 1 +SPEAKER 00017 0 24.004250 11.000000 1 diff --git a/rttm/few/00018.rttm b/rttm/few/00018.rttm new file mode 100644 index 0000000000000000000000000000000000000000..b4d7731b45b2a36a77f536d538ec092204033ffd --- /dev/null +++ b/rttm/few/00018.rttm @@ -0,0 +1,220 @@ +SPEAKER 00018 0 0.007000 1.000000 0 +SPEAKER 00018 0 1.519000 1.683000 0 +SPEAKER 00018 0 6.375000 0.463000 0 +SPEAKER 00018 0 7.266000 3.021000 0 +SPEAKER 00018 0 11.522000 5.716000 0 +SPEAKER 00018 0 18.503000 4.221000 0 +SPEAKER 00018 0 23.177000 2.000000 0 +SPEAKER 00018 0 25.724000 1.290000 0 +SPEAKER 00018 0 27.747000 4.237000 0 +SPEAKER 00018 0 32.370000 1.518000 0 +SPEAKER 00018 0 34.230000 0.763000 0 +SPEAKER 00018 0 35.923000 0.605000 0 +SPEAKER 00018 0 37.818000 0.631000 0 +SPEAKER 00018 0 40.440000 4.879060 0 +SPEAKER 00018 0 47.335000 0.428510 0 +SPEAKER 00018 0 48.151000 1.676000 0 +SPEAKER 00018 0 50.689440 1.128560 0 +SPEAKER 00018 0 52.221000 2.018000 0 +SPEAKER 00018 0 62.476000 3.228000 0 +SPEAKER 00018 0 66.458000 3.194400 0 +SPEAKER 00018 0 70.236000 1.194000 0 +SPEAKER 00018 0 71.756000 4.851000 0 +SPEAKER 00018 0 77.127000 1.436000 0 +SPEAKER 00018 0 80.930000 2.949000 0 +SPEAKER 00018 0 86.578320 5.907680 0 +SPEAKER 00018 0 92.844000 1.886000 0 +SPEAKER 00018 0 97.633880 7.351850 0 +SPEAKER 00018 0 106.967000 1.947000 0 +SPEAKER 00018 0 109.733000 0.497000 0 +SPEAKER 00018 0 111.119000 0.725000 0 +SPEAKER 00018 0 112.616000 0.553000 0 +SPEAKER 00018 0 114.327000 0.657000 0 +SPEAKER 00018 0 115.976000 0.570000 0 +SPEAKER 00018 0 120.107000 3.167000 0 +SPEAKER 00018 0 125.590000 1.430000 0 +SPEAKER 00018 0 127.341000 4.661000 0 +SPEAKER 00018 0 132.616000 4.597000 0 +SPEAKER 00018 0 139.112000 0.855000 0 +SPEAKER 00018 0 141.388000 0.868000 0 +SPEAKER 00018 0 144.756000 2.597000 0 +SPEAKER 00018 0 148.133000 3.123000 0 +SPEAKER 00018 0 153.388000 0.886000 0 +SPEAKER 00018 0 156.356000 0.655000 0 +SPEAKER 00018 0 158.607000 4.562000 0 +SPEAKER 00018 0 165.256000 1.132000 0 +SPEAKER 00018 0 172.818000 4.359000 0 +SPEAKER 00018 0 177.756000 1.369000 0 +SPEAKER 00018 0 182.537000 0.319000 0 +SPEAKER 00018 0 183.493000 4.863100 0 +SPEAKER 00018 0 189.721000 1.228000 0 +SPEAKER 00018 0 192.537000 2.298000 0 +SPEAKER 00018 0 196.309000 0.614000 0 +SPEAKER 00018 0 197.914000 5.886000 0 +SPEAKER 00018 0 207.379000 0.720000 0 +SPEAKER 00018 0 208.370000 0.658000 0 +SPEAKER 00018 0 209.704000 0.710000 0 +SPEAKER 00018 0 210.932000 0.526000 0 +SPEAKER 00018 0 212.800000 2.114000 0 +SPEAKER 00018 0 215.739000 1.000000 0 +SPEAKER 00018 0 221.213000 1.149000 0 +SPEAKER 00018 0 224.878000 3.510000 0 +SPEAKER 00018 0 234.504000 1.098000 0 +SPEAKER 00018 0 237.103000 1.000000 0 +SPEAKER 00018 0 239.591000 1.567000 0 +SPEAKER 00018 0 241.858000 5.767000 0 +SPEAKER 00018 0 250.123000 4.951000 0 +SPEAKER 00018 0 255.553000 1.888000 0 +SPEAKER 00018 0 264.349000 1.623000 0 +SPEAKER 00018 0 268.370000 0.398000 0 +SPEAKER 00018 0 272.380000 3.194000 0 +SPEAKER 00018 0 277.726000 1.408000 0 +SPEAKER 00018 0 280.757000 0.800000 0 +SPEAKER 00018 0 284.884000 0.636000 0 +SPEAKER 00018 0 287.166000 0.954000 0 +SPEAKER 00018 0 288.720000 1.791000 0 +SPEAKER 00018 0 293.520000 4.355000 0 +SPEAKER 00018 0 298.923000 3.906000 0 +SPEAKER 00018 0 303.448000 3.036000 0 +SPEAKER 00018 0 308.430180 1.989820 0 +SPEAKER 00018 0 320.075000 0.463000 0 +SPEAKER 00018 0 321.102000 2.717000 0 +SPEAKER 00018 0 336.329000 1.464000 0 +SPEAKER 00018 0 340.170920 0.518080 0 +SPEAKER 00018 0 344.366000 1.909000 0 +SPEAKER 00018 0 349.993000 1.327000 0 +SPEAKER 00018 0 353.475000 1.373000 0 +SPEAKER 00018 0 356.166000 1.936000 0 +SPEAKER 00018 0 359.029000 1.364000 0 +SPEAKER 00018 0 360.819000 0.329000 0 +SPEAKER 00018 0 362.911000 1.600000 0 +SPEAKER 00018 0 365.548000 1.900000 0 +SPEAKER 00018 0 369.154000 2.639000 0 +SPEAKER 00018 0 373.745000 0.530000 0 +SPEAKER 00018 0 374.838000 3.637000 0 +SPEAKER 00018 0 379.693000 0.664000 0 +SPEAKER 00018 0 380.920000 0.618000 0 +SPEAKER 00018 0 381.993000 0.518000 0 +SPEAKER 00018 0 386.402000 0.736000 0 +SPEAKER 00018 0 388.758000 3.962000 0 +SPEAKER 00018 0 394.748000 1.409000 0 +SPEAKER 00018 0 400.466000 0.654000 0 +SPEAKER 00018 0 407.431000 1.462140 0 +SPEAKER 00018 0 409.522000 1.667440 0 +SPEAKER 00018 0 412.902000 1.618000 0 +SPEAKER 00018 0 1.189000 0.570000 2 +SPEAKER 00018 0 5.248000 2.145140 2 +SPEAKER 00018 0 8.159000 0.431000 2 +SPEAKER 00018 0 9.541000 3.893000 2 +SPEAKER 00018 0 14.876000 0.726000 2 +SPEAKER 00018 0 16.515000 2.007770 2 +SPEAKER 00018 0 22.003000 0.860000 2 +SPEAKER 00018 0 25.072000 0.570000 2 +SPEAKER 00018 0 26.633880 1.186120 2 +SPEAKER 00018 0 29.449000 0.413000 2 +SPEAKER 00018 0 35.053000 0.712000 2 +SPEAKER 00018 0 38.835000 2.106000 2 +SPEAKER 00018 0 43.581000 1.182510 2 +SPEAKER 00018 0 45.353000 3.184000 2 +SPEAKER 00018 0 49.458000 0.842000 2 +SPEAKER 00018 0 54.072000 8.097000 2 +SPEAKER 00018 0 65.809000 0.510060 2 +SPEAKER 00018 0 68.835000 0.342000 2 +SPEAKER 00018 0 69.930180 0.258820 2 +SPEAKER 00018 0 70.744990 0.555010 2 +SPEAKER 00018 0 71.590000 0.544000 2 +SPEAKER 00018 0 76.248000 0.605000 2 +SPEAKER 00018 0 78.633000 2.930000 2 +SPEAKER 00018 0 82.713000 0.680000 2 +SPEAKER 00018 0 83.651000 3.825000 2 +SPEAKER 00018 0 92.519000 0.351000 2 +SPEAKER 00018 0 93.812000 3.865000 2 +SPEAKER 00018 0 98.414000 0.693000 2 +SPEAKER 00018 0 99.809000 0.570000 2 +SPEAKER 00018 0 103.248000 0.590000 2 +SPEAKER 00018 0 104.318000 2.605000 2 +SPEAKER 00018 0 108.949000 0.755000 2 +SPEAKER 00018 0 114.002000 0.325000 2 +SPEAKER 00018 0 115.160000 0.596000 2 +SPEAKER 00018 0 116.833000 1.309000 2 +SPEAKER 00018 0 118.870000 1.307000 2 +SPEAKER 00018 0 121.484000 1.465000 2 +SPEAKER 00018 0 123.430000 2.844000 2 +SPEAKER 00018 0 129.599000 3.043000 2 +SPEAKER 00018 0 137.256000 4.132000 2 +SPEAKER 00018 0 142.307000 2.028000 2 +SPEAKER 00018 0 144.704000 2.245000 2 +SPEAKER 00018 0 147.560000 0.442000 2 +SPEAKER 00018 0 150.177000 0.571000 2 +SPEAKER 00018 0 151.318000 1.965000 2 +SPEAKER 00018 0 154.600000 1.534000 2 +SPEAKER 00018 0 157.186000 0.877000 2 +SPEAKER 00018 0 162.239000 3.009000 2 +SPEAKER 00018 0 166.169000 5.201000 2 +SPEAKER 00018 0 171.765000 0.579000 2 +SPEAKER 00018 0 175.856000 0.357000 2 +SPEAKER 00018 0 179.844000 1.678770 2 +SPEAKER 00018 0 185.309000 0.675000 2 +SPEAKER 00018 0 188.484000 2.027000 2 +SPEAKER 00018 0 191.046000 1.298000 2 +SPEAKER 00018 0 193.026000 0.590000 2 +SPEAKER 00018 0 194.897000 1.644290 2 +SPEAKER 00018 0 201.563000 1.369000 2 +SPEAKER 00018 0 204.449000 3.369000 2 +SPEAKER 00018 0 212.809000 1.732000 2 +SPEAKER 00018 0 214.844000 0.351000 2 +SPEAKER 00018 0 215.502000 2.202000 2 +SPEAKER 00018 0 221.504000 1.092840 2 +SPEAKER 00018 0 223.226000 2.688000 2 +SPEAKER 00018 0 227.264000 0.407000 2 +SPEAKER 00018 0 228.502000 2.333000 2 +SPEAKER 00018 0 231.474000 1.095000 2 +SPEAKER 00018 0 232.869000 1.522000 2 +SPEAKER 00018 0 235.847000 1.700000 2 +SPEAKER 00018 0 241.059810 0.843190 2 +SPEAKER 00018 0 247.798000 2.378000 2 +SPEAKER 00018 0 258.951000 0.715000 2 +SPEAKER 00018 0 260.319000 2.551000 2 +SPEAKER 00018 0 266.574000 1.764000 2 +SPEAKER 00018 0 268.747000 1.786000 2 +SPEAKER 00018 0 275.798000 1.174000 2 +SPEAKER 00018 0 282.648000 1.218000 2 +SPEAKER 00018 0 285.566000 0.445000 2 +SPEAKER 00018 0 289.023000 4.788000 2 +SPEAKER 00018 0 298.375000 0.462580 2 +SPEAKER 00018 0 302.822000 0.664000 2 +SPEAKER 00018 0 305.356000 3.792000 2 +SPEAKER 00018 0 310.829000 2.046000 2 +SPEAKER 00018 0 315.948000 1.072000 2 +SPEAKER 00018 0 317.548000 0.518000 2 +SPEAKER 00018 0 323.745000 0.703000 2 +SPEAKER 00018 0 324.857000 1.000000 2 +SPEAKER 00018 0 326.511000 1.246000 2 +SPEAKER 00018 0 328.113000 1.180000 2 +SPEAKER 00018 0 329.784000 0.564000 2 +SPEAKER 00018 0 331.320000 0.528000 2 +SPEAKER 00018 0 332.994000 1.835000 2 +SPEAKER 00018 0 338.520000 0.546000 2 +SPEAKER 00018 0 340.566000 2.600000 2 +SPEAKER 00018 0 347.138000 0.473000 2 +SPEAKER 00018 0 348.293000 1.791000 2 +SPEAKER 00018 0 350.602000 0.846000 2 +SPEAKER 00018 0 355.260000 1.251000 2 +SPEAKER 00018 0 359.484000 1.254000 2 +SPEAKER 00018 0 361.837000 0.426510 2 +SPEAKER 00018 0 364.629000 2.746000 2 +SPEAKER 00018 0 368.193000 1.891000 2 +SPEAKER 00018 0 371.911000 2.455000 2 +SPEAKER 00018 0 379.102000 0.591000 2 +SPEAKER 00018 0 382.857000 1.936000 2 +SPEAKER 00018 0 388.036000 1.157000 2 +SPEAKER 00018 0 391.838000 0.647730 2 +SPEAKER 00018 0 392.966000 1.818000 2 +SPEAKER 00018 0 395.263510 0.293490 2 +SPEAKER 00018 0 396.229000 3.919000 2 +SPEAKER 00018 0 400.511000 1.073000 2 +SPEAKER 00018 0 402.384000 0.791000 2 +SPEAKER 00018 0 403.602000 0.646000 2 +SPEAKER 00018 0 404.644000 0.860000 2 +SPEAKER 00018 0 411.457000 1.963000 2 +SPEAKER 00018 0 288.057000 0.545000 h0 diff --git a/rttm/few/00028.rttm b/rttm/few/00028.rttm new file mode 100644 index 0000000000000000000000000000000000000000..0ac14e7e85408c93456f04a703bc0f7a38ec067c --- /dev/null +++ b/rttm/few/00028.rttm @@ -0,0 +1,27 @@ +SPEAKER 00028 0 0.542000 1.000000 0 +SPEAKER 00028 0 3.814000 0.595650 0 +SPEAKER 00028 0 5.916000 1.045000 0 +SPEAKER 00028 0 10.758110 0.986880 0 +SPEAKER 00028 0 12.752000 1.326000 0 +SPEAKER 00028 0 16.004770 0.555040 0 +SPEAKER 00028 0 32.216000 5.010470 0 +SPEAKER 00028 0 2.851510 0.430230 1 +SPEAKER 00028 0 10.308000 0.518990 1 +SPEAKER 00028 0 17.559810 0.833330 1 +SPEAKER 00028 0 21.082000 0.496320 1 +SPEAKER 00028 0 22.563000 0.377000 1 +SPEAKER 00028 0 23.569220 0.474780 1 +SPEAKER 00028 0 24.680000 0.622550 1 +SPEAKER 00028 0 26.329000 0.736000 1 +SPEAKER 00028 0 27.838000 0.520110 1 +SPEAKER 00028 0 5.336000 0.446030 2 +SPEAKER 00028 0 7.304050 1.886790 2 +SPEAKER 00028 0 10.068000 0.456770 2 +SPEAKER 00028 0 18.169220 1.000000 2 +SPEAKER 00028 0 20.485730 0.444450 2 +SPEAKER 00028 0 21.841000 1.639330 2 +SPEAKER 00028 0 24.091440 0.452560 2 +SPEAKER 00028 0 29.468000 1.552330 2 +SPEAKER 00028 0 31.393140 5.018520 2 +SPEAKER 00028 0 36.881000 0.532660 2 +SPEAKER 00028 0 37.902550 0.441450 2 diff --git a/rttm/few/00029.rttm b/rttm/few/00029.rttm new file mode 100644 index 0000000000000000000000000000000000000000..5a53fad2ad19b4c6dc2fb10d75cafa1a1bcb4d7d --- /dev/null +++ b/rttm/few/00029.rttm @@ -0,0 +1,123 @@ +SPEAKER 00029 0 0.012000 5.047810 1 +SPEAKER 00029 0 5.504000 4.203950 1 +SPEAKER 00029 0 10.319000 1.111180 1 +SPEAKER 00029 0 11.876000 1.000000 1 +SPEAKER 00029 0 13.291000 2.268810 1 +SPEAKER 00029 0 16.448690 3.728150 1 +SPEAKER 00029 0 23.949000 1.666000 1 +SPEAKER 00029 0 27.856000 7.722320 1 +SPEAKER 00029 0 37.152000 2.204100 1 +SPEAKER 00029 0 39.837580 1.462970 1 +SPEAKER 00029 0 43.837580 0.518520 1 +SPEAKER 00029 0 46.282030 0.462960 1 +SPEAKER 00029 0 47.985730 0.500270 1 +SPEAKER 00029 0 49.115000 7.018880 1 +SPEAKER 00029 0 57.115000 0.500000 1 +SPEAKER 00029 0 57.949000 5.073770 1 +SPEAKER 00029 0 63.327000 2.880950 1 +SPEAKER 00029 0 70.689000 0.686000 1 +SPEAKER 00029 0 73.726000 3.281210 1 +SPEAKER 00029 0 93.300550 0.648140 1 +SPEAKER 00029 0 103.764000 0.685000 1 +SPEAKER 00029 0 105.430000 4.277950 1 +SPEAKER 00029 0 110.916000 3.773440 1 +SPEAKER 00029 0 114.955000 6.901100 1 +SPEAKER 00029 0 122.152000 2.426320 1 +SPEAKER 00029 0 124.932000 1.998180 1 +SPEAKER 00029 0 127.319060 6.574080 1 +SPEAKER 00029 0 134.233000 1.456440 1 +SPEAKER 00029 0 136.004000 2.834000 1 +SPEAKER 00029 0 142.393140 6.898860 1 +SPEAKER 00029 0 151.930180 1.511070 1 +SPEAKER 00029 0 153.782030 3.000000 1 +SPEAKER 00029 0 157.078320 5.444450 1 +SPEAKER 00029 0 162.948690 6.203710 1 +SPEAKER 00029 0 169.615360 1.481640 1 +SPEAKER 00029 0 171.467210 1.240740 1 +SPEAKER 00029 0 173.078320 2.314820 1 +SPEAKER 00029 0 176.171000 0.463000 1 +SPEAKER 00029 0 180.875000 1.758880 1 +SPEAKER 00029 0 197.467000 0.519000 1 +SPEAKER 00029 0 204.245000 1.074000 1 +SPEAKER 00029 0 206.412000 4.703360 1 +SPEAKER 00029 0 211.408000 3.892550 1 +SPEAKER 00029 0 218.838000 7.073660 1 +SPEAKER 00029 0 232.208000 0.815000 1 +SPEAKER 00029 0 235.986000 5.010000 1 +SPEAKER 00029 0 242.654000 13.479880 1 +SPEAKER 00029 0 256.474000 2.715440 1 +SPEAKER 00029 0 259.646000 1.858000 1 +SPEAKER 00029 0 261.892000 1.797440 1 +SPEAKER 00029 0 264.726000 15.963440 1 +SPEAKER 00029 0 281.060000 9.296100 1 +SPEAKER 00029 0 290.690000 7.406840 1 +SPEAKER 00029 0 298.350000 7.265360 1 +SPEAKER 00029 0 306.949000 5.444140 1 +SPEAKER 00029 0 312.760000 3.225730 1 +SPEAKER 00029 0 320.578000 0.982000 1 +SPEAKER 00029 0 331.282000 0.518550 1 +SPEAKER 00029 0 337.986000 2.389000 1 +SPEAKER 00029 0 345.141000 9.233620 1 +SPEAKER 00029 0 354.689440 3.425920 1 +SPEAKER 00029 0 361.319000 4.740810 1 +SPEAKER 00029 0 368.801000 2.647690 1 +SPEAKER 00029 0 0.523000 1.183470 0 +SPEAKER 00029 0 4.504250 0.499750 0 +SPEAKER 00029 0 15.189000 1.389000 0 +SPEAKER 00029 0 19.522770 5.000000 0 +SPEAKER 00029 0 25.208000 4.018470 0 +SPEAKER 00029 0 34.875000 3.926000 0 +SPEAKER 00029 0 39.393000 9.740880 0 +SPEAKER 00029 0 50.819060 0.536940 0 +SPEAKER 00029 0 53.912000 0.592250 0 +SPEAKER 00029 0 55.652400 2.573600 0 +SPEAKER 00029 0 62.967210 0.499790 0 +SPEAKER 00029 0 66.153000 3.888290 0 +SPEAKER 00029 0 71.004000 2.037290 0 +SPEAKER 00029 0 75.578000 29.870690 0 +SPEAKER 00029 0 107.022770 0.740740 0 +SPEAKER 00029 0 109.263510 1.240740 0 +SPEAKER 00029 0 130.875000 0.444000 0 +SPEAKER 00029 0 138.782000 3.759000 0 +SPEAKER 00029 0 144.597000 0.537000 0 +SPEAKER 00029 0 149.059810 2.963190 0 +SPEAKER 00029 0 156.356000 0.851950 0 +SPEAKER 00029 0 163.059810 1.055190 0 +SPEAKER 00029 0 165.245000 0.574000 0 +SPEAKER 00029 0 168.819000 1.370440 0 +SPEAKER 00029 0 170.837580 2.416420 0 +SPEAKER 00029 0 175.319060 0.870380 0 +SPEAKER 00029 0 176.633880 5.075120 0 +SPEAKER 00029 0 182.374620 0.500000 0 +SPEAKER 00029 0 183.242000 6.317810 0 +SPEAKER 00029 0 189.848000 16.841440 0 +SPEAKER 00029 0 211.134000 0.537000 0 +SPEAKER 00029 0 214.152000 0.593000 0 +SPEAKER 00029 0 215.319060 4.795940 0 +SPEAKER 00029 0 221.430000 0.537000 0 +SPEAKER 00029 0 224.101000 0.736580 0 +SPEAKER 00029 0 225.179000 10.899320 0 +SPEAKER 00029 0 239.615360 0.573640 0 +SPEAKER 00029 0 240.578000 2.685510 0 +SPEAKER 00029 0 243.671000 0.648000 0 +SPEAKER 00029 0 247.560000 0.574000 0 +SPEAKER 00029 0 250.133880 1.000120 0 +SPEAKER 00029 0 252.448690 0.944310 0 +SPEAKER 00029 0 255.356000 2.389000 0 +SPEAKER 00029 0 259.189000 1.669000 0 +SPEAKER 00029 0 263.726000 1.131920 0 +SPEAKER 00029 0 265.374620 0.611380 0 +SPEAKER 00029 0 266.930000 0.630000 0 +SPEAKER 00029 0 297.449000 0.666000 0 +SPEAKER 00029 0 305.244990 2.481480 0 +SPEAKER 00029 0 308.356000 1.389000 0 +SPEAKER 00029 0 315.448000 6.777730 0 +SPEAKER 00029 0 322.492000 15.808550 0 +SPEAKER 00029 0 339.949000 5.999690 0 +SPEAKER 00029 0 348.393000 0.722360 0 +SPEAKER 00029 0 354.226470 0.925530 0 +SPEAKER 00029 0 358.041000 4.000290 0 +SPEAKER 00029 0 363.041000 1.092880 0 +SPEAKER 00029 0 365.967210 4.685190 0 +SPEAKER 00029 0 371.012000 3.807060 0 +SPEAKER 00029 0 375.548000 1.000000 0 diff --git a/rttm/few/00036.rttm b/rttm/few/00036.rttm new file mode 100644 index 0000000000000000000000000000000000000000..af714fbb7eaebd0fea5284790d4c187974d82727 --- /dev/null +++ b/rttm/few/00036.rttm @@ -0,0 +1,24 @@ +SPEAKER 00036 0 0.000000 3.304990 0 +SPEAKER 00036 0 3.607000 3.325900 0 +SPEAKER 00036 0 7.474000 1.856110 0 +SPEAKER 00036 0 9.772000 0.869000 0 +SPEAKER 00036 0 11.019000 10.669720 0 +SPEAKER 00036 0 21.991000 5.476780 0 +SPEAKER 00036 0 27.942000 15.168000 0 +SPEAKER 00036 0 48.911660 0.462960 0 +SPEAKER 00036 0 49.940000 8.094000 0 +SPEAKER 00036 0 58.322000 3.349000 0 +SPEAKER 00036 0 61.974000 3.237970 0 +SPEAKER 00036 0 65.514000 4.279370 0 +SPEAKER 00036 0 70.101000 1.715620 0 +SPEAKER 00036 0 2.328250 0.360470 1 +SPEAKER 00036 0 3.837000 0.516000 1 +SPEAKER 00036 0 16.967210 0.474790 1 +SPEAKER 00036 0 22.050000 0.452670 1 +SPEAKER 00036 0 28.179000 0.370180 1 +SPEAKER 00036 0 32.929000 0.590000 1 +SPEAKER 00036 0 39.282030 0.555550 1 +SPEAKER 00036 0 43.824000 3.710000 1 +SPEAKER 00036 0 48.009000 2.495000 1 +SPEAKER 00036 0 53.005000 0.474410 1 +SPEAKER 00036 0 70.004000 0.591000 1 diff --git a/rttm/few/00053.rttm b/rttm/few/00053.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ec4d1c6fc9381dc6e0e6ed1103c1f6d449e48fe1 --- /dev/null +++ b/rttm/few/00053.rttm @@ -0,0 +1,20 @@ +SPEAKER 00053 0 0.782000 0.820550 3 +SPEAKER 00053 0 3.004000 0.354110 3 +SPEAKER 00053 0 6.387000 0.437770 3 +SPEAKER 00053 0 12.026000 0.323280 3 +SPEAKER 00053 0 23.226000 0.832110 3 +SPEAKER 00053 0 26.858110 4.942890 3 +SPEAKER 00053 0 0.726000 1.276550 0 +SPEAKER 00053 0 2.347000 0.633330 0 +SPEAKER 00053 0 3.541000 0.839330 0 +SPEAKER 00053 0 4.818000 1.606770 0 +SPEAKER 00053 0 7.226000 1.043220 0 +SPEAKER 00053 0 8.639000 0.674660 0 +SPEAKER 00053 0 9.912000 0.312770 0 +SPEAKER 00053 0 11.301000 0.834880 0 +SPEAKER 00053 0 12.836000 2.144330 0 +SPEAKER 00053 0 15.856000 6.482000 0 +SPEAKER 00053 0 24.802550 1.922220 0 +SPEAKER 00053 0 0.000000 0.480330 2 +SPEAKER 00053 0 8.187000 1.637770 1 +SPEAKER 00053 0 22.389000 2.856000 1 diff --git a/rttm/few/00066.rttm b/rttm/few/00066.rttm new file mode 100644 index 0000000000000000000000000000000000000000..478a44fb57705eddb91644d8dced4b0bb9b9cebe --- /dev/null +++ b/rttm/few/00066.rttm @@ -0,0 +1,25 @@ +SPEAKER 00066 0 0.114000 0.945810 2 +SPEAKER 00066 0 1.380000 2.087210 2 +SPEAKER 00066 0 3.733000 0.473000 2 +SPEAKER 00066 0 4.530000 2.455730 2 +SPEAKER 00066 0 7.967210 0.537040 2 +SPEAKER 00066 0 9.583000 0.291620 2 +SPEAKER 00066 0 10.350000 0.969060 2 +SPEAKER 00066 0 11.723510 0.534070 2 +SPEAKER 00066 0 12.551000 0.397000 2 +SPEAKER 00066 0 13.258000 1.048000 2 +SPEAKER 00066 0 19.448690 0.801310 2 +SPEAKER 00066 0 24.374620 0.442380 2 +SPEAKER 00066 0 3.550000 0.324620 0 +SPEAKER 00066 0 7.123000 0.560000 0 +SPEAKER 00066 0 8.480000 0.709440 0 +SPEAKER 00066 0 10.000000 0.350000 0 +SPEAKER 00066 0 12.567000 0.383000 0 +SPEAKER 00066 0 14.550000 0.847580 0 +SPEAKER 00066 0 15.780000 0.960000 0 +SPEAKER 00066 0 17.517000 1.666510 0 +SPEAKER 00066 0 19.441000 0.544730 0 +SPEAKER 00066 0 20.348000 3.267360 0 +SPEAKER 00066 0 24.404000 0.746000 0 +SPEAKER 00066 0 16.683000 0.774000 1 +SPEAKER 00066 0 23.450000 0.700000 1 diff --git a/rttm/few/00073.rttm b/rttm/few/00073.rttm new file mode 100644 index 0000000000000000000000000000000000000000..d367bc3ab84e21379f64d4b02d3a57d8c4e16ff0 --- /dev/null +++ b/rttm/few/00073.rttm @@ -0,0 +1,11 @@ +SPEAKER 00073 0 0.023000 2.852000 0 +SPEAKER 00073 0 3.252000 0.560000 0 +SPEAKER 00073 0 4.096840 4.462970 0 +SPEAKER 00073 0 9.207950 1.129630 0 +SPEAKER 00073 0 20.043000 0.536000 0 +SPEAKER 00073 0 22.231000 4.312920 0 +SPEAKER 00073 0 26.877260 5.571430 0 +SPEAKER 00073 0 32.809000 1.000000 0 +SPEAKER 00073 0 10.594000 7.299000 1 +SPEAKER 00073 0 18.263510 1.551250 1 +SPEAKER 00073 0 20.086000 2.140470 1 diff --git a/rttm/few/00080.rttm b/rttm/few/00080.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c5257ccc365e51e4dd179d5d49225e7986554cdc --- /dev/null +++ b/rttm/few/00080.rttm @@ -0,0 +1,17 @@ +SPEAKER 00080 0 0.004000 0.321560 0 +SPEAKER 00080 0 7.656550 1.640840 0 +SPEAKER 00080 0 11.171000 0.260190 0 +SPEAKER 00080 0 13.255140 0.971830 0 +SPEAKER 00080 0 22.832600 1.133800 0 +SPEAKER 00080 0 24.994570 1.049300 0 +SPEAKER 00080 0 0.367810 2.169020 2 +SPEAKER 00080 0 4.458000 0.895000 2 +SPEAKER 00080 0 5.790000 1.873590 2 +SPEAKER 00080 0 8.255000 5.098000 2 +SPEAKER 00080 0 13.727000 7.183070 2 +SPEAKER 00080 0 21.184710 2.766290 2 +SPEAKER 00080 0 24.508000 0.683000 2 +SPEAKER 00080 0 26.050910 2.421090 2 +SPEAKER 00080 0 2.480490 3.070420 1 +SPEAKER 00080 0 12.466400 0.408460 1 +SPEAKER 00080 0 23.125000 0.380000 1 diff --git a/rttm/few/00084.rttm b/rttm/few/00084.rttm new file mode 100644 index 0000000000000000000000000000000000000000..d5216232faaf06ff8f93c5342f5570b0da10118c --- /dev/null +++ b/rttm/few/00084.rttm @@ -0,0 +1,20 @@ +SPEAKER 00084 0 0.065000 1.348000 0 +SPEAKER 00084 0 5.368000 2.333000 0 +SPEAKER 00084 0 8.374620 0.685190 0 +SPEAKER 00084 0 9.768000 0.645000 0 +SPEAKER 00084 0 17.141000 0.984000 0 +SPEAKER 00084 0 20.110000 1.046000 0 +SPEAKER 00084 0 24.748000 0.786000 0 +SPEAKER 00084 0 1.066000 1.317000 1 +SPEAKER 00084 0 2.883000 2.470000 1 +SPEAKER 00084 0 7.663000 0.750000 1 +SPEAKER 00084 0 8.964000 1.222000 1 +SPEAKER 00084 0 10.526000 0.645000 1 +SPEAKER 00084 0 12.292000 0.712000 1 +SPEAKER 00084 0 16.565000 0.678000 1 +SPEAKER 00084 0 18.534000 1.258000 1 +SPEAKER 00084 0 23.368000 2.136000 1 +SPEAKER 00084 0 26.641000 2.434000 1 +SPEAKER 00084 0 11.413000 0.470000 h0 +SPEAKER 00084 0 13.247000 0.602000 h0 +SPEAKER 00084 0 21.201000 0.576000 h0 diff --git a/rttm/few/00090.rttm b/rttm/few/00090.rttm new file mode 100644 index 0000000000000000000000000000000000000000..35d5b78c76a7008010d73d01ea8ae9f817161202 --- /dev/null +++ b/rttm/few/00090.rttm @@ -0,0 +1,13 @@ +SPEAKER 00090 0 0.004000 2.482000 2 +SPEAKER 00090 0 4.890800 8.687200 2 +SPEAKER 00090 0 13.937000 1.486060 2 +SPEAKER 00090 0 24.773370 0.562630 2 +SPEAKER 00090 0 0.893000 4.259000 0 +SPEAKER 00090 0 16.184000 5.265000 0 +SPEAKER 00090 0 22.356000 2.185000 0 +SPEAKER 00090 0 5.736000 0.606000 1 +SPEAKER 00090 0 12.038000 0.984770 1 +SPEAKER 00090 0 14.856100 1.388900 1 +SPEAKER 00090 0 20.745000 0.678060 1 +SPEAKER 00090 0 21.819060 0.362060 1 +SPEAKER 00090 0 22.984250 2.316300 1 diff --git a/rttm/few/00091.rttm b/rttm/few/00091.rttm new file mode 100644 index 0000000000000000000000000000000000000000..f412dc47d188b4993cab83c58aba15bafc66fa64 --- /dev/null +++ b/rttm/few/00091.rttm @@ -0,0 +1,23 @@ +SPEAKER 00091 0 0.023000 4.537000 2 +SPEAKER 00091 0 5.124720 0.879280 2 +SPEAKER 00091 0 15.321660 0.745790 2 +SPEAKER 00091 0 19.367110 0.599890 2 +SPEAKER 00091 0 22.048930 1.879180 2 +SPEAKER 00091 0 25.106000 0.491000 2 +SPEAKER 00091 0 26.370730 0.615270 2 +SPEAKER 00091 0 28.541000 1.129140 2 +SPEAKER 00091 0 30.541000 0.852000 2 +SPEAKER 00091 0 32.700450 2.030300 2 +SPEAKER 00091 0 35.897420 1.717580 2 +SPEAKER 00091 0 39.505000 3.240000 2 +SPEAKER 00091 0 43.504000 1.650990 2 +SPEAKER 00091 0 46.338000 2.926000 2 +SPEAKER 00091 0 54.171000 0.895000 2 +SPEAKER 00091 0 14.776200 1.348630 0 +SPEAKER 00091 0 30.769220 1.197780 0 +SPEAKER 00091 0 37.689000 0.741000 0 +SPEAKER 00091 0 51.078000 1.061840 0 +SPEAKER 00091 0 5.016610 11.932390 1 +SPEAKER 00091 0 23.846140 2.509860 1 +SPEAKER 00091 0 27.367110 1.173890 1 +SPEAKER 00091 0 38.967000 0.426000 1 diff --git a/rttm/few/00099.rttm b/rttm/few/00099.rttm new file mode 100644 index 0000000000000000000000000000000000000000..24628cd584996ad2df8538ef5c569eec0229e685 --- /dev/null +++ b/rttm/few/00099.rttm @@ -0,0 +1,27 @@ +SPEAKER 00099 0 2.519000 1.761000 1 +SPEAKER 00099 0 5.034000 0.621000 1 +SPEAKER 00099 0 8.589000 1.914000 1 +SPEAKER 00099 0 12.746000 0.433000 1 +SPEAKER 00099 0 13.517000 0.473000 1 +SPEAKER 00099 0 19.138000 3.460000 1 +SPEAKER 00099 0 28.098000 0.594000 1 +SPEAKER 00099 0 39.841000 0.405000 1 +SPEAKER 00099 0 40.760000 1.188690 1 +SPEAKER 00099 0 42.755000 2.032000 1 +SPEAKER 00099 0 50.449000 1.169330 1 +SPEAKER 00099 0 4.579000 1.728000 3 +SPEAKER 00099 0 6.852000 0.560000 3 +SPEAKER 00099 0 13.075000 0.671530 3 +SPEAKER 00099 0 14.760000 3.635000 3 +SPEAKER 00099 0 18.733000 0.519000 3 +SPEAKER 00099 0 23.264000 3.265000 3 +SPEAKER 00099 0 27.152000 0.797000 3 +SPEAKER 00099 0 28.611000 4.122000 3 +SPEAKER 00099 0 33.125000 2.581000 3 +SPEAKER 00099 0 36.152000 0.324000 3 +SPEAKER 00099 0 37.003000 5.595000 3 +SPEAKER 00099 0 45.030000 1.392000 3 +SPEAKER 00099 0 11.625000 2.769620 0 +SPEAKER 00099 0 46.422000 4.743000 0 +SPEAKER 00099 0 10.299000 1.062920 2 +SPEAKER 00099 0 28.409000 0.472000 2 diff --git a/rttm/few/00104.rttm b/rttm/few/00104.rttm new file mode 100644 index 0000000000000000000000000000000000000000..008e65dccb518109217036a0e6b389121f08e334 --- /dev/null +++ b/rttm/few/00104.rttm @@ -0,0 +1,35 @@ +SPEAKER 00104 0 0.244990 7.204010 0 +SPEAKER 00104 0 7.800000 3.019000 0 +SPEAKER 00104 0 11.356000 5.278000 0 +SPEAKER 00104 0 16.949000 5.240000 0 +SPEAKER 00104 0 22.522770 4.444230 0 +SPEAKER 00104 0 29.560000 0.463000 0 +SPEAKER 00104 0 38.726000 0.389000 0 +SPEAKER 00104 0 45.097000 0.907000 0 +SPEAKER 00104 0 46.874000 17.149000 0 +SPEAKER 00104 0 64.282000 2.074000 0 +SPEAKER 00104 0 67.337000 1.704000 0 +SPEAKER 00104 0 69.430000 4.092770 0 +SPEAKER 00104 0 74.319000 6.833000 0 +SPEAKER 00104 0 81.560000 8.000000 0 +SPEAKER 00104 0 99.412000 0.426000 0 +SPEAKER 00104 0 101.708000 4.352000 0 +SPEAKER 00104 0 106.375000 0.592000 0 +SPEAKER 00104 0 107.801000 0.543000 0 +SPEAKER 00104 0 10.819000 0.537000 1 +SPEAKER 00104 0 16.634000 0.462840 1 +SPEAKER 00104 0 17.633000 0.704580 1 +SPEAKER 00104 0 26.893000 2.741000 1 +SPEAKER 00104 0 29.967210 3.147790 1 +SPEAKER 00104 0 33.541000 13.907690 1 +SPEAKER 00104 0 50.301000 0.500000 1 +SPEAKER 00104 0 51.949000 0.629000 1 +SPEAKER 00104 0 62.171000 0.833000 1 +SPEAKER 00104 0 66.356000 0.741000 1 +SPEAKER 00104 0 68.522770 0.388890 1 +SPEAKER 00104 0 73.504000 0.815000 1 +SPEAKER 00104 0 81.152000 0.408000 1 +SPEAKER 00104 0 82.059810 0.648140 1 +SPEAKER 00104 0 89.134000 2.018000 1 +SPEAKER 00104 0 91.615000 10.056000 1 +SPEAKER 00104 0 106.375000 1.240000 1 diff --git a/rttm/few/00133.rttm b/rttm/few/00133.rttm new file mode 100644 index 0000000000000000000000000000000000000000..beace0927dba2713093c5e6bdac24afcff33deb0 --- /dev/null +++ b/rttm/few/00133.rttm @@ -0,0 +1,17 @@ +SPEAKER 00133 0 0.012000 2.244180 0 +SPEAKER 00133 0 2.880000 1.264000 0 +SPEAKER 00133 0 4.680000 1.296520 0 +SPEAKER 00133 0 20.898000 1.170000 0 +SPEAKER 00133 0 24.257000 2.358000 0 +SPEAKER 00133 0 28.880000 3.890470 0 +SPEAKER 00133 0 34.059000 0.604000 0 +SPEAKER 00133 0 37.671000 0.323000 0 +SPEAKER 00133 0 4.342000 1.255000 1 +SPEAKER 00133 0 6.135000 0.960000 1 +SPEAKER 00133 0 7.927000 2.505400 1 +SPEAKER 00133 0 10.905730 8.549270 1 +SPEAKER 00133 0 19.953000 2.587000 1 +SPEAKER 00133 0 23.455000 1.455000 1 +SPEAKER 00133 0 26.521000 1.840000 1 +SPEAKER 00133 0 34.484000 2.754000 1 +SPEAKER 00133 0 37.625000 0.699000 1 diff --git a/rttm/few/00134.rttm b/rttm/few/00134.rttm new file mode 100644 index 0000000000000000000000000000000000000000..419bc23bba10f617a3e01052af0e3802b7a296f5 --- /dev/null +++ b/rttm/few/00134.rttm @@ -0,0 +1,38 @@ +SPEAKER 00134 0 0.029000 1.845620 3 +SPEAKER 00134 0 2.208000 0.518470 3 +SPEAKER 00134 0 3.004000 1.889140 3 +SPEAKER 00134 0 5.375000 0.684810 3 +SPEAKER 00134 0 6.541000 1.000000 3 +SPEAKER 00134 0 8.225000 1.723690 3 +SPEAKER 00134 0 13.356000 1.000000 3 +SPEAKER 00134 0 15.412000 1.666000 3 +SPEAKER 00134 0 17.976000 0.621000 3 +SPEAKER 00134 0 20.761000 1.317000 3 +SPEAKER 00134 0 25.060000 4.018000 3 +SPEAKER 00134 0 29.541000 4.870660 3 +SPEAKER 00134 0 35.023000 2.296060 3 +SPEAKER 00134 0 37.597000 3.110950 3 +SPEAKER 00134 0 41.264000 0.980990 3 +SPEAKER 00134 0 42.708000 0.407360 3 +SPEAKER 00134 0 43.727000 0.406880 3 +SPEAKER 00134 0 45.782000 2.240770 3 +SPEAKER 00134 0 48.764000 1.221730 3 +SPEAKER 00134 0 1.485000 0.408000 2 +SPEAKER 00134 0 4.801000 0.463000 2 +SPEAKER 00134 0 7.652000 0.682000 2 +SPEAKER 00134 0 9.338000 3.814400 2 +SPEAKER 00134 0 16.689000 0.944880 2 +SPEAKER 00134 0 19.004000 4.129880 2 +SPEAKER 00134 0 24.580000 0.628000 2 +SPEAKER 00134 0 28.578000 1.648000 2 +SPEAKER 00134 0 34.374620 0.537040 2 +SPEAKER 00134 0 40.379000 0.440060 2 +SPEAKER 00134 0 47.893000 1.055690 2 +SPEAKER 00134 0 6.115000 0.334000 1 +SPEAKER 00134 0 7.910000 0.428000 1 +SPEAKER 00134 0 9.250000 0.920920 1 +SPEAKER 00134 0 15.578000 4.328470 1 +SPEAKER 00134 0 20.541000 0.691400 1 +SPEAKER 00134 0 13.542000 3.666000 0 +SPEAKER 00134 0 20.412000 1.351510 0 +SPEAKER 00134 0 22.856000 1.240840 0 diff --git a/rttm/few/00142.rttm b/rttm/few/00142.rttm new file mode 100644 index 0000000000000000000000000000000000000000..5eb0e919b97ad35266d2948e62a9c3bb81c1881c --- /dev/null +++ b/rttm/few/00142.rttm @@ -0,0 +1,9 @@ +SPEAKER 00142 0 0.171980 10.247020 0 +SPEAKER 00142 0 10.898000 3.595240 0 +SPEAKER 00142 0 15.019560 12.140350 0 +SPEAKER 00142 0 27.511000 1.631360 0 +SPEAKER 00142 0 38.379000 0.582000 0 +SPEAKER 00142 0 49.955000 0.401100 0 +SPEAKER 00142 0 14.491000 0.414520 1 +SPEAKER 00142 0 29.092000 17.597440 1 +SPEAKER 00142 0 47.004250 9.481480 1 diff --git a/rttm/few/00143.rttm b/rttm/few/00143.rttm new file mode 100644 index 0000000000000000000000000000000000000000..6ae7efd807e39fcf8713593352403b1bbde84707 --- /dev/null +++ b/rttm/few/00143.rttm @@ -0,0 +1,26 @@ +SPEAKER 00143 0 0.000000 0.838000 2 +SPEAKER 00143 0 2.004000 0.445000 2 +SPEAKER 00143 0 6.452000 0.812000 2 +SPEAKER 00143 0 7.801000 0.546000 2 +SPEAKER 00143 0 19.449000 0.870000 2 +SPEAKER 00143 0 21.934000 1.552000 2 +SPEAKER 00143 0 33.541000 1.000000 2 +SPEAKER 00143 0 35.671000 2.130000 2 +SPEAKER 00143 0 0.449000 1.370000 0 +SPEAKER 00143 0 2.560000 1.259000 0 +SPEAKER 00143 0 5.319000 1.167000 0 +SPEAKER 00143 0 7.226000 0.593000 0 +SPEAKER 00143 0 8.486000 0.837000 0 +SPEAKER 00143 0 10.523000 2.042000 0 +SPEAKER 00143 0 13.819000 0.420000 0 +SPEAKER 00143 0 20.338000 1.529950 0 +SPEAKER 00143 0 22.791000 1.651770 0 +SPEAKER 00143 0 24.760000 2.837580 0 +SPEAKER 00143 0 30.597000 0.648000 0 +SPEAKER 00143 0 32.076000 0.799000 0 +SPEAKER 00143 0 34.541000 1.114000 0 +SPEAKER 00143 0 2.615000 0.778000 h0 +SPEAKER 00143 0 31.049000 1.122000 h0 +SPEAKER 00143 0 9.764000 0.291000 1 +SPEAKER 00143 0 22.801000 0.518000 1 +SPEAKER 00143 0 32.930000 0.514000 1 diff --git a/rttm/few/00144.rttm b/rttm/few/00144.rttm new file mode 100644 index 0000000000000000000000000000000000000000..e1e5086ac49535785b94b3d0542f6ab94c29dd48 --- /dev/null +++ b/rttm/few/00144.rttm @@ -0,0 +1,22 @@ +SPEAKER 00144 0 0.356000 2.807000 2 +SPEAKER 00144 0 10.679000 2.007000 2 +SPEAKER 00144 0 14.125000 1.000000 2 +SPEAKER 00144 0 20.363000 1.839000 2 +SPEAKER 00144 0 22.744990 1.764010 2 +SPEAKER 00144 0 27.163000 1.317000 2 +SPEAKER 00144 0 0.763000 0.670000 1 +SPEAKER 00144 0 3.886000 4.136770 1 +SPEAKER 00144 0 15.356000 1.715000 1 +SPEAKER 00144 0 17.656000 1.469000 1 +SPEAKER 00144 0 19.471000 0.608000 1 +SPEAKER 00144 0 21.979000 1.407000 1 +SPEAKER 00144 0 24.254000 0.458000 1 +SPEAKER 00144 0 25.756000 1.748250 1 +SPEAKER 00144 0 2.771000 1.977000 0 +SPEAKER 00144 0 11.761000 2.362000 0 +SPEAKER 00144 0 8.633880 2.578120 h0 +SPEAKER 00144 0 12.856100 1.429900 h0 +SPEAKER 00144 0 14.671000 1.353580 h0 +SPEAKER 00144 0 22.209000 1.977000 h0 +SPEAKER 00144 0 24.486000 1.216000 h0 +SPEAKER 00144 0 28.756000 0.828000 h0 diff --git a/rttm/few/00169.rttm b/rttm/few/00169.rttm new file mode 100644 index 0000000000000000000000000000000000000000..88f5e2dc30d5181f00c65ffa7a874b94e18d909c --- /dev/null +++ b/rttm/few/00169.rttm @@ -0,0 +1,42 @@ +SPEAKER 00169 0 0.000000 5.893140 1 +SPEAKER 00169 0 6.597000 4.259100 1 +SPEAKER 00169 0 11.541000 6.278060 1 +SPEAKER 00169 0 18.301000 9.332880 1 +SPEAKER 00169 0 31.134000 1.110990 1 +SPEAKER 00169 0 35.633880 2.388890 1 +SPEAKER 00169 0 44.615000 0.796660 1 +SPEAKER 00169 0 46.282000 0.556000 1 +SPEAKER 00169 0 47.449000 1.944140 1 +SPEAKER 00169 0 52.541290 0.796290 1 +SPEAKER 00169 0 59.412000 0.722000 1 +SPEAKER 00169 0 78.228000 0.794770 1 +SPEAKER 00169 0 85.615000 1.056000 1 +SPEAKER 00169 0 88.652000 1.241140 1 +SPEAKER 00169 0 95.282000 1.259000 1 +SPEAKER 00169 0 97.023000 5.777550 1 +SPEAKER 00169 0 103.356000 2.204000 1 +SPEAKER 00169 0 106.375000 4.240000 1 +SPEAKER 00169 0 111.189000 0.778000 1 +SPEAKER 00169 0 112.282000 6.241000 1 +SPEAKER 00169 0 5.430000 1.518690 0 +SPEAKER 00169 0 22.615000 1.759620 0 +SPEAKER 00169 0 28.412000 5.462620 0 +SPEAKER 00169 0 34.930180 4.555820 0 +SPEAKER 00169 0 40.115000 3.130000 0 +SPEAKER 00169 0 45.671000 1.593000 0 +SPEAKER 00169 0 48.893140 1.203860 0 +SPEAKER 00169 0 50.651000 1.520000 0 +SPEAKER 00169 0 64.059810 5.833330 0 +SPEAKER 00169 0 72.041000 4.315100 0 +SPEAKER 00169 0 78.301000 8.823720 0 +SPEAKER 00169 0 91.244000 4.926920 0 +SPEAKER 00169 0 100.551000 0.471000 0 +SPEAKER 00169 0 109.597000 1.635830 0 +SPEAKER 00169 0 10.615000 2.630000 2 +SPEAKER 00169 0 22.504000 1.982000 2 +SPEAKER 00169 0 37.856000 7.667000 2 +SPEAKER 00169 0 47.691000 0.850290 2 +SPEAKER 00169 0 53.448690 9.592600 2 +SPEAKER 00169 0 68.171000 1.592510 2 +SPEAKER 00169 0 86.504250 0.647750 2 +SPEAKER 00169 0 103.189000 0.815250 2 diff --git a/rttm/few/00177.rttm b/rttm/few/00177.rttm new file mode 100644 index 0000000000000000000000000000000000000000..7288357412f50730cb69d7259e05b63d7b5a69f9 --- /dev/null +++ b/rttm/few/00177.rttm @@ -0,0 +1,6 @@ +SPEAKER 00177 0 0.000000 4.301000 0 +SPEAKER 00177 0 9.412000 0.555210 0 +SPEAKER 00177 0 34.986000 0.721950 0 +SPEAKER 00177 0 4.727000 5.332810 1 +SPEAKER 00177 0 10.504000 15.870620 1 +SPEAKER 00177 0 26.763510 6.481480 1 diff --git a/rttm/few/00180.rttm b/rttm/few/00180.rttm new file mode 100644 index 0000000000000000000000000000000000000000..277ac089df0826a720d1322621c8fbe6488164c5 --- /dev/null +++ b/rttm/few/00180.rttm @@ -0,0 +1,14 @@ +SPEAKER 00180 0 0.041000 0.593000 0 +SPEAKER 00180 0 2.264000 1.372950 0 +SPEAKER 00180 0 4.636950 0.941050 0 +SPEAKER 00180 0 6.136950 3.700630 0 +SPEAKER 00180 0 10.417430 5.902570 0 +SPEAKER 00180 0 19.462000 3.479820 0 +SPEAKER 00180 0 25.707950 2.552050 0 +SPEAKER 00180 0 1.246700 3.498300 1 +SPEAKER 00180 0 5.198000 0.867000 1 +SPEAKER 00180 0 9.393000 1.146380 1 +SPEAKER 00180 0 14.189000 0.496730 1 +SPEAKER 00180 0 16.299000 3.398920 1 +SPEAKER 00180 0 23.282030 3.062230 1 +SPEAKER 00180 0 27.004000 1.071970 1 diff --git a/rttm/few/00190.rttm b/rttm/few/00190.rttm new file mode 100644 index 0000000000000000000000000000000000000000..e2cbf42e2e5deed130f60c70b302b1e810207cd9 --- /dev/null +++ b/rttm/few/00190.rttm @@ -0,0 +1,13 @@ +SPEAKER 00190 0 0.078000 1.797000 0 +SPEAKER 00190 0 4.264000 2.574000 0 +SPEAKER 00190 0 8.319000 0.666730 0 +SPEAKER 00190 0 13.208000 1.370000 0 +SPEAKER 00190 0 15.634000 1.575000 0 +SPEAKER 00190 0 18.449000 6.036730 0 +SPEAKER 00190 0 2.041290 2.259260 1 +SPEAKER 00190 0 7.189440 1.074560 1 +SPEAKER 00190 0 9.282000 3.556000 1 +SPEAKER 00190 0 14.060000 1.110920 1 +SPEAKER 00190 0 17.004250 0.629750 1 +SPEAKER 00190 0 19.819000 0.963000 1 +SPEAKER 00190 0 22.189000 0.482000 1 diff --git a/rttm/few/00198.rttm b/rttm/few/00198.rttm new file mode 100644 index 0000000000000000000000000000000000000000..0b0488cac3ba2413c73f37709f10636d8c93d93a --- /dev/null +++ b/rttm/few/00198.rttm @@ -0,0 +1,31 @@ +SPEAKER 00198 0 3.299000 2.760810 1 +SPEAKER 00198 0 7.989000 6.237470 1 +SPEAKER 00198 0 15.393140 3.494420 1 +SPEAKER 00198 0 19.439000 0.589580 1 +SPEAKER 00198 0 20.438840 2.256410 1 +SPEAKER 00198 0 24.083000 0.817380 1 +SPEAKER 00198 0 34.597000 1.852000 1 +SPEAKER 00198 0 36.840000 0.842430 1 +SPEAKER 00198 0 39.592690 2.485630 1 +SPEAKER 00198 0 44.739000 0.763940 1 +SPEAKER 00198 0 46.856100 4.249410 1 +SPEAKER 00198 0 4.245000 0.632000 0 +SPEAKER 00198 0 6.040000 0.613880 0 +SPEAKER 00198 0 14.374620 0.648150 0 +SPEAKER 00198 0 16.753000 0.634560 0 +SPEAKER 00198 0 29.013000 1.231990 0 +SPEAKER 00198 0 31.893000 2.891990 0 +SPEAKER 00198 0 35.672000 1.498920 0 +SPEAKER 00198 0 38.430180 1.341990 0 +SPEAKER 00198 0 42.726000 0.741000 0 +SPEAKER 00198 0 48.319000 2.107020 0 +SPEAKER 00198 0 0.004000 3.408000 2 +SPEAKER 00198 0 7.375000 0.388510 2 +SPEAKER 00198 0 18.609000 1.377000 2 +SPEAKER 00198 0 20.521000 3.502000 2 +SPEAKER 00198 0 25.252000 4.252000 2 +SPEAKER 00198 0 31.912000 1.055000 2 +SPEAKER 00198 0 33.643970 0.749170 2 +SPEAKER 00198 0 45.708000 0.846220 2 +SPEAKER 00198 0 51.268000 1.000000 2 +SPEAKER 00198 0 13.660000 1.085900 h0 diff --git a/rttm/few/00200.rttm b/rttm/few/00200.rttm new file mode 100644 index 0000000000000000000000000000000000000000..7b17effbaed860d893effbaddc1cf0db69bd635f --- /dev/null +++ b/rttm/few/00200.rttm @@ -0,0 +1,19 @@ +SPEAKER 00200 0 0.578000 2.723000 0 +SPEAKER 00200 0 3.615000 1.852000 0 +SPEAKER 00200 0 8.652000 1.093000 0 +SPEAKER 00200 0 11.967000 0.537250 0 +SPEAKER 00200 0 13.464000 4.725000 0 +SPEAKER 00200 0 18.722000 3.523000 0 +SPEAKER 00200 0 23.383000 9.973100 0 +SPEAKER 00200 0 33.745000 4.499990 0 +SPEAKER 00200 0 38.689000 5.519000 0 +SPEAKER 00200 0 0.000000 0.504000 1 +SPEAKER 00200 0 5.541000 2.315000 1 +SPEAKER 00200 0 11.226000 0.760000 1 +SPEAKER 00200 0 20.167000 0.671000 1 +SPEAKER 00200 0 22.430000 0.908000 1 +SPEAKER 00200 0 27.837580 0.351420 1 +SPEAKER 00200 0 35.486000 0.481000 1 +SPEAKER 00200 0 36.300550 0.593450 1 +SPEAKER 00200 0 38.300000 0.574000 1 +SPEAKER 00200 0 41.912000 2.259000 1 diff --git a/rttm/few/00208.rttm b/rttm/few/00208.rttm new file mode 100644 index 0000000000000000000000000000000000000000..df65f291d7f39f373797812147ba628572016054 --- /dev/null +++ b/rttm/few/00208.rttm @@ -0,0 +1,28 @@ +SPEAKER 00208 0 0.393000 0.338420 0 +SPEAKER 00208 0 8.169000 1.974000 0 +SPEAKER 00208 0 16.981420 4.004580 0 +SPEAKER 00208 0 24.245000 0.340590 0 +SPEAKER 00208 0 25.856420 5.610580 0 +SPEAKER 00208 0 32.542000 0.859810 0 +SPEAKER 00208 0 39.352000 0.595000 0 +SPEAKER 00208 0 40.634000 0.334470 0 +SPEAKER 00208 0 44.470000 14.636420 0 +SPEAKER 00208 0 64.085590 3.659410 0 +SPEAKER 00208 0 68.418920 1.000000 0 +SPEAKER 00208 0 70.044000 2.291590 0 +SPEAKER 00208 0 73.486000 1.440000 0 +SPEAKER 00208 0 76.189000 0.475000 0 +SPEAKER 00208 0 0.000000 2.152000 1 +SPEAKER 00208 0 2.960590 5.354170 1 +SPEAKER 00208 0 8.919000 8.729090 1 +SPEAKER 00208 0 20.356420 4.375000 1 +SPEAKER 00208 0 25.346000 0.427090 1 +SPEAKER 00208 0 30.825300 1.066700 1 +SPEAKER 00208 0 33.855000 1.063470 1 +SPEAKER 00208 0 35.435140 5.050000 1 +SPEAKER 00208 0 40.968000 3.417140 1 +SPEAKER 00208 0 58.315000 2.478920 1 +SPEAKER 00208 0 61.381000 2.787920 1 +SPEAKER 00208 0 70.023000 0.895920 1 +SPEAKER 00208 0 72.648090 1.152910 1 +SPEAKER 00208 0 75.097000 1.361000 1 diff --git a/rttm/few/00215.rttm b/rttm/few/00215.rttm new file mode 100644 index 0000000000000000000000000000000000000000..58bcffdd70b3e300888c6e11c99879d00c9a1073 --- /dev/null +++ b/rttm/few/00215.rttm @@ -0,0 +1,8 @@ +SPEAKER 00215 0 0.217000 3.416880 1 +SPEAKER 00215 0 5.210120 0.341460 1 +SPEAKER 00215 0 5.941820 3.895760 1 +SPEAKER 00215 0 10.706470 1.779260 1 +SPEAKER 00215 0 13.523000 0.826630 1 +SPEAKER 00215 0 17.356460 2.944090 1 +SPEAKER 00215 0 4.075970 0.636430 0 +SPEAKER 00215 0 13.634000 3.001360 0 diff --git a/rttm/few/00222.rttm b/rttm/few/00222.rttm new file mode 100644 index 0000000000000000000000000000000000000000..bc29ba1689622b3197b08489b697ff1616b3d84c --- /dev/null +++ b/rttm/few/00222.rttm @@ -0,0 +1,19 @@ +SPEAKER 00222 0 0.282000 2.962990 0 +SPEAKER 00222 0 3.837580 3.296300 0 +SPEAKER 00222 0 7.949000 12.536730 0 +SPEAKER 00222 0 21.453000 3.736000 0 +SPEAKER 00222 0 25.949000 2.052000 0 +SPEAKER 00222 0 28.819000 2.518000 0 +SPEAKER 00222 0 36.190000 1.191000 0 +SPEAKER 00222 0 39.828000 1.546620 0 +SPEAKER 00222 0 42.133880 1.129630 0 +SPEAKER 00222 0 44.504000 2.971000 0 +SPEAKER 00222 0 48.930000 0.796470 0 +SPEAKER 00222 0 50.448690 2.370370 0 +SPEAKER 00222 0 55.386000 4.563000 0 +SPEAKER 00222 0 65.784000 3.077660 0 +SPEAKER 00222 0 69.356000 1.068000 0 +SPEAKER 00222 0 6.707950 0.666670 1 +SPEAKER 00222 0 19.986000 1.000000 1 +SPEAKER 00222 0 32.459000 3.697100 1 +SPEAKER 00222 0 51.449000 1.573770 1 diff --git a/rttm/few/00225.rttm b/rttm/few/00225.rttm new file mode 100644 index 0000000000000000000000000000000000000000..8a81e2e7c9263855ecc9c32fdeff16539a572423 --- /dev/null +++ b/rttm/few/00225.rttm @@ -0,0 +1,24 @@ +SPEAKER 00225 0 0.002000 1.576320 3 +SPEAKER 00225 0 15.504000 0.623000 3 +SPEAKER 00225 0 17.959000 1.647000 3 +SPEAKER 00225 0 20.485730 0.433270 3 +SPEAKER 00225 0 25.779000 1.928950 3 +SPEAKER 00225 0 0.044000 1.458000 2 +SPEAKER 00225 0 7.565000 0.687000 2 +SPEAKER 00225 0 9.071000 0.618440 2 +SPEAKER 00225 0 13.189440 0.708560 2 +SPEAKER 00225 0 20.336000 1.316400 2 +SPEAKER 00225 0 22.059810 0.870370 2 +SPEAKER 00225 0 23.244990 0.444450 2 +SPEAKER 00225 0 1.857000 1.073180 1 +SPEAKER 00225 0 3.248000 0.459950 1 +SPEAKER 00225 0 8.252000 3.178180 1 +SPEAKER 00225 0 11.911660 0.740740 1 +SPEAKER 00225 0 18.782000 1.555580 1 +SPEAKER 00225 0 22.893140 0.388890 1 +SPEAKER 00225 0 23.742000 0.706690 1 +SPEAKER 00225 0 24.985730 0.679270 1 +SPEAKER 00225 0 14.356100 1.111110 0 +SPEAKER 00225 0 16.231000 1.459000 0 +SPEAKER 00225 0 19.357000 2.562000 0 +SPEAKER 00225 0 23.411660 0.460340 0 diff --git a/rttm/few/00227.rttm b/rttm/few/00227.rttm new file mode 100644 index 0000000000000000000000000000000000000000..5f15542bfcb750b4d40a2441a1887a71c01e5d55 --- /dev/null +++ b/rttm/few/00227.rttm @@ -0,0 +1,8 @@ +SPEAKER 00227 0 0.000000 0.671000 1 +SPEAKER 00227 0 1.208000 3.389000 1 +SPEAKER 00227 0 4.679000 0.769690 0 +SPEAKER 00227 0 5.949000 1.407100 0 +SPEAKER 00227 0 7.930000 6.740920 0 +SPEAKER 00227 0 15.301000 16.263080 0 +SPEAKER 00227 0 31.897000 2.970110 0 +SPEAKER 00227 0 35.139000 3.500840 0 diff --git a/rttm/few/00233.rttm b/rttm/few/00233.rttm new file mode 100644 index 0000000000000000000000000000000000000000..f6453713ae31cc83fc488d64bf0d2c6d19f09ae4 --- /dev/null +++ b/rttm/few/00233.rttm @@ -0,0 +1,15 @@ +SPEAKER 00233 0 0.004000 1.037000 3 +SPEAKER 00233 0 2.764000 0.777000 3 +SPEAKER 00233 0 6.684000 2.709000 3 +SPEAKER 00233 0 11.268400 0.946810 3 +SPEAKER 00233 0 12.587550 15.086450 3 +SPEAKER 00233 0 3.245000 2.296000 2 +SPEAKER 00233 0 6.708000 1.444000 2 +SPEAKER 00233 0 11.247000 1.000000 2 +SPEAKER 00233 0 25.258480 2.418520 2 +SPEAKER 00233 0 0.615000 1.434330 0 +SPEAKER 00233 0 4.768000 2.271900 0 +SPEAKER 00233 0 25.223600 2.448400 0 +SPEAKER 00233 0 2.108000 1.535670 1 +SPEAKER 00233 0 9.351000 1.783240 1 +SPEAKER 00233 0 25.246850 2.425150 1 diff --git a/rttm/few/00235.rttm b/rttm/few/00235.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c5be4c461fc494ec47df5951f6d770f91291b45b --- /dev/null +++ b/rttm/few/00235.rttm @@ -0,0 +1,20 @@ +SPEAKER 00235 0 0.291360 1.206640 3 +SPEAKER 00235 0 6.070000 0.648000 3 +SPEAKER 00235 0 18.412000 0.852000 3 +SPEAKER 00235 0 0.004000 2.900250 0 +SPEAKER 00235 0 3.615000 1.315000 0 +SPEAKER 00235 0 5.838000 1.574000 0 +SPEAKER 00235 0 7.893000 1.371000 0 +SPEAKER 00235 0 9.856000 0.519000 0 +SPEAKER 00235 0 10.708000 0.536990 0 +SPEAKER 00235 0 11.708000 1.685000 0 +SPEAKER 00235 0 14.533140 0.593330 0 +SPEAKER 00235 0 15.449000 0.500000 0 +SPEAKER 00235 0 16.615360 1.351640 0 +SPEAKER 00235 0 3.560000 3.820550 2 +SPEAKER 00235 0 8.708000 1.296000 2 +SPEAKER 00235 0 15.597000 1.000000 2 +SPEAKER 00235 0 19.633000 2.075000 2 +SPEAKER 00235 0 13.523000 2.498000 1 +SPEAKER 00235 0 16.764000 0.388000 1 +SPEAKER 00235 0 18.245000 0.433320 1 diff --git a/rttm/few/00239.rttm b/rttm/few/00239.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4b57f6593cdfcfa95167c689fee90c5a02b2167e --- /dev/null +++ b/rttm/few/00239.rttm @@ -0,0 +1,12 @@ +SPEAKER 00239 0 0.000000 1.773000 h0 +SPEAKER 00239 0 19.104000 1.000000 h0 +SPEAKER 00239 0 0.836000 2.335000 1 +SPEAKER 00239 0 3.782000 4.685000 1 +SPEAKER 00239 0 10.211000 2.553000 1 +SPEAKER 00239 0 14.949000 0.555000 1 +SPEAKER 00239 0 16.227000 0.852000 1 +SPEAKER 00239 0 18.438840 1.621160 1 +SPEAKER 00239 0 7.720890 0.282050 0 +SPEAKER 00239 0 8.486000 1.725000 0 +SPEAKER 00239 0 11.041000 0.949120 0 +SPEAKER 00239 0 12.643970 5.820510 0 diff --git a/rttm/few/00240.rttm b/rttm/few/00240.rttm new file mode 100644 index 0000000000000000000000000000000000000000..3afc30ad0c1ab6664ccdab3402315b87e9dabab7 --- /dev/null +++ b/rttm/few/00240.rttm @@ -0,0 +1,11 @@ +SPEAKER 00240 0 1.791000 0.545810 0 +SPEAKER 00240 0 4.018630 1.333330 0 +SPEAKER 00240 0 5.714000 2.244020 0 +SPEAKER 00240 0 8.504000 0.469170 0 +SPEAKER 00240 0 9.655000 1.333330 0 +SPEAKER 00240 0 13.004000 2.426000 0 +SPEAKER 00240 0 16.782000 1.312390 0 +SPEAKER 00240 0 22.578000 0.607300 0 +SPEAKER 00240 0 10.967000 1.384960 1 +SPEAKER 00240 0 18.488330 4.515670 1 +SPEAKER 00240 0 23.806510 1.068490 1 diff --git a/rttm/few/00241.rttm b/rttm/few/00241.rttm new file mode 100644 index 0000000000000000000000000000000000000000..f6a1f45c0ca3aa7eb7c8e50282e894841dd672fd --- /dev/null +++ b/rttm/few/00241.rttm @@ -0,0 +1,320 @@ +SPEAKER 00241 0 0.004000 2.500000 2 +SPEAKER 00241 0 3.134000 1.185000 2 +SPEAKER 00241 0 5.875000 0.314000 2 +SPEAKER 00241 0 7.523000 1.370000 2 +SPEAKER 00241 0 17.171000 1.296000 2 +SPEAKER 00241 0 20.486000 0.389000 2 +SPEAKER 00241 0 24.208000 2.141280 2 +SPEAKER 00241 0 30.356000 0.370000 2 +SPEAKER 00241 0 36.036000 1.061000 2 +SPEAKER 00241 0 42.429000 1.260000 2 +SPEAKER 00241 0 47.166000 0.826140 2 +SPEAKER 00241 0 49.838000 1.184750 2 +SPEAKER 00241 0 86.393000 0.352000 2 +SPEAKER 00241 0 112.690000 0.370000 2 +SPEAKER 00241 0 121.282000 0.593000 2 +SPEAKER 00241 0 126.282000 0.926000 2 +SPEAKER 00241 0 127.467000 1.463180 2 +SPEAKER 00241 0 133.412000 0.463000 2 +SPEAKER 00241 0 136.764000 0.777000 2 +SPEAKER 00241 0 139.949000 0.592000 2 +SPEAKER 00241 0 144.245000 0.519000 2 +SPEAKER 00241 0 147.189000 1.649000 2 +SPEAKER 00241 0 151.801000 0.481000 2 +SPEAKER 00241 0 157.274000 0.638000 2 +SPEAKER 00241 0 161.152000 0.519000 2 +SPEAKER 00241 0 166.634000 3.426000 2 +SPEAKER 00241 0 171.811000 2.638000 2 +SPEAKER 00241 0 185.900000 1.530000 2 +SPEAKER 00241 0 219.898390 3.309610 2 +SPEAKER 00241 0 223.782000 3.305070 2 +SPEAKER 00241 0 228.258000 4.080000 2 +SPEAKER 00241 0 234.152000 2.133180 2 +SPEAKER 00241 0 252.523000 1.703000 2 +SPEAKER 00241 0 259.523000 0.426000 2 +SPEAKER 00241 0 262.301000 0.629180 2 +SPEAKER 00241 0 263.767000 0.422440 2 +SPEAKER 00241 0 300.911660 4.552770 2 +SPEAKER 00241 0 307.880000 1.290920 2 +SPEAKER 00241 0 311.652000 0.371000 2 +SPEAKER 00241 0 320.671000 0.722000 2 +SPEAKER 00241 0 334.097000 0.669320 2 +SPEAKER 00241 0 345.967000 0.426000 2 +SPEAKER 00241 0 355.021000 2.339660 2 +SPEAKER 00241 0 358.170000 0.803860 2 +SPEAKER 00241 0 359.873000 1.583000 2 +SPEAKER 00241 0 366.152000 1.755000 2 +SPEAKER 00241 0 369.408000 0.522180 2 +SPEAKER 00241 0 371.445000 0.311880 2 +SPEAKER 00241 0 380.838000 1.629000 2 +SPEAKER 00241 0 390.412000 0.352000 2 +SPEAKER 00241 0 396.856000 1.315000 2 +SPEAKER 00241 0 404.856000 3.241000 2 +SPEAKER 00241 0 409.564000 3.259460 2 +SPEAKER 00241 0 416.003000 2.307630 2 +SPEAKER 00241 0 420.319000 3.685000 2 +SPEAKER 00241 0 428.235000 0.362000 2 +SPEAKER 00241 0 429.990000 2.000120 2 +SPEAKER 00241 0 435.189000 0.593000 2 +SPEAKER 00241 0 444.819000 0.426000 2 +SPEAKER 00241 0 446.078000 0.537000 2 +SPEAKER 00241 0 456.657000 1.974150 2 +SPEAKER 00241 0 459.849000 0.564200 2 +SPEAKER 00241 0 461.157000 2.204920 2 +SPEAKER 00241 0 463.977000 1.820810 2 +SPEAKER 00241 0 470.400000 2.910630 2 +SPEAKER 00241 0 476.597000 0.739280 2 +SPEAKER 00241 0 479.467000 0.408000 2 +SPEAKER 00241 0 482.388000 6.153000 2 +SPEAKER 00241 0 489.078000 0.796620 2 +SPEAKER 00241 0 495.080000 2.998000 2 +SPEAKER 00241 0 508.407000 0.301000 2 +SPEAKER 00241 0 511.504000 1.074000 2 +SPEAKER 00241 0 516.986000 2.759000 2 +SPEAKER 00241 0 520.338000 0.592000 2 +SPEAKER 00241 0 525.152000 5.093000 2 +SPEAKER 00241 0 542.338000 5.388000 2 +SPEAKER 00241 0 548.079870 3.406130 2 +SPEAKER 00241 0 552.413000 4.487380 2 +SPEAKER 00241 0 558.023000 0.685000 2 +SPEAKER 00241 0 560.875000 2.647770 2 +SPEAKER 00241 0 2.967000 0.352000 0 +SPEAKER 00241 0 4.560000 1.259000 0 +SPEAKER 00241 0 6.801000 0.740000 0 +SPEAKER 00241 0 9.584060 1.456940 0 +SPEAKER 00241 0 11.671000 0.704000 0 +SPEAKER 00241 0 15.023000 2.148000 0 +SPEAKER 00241 0 17.967000 1.926000 0 +SPEAKER 00241 0 20.671000 2.481000 0 +SPEAKER 00241 0 24.186000 0.979610 0 +SPEAKER 00241 0 26.041000 0.889000 0 +SPEAKER 00241 0 27.541000 2.130000 0 +SPEAKER 00241 0 30.504000 3.019000 0 +SPEAKER 00241 0 35.427000 0.485000 0 +SPEAKER 00241 0 36.839080 2.738920 0 +SPEAKER 00241 0 45.689440 1.574560 0 +SPEAKER 00241 0 48.115000 1.315000 0 +SPEAKER 00241 0 52.134000 2.259000 0 +SPEAKER 00241 0 54.838000 0.592000 0 +SPEAKER 00241 0 56.860000 1.000000 0 +SPEAKER 00241 0 59.115000 1.241000 0 +SPEAKER 00241 0 61.673000 1.072000 0 +SPEAKER 00241 0 64.523000 0.981000 0 +SPEAKER 00241 0 67.097000 0.926000 0 +SPEAKER 00241 0 68.967000 0.871000 0 +SPEAKER 00241 0 71.063570 3.662430 0 +SPEAKER 00241 0 75.245000 1.000000 0 +SPEAKER 00241 0 77.134000 0.870000 0 +SPEAKER 00241 0 79.319000 0.982000 0 +SPEAKER 00241 0 81.801000 1.611000 0 +SPEAKER 00241 0 83.967000 2.297000 0 +SPEAKER 00241 0 87.504000 2.889000 0 +SPEAKER 00241 0 91.097000 0.778000 0 +SPEAKER 00241 0 92.893000 1.815000 0 +SPEAKER 00241 0 95.912000 2.944000 0 +SPEAKER 00241 0 99.449000 0.889000 0 +SPEAKER 00241 0 100.819000 2.945000 0 +SPEAKER 00241 0 104.671000 1.778000 0 +SPEAKER 00241 0 107.226000 0.482000 0 +SPEAKER 00241 0 108.523000 0.722000 0 +SPEAKER 00241 0 109.838000 1.000000 0 +SPEAKER 00241 0 111.838000 0.611000 0 +SPEAKER 00241 0 113.764000 1.814000 0 +SPEAKER 00241 0 116.504000 1.000000 0 +SPEAKER 00241 0 118.004000 0.574000 0 +SPEAKER 00241 0 119.004000 1.760000 0 +SPEAKER 00241 0 121.801000 0.592000 0 +SPEAKER 00241 0 123.152000 0.741000 0 +SPEAKER 00241 0 125.165610 1.116390 0 +SPEAKER 00241 0 127.597000 0.667000 0 +SPEAKER 00241 0 129.866000 2.694000 0 +SPEAKER 00241 0 133.930000 2.278000 0 +SPEAKER 00241 0 138.041000 1.685000 0 +SPEAKER 00241 0 141.097000 2.667000 0 +SPEAKER 00241 0 145.046000 1.903000 0 +SPEAKER 00241 0 149.430910 2.240090 0 +SPEAKER 00241 0 152.338000 1.222000 0 +SPEAKER 00241 0 155.276000 1.858000 0 +SPEAKER 00241 0 157.745000 2.667000 0 +SPEAKER 00241 0 161.412000 1.463000 0 +SPEAKER 00241 0 163.329000 0.805000 0 +SPEAKER 00241 0 164.541000 1.111000 0 +SPEAKER 00241 0 171.204000 0.448000 0 +SPEAKER 00241 0 172.189000 1.463000 0 +SPEAKER 00241 0 174.282000 7.167000 0 +SPEAKER 00241 0 181.875000 1.666000 0 +SPEAKER 00241 0 184.293000 7.026000 0 +SPEAKER 00241 0 192.521000 2.317000 0 +SPEAKER 00241 0 195.560000 4.648000 0 +SPEAKER 00241 0 200.801000 0.870000 0 +SPEAKER 00241 0 202.243000 3.187000 0 +SPEAKER 00241 0 206.152000 5.074000 0 +SPEAKER 00241 0 211.856000 1.426000 0 +SPEAKER 00241 0 213.782000 1.944000 0 +SPEAKER 00241 0 216.486000 3.500000 0 +SPEAKER 00241 0 222.152000 2.000000 0 +SPEAKER 00241 0 224.912000 3.000000 0 +SPEAKER 00241 0 228.393000 1.130000 0 +SPEAKER 00241 0 231.264000 3.000000 0 +SPEAKER 00241 0 234.838000 2.166000 0 +SPEAKER 00241 0 238.597000 2.389000 0 +SPEAKER 00241 0 241.689000 1.593000 0 +SPEAKER 00241 0 243.838000 4.851000 0 +SPEAKER 00241 0 249.726000 3.038000 0 +SPEAKER 00241 0 254.189000 1.389000 0 +SPEAKER 00241 0 256.689000 0.575000 0 +SPEAKER 00241 0 257.689000 1.463000 0 +SPEAKER 00241 0 259.615000 2.241000 0 +SPEAKER 00241 0 262.578000 1.556000 0 +SPEAKER 00241 0 265.134000 5.667000 0 +SPEAKER 00241 0 271.393000 8.611000 0 +SPEAKER 00241 0 280.912000 1.592000 0 +SPEAKER 00241 0 283.486000 2.907000 0 +SPEAKER 00241 0 286.930000 4.779710 0 +SPEAKER 00241 0 292.406000 4.135000 0 +SPEAKER 00241 0 297.467000 1.685000 0 +SPEAKER 00241 0 300.560000 1.685000 0 +SPEAKER 00241 0 303.782000 1.907000 0 +SPEAKER 00241 0 309.333000 0.431000 0 +SPEAKER 00241 0 310.134000 1.407000 0 +SPEAKER 00241 0 312.004000 1.556000 0 +SPEAKER 00241 0 315.058770 5.242230 0 +SPEAKER 00241 0 320.801000 1.407000 0 +SPEAKER 00241 0 324.189440 8.999560 0 +SPEAKER 00241 0 334.671000 1.000000 0 +SPEAKER 00241 0 336.207950 2.130050 0 +SPEAKER 00241 0 339.103000 0.457000 0 +SPEAKER 00241 0 340.726000 0.667000 0 +SPEAKER 00241 0 341.830000 0.656000 0 +SPEAKER 00241 0 343.838000 1.574000 0 +SPEAKER 00241 0 346.004000 0.519000 0 +SPEAKER 00241 0 347.152000 0.519000 0 +SPEAKER 00241 0 348.528000 3.457730 0 +SPEAKER 00241 0 352.607000 0.712060 0 +SPEAKER 00241 0 357.041000 3.537000 0 +SPEAKER 00241 0 361.615000 4.481500 0 +SPEAKER 00241 0 367.756880 6.747120 0 +SPEAKER 00241 0 376.097000 4.463000 0 +SPEAKER 00241 0 381.301000 2.222000 0 +SPEAKER 00241 0 384.578000 5.945000 0 +SPEAKER 00241 0 390.945560 3.855440 0 +SPEAKER 00241 0 395.541000 1.037000 0 +SPEAKER 00241 0 397.597000 2.074000 0 +SPEAKER 00241 0 400.801000 4.370000 0 +SPEAKER 00241 0 407.597000 2.870000 0 +SPEAKER 00241 0 411.416000 0.422000 0 +SPEAKER 00241 0 412.273000 2.379000 0 +SPEAKER 00241 0 423.523000 2.555000 0 +SPEAKER 00241 0 426.689000 1.463000 0 +SPEAKER 00241 0 428.721000 1.191000 0 +SPEAKER 00241 0 431.801000 1.481030 0 +SPEAKER 00241 0 433.586000 1.566400 0 +SPEAKER 00241 0 435.716000 7.196000 0 +SPEAKER 00241 0 443.486000 1.203000 0 +SPEAKER 00241 0 445.190000 0.574000 0 +SPEAKER 00241 0 446.597000 1.704000 0 +SPEAKER 00241 0 449.301000 0.648000 0 +SPEAKER 00241 0 451.023000 2.666000 0 +SPEAKER 00241 0 454.189000 2.686000 0 +SPEAKER 00241 0 458.189000 1.593000 0 +SPEAKER 00241 0 460.338000 0.981000 0 +SPEAKER 00241 0 463.060000 1.648000 0 +SPEAKER 00241 0 465.319000 3.204000 0 +SPEAKER 00241 0 469.106000 2.371300 0 +SPEAKER 00241 0 472.856000 0.945000 0 +SPEAKER 00241 0 474.856000 2.370000 0 +SPEAKER 00241 0 477.717000 1.528000 0 +SPEAKER 00241 0 479.764000 8.290220 0 +SPEAKER 00241 0 489.319000 3.463000 0 +SPEAKER 00241 0 493.430000 1.371000 0 +SPEAKER 00241 0 495.375000 0.518000 0 +SPEAKER 00241 0 496.504000 1.019000 0 +SPEAKER 00241 0 498.967000 4.297000 0 +SPEAKER 00241 0 504.264000 1.574000 0 +SPEAKER 00241 0 506.578000 0.648000 0 +SPEAKER 00241 0 508.486000 2.907000 0 +SPEAKER 00241 0 513.759350 0.397440 0 +SPEAKER 00241 0 514.797810 1.040190 0 +SPEAKER 00241 0 516.310630 0.512830 0 +SPEAKER 00241 0 518.956000 1.233440 0 +SPEAKER 00241 0 520.485000 1.000000 0 +SPEAKER 00241 0 522.171000 3.055000 0 +SPEAKER 00241 0 528.245000 0.556000 0 +SPEAKER 00241 0 531.560000 1.481000 0 +SPEAKER 00241 0 533.967000 3.019000 0 +SPEAKER 00241 0 537.819000 1.259000 0 +SPEAKER 00241 0 539.782000 1.926000 0 +SPEAKER 00241 0 543.282000 0.407000 0 +SPEAKER 00241 0 551.004000 1.426000 0 +SPEAKER 00241 0 553.412000 0.537000 0 +SPEAKER 00241 0 563.264000 0.685000 0 +SPEAKER 00241 0 13.256000 1.359360 1 +SPEAKER 00241 0 46.338000 1.148000 1 +SPEAKER 00241 0 50.855000 1.149000 1 +SPEAKER 00241 0 142.264000 0.962000 1 +SPEAKER 00241 0 169.859480 1.061230 1 +SPEAKER 00241 0 172.189000 0.723000 1 +SPEAKER 00241 0 196.319000 1.259000 1 +SPEAKER 00241 0 221.041000 1.537000 1 +SPEAKER 00241 0 224.842000 0.650730 1 +SPEAKER 00241 0 234.560000 0.389000 1 +SPEAKER 00241 0 237.319000 1.963000 1 +SPEAKER 00241 0 344.380000 0.452350 1 +SPEAKER 00241 0 404.264000 2.018000 1 +SPEAKER 00241 0 411.472000 0.761710 1 +SPEAKER 00241 0 473.338000 1.518000 1 +SPEAKER 00241 0 513.745000 1.093000 1 +SPEAKER 00241 0 519.301000 0.555000 1 +SPEAKER 00241 0 526.093000 2.282000 1 +SPEAKER 00241 0 529.823000 1.700000 1 +SPEAKER 00241 0 534.301000 1.703000 1 +SPEAKER 00241 0 555.764000 2.962000 1 +SPEAKER 00241 0 558.986000 1.786170 1 +SPEAKER 00241 0 11.852000 3.837000 h0 +SPEAKER 00241 0 35.108000 0.285000 h0 +SPEAKER 00241 0 39.625000 1.472000 h0 +SPEAKER 00241 0 41.603000 1.383000 h0 +SPEAKER 00241 0 43.706000 1.928000 h0 +SPEAKER 00241 0 47.245000 0.796000 h0 +SPEAKER 00241 0 49.788000 0.735000 h0 +SPEAKER 00241 0 51.115000 0.797000 h0 +SPEAKER 00241 0 107.708000 0.907000 h0 +SPEAKER 00241 0 134.614000 0.633240 h0 +SPEAKER 00241 0 137.471730 0.551270 h0 +SPEAKER 00241 0 166.038000 1.651000 h0 +SPEAKER 00241 0 173.893000 1.037000 h0 +SPEAKER 00241 0 216.338000 0.333000 h0 +SPEAKER 00241 0 233.578000 1.630000 h0 +SPEAKER 00241 0 241.407000 0.357000 h0 +SPEAKER 00241 0 300.313000 0.849540 h0 +SPEAKER 00241 0 302.068000 0.641710 h0 +SPEAKER 00241 0 310.559000 0.669580 h0 +SPEAKER 00241 0 311.949000 0.815000 h0 +SPEAKER 00241 0 314.764000 0.685000 h0 +SPEAKER 00241 0 323.541000 0.797000 h0 +SPEAKER 00241 0 332.965000 0.508860 h0 +SPEAKER 00241 0 343.097000 0.963000 h0 +SPEAKER 00241 0 344.408000 0.575300 h0 +SPEAKER 00241 0 353.776000 0.886540 h0 +SPEAKER 00241 0 355.350000 1.117000 h0 +SPEAKER 00241 0 365.870090 1.915090 h0 +SPEAKER 00241 0 414.657000 0.704920 h0 +SPEAKER 00241 0 416.008000 1.597510 h0 +SPEAKER 00241 0 418.016000 2.679250 h0 +SPEAKER 00241 0 426.200000 0.786000 h0 +SPEAKER 00241 0 457.541000 0.667070 h0 +SPEAKER 00241 0 461.772170 1.512820 h0 +SPEAKER 00241 0 464.689000 0.741180 h0 +SPEAKER 00241 0 467.666000 3.772840 h0 +SPEAKER 00241 0 471.801000 0.814000 h0 +SPEAKER 00241 0 483.298000 0.653660 h0 +SPEAKER 00241 0 496.195000 0.884870 h0 +SPEAKER 00241 0 498.338000 0.574000 h0 +SPEAKER 00241 0 507.634000 0.389000 h0 +SPEAKER 00241 0 511.615000 0.334000 h0 +SPEAKER 00241 0 512.580000 1.239000 h0 +SPEAKER 00241 0 516.930000 2.556000 h0 +SPEAKER 00241 0 521.504000 1.093000 h0 +SPEAKER 00241 0 527.022770 1.518230 h0 +SPEAKER 00241 0 533.556000 0.615000 h0 +SPEAKER 00241 0 553.875000 1.074000 h0 diff --git a/rttm/few/00242.rttm b/rttm/few/00242.rttm new file mode 100644 index 0000000000000000000000000000000000000000..284c8bfbae21d55c785ecd7334ea9cd5bd28753e --- /dev/null +++ b/rttm/few/00242.rttm @@ -0,0 +1,38 @@ +SPEAKER 00242 0 0.000000 0.356000 2 +SPEAKER 00242 0 3.617000 1.850000 2 +SPEAKER 00242 0 7.597000 1.759000 2 +SPEAKER 00242 0 20.800000 0.575000 2 +SPEAKER 00242 0 22.282000 3.537000 2 +SPEAKER 00242 0 29.819000 3.315000 2 +SPEAKER 00242 0 33.404000 2.989140 2 +SPEAKER 00242 0 36.745000 1.240730 2 +SPEAKER 00242 0 38.633880 1.592120 2 +SPEAKER 00242 0 40.541000 0.741030 2 +SPEAKER 00242 0 42.449000 0.444000 2 +SPEAKER 00242 0 43.374620 0.703380 2 +SPEAKER 00242 0 45.217000 0.687000 2 +SPEAKER 00242 0 0.031000 2.214000 1 +SPEAKER 00242 0 2.583000 0.921000 1 +SPEAKER 00242 0 5.575000 1.800000 1 +SPEAKER 00242 0 11.930000 6.815000 1 +SPEAKER 00242 0 19.004000 1.760000 1 +SPEAKER 00242 0 21.245000 1.000000 1 +SPEAKER 00242 0 23.356000 1.000000 1 +SPEAKER 00242 0 25.924000 3.895000 1 +SPEAKER 00242 0 36.485000 0.704000 1 +SPEAKER 00242 0 40.370000 0.393510 1 +SPEAKER 00242 0 41.123000 1.000000 1 +SPEAKER 00242 0 44.412000 0.389000 1 +SPEAKER 00242 0 0.949000 1.333000 3 +SPEAKER 00242 0 6.736000 0.990470 3 +SPEAKER 00242 0 20.063000 0.645000 3 +SPEAKER 00242 0 21.255000 0.416000 3 +SPEAKER 00242 0 23.913000 0.721000 3 +SPEAKER 00242 0 24.909000 0.595000 3 +SPEAKER 00242 0 32.744000 1.000000 3 +SPEAKER 00242 0 40.856100 1.018520 3 +SPEAKER 00242 0 42.623000 1.000000 3 +SPEAKER 00242 0 3.633000 1.834000 0 +SPEAKER 00242 0 20.726000 0.667000 0 +SPEAKER 00242 0 29.690000 0.721660 0 +SPEAKER 00242 0 43.319000 0.500060 0 diff --git a/rttm/few/00246.rttm b/rttm/few/00246.rttm new file mode 100644 index 0000000000000000000000000000000000000000..90bfb149503a9c05a556f72838db3e6adfa0d0de --- /dev/null +++ b/rttm/few/00246.rttm @@ -0,0 +1,5 @@ +SPEAKER 00246 0 0.282000 21.037060 0 +SPEAKER 00246 0 24.231000 0.626000 0 +SPEAKER 00246 0 16.745000 0.815000 1 +SPEAKER 00246 0 18.630000 0.685000 1 +SPEAKER 00246 0 21.315000 3.589000 1 diff --git a/rttm/few/00250.rttm b/rttm/few/00250.rttm new file mode 100644 index 0000000000000000000000000000000000000000..dafae4d773d1c689ef7fc5d21c0e20fd770912d3 --- /dev/null +++ b/rttm/few/00250.rttm @@ -0,0 +1,36 @@ +SPEAKER 00250 0 0.000000 3.701000 3 +SPEAKER 00250 0 4.853000 2.575000 3 +SPEAKER 00250 0 8.368000 7.879000 3 +SPEAKER 00250 0 17.201000 2.606000 3 +SPEAKER 00250 0 20.383000 2.788000 3 +SPEAKER 00250 0 23.565000 1.273000 3 +SPEAKER 00250 0 25.656000 10.742000 3 +SPEAKER 00250 0 36.912000 2.016000 3 +SPEAKER 00250 0 39.474000 1.439000 3 +SPEAKER 00250 0 41.731000 0.879000 3 +SPEAKER 00250 0 50.067000 5.392000 3 +SPEAKER 00250 0 56.534000 0.591000 3 +SPEAKER 00250 0 57.383000 1.485000 3 +SPEAKER 00250 0 2.519000 1.834000 1 +SPEAKER 00250 0 11.065000 1.773000 1 +SPEAKER 00250 0 27.095000 0.788000 1 +SPEAKER 00250 0 43.232000 0.848000 1 +SPEAKER 00250 0 47.292000 1.485000 1 +SPEAKER 00250 0 51.201000 2.197000 1 +SPEAKER 00250 0 60.080000 1.439000 1 +SPEAKER 00250 0 1.535000 2.499000 2 +SPEAKER 00250 0 27.034000 1.258000 2 +SPEAKER 00250 0 40.021000 1.438000 2 +SPEAKER 00250 0 41.716000 2.743000 2 +SPEAKER 00250 0 46.959000 2.091000 2 +SPEAKER 00250 0 54.444000 1.924000 2 +SPEAKER 00250 0 59.307000 0.940000 2 +SPEAKER 00250 0 2.369000 1.878000 0 +SPEAKER 00250 0 4.693000 1.000000 0 +SPEAKER 00250 0 6.201000 2.197000 0 +SPEAKER 00250 0 23.696000 0.945000 0 +SPEAKER 00250 0 24.994000 1.177000 0 +SPEAKER 00250 0 41.520000 4.060000 0 +SPEAKER 00250 0 48.458000 2.334000 0 +SPEAKER 00250 0 58.792000 1.106000 0 +SPEAKER 00250 0 61.375000 0.569000 0 diff --git a/rttm/few/00277.rttm b/rttm/few/00277.rttm new file mode 100644 index 0000000000000000000000000000000000000000..f8cf4d7fa0ef8b22d9eb1afb59c60693d0fb7158 --- /dev/null +++ b/rttm/few/00277.rttm @@ -0,0 +1,30 @@ +SPEAKER 00277 0 0.134000 0.851730 0 +SPEAKER 00277 0 1.319060 2.567410 0 +SPEAKER 00277 0 4.430000 1.000000 0 +SPEAKER 00277 0 5.843510 4.606490 0 +SPEAKER 00277 0 11.565000 0.457770 0 +SPEAKER 00277 0 15.013000 0.528290 0 +SPEAKER 00277 0 16.846000 1.020000 0 +SPEAKER 00277 0 18.775000 1.180000 0 +SPEAKER 00277 0 20.949000 1.135250 0 +SPEAKER 00277 0 26.481000 0.875100 0 +SPEAKER 00277 0 27.856000 1.018620 0 +SPEAKER 00277 0 31.726470 0.337530 0 +SPEAKER 00277 0 35.263510 0.388490 0 +SPEAKER 00277 0 37.800550 0.500000 0 +SPEAKER 00277 0 39.838000 0.703290 0 +SPEAKER 00277 0 41.838000 1.999580 0 +SPEAKER 00277 0 5.329000 0.392000 1 +SPEAKER 00277 0 10.430000 1.314990 1 +SPEAKER 00277 0 12.078000 1.907730 1 +SPEAKER 00277 0 15.967000 0.852060 1 +SPEAKER 00277 0 17.871000 0.799920 1 +SPEAKER 00277 0 20.282000 0.759290 1 +SPEAKER 00277 0 22.078000 2.333660 1 +SPEAKER 00277 0 24.906000 2.839000 1 +SPEAKER 00277 0 28.343000 2.033100 1 +SPEAKER 00277 0 30.689440 0.974070 1 +SPEAKER 00277 0 31.978000 3.378100 1 +SPEAKER 00277 0 35.719000 2.766730 1 +SPEAKER 00277 0 41.618000 2.312180 1 +SPEAKER 00277 0 44.578000 1.074400 1 diff --git a/rttm/few/00282.rttm b/rttm/few/00282.rttm new file mode 100644 index 0000000000000000000000000000000000000000..139baa04b52aa0078353c4fa1204a341415e96ec --- /dev/null +++ b/rttm/few/00282.rttm @@ -0,0 +1,20 @@ +SPEAKER 00282 0 0.011000 1.316430 1 +SPEAKER 00282 0 1.775750 4.547170 1 +SPEAKER 00282 0 7.587070 1.527930 1 +SPEAKER 00282 0 10.716000 1.566000 1 +SPEAKER 00282 0 13.689000 1.124490 1 +SPEAKER 00282 0 15.646000 1.978810 1 +SPEAKER 00282 0 22.587070 6.091830 1 +SPEAKER 00282 0 29.260000 3.810670 1 +SPEAKER 00282 0 33.679000 9.297070 1 +SPEAKER 00282 0 43.520000 0.578000 1 +SPEAKER 00282 0 49.136950 2.552050 1 +SPEAKER 00282 0 55.578000 6.500000 1 +SPEAKER 00282 0 0.851000 2.505000 0 +SPEAKER 00282 0 6.339000 7.191470 0 +SPEAKER 00282 0 14.782000 1.333370 0 +SPEAKER 00282 0 16.949000 5.277000 0 +SPEAKER 00282 0 42.898000 2.618610 0 +SPEAKER 00282 0 45.935000 2.203240 0 +SPEAKER 00282 0 49.782000 0.815700 0 +SPEAKER 00282 0 51.408510 6.206490 0 diff --git a/rttm/few/00284.rttm b/rttm/few/00284.rttm new file mode 100644 index 0000000000000000000000000000000000000000..a5dbea9a2b55de0084b0fa63d38e587cc79488f8 --- /dev/null +++ b/rttm/few/00284.rttm @@ -0,0 +1,7 @@ +SPEAKER 00284 0 0.000000 1.578000 1 +SPEAKER 00284 0 3.226000 6.686000 1 +SPEAKER 00284 0 10.282000 8.537060 1 +SPEAKER 00284 0 19.134000 10.241000 1 +SPEAKER 00284 0 30.745000 0.510000 1 +SPEAKER 00284 0 0.208000 1.555510 0 +SPEAKER 00284 0 28.764000 1.370000 0 diff --git a/rttm/few/00297.rttm b/rttm/few/00297.rttm new file mode 100644 index 0000000000000000000000000000000000000000..023b177fcaf4b4bd9142494d1f1cde2b71075bcb --- /dev/null +++ b/rttm/few/00297.rttm @@ -0,0 +1,7 @@ +SPEAKER 00297 0 0.000000 1.990120 1 +SPEAKER 00297 0 2.484000 1.800990 1 +SPEAKER 00297 0 20.022770 5.222230 1 +SPEAKER 00297 0 4.644000 1.358940 0 +SPEAKER 00297 0 6.362000 3.820430 0 +SPEAKER 00297 0 10.510000 3.069870 0 +SPEAKER 00297 0 13.929000 5.625220 0 diff --git a/rttm/few/00298.rttm b/rttm/few/00298.rttm new file mode 100644 index 0000000000000000000000000000000000000000..fc5953491d0b415a3391550dffaad6fd2ce92d7b --- /dev/null +++ b/rttm/few/00298.rttm @@ -0,0 +1,13 @@ +SPEAKER 00298 0 0.004250 6.430370 2 +SPEAKER 00298 0 6.856000 1.000000 2 +SPEAKER 00298 0 9.375000 0.499620 2 +SPEAKER 00298 0 32.596840 1.481160 2 +SPEAKER 00298 0 9.004000 0.518770 1 +SPEAKER 00298 0 17.615000 0.926290 1 +SPEAKER 00298 0 32.671000 1.315000 1 +SPEAKER 00298 0 10.202000 3.876320 0 +SPEAKER 00298 0 14.449000 8.703400 0 +SPEAKER 00298 0 23.596000 2.834180 0 +SPEAKER 00298 0 27.467000 1.815030 0 +SPEAKER 00298 0 29.708000 2.722180 0 +SPEAKER 00298 0 32.782030 1.203700 0 diff --git a/rttm/few/00302.rttm b/rttm/few/00302.rttm new file mode 100644 index 0000000000000000000000000000000000000000..7d5aa6941f23fca1ca3a01fc9c38e52eaa536bef --- /dev/null +++ b/rttm/few/00302.rttm @@ -0,0 +1,8 @@ +SPEAKER 00302 0 0.000000 1.745000 1 +SPEAKER 00302 0 2.643000 0.544000 1 +SPEAKER 00302 0 6.251000 4.031000 1 +SPEAKER 00302 0 12.805110 9.632890 1 +SPEAKER 00302 0 1.856000 1.111000 0 +SPEAKER 00302 0 3.282000 2.889000 0 +SPEAKER 00302 0 10.433000 2.360420 0 +SPEAKER 00302 0 22.436000 1.564000 0 diff --git a/rttm/few/00313.rttm b/rttm/few/00313.rttm new file mode 100644 index 0000000000000000000000000000000000000000..3e47081fb417704b7762b9de380f5f2f9f6ba2f7 --- /dev/null +++ b/rttm/few/00313.rttm @@ -0,0 +1,14 @@ +SPEAKER 00313 0 0.001000 1.033670 0 +SPEAKER 00313 0 2.467000 0.469310 0 +SPEAKER 00313 0 3.745000 1.265080 0 +SPEAKER 00313 0 5.379000 2.237640 0 +SPEAKER 00313 0 8.064000 1.912070 0 +SPEAKER 00313 0 10.720000 5.229050 0 +SPEAKER 00313 0 16.233000 0.689020 0 +SPEAKER 00313 0 17.306000 4.102510 0 +SPEAKER 00313 0 23.488000 0.516000 0 +SPEAKER 00313 0 1.393140 0.812860 1 +SPEAKER 00313 0 7.244990 0.863450 1 +SPEAKER 00313 0 13.060000 0.981000 1 +SPEAKER 00313 0 21.784000 1.543430 1 +SPEAKER 00313 0 24.189440 2.907400 1 diff --git a/rttm/few/00328.rttm b/rttm/few/00328.rttm new file mode 100644 index 0000000000000000000000000000000000000000..876f9e2eca9ceaba00cb375bccb6ceb7529d2e80 --- /dev/null +++ b/rttm/few/00328.rttm @@ -0,0 +1,36 @@ +SPEAKER 00328 0 0.041000 5.129920 1 +SPEAKER 00328 0 6.152000 0.834000 1 +SPEAKER 00328 0 8.234000 9.196180 1 +SPEAKER 00328 0 17.819000 1.870000 1 +SPEAKER 00328 0 19.967000 9.050560 1 +SPEAKER 00328 0 29.282000 2.778000 1 +SPEAKER 00328 0 32.764000 5.510710 1 +SPEAKER 00328 0 39.597000 0.981000 1 +SPEAKER 00328 0 47.689000 0.408000 1 +SPEAKER 00328 0 50.615000 1.055920 1 +SPEAKER 00328 0 57.060000 0.648000 1 +SPEAKER 00328 0 58.208000 0.926000 1 +SPEAKER 00328 0 59.449000 2.666000 1 +SPEAKER 00328 0 64.226470 0.407410 1 +SPEAKER 00328 0 65.059000 1.464000 1 +SPEAKER 00328 0 68.041000 0.982000 1 +SPEAKER 00328 0 69.856000 6.648000 1 +SPEAKER 00328 0 76.949000 1.777000 1 +SPEAKER 00328 0 80.671000 1.167000 1 +SPEAKER 00328 0 82.134000 3.369280 1 +SPEAKER 00328 0 92.986000 0.685000 1 +SPEAKER 00328 0 2.134000 0.611000 0 +SPEAKER 00328 0 4.503000 1.704950 0 +SPEAKER 00328 0 9.894000 0.609280 0 +SPEAKER 00328 0 15.726000 2.105850 0 +SPEAKER 00328 0 32.393000 0.510280 0 +SPEAKER 00328 0 38.217560 4.416320 0 +SPEAKER 00328 0 43.060000 4.518320 0 +SPEAKER 00328 0 48.041000 8.667000 0 +SPEAKER 00328 0 58.133000 1.186000 0 +SPEAKER 00328 0 62.046140 3.550860 0 +SPEAKER 00328 0 66.040420 2.000580 0 +SPEAKER 00328 0 68.946140 1.057140 0 +SPEAKER 00328 0 78.304000 3.181730 0 +SPEAKER 00328 0 86.671000 0.796000 0 +SPEAKER 00328 0 88.764000 3.518000 0 diff --git a/rttm/few/00329.rttm b/rttm/few/00329.rttm new file mode 100644 index 0000000000000000000000000000000000000000..cb520e4ec2b8d143ab4fc64f006db1d7c887be26 --- /dev/null +++ b/rttm/few/00329.rttm @@ -0,0 +1,12 @@ +SPEAKER 00329 0 0.068000 2.801000 0 +SPEAKER 00329 0 3.411000 1.550530 0 +SPEAKER 00329 0 5.553000 1.388000 0 +SPEAKER 00329 0 7.522000 2.643000 0 +SPEAKER 00329 0 15.912000 1.244790 0 +SPEAKER 00329 0 18.321000 0.619000 0 +SPEAKER 00329 0 24.250000 0.914990 0 +SPEAKER 00329 0 26.184000 1.296000 0 +SPEAKER 00329 0 5.231000 0.363180 1 +SPEAKER 00329 0 10.356000 5.615440 1 +SPEAKER 00329 0 16.584000 7.677770 1 +SPEAKER 00329 0 25.266000 0.721570 1 diff --git a/rttm/few/00332.rttm b/rttm/few/00332.rttm new file mode 100644 index 0000000000000000000000000000000000000000..f3e4b815703703a749356974ac9faa2b1abac28d --- /dev/null +++ b/rttm/few/00332.rttm @@ -0,0 +1,13 @@ +SPEAKER 00332 0 0.300000 3.783000 2 +SPEAKER 00332 0 9.455310 0.977690 2 +SPEAKER 00332 0 12.283000 2.067000 2 +SPEAKER 00332 0 17.370000 2.873000 2 +SPEAKER 00332 0 21.467000 0.759000 2 +SPEAKER 00332 0 25.971440 0.911560 2 +SPEAKER 00332 0 3.923060 5.145160 0 +SPEAKER 00332 0 11.377000 0.683000 0 +SPEAKER 00332 0 12.326000 0.548670 0 +SPEAKER 00332 0 20.552090 0.697910 0 +SPEAKER 00332 0 22.637000 3.763000 0 +SPEAKER 00332 0 14.967000 1.616000 1 +SPEAKER 00332 0 17.745000 1.333000 1 diff --git a/rttm/few/00341.rttm b/rttm/few/00341.rttm new file mode 100644 index 0000000000000000000000000000000000000000..d9a5bbdeaa2aa1227b95e17090636874b09bc0c7 --- /dev/null +++ b/rttm/few/00341.rttm @@ -0,0 +1,34 @@ +SPEAKER 00341 0 0.000000 1.167000 1 +SPEAKER 00341 0 8.310630 0.961540 1 +SPEAKER 00341 0 14.866000 1.267000 1 +SPEAKER 00341 0 21.824000 0.543000 1 +SPEAKER 00341 0 24.470000 0.563000 1 +SPEAKER 00341 0 25.492000 0.572080 1 +SPEAKER 00341 0 26.942870 1.436130 1 +SPEAKER 00341 0 29.384000 1.583000 1 +SPEAKER 00341 0 31.700450 1.032550 1 +SPEAKER 00341 0 34.412000 3.555000 1 +SPEAKER 00341 0 44.044590 1.097300 1 +SPEAKER 00341 0 46.348780 1.155810 1 +SPEAKER 00341 0 52.467000 0.881780 1 +SPEAKER 00341 0 1.323000 0.320970 0 +SPEAKER 00341 0 3.177000 5.184920 0 +SPEAKER 00341 0 8.656000 1.166000 0 +SPEAKER 00341 0 10.974000 0.650810 0 +SPEAKER 00341 0 13.423000 1.913810 0 +SPEAKER 00341 0 16.261000 0.500050 0 +SPEAKER 00341 0 17.473170 4.712130 0 +SPEAKER 00341 0 22.507000 0.496480 0 +SPEAKER 00341 0 23.422000 0.894000 0 +SPEAKER 00341 0 25.077000 1.396170 0 +SPEAKER 00341 0 28.350000 0.750000 0 +SPEAKER 00341 0 29.433000 0.667000 0 +SPEAKER 00341 0 30.972000 1.128000 0 +SPEAKER 00341 0 32.763000 1.470000 0 +SPEAKER 00341 0 38.397420 6.927170 0 +SPEAKER 00341 0 45.885000 1.919590 0 +SPEAKER 00341 0 48.405000 0.719590 0 +SPEAKER 00341 0 49.685000 3.279590 0 +SPEAKER 00341 0 53.365000 12.069990 0 +SPEAKER 00341 0 65.935000 2.775850 0 +SPEAKER 00341 0 70.006750 1.376520 0 diff --git a/rttm/few/00342.rttm b/rttm/few/00342.rttm new file mode 100644 index 0000000000000000000000000000000000000000..cbb1fb6f1d3be442fc3b2144a2a6b68c43397a29 --- /dev/null +++ b/rttm/few/00342.rttm @@ -0,0 +1,24 @@ +SPEAKER 00342 0 0.004000 0.278000 0 +SPEAKER 00342 0 3.208000 1.593000 0 +SPEAKER 00342 0 12.930000 4.157080 0 +SPEAKER 00342 0 21.857000 1.258000 0 +SPEAKER 00342 0 24.004000 0.677000 0 +SPEAKER 00342 0 0.822000 0.482000 1 +SPEAKER 00342 0 1.875000 1.277000 1 +SPEAKER 00342 0 8.318000 0.540000 1 +SPEAKER 00342 0 9.652000 2.630030 1 +SPEAKER 00342 0 20.504000 0.852100 1 +SPEAKER 00342 0 23.774580 0.914420 1 +SPEAKER 00342 0 0.319000 0.259000 3 +SPEAKER 00342 0 3.245000 0.904580 3 +SPEAKER 00342 0 4.486000 2.934420 3 +SPEAKER 00342 0 8.189000 0.877250 3 +SPEAKER 00342 0 10.588000 0.394920 3 +SPEAKER 00342 0 14.134000 1.000000 3 +SPEAKER 00342 0 16.652400 3.462600 3 +SPEAKER 00342 0 21.264000 0.906420 3 +SPEAKER 00342 0 22.677000 1.000000 3 +SPEAKER 00342 0 3.912000 0.481000 2 +SPEAKER 00342 0 7.918000 0.502000 2 +SPEAKER 00342 0 8.693000 1.894080 2 +SPEAKER 00342 0 11.023000 2.278000 2 diff --git a/rttm/few/00347.rttm b/rttm/few/00347.rttm new file mode 100644 index 0000000000000000000000000000000000000000..02eb47454b5e81b4e186ac16b0e1a9f6a29bce8e --- /dev/null +++ b/rttm/few/00347.rttm @@ -0,0 +1,15 @@ +SPEAKER 00347 0 0.000000 5.212080 2 +SPEAKER 00347 0 5.893000 2.222360 2 +SPEAKER 00347 0 10.301000 1.814000 2 +SPEAKER 00347 0 15.523000 6.564080 2 +SPEAKER 00347 0 25.226000 8.148620 2 +SPEAKER 00347 0 5.245000 0.648000 0 +SPEAKER 00347 0 8.486000 1.935000 0 +SPEAKER 00347 0 11.745000 3.779580 0 +SPEAKER 00347 0 22.393000 0.630000 0 +SPEAKER 00347 0 24.097000 2.129000 0 +SPEAKER 00347 0 29.393140 0.462960 0 +SPEAKER 00347 0 32.763510 0.668490 0 +SPEAKER 00347 0 5.245000 0.638000 1 +SPEAKER 00347 0 22.170920 2.082830 1 +SPEAKER 00347 0 32.763510 0.650490 1 diff --git a/rttm/few/00353.rttm b/rttm/few/00353.rttm new file mode 100644 index 0000000000000000000000000000000000000000..9cea4962d0ef2e73e606c605b31d98821ecefd7d --- /dev/null +++ b/rttm/few/00353.rttm @@ -0,0 +1,23 @@ +SPEAKER 00353 0 5.834000 0.818400 1 +SPEAKER 00353 0 7.713660 0.700000 1 +SPEAKER 00353 0 10.634000 1.333210 1 +SPEAKER 00353 0 13.985730 1.194600 1 +SPEAKER 00353 0 19.158110 0.568360 1 +SPEAKER 00353 0 20.380330 1.311110 1 +SPEAKER 00353 0 24.633880 0.462960 1 +SPEAKER 00353 0 32.280000 0.557000 1 +SPEAKER 00353 0 34.115360 0.864970 1 +SPEAKER 00353 0 36.491440 0.944440 1 +SPEAKER 00353 0 44.189000 0.591330 1 +SPEAKER 00353 0 7.356000 0.593000 0 +SPEAKER 00353 0 10.449000 1.018000 0 +SPEAKER 00353 0 12.021000 1.965000 0 +SPEAKER 00353 0 16.949000 1.486880 0 +SPEAKER 00353 0 19.446990 1.244450 0 +SPEAKER 00353 0 22.402550 1.700000 0 +SPEAKER 00353 0 25.460000 1.000000 0 +SPEAKER 00353 0 29.691440 4.055550 0 +SPEAKER 00353 0 35.450000 1.485880 0 +SPEAKER 00353 0 37.941000 1.248440 0 +SPEAKER 00353 0 41.186000 2.694330 0 +SPEAKER 00353 0 44.624770 0.332230 0 diff --git a/rttm/few/00354.rttm b/rttm/few/00354.rttm new file mode 100644 index 0000000000000000000000000000000000000000..05485f4030561d5abcaf08bd6192c4f3b4b80c49 --- /dev/null +++ b/rttm/few/00354.rttm @@ -0,0 +1,25 @@ +SPEAKER 00354 0 0.000000 2.949000 1 +SPEAKER 00354 0 3.468000 5.159000 1 +SPEAKER 00354 0 8.947000 0.502000 1 +SPEAKER 00354 0 9.940000 1.000000 1 +SPEAKER 00354 0 11.602000 16.964000 1 +SPEAKER 00354 0 28.992000 3.975000 1 +SPEAKER 00354 0 49.356000 1.130000 1 +SPEAKER 00354 0 0.449000 0.732000 0 +SPEAKER 00354 0 32.552000 1.230000 0 +SPEAKER 00354 0 34.080000 1.406000 0 +SPEAKER 00354 0 35.910000 1.131000 0 +SPEAKER 00354 0 37.797000 2.355000 0 +SPEAKER 00354 0 40.734000 8.122000 0 +SPEAKER 00354 0 49.486000 0.611000 0 +SPEAKER 00354 0 1.393000 1.278000 3 +SPEAKER 00354 0 2.993000 0.493000 3 +SPEAKER 00354 0 13.337580 0.463420 3 +SPEAKER 00354 0 15.608000 1.766620 3 +SPEAKER 00354 0 19.374000 0.445000 3 +SPEAKER 00354 0 25.430000 0.593000 3 +SPEAKER 00354 0 30.947000 0.446000 3 +SPEAKER 00354 0 37.426000 0.467000 3 +SPEAKER 00354 0 40.075000 1.162620 3 +SPEAKER 00354 0 45.468000 0.492000 3 +SPEAKER 00354 0 48.504000 1.907660 3 diff --git a/rttm/few/00369.rttm b/rttm/few/00369.rttm new file mode 100644 index 0000000000000000000000000000000000000000..b7e314a0b2f2f5793dfee4fc3e2fe9fc40996872 --- /dev/null +++ b/rttm/few/00369.rttm @@ -0,0 +1,17 @@ +SPEAKER 00369 0 0.301000 1.981030 1 +SPEAKER 00369 0 2.633880 2.629630 1 +SPEAKER 00369 0 6.189440 6.481560 1 +SPEAKER 00369 0 27.485730 1.889270 1 +SPEAKER 00369 0 38.990000 0.625000 1 +SPEAKER 00369 0 42.115360 5.222220 1 +SPEAKER 00369 0 48.165000 3.135550 1 +SPEAKER 00369 0 51.985730 1.074270 1 +SPEAKER 00369 0 3.856000 2.593000 0 +SPEAKER 00369 0 12.671000 5.796210 0 +SPEAKER 00369 0 19.263510 3.870370 0 +SPEAKER 00369 0 23.782030 4.036970 0 +SPEAKER 00369 0 28.467000 13.945000 0 +SPEAKER 00369 0 44.800000 0.556000 0 +SPEAKER 00369 0 47.208000 1.074000 0 +SPEAKER 00369 0 48.952000 0.552250 0 +SPEAKER 00369 0 50.707950 1.111050 0 diff --git a/rttm/few/00378.rttm b/rttm/few/00378.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4781ed4ac45ec09865dd804a102a663a0235e678 --- /dev/null +++ b/rttm/few/00378.rttm @@ -0,0 +1,24 @@ +SPEAKER 00378 0 0.060000 2.796000 2 +SPEAKER 00378 0 3.282030 8.888970 2 +SPEAKER 00378 0 12.652400 1.629600 2 +SPEAKER 00378 0 17.801000 2.756160 2 +SPEAKER 00378 0 21.484000 1.005590 2 +SPEAKER 00378 0 31.189000 1.260000 2 +SPEAKER 00378 0 12.189000 0.815000 0 +SPEAKER 00378 0 17.301000 1.539940 0 +SPEAKER 00378 0 35.192290 2.337840 0 +SPEAKER 00378 0 51.084180 1.882820 0 +SPEAKER 00378 0 58.219320 4.783780 0 +SPEAKER 00378 0 19.449000 10.148700 h0 +SPEAKER 00378 0 30.133000 1.000000 h0 +SPEAKER 00378 0 31.638000 3.189430 h0 +SPEAKER 00378 0 35.273370 4.364870 h0 +SPEAKER 00378 0 39.982000 0.561640 h0 +SPEAKER 00378 0 50.732830 1.012170 h0 +SPEAKER 00378 0 53.430000 3.870400 h0 +SPEAKER 00378 0 60.875000 4.907000 h0 +SPEAKER 00378 0 66.930000 1.127000 h0 +SPEAKER 00378 0 31.354450 1.175680 1 +SPEAKER 00378 0 33.801000 0.981000 1 +SPEAKER 00378 0 40.327430 9.473120 1 +SPEAKER 00378 0 65.273370 1.729730 1 diff --git a/rttm/few/00386.rttm b/rttm/few/00386.rttm new file mode 100644 index 0000000000000000000000000000000000000000..835ccde31b6f66d56c35f889766b25827b881e55 --- /dev/null +++ b/rttm/few/00386.rttm @@ -0,0 +1,4 @@ +SPEAKER 00386 0 0.000000 0.763510 1 +SPEAKER 00386 0 2.353000 14.651000 1 +SPEAKER 00386 0 17.887000 2.688000 1 +SPEAKER 00386 0 17.301000 1.129180 0 diff --git a/rttm/few/00387.rttm b/rttm/few/00387.rttm new file mode 100644 index 0000000000000000000000000000000000000000..457d38e5477539d97744a182a12b02a7811e41c7 --- /dev/null +++ b/rttm/few/00387.rttm @@ -0,0 +1,13 @@ +SPEAKER 00387 0 0.038450 0.281820 4 +SPEAKER 00387 0 1.902090 1.138910 4 +SPEAKER 00387 0 3.446000 0.836030 4 +SPEAKER 00387 0 4.829360 1.378640 4 +SPEAKER 00387 0 6.820270 2.045450 1 +SPEAKER 00387 0 17.022770 0.425920 1 +SPEAKER 00387 0 20.086000 0.400000 1 +SPEAKER 00387 0 0.226000 1.694270 2 +SPEAKER 00387 0 3.806000 2.500000 2 +SPEAKER 00387 0 9.174810 10.836370 2 +SPEAKER 00387 0 20.646000 0.337900 2 +SPEAKER 00387 0 6.096000 0.643000 0 +SPEAKER 00387 0 20.486000 0.870000 0 diff --git a/rttm/few/00407.rttm b/rttm/few/00407.rttm new file mode 100644 index 0000000000000000000000000000000000000000..94eda7388d1c87a45780ec007c6d1198e3b12b04 --- /dev/null +++ b/rttm/few/00407.rttm @@ -0,0 +1,21 @@ +SPEAKER 00407 0 0.000000 0.744990 0 +SPEAKER 00407 0 1.093000 0.999000 0 +SPEAKER 00407 0 3.152000 1.055950 0 +SPEAKER 00407 0 6.922000 1.323000 0 +SPEAKER 00407 0 13.782000 0.759000 0 +SPEAKER 00407 0 15.856000 0.518620 0 +SPEAKER 00407 0 16.665000 0.691100 0 +SPEAKER 00407 0 0.560000 0.746000 2 +SPEAKER 00407 0 2.393140 1.333330 2 +SPEAKER 00407 0 4.117000 1.000000 2 +SPEAKER 00407 0 6.745000 0.907400 2 +SPEAKER 00407 0 9.258000 1.894400 2 +SPEAKER 00407 0 11.699000 2.929750 2 +SPEAKER 00407 0 16.078000 0.685000 2 +SPEAKER 00407 0 19.084000 1.178000 2 +SPEAKER 00407 0 4.165000 3.113000 1 +SPEAKER 00407 0 8.093000 1.178000 1 +SPEAKER 00407 0 11.665000 0.691100 1 +SPEAKER 00407 0 14.165000 2.097000 1 +SPEAKER 00407 0 17.310000 2.193750 1 +SPEAKER 00407 0 20.278000 1.922000 1 diff --git a/rttm/few/00423.rttm b/rttm/few/00423.rttm new file mode 100644 index 0000000000000000000000000000000000000000..eb6951577910aa8276ff7510ba88e446b5bdb614 --- /dev/null +++ b/rttm/few/00423.rttm @@ -0,0 +1,16 @@ +SPEAKER 00423 0 0.000000 2.125000 1 +SPEAKER 00423 0 5.337000 6.352440 1 +SPEAKER 00423 0 12.110000 3.209060 1 +SPEAKER 00423 0 16.166000 7.525250 1 +SPEAKER 00423 0 24.025000 2.532920 1 +SPEAKER 00423 0 31.967210 0.555560 1 +SPEAKER 00423 0 35.096840 1.573160 1 +SPEAKER 00423 0 38.115360 0.481480 1 +SPEAKER 00423 0 2.141000 3.106000 0 +SPEAKER 00423 0 11.550000 0.894000 0 +SPEAKER 00423 0 14.706000 1.520000 0 +SPEAKER 00423 0 23.586000 0.737000 0 +SPEAKER 00423 0 26.780000 2.724250 0 +SPEAKER 00423 0 29.985730 2.059690 0 +SPEAKER 00423 0 32.472000 2.906750 0 +SPEAKER 00423 0 35.712000 5.145920 0 diff --git a/rttm/few/00427.rttm b/rttm/few/00427.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c30b0051122f3226a37d42235b0b61cf34f8e2ea --- /dev/null +++ b/rttm/few/00427.rttm @@ -0,0 +1,10 @@ +SPEAKER 00427 0 0.020000 1.000000 0 +SPEAKER 00427 0 1.555000 5.087000 0 +SPEAKER 00427 0 7.263000 3.665000 0 +SPEAKER 00427 0 16.113000 3.635000 0 +SPEAKER 00427 0 20.393000 2.951000 0 +SPEAKER 00427 0 24.038000 3.873660 0 +SPEAKER 00427 0 28.397000 1.181320 0 +SPEAKER 00427 0 6.677000 0.527000 1 +SPEAKER 00427 0 10.810000 5.102000 1 +SPEAKER 00427 0 19.065000 2.642950 1 diff --git a/rttm/few/00428.rttm b/rttm/few/00428.rttm new file mode 100644 index 0000000000000000000000000000000000000000..af9280f4045c8f259f74c480a6665b82c1ffe8f9 --- /dev/null +++ b/rttm/few/00428.rttm @@ -0,0 +1,9 @@ +SPEAKER 00428 0 1.634000 0.518400 2 +SPEAKER 00428 0 4.819060 1.092600 2 +SPEAKER 00428 0 30.261050 0.770950 2 +SPEAKER 00428 0 31.534000 0.556000 2 +SPEAKER 00428 0 0.026000 1.904000 1 +SPEAKER 00428 0 2.967000 8.991020 1 +SPEAKER 00428 0 28.094390 2.631610 1 +SPEAKER 00428 0 31.134000 0.970000 1 +SPEAKER 00428 0 12.930000 5.704000 0 diff --git a/rttm/few/00431.rttm b/rttm/few/00431.rttm new file mode 100644 index 0000000000000000000000000000000000000000..1a5560909b2df541e5b9cab89595c00bee6f07e7 --- /dev/null +++ b/rttm/few/00431.rttm @@ -0,0 +1,27 @@ +SPEAKER 00431 0 0.000000 1.189000 1 +SPEAKER 00431 0 3.078000 5.574000 1 +SPEAKER 00431 0 9.430180 0.906820 1 +SPEAKER 00431 0 10.744990 1.648010 1 +SPEAKER 00431 0 13.244990 1.944010 1 +SPEAKER 00431 0 15.689440 3.944560 1 +SPEAKER 00431 0 20.375000 3.222000 1 +SPEAKER 00431 0 23.967000 1.556000 1 +SPEAKER 00431 0 27.264000 2.703000 1 +SPEAKER 00431 0 30.652000 1.000000 1 +SPEAKER 00431 0 34.786000 1.000000 1 +SPEAKER 00431 0 36.263510 1.611490 1 +SPEAKER 00431 0 39.597000 3.296000 1 +SPEAKER 00431 0 2.002000 1.000000 0 +SPEAKER 00431 0 6.301000 0.407000 0 +SPEAKER 00431 0 8.953000 0.440000 0 +SPEAKER 00431 0 12.393000 0.889000 0 +SPEAKER 00431 0 15.511000 0.715000 0 +SPEAKER 00431 0 17.097000 0.296000 0 +SPEAKER 00431 0 18.226000 0.315000 0 +SPEAKER 00431 0 19.115000 0.686000 0 +SPEAKER 00431 0 24.856000 0.426000 0 +SPEAKER 00431 0 26.004000 1.148000 0 +SPEAKER 00431 0 32.652000 2.556000 0 +SPEAKER 00431 0 35.856000 0.315000 0 +SPEAKER 00431 0 37.875000 3.611000 0 +SPEAKER 00431 0 42.523000 0.627000 0 diff --git a/rttm/few/00433.rttm b/rttm/few/00433.rttm new file mode 100644 index 0000000000000000000000000000000000000000..9e818e89826fe440e3576cf191c4075c731cd284 --- /dev/null +++ b/rttm/few/00433.rttm @@ -0,0 +1,20 @@ +SPEAKER 00433 0 0.282000 0.796320 3 +SPEAKER 00433 0 3.100000 10.052400 3 +SPEAKER 00433 0 20.930180 1.018820 3 +SPEAKER 00433 0 22.393000 1.277920 3 +SPEAKER 00433 0 24.634000 1.573950 3 +SPEAKER 00433 0 2.244000 0.926920 2 +SPEAKER 00433 0 13.745000 1.518510 2 +SPEAKER 00433 0 19.111000 1.708060 2 +SPEAKER 00433 0 22.744990 0.833010 2 +SPEAKER 00433 0 24.689440 0.925920 2 +SPEAKER 00433 0 26.282030 0.481480 2 +SPEAKER 00433 0 12.078000 3.185510 1 +SPEAKER 00433 0 20.059810 0.981480 1 +SPEAKER 00433 0 22.323000 0.773840 1 +SPEAKER 00433 0 23.467210 2.296300 1 +SPEAKER 00433 0 26.133880 1.833330 1 +SPEAKER 00433 0 29.486000 0.738000 1 +SPEAKER 00433 0 1.890180 0.447400 0 +SPEAKER 00433 0 23.430180 2.055550 0 +SPEAKER 00433 0 28.078000 1.408000 0 diff --git a/rttm/few/00449.rttm b/rttm/few/00449.rttm new file mode 100644 index 0000000000000000000000000000000000000000..cf858cc392d5e88ab2d6b40da6254bdf7865bd1b --- /dev/null +++ b/rttm/few/00449.rttm @@ -0,0 +1,45 @@ +SPEAKER 00449 0 0.000000 4.352000 2 +SPEAKER 00449 0 8.467210 0.629630 2 +SPEAKER 00449 0 11.578320 0.388890 2 +SPEAKER 00449 0 12.944000 2.000000 2 +SPEAKER 00449 0 15.241000 3.966950 2 +SPEAKER 00449 0 19.986000 1.018250 2 +SPEAKER 00449 0 22.948690 5.359310 2 +SPEAKER 00449 0 29.231000 1.328810 2 +SPEAKER 00449 0 31.307000 3.847000 2 +SPEAKER 00449 0 37.097000 1.000000 2 +SPEAKER 00449 0 38.596840 2.518160 2 +SPEAKER 00449 0 42.263000 1.006000 2 +SPEAKER 00449 0 48.808000 1.230000 2 +SPEAKER 00449 0 56.707950 16.138050 2 +SPEAKER 00449 0 74.385000 1.989620 2 +SPEAKER 00449 0 79.666000 1.911000 2 +SPEAKER 00449 0 86.144000 0.741000 2 +SPEAKER 00449 0 93.793000 0.774000 2 +SPEAKER 00449 0 96.167000 2.666000 2 +SPEAKER 00449 0 101.233000 6.934000 2 +SPEAKER 00449 0 110.400000 9.604250 2 +SPEAKER 00449 0 120.700000 0.600000 2 +SPEAKER 00449 0 4.578320 8.291680 1 +SPEAKER 00449 0 20.133880 2.037040 1 +SPEAKER 00449 0 26.269000 2.846360 1 +SPEAKER 00449 0 30.558000 0.596000 1 +SPEAKER 00449 0 32.714000 1.030990 1 +SPEAKER 00449 0 35.430180 1.407400 1 +SPEAKER 00449 0 40.878000 1.353000 1 +SPEAKER 00449 0 50.154000 6.276180 1 +SPEAKER 00449 0 71.985730 1.981480 1 +SPEAKER 00449 0 79.000000 0.731000 1 +SPEAKER 00449 0 89.769000 0.923000 1 +SPEAKER 00449 0 93.789000 2.567100 1 +SPEAKER 00449 0 98.782030 0.740970 1 +SPEAKER 00449 0 99.967210 1.685190 1 +SPEAKER 00449 0 106.962000 1.871000 1 +SPEAKER 00449 0 120.333000 0.500000 1 +SPEAKER 00449 0 4.004000 1.166920 0 +SPEAKER 00449 0 43.346000 6.731000 0 +SPEAKER 00449 0 56.085000 0.646000 0 +SPEAKER 00449 0 74.423000 5.581250 0 +SPEAKER 00449 0 81.319060 12.462970 0 +SPEAKER 00449 0 96.236000 0.797000 0 +SPEAKER 00449 0 108.118000 0.682000 0 diff --git a/rttm/few/00450.rttm b/rttm/few/00450.rttm new file mode 100644 index 0000000000000000000000000000000000000000..9f34d6c58bd6e196d81dc1ec942c80be3281f9a4 --- /dev/null +++ b/rttm/few/00450.rttm @@ -0,0 +1,8 @@ +SPEAKER 00450 0 0.027000 3.079420 0 +SPEAKER 00450 0 5.002260 4.083330 0 +SPEAKER 00450 0 9.915000 3.503920 0 +SPEAKER 00450 0 19.726000 0.889000 0 +SPEAKER 00450 0 23.875000 1.106420 0 +SPEAKER 00450 0 3.523000 2.111000 1 +SPEAKER 00450 0 13.564760 1.270830 1 +SPEAKER 00450 0 15.910000 9.175590 1 diff --git a/rttm/few/00465.rttm b/rttm/few/00465.rttm new file mode 100644 index 0000000000000000000000000000000000000000..dc9753ee075007e5c275afb86f7516331ad48fd3 --- /dev/null +++ b/rttm/few/00465.rttm @@ -0,0 +1,26 @@ +SPEAKER 00465 0 0.034000 0.562840 1 +SPEAKER 00465 0 2.383000 1.864000 1 +SPEAKER 00465 0 7.671000 2.560000 1 +SPEAKER 00465 0 11.171000 2.412900 1 +SPEAKER 00465 0 15.004000 0.979900 1 +SPEAKER 00465 0 16.747000 3.400540 1 +SPEAKER 00465 0 21.822000 1.546000 1 +SPEAKER 00465 0 24.747000 0.936900 1 +SPEAKER 00465 0 27.143000 0.463000 1 +SPEAKER 00465 0 0.756000 0.463000 2 +SPEAKER 00465 0 1.919000 0.568000 2 +SPEAKER 00465 0 3.466000 0.927000 2 +SPEAKER 00465 0 4.974810 0.836370 2 +SPEAKER 00465 0 6.804430 0.232400 2 +SPEAKER 00465 0 23.853000 0.830900 2 +SPEAKER 00465 0 25.671000 1.348000 2 +SPEAKER 00465 0 0.000000 1.538450 0 +SPEAKER 00465 0 1.913000 1.758000 0 +SPEAKER 00465 0 4.398000 3.121000 0 +SPEAKER 00465 0 9.993000 0.400000 0 +SPEAKER 00465 0 13.583900 2.269100 0 +SPEAKER 00465 0 18.171000 0.500000 0 +SPEAKER 00465 0 19.534000 1.667000 0 +SPEAKER 00465 0 22.838000 0.424000 0 +SPEAKER 00465 0 23.777000 2.091000 0 +SPEAKER 00465 0 26.231000 0.364000 0 diff --git a/rttm/few/00474.rttm b/rttm/few/00474.rttm new file mode 100644 index 0000000000000000000000000000000000000000..614aa48d0d9a08bb855400c49e36afc86f3e972a --- /dev/null +++ b/rttm/few/00474.rttm @@ -0,0 +1,38 @@ +SPEAKER 00474 0 0.564760 6.847240 0 +SPEAKER 00474 0 7.986000 3.120420 0 +SPEAKER 00474 0 12.264000 0.851000 0 +SPEAKER 00474 0 14.375000 2.407000 0 +SPEAKER 00474 0 17.578000 1.000000 0 +SPEAKER 00474 0 20.356000 4.463000 0 +SPEAKER 00474 0 27.041000 7.834000 0 +SPEAKER 00474 0 35.689000 4.204000 0 +SPEAKER 00474 0 40.615000 2.093000 0 +SPEAKER 00474 0 44.041000 3.908000 0 +SPEAKER 00474 0 50.671000 1.331260 0 +SPEAKER 00474 0 52.481420 1.187580 0 +SPEAKER 00474 0 57.486000 1.000000 0 +SPEAKER 00474 0 60.597000 0.367380 0 +SPEAKER 00474 0 64.393000 5.201010 0 +SPEAKER 00474 0 70.467000 7.222000 0 +SPEAKER 00474 0 78.115000 5.611000 0 +SPEAKER 00474 0 84.615000 5.445000 0 +SPEAKER 00474 0 90.856000 9.519000 0 +SPEAKER 00474 0 101.356000 1.352000 0 +SPEAKER 00474 0 7.432000 0.603000 1 +SPEAKER 00474 0 11.504000 10.130000 1 +SPEAKER 00474 0 25.726000 2.000000 1 +SPEAKER 00474 0 34.634000 1.241000 1 +SPEAKER 00474 0 37.648000 0.833420 1 +SPEAKER 00474 0 38.824000 0.709000 1 +SPEAKER 00474 0 40.129000 0.787000 1 +SPEAKER 00474 0 48.541000 3.056000 1 +SPEAKER 00474 0 52.671000 4.241000 1 +SPEAKER 00474 0 57.634000 6.826590 1 +SPEAKER 00474 0 69.764000 0.629000 1 +SPEAKER 00474 0 73.319000 2.130000 1 +SPEAKER 00474 0 77.726000 0.463000 1 +SPEAKER 00474 0 79.838000 0.907000 1 +SPEAKER 00474 0 83.689000 0.649000 1 +SPEAKER 00474 0 86.011000 0.379390 1 +SPEAKER 00474 0 90.356000 0.574000 1 +SPEAKER 00474 0 100.578000 0.667000 1 diff --git a/rttm/few/00475.rttm b/rttm/few/00475.rttm new file mode 100644 index 0000000000000000000000000000000000000000..638b738ba4255a25228056f372fb6c6b3b48e06e --- /dev/null +++ b/rttm/few/00475.rttm @@ -0,0 +1,7 @@ +SPEAKER 00475 0 0.411660 1.403340 1 +SPEAKER 00475 0 20.599000 0.868210 1 +SPEAKER 00475 0 24.327000 2.606140 1 +SPEAKER 00475 0 29.532000 1.238000 1 +SPEAKER 00475 0 1.555000 23.877000 0 +SPEAKER 00475 0 26.844000 2.644000 0 +SPEAKER 00475 0 30.760000 2.812000 0 diff --git a/rttm/few/00479.rttm b/rttm/few/00479.rttm new file mode 100644 index 0000000000000000000000000000000000000000..829e7fdfd5ce2c3be64c6bf1584adb8f3877b9ed --- /dev/null +++ b/rttm/few/00479.rttm @@ -0,0 +1,50 @@ +SPEAKER 00479 0 0.000000 4.435880 1 +SPEAKER 00479 0 4.780000 0.733660 1 +SPEAKER 00479 0 7.615000 1.289210 1 +SPEAKER 00479 0 9.949000 5.870000 1 +SPEAKER 00479 0 17.726000 1.132110 1 +SPEAKER 00479 0 19.949000 2.148000 1 +SPEAKER 00479 0 23.764000 1.871880 1 +SPEAKER 00479 0 26.467000 6.924440 1 +SPEAKER 00479 0 33.980000 5.011440 1 +SPEAKER 00479 0 39.598000 1.560110 1 +SPEAKER 00479 0 43.875000 1.555000 1 +SPEAKER 00479 0 47.264000 0.611000 1 +SPEAKER 00479 0 48.522770 3.111230 1 +SPEAKER 00479 0 52.097000 0.685000 1 +SPEAKER 00479 0 53.430000 1.352000 1 +SPEAKER 00479 0 55.949000 6.344370 1 +SPEAKER 00479 0 62.747000 1.000000 1 +SPEAKER 00479 0 64.165000 2.023720 1 +SPEAKER 00479 0 66.562000 1.673230 1 +SPEAKER 00479 0 71.412000 1.944000 1 +SPEAKER 00479 0 74.578000 0.785130 1 +SPEAKER 00479 0 76.578000 7.037000 1 +SPEAKER 00479 0 84.282000 0.944000 1 +SPEAKER 00479 0 85.912000 2.311600 1 +SPEAKER 00479 0 90.708000 4.370000 1 +SPEAKER 00479 0 95.782000 0.537000 1 +SPEAKER 00479 0 97.078000 2.315000 1 +SPEAKER 00479 0 100.060000 1.431040 1 +SPEAKER 00479 0 101.898000 2.093040 1 +SPEAKER 00479 0 104.445000 1.325110 1 +SPEAKER 00479 0 106.578000 1.726990 1 +SPEAKER 00479 0 108.758000 0.723270 1 +SPEAKER 00479 0 110.356000 3.914110 1 +SPEAKER 00479 0 114.817000 3.871720 1 +SPEAKER 00479 0 119.293000 0.290000 1 +SPEAKER 00479 0 5.949000 1.796000 0 +SPEAKER 00479 0 9.541000 0.461250 0 +SPEAKER 00479 0 16.845000 0.441560 0 +SPEAKER 00479 0 30.191440 0.646560 0 +SPEAKER 00479 0 52.167000 0.302220 0 +SPEAKER 00479 0 52.858000 0.498100 0 +SPEAKER 00479 0 64.264000 0.320060 0 +SPEAKER 00479 0 69.319000 2.179020 0 +SPEAKER 00479 0 72.374760 2.360470 0 +SPEAKER 00479 0 75.130000 3.372670 0 +SPEAKER 00479 0 80.625000 0.750000 0 +SPEAKER 00479 0 85.634000 0.670990 0 +SPEAKER 00479 0 88.282000 1.720670 0 +SPEAKER 00479 0 95.189000 1.130000 0 +SPEAKER 00479 0 106.726000 0.858060 0 diff --git a/rttm/few/00481.rttm b/rttm/few/00481.rttm new file mode 100644 index 0000000000000000000000000000000000000000..604974e18a5e719676303cd59ec463c5036b9016 --- /dev/null +++ b/rttm/few/00481.rttm @@ -0,0 +1,25 @@ +SPEAKER 00481 0 0.002000 6.604000 0 +SPEAKER 00481 0 7.044000 4.978770 0 +SPEAKER 00481 0 12.514000 1.780000 0 +SPEAKER 00481 0 16.044000 0.583000 0 +SPEAKER 00481 0 18.447000 1.649840 0 +SPEAKER 00481 0 20.967210 0.659790 0 +SPEAKER 00481 0 24.257000 1.000000 0 +SPEAKER 00481 0 26.500000 0.815000 0 +SPEAKER 00481 0 28.545000 0.478000 0 +SPEAKER 00481 0 29.527000 1.236510 0 +SPEAKER 00481 0 35.115000 2.648510 0 +SPEAKER 00481 0 38.752000 0.789290 0 +SPEAKER 00481 0 40.845000 3.825920 0 +SPEAKER 00481 0 14.377000 0.590210 1 +SPEAKER 00481 0 16.886000 1.544180 1 +SPEAKER 00481 0 20.336000 0.853440 1 +SPEAKER 00481 0 22.232000 1.661140 1 +SPEAKER 00481 0 25.438000 1.066250 1 +SPEAKER 00481 0 27.413000 1.000000 1 +SPEAKER 00481 0 29.207950 5.537040 1 +SPEAKER 00481 0 37.398020 1.874980 1 +SPEAKER 00481 0 39.523000 3.002920 1 +SPEAKER 00481 0 45.273000 0.646000 1 +SPEAKER 00481 0 46.337580 5.373420 1 +SPEAKER 00481 0 56.374620 0.665380 1 diff --git a/rttm/few/00493.rttm b/rttm/few/00493.rttm new file mode 100644 index 0000000000000000000000000000000000000000..85c7cd03e2a362b753f6ec2d72d5f308c14b149e --- /dev/null +++ b/rttm/few/00493.rttm @@ -0,0 +1,12 @@ +SPEAKER 00493 0 0.000000 4.578000 0 +SPEAKER 00493 0 5.333000 4.653000 0 +SPEAKER 00493 0 11.004000 3.278000 0 +SPEAKER 00493 0 14.837000 5.482060 0 +SPEAKER 00493 0 22.986000 2.592000 0 +SPEAKER 00493 0 25.962000 3.376000 0 +SPEAKER 00493 0 29.672000 3.628550 0 +SPEAKER 00493 0 33.633880 1.425930 0 +SPEAKER 00493 0 4.690000 0.685000 1 +SPEAKER 00493 0 9.300000 0.686000 1 +SPEAKER 00493 0 14.282000 1.000000 1 +SPEAKER 00493 0 20.226000 2.760000 1 diff --git a/rttm/few/00501.rttm b/rttm/few/00501.rttm new file mode 100644 index 0000000000000000000000000000000000000000..430eab07368164c0d4457c6c43230d5dcedda94a --- /dev/null +++ b/rttm/few/00501.rttm @@ -0,0 +1,8 @@ +SPEAKER 00501 0 0.004000 2.556000 h0 +SPEAKER 00501 0 0.820000 0.573000 1 +SPEAKER 00501 0 2.668000 0.844000 1 +SPEAKER 00501 0 4.057000 21.077000 1 +SPEAKER 00501 0 5.115000 0.889000 0 +SPEAKER 00501 0 12.431840 0.461160 0 +SPEAKER 00501 0 23.986000 0.500000 0 +SPEAKER 00501 0 25.502010 16.723990 0 diff --git a/rttm/few/00532.rttm b/rttm/few/00532.rttm new file mode 100644 index 0000000000000000000000000000000000000000..b5a6d215db80c4e31039bcb36e0f6fc29a121192 --- /dev/null +++ b/rttm/few/00532.rttm @@ -0,0 +1,15 @@ +SPEAKER 00532 0 0.001000 3.711400 2 +SPEAKER 00532 0 4.189440 2.582960 2 +SPEAKER 00532 0 10.234000 0.402840 2 +SPEAKER 00532 0 11.022770 1.134070 2 +SPEAKER 00532 0 12.965730 6.305190 2 +SPEAKER 00532 0 19.614000 1.982000 2 +SPEAKER 00532 0 3.829000 0.450000 3 +SPEAKER 00532 0 4.875000 0.751000 3 +SPEAKER 00532 0 6.543000 0.424000 3 +SPEAKER 00532 0 9.076840 0.394080 3 +SPEAKER 00532 0 12.325000 1.421000 3 +SPEAKER 00532 0 21.264000 0.419000 3 +SPEAKER 00532 0 7.301000 0.981030 0 +SPEAKER 00532 0 14.579000 0.550000 0 +SPEAKER 00532 0 10.020000 1.077000 1 diff --git a/rttm/few/00535.rttm b/rttm/few/00535.rttm new file mode 100644 index 0000000000000000000000000000000000000000..8403b86d080c9d6c64ff85c4f362c0f7e3564837 --- /dev/null +++ b/rttm/few/00535.rttm @@ -0,0 +1,11 @@ +SPEAKER 00535 0 0.002000 3.891000 1 +SPEAKER 00535 0 4.511000 2.155000 1 +SPEAKER 00535 0 9.547000 4.197990 1 +SPEAKER 00535 0 15.520000 2.264000 1 +SPEAKER 00535 0 2.366000 2.327000 2 +SPEAKER 00535 0 14.138000 1.384770 2 +SPEAKER 00535 0 17.338000 1.221810 2 +SPEAKER 00535 0 20.689440 2.148560 2 +SPEAKER 00535 0 6.829000 1.473000 0 +SPEAKER 00535 0 13.893140 1.462960 0 +SPEAKER 00535 0 18.041290 2.742710 0 diff --git a/rttm/few/00540.rttm b/rttm/few/00540.rttm new file mode 100644 index 0000000000000000000000000000000000000000..795762921d699c8085c64f71f9f96d7f2debe59c --- /dev/null +++ b/rttm/few/00540.rttm @@ -0,0 +1,14 @@ +SPEAKER 00540 0 1.672000 2.054470 0 +SPEAKER 00540 0 4.728000 4.241000 0 +SPEAKER 00540 0 10.319000 5.556000 0 +SPEAKER 00540 0 16.615000 1.667000 0 +SPEAKER 00540 0 18.893000 2.963000 0 +SPEAKER 00540 0 0.015000 1.285310 1 +SPEAKER 00540 0 3.819000 1.747270 1 +SPEAKER 00540 0 7.801000 2.758810 1 +SPEAKER 00540 0 3.856000 1.742190 2 +SPEAKER 00540 0 8.470530 1.200470 2 +SPEAKER 00540 0 12.985000 0.315310 2 +SPEAKER 00540 0 15.782000 1.432000 2 +SPEAKER 00540 0 17.864000 1.106530 2 +SPEAKER 00540 0 19.350000 0.599000 2 diff --git a/rttm/few/00551.rttm b/rttm/few/00551.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c441eb6735fee7a8ae7ac1ffd9a6491239c8fad6 --- /dev/null +++ b/rttm/few/00551.rttm @@ -0,0 +1,8 @@ +SPEAKER 00551 0 1.178780 4.085220 0 +SPEAKER 00551 0 5.541000 1.630000 0 +SPEAKER 00551 0 7.782000 3.748130 0 +SPEAKER 00551 0 11.827430 1.608100 0 +SPEAKER 00551 0 14.041000 3.130000 0 +SPEAKER 00551 0 17.838000 1.481000 0 +SPEAKER 00551 0 20.041000 4.111400 0 +SPEAKER 00551 0 25.097700 3.943300 1 diff --git a/rttm/few/00557.rttm b/rttm/few/00557.rttm new file mode 100644 index 0000000000000000000000000000000000000000..226b56ef52838355fbaed8c46a718a96c0bd4570 --- /dev/null +++ b/rttm/few/00557.rttm @@ -0,0 +1,21 @@ +SPEAKER 00557 0 0.029000 6.123400 0 +SPEAKER 00557 0 6.689000 1.667000 0 +SPEAKER 00557 0 23.932000 4.143000 0 +SPEAKER 00557 0 30.325000 10.920000 0 +SPEAKER 00557 0 41.875000 1.722000 0 +SPEAKER 00557 0 44.797000 1.000000 0 +SPEAKER 00557 0 46.630000 7.175000 0 +SPEAKER 00557 0 58.705000 0.650000 0 +SPEAKER 00557 0 8.523000 3.166000 1 +SPEAKER 00557 0 12.245000 7.814810 1 +SPEAKER 00557 0 20.499000 3.208950 1 +SPEAKER 00557 0 25.182000 0.785000 1 +SPEAKER 00557 0 26.683000 1.154580 1 +SPEAKER 00557 0 28.663000 1.627000 1 +SPEAKER 00557 0 31.504000 1.500000 1 +SPEAKER 00557 0 34.789000 1.000000 1 +SPEAKER 00557 0 38.415000 1.000000 1 +SPEAKER 00557 0 42.005000 2.083000 1 +SPEAKER 00557 0 54.097000 1.518000 1 +SPEAKER 00557 0 56.338000 4.462550 1 +SPEAKER 00557 0 61.319060 3.535940 1 diff --git a/rttm/few/00560.rttm b/rttm/few/00560.rttm new file mode 100644 index 0000000000000000000000000000000000000000..e5022858d2d861e9c675fe269ad12679939582d9 --- /dev/null +++ b/rttm/few/00560.rttm @@ -0,0 +1,12 @@ +SPEAKER 00560 0 0.000000 3.750000 0 +SPEAKER 00560 0 4.414000 0.738000 0 +SPEAKER 00560 0 7.004000 4.426000 0 +SPEAKER 00560 0 13.115360 1.833330 0 +SPEAKER 00560 0 17.485730 0.586270 0 +SPEAKER 00560 0 19.119000 3.940810 0 +SPEAKER 00560 0 5.597000 1.351000 1 +SPEAKER 00560 0 11.059810 2.222190 1 +SPEAKER 00560 0 14.319060 3.277780 1 +SPEAKER 00560 0 18.263510 0.500000 1 +SPEAKER 00560 0 19.096840 1.370370 1 +SPEAKER 00560 0 24.097000 3.315000 1 diff --git a/rttm/few/00562.rttm b/rttm/few/00562.rttm new file mode 100644 index 0000000000000000000000000000000000000000..1994666bd1c25e3ad7ae5860b538b538aca8ba02 --- /dev/null +++ b/rttm/few/00562.rttm @@ -0,0 +1,188 @@ +SPEAKER 00562 0 0.000000 1.103640 1 +SPEAKER 00562 0 1.680000 0.593130 1 +SPEAKER 00562 0 4.400250 1.059320 1 +SPEAKER 00562 0 5.964000 0.792180 1 +SPEAKER 00562 0 7.115360 0.370370 1 +SPEAKER 00562 0 8.084000 2.036000 1 +SPEAKER 00562 0 12.202000 1.359000 1 +SPEAKER 00562 0 14.080000 2.313040 1 +SPEAKER 00562 0 18.689000 3.411360 1 +SPEAKER 00562 0 25.783000 1.207600 1 +SPEAKER 00562 0 27.344000 5.492280 1 +SPEAKER 00562 0 33.464000 3.244070 1 +SPEAKER 00562 0 37.285000 3.358970 1 +SPEAKER 00562 0 41.411000 1.471000 1 +SPEAKER 00562 0 44.605510 2.141020 1 +SPEAKER 00562 0 48.156790 1.755210 1 +SPEAKER 00562 0 51.002940 3.794870 1 +SPEAKER 00562 0 55.404000 0.791250 1 +SPEAKER 00562 0 56.638000 2.993150 1 +SPEAKER 00562 0 60.632000 1.268380 1 +SPEAKER 00562 0 63.154000 1.041250 1 +SPEAKER 00562 0 64.598000 1.648530 1 +SPEAKER 00562 0 66.752000 2.853510 1 +SPEAKER 00562 0 70.225000 2.636920 1 +SPEAKER 00562 0 73.826000 1.271000 1 +SPEAKER 00562 0 76.208000 2.102630 1 +SPEAKER 00562 0 79.596840 2.175330 1 +SPEAKER 00562 0 83.480000 0.858000 1 +SPEAKER 00562 0 85.282000 1.463640 1 +SPEAKER 00562 0 87.430180 4.092590 1 +SPEAKER 00562 0 91.893000 1.281710 1 +SPEAKER 00562 0 93.475000 0.413990 1 +SPEAKER 00562 0 94.203000 6.485990 1 +SPEAKER 00562 0 101.739000 1.184000 1 +SPEAKER 00562 0 104.108000 1.000000 1 +SPEAKER 00562 0 105.396000 0.442000 1 +SPEAKER 00562 0 106.531850 0.971430 1 +SPEAKER 00562 0 108.230000 2.987560 1 +SPEAKER 00562 0 111.876000 1.770140 1 +SPEAKER 00562 0 114.977000 1.654850 1 +SPEAKER 00562 0 117.370000 2.576140 1 +SPEAKER 00562 0 120.403000 1.119770 1 +SPEAKER 00562 0 122.660420 0.491580 1 +SPEAKER 00562 0 123.811000 0.892280 1 +SPEAKER 00562 0 126.920420 1.182860 1 +SPEAKER 00562 0 128.561000 1.685000 1 +SPEAKER 00562 0 131.322000 0.719290 1 +SPEAKER 00562 0 133.143000 0.980000 1 +SPEAKER 00562 0 136.724000 1.000000 1 +SPEAKER 00562 0 139.179000 0.849580 1 +SPEAKER 00562 0 143.023000 1.555000 1 +SPEAKER 00562 0 145.379000 1.125000 1 +SPEAKER 00562 0 147.759000 1.213000 1 +SPEAKER 00562 0 150.115000 0.537000 1 +SPEAKER 00562 0 150.980000 1.080000 1 +SPEAKER 00562 0 155.272170 0.794870 1 +SPEAKER 00562 0 156.591000 0.524000 1 +SPEAKER 00562 0 159.642000 1.566070 1 +SPEAKER 00562 0 164.282030 1.605530 1 +SPEAKER 00562 0 166.615000 0.490510 1 +SPEAKER 00562 0 170.002940 0.705130 1 +SPEAKER 00562 0 172.524000 3.499000 1 +SPEAKER 00562 0 177.784000 1.327000 1 +SPEAKER 00562 0 180.171000 1.780660 1 +SPEAKER 00562 0 182.317000 0.442350 1 +SPEAKER 00562 0 183.900380 2.827620 1 +SPEAKER 00562 0 187.136000 0.960840 1 +SPEAKER 00562 0 189.124000 0.565440 1 +SPEAKER 00562 0 190.524770 1.744450 1 +SPEAKER 00562 0 194.002550 1.433330 1 +SPEAKER 00562 0 197.102550 0.883450 1 +SPEAKER 00562 0 201.158110 4.088880 1 +SPEAKER 00562 0 205.773000 0.896220 1 +SPEAKER 00562 0 208.486000 5.927200 1 +SPEAKER 00562 0 214.849000 1.551380 1 +SPEAKER 00562 0 216.979000 2.729070 1 +SPEAKER 00562 0 220.273000 0.471990 1 +SPEAKER 00562 0 224.078000 1.167000 1 +SPEAKER 00562 0 225.746000 3.798000 1 +SPEAKER 00562 0 230.178780 1.918920 1 +SPEAKER 00562 0 232.678780 3.615240 1 +SPEAKER 00562 0 236.850000 0.589190 1 +SPEAKER 00562 0 238.393140 0.462960 1 +SPEAKER 00562 0 239.504000 1.279900 1 +SPEAKER 00562 0 241.856000 2.073360 1 +SPEAKER 00562 0 246.508000 0.757720 1 +SPEAKER 00562 0 248.376000 2.189720 1 +SPEAKER 00562 0 251.065720 1.209090 1 +SPEAKER 00562 0 253.002090 2.409090 1 +SPEAKER 00562 0 257.197000 1.790000 1 +SPEAKER 00562 0 260.416000 1.940630 1 +SPEAKER 00562 0 263.427000 0.337000 1 +SPEAKER 00562 0 264.625000 0.473000 1 +SPEAKER 00562 0 265.748000 1.922000 1 +SPEAKER 00562 0 269.028000 0.624000 1 +SPEAKER 00562 0 270.152000 2.059180 1 +SPEAKER 00562 0 272.820000 1.145720 1 +SPEAKER 00562 0 274.954000 0.493540 1 +SPEAKER 00562 0 276.260000 1.670000 1 +SPEAKER 00562 0 278.299000 0.630360 1 +SPEAKER 00562 0 279.731000 0.689270 1 +SPEAKER 00562 0 281.291000 0.631000 1 +SPEAKER 00562 0 282.465720 1.668280 1 +SPEAKER 00562 0 284.930000 0.685000 1 +SPEAKER 00562 0 286.689000 0.760000 1 +SPEAKER 00562 0 288.345000 3.411630 1 +SPEAKER 00562 0 292.912000 0.781000 1 +SPEAKER 00562 0 294.748000 1.293000 1 +SPEAKER 00562 0 297.865720 0.878280 1 +SPEAKER 00562 0 299.912000 0.508270 1 +SPEAKER 00562 0 300.896000 1.306090 1 +SPEAKER 00562 0 302.938450 0.845450 1 +SPEAKER 00562 0 304.138000 1.391360 1 +SPEAKER 00562 0 306.339000 0.890360 1 +SPEAKER 00562 0 308.456000 1.473360 1 +SPEAKER 00562 0 313.078000 1.000000 1 +SPEAKER 00562 0 318.417000 0.458000 1 +SPEAKER 00562 0 320.060000 0.628000 1 +SPEAKER 00562 0 321.038000 1.855000 1 +SPEAKER 00562 0 325.141000 2.306540 1 +SPEAKER 00562 0 329.458000 0.417000 1 +SPEAKER 00562 0 330.596840 1.468880 1 +SPEAKER 00562 0 334.448690 2.780670 1 +SPEAKER 00562 0 340.038450 0.454550 1 +SPEAKER 00562 0 341.906000 0.544000 1 +SPEAKER 00562 0 343.345000 0.437000 1 +SPEAKER 00562 0 346.372000 0.930090 1 +SPEAKER 00562 0 348.256630 0.436370 1 +SPEAKER 00562 0 2.356000 0.518830 0 +SPEAKER 00562 0 11.412000 0.685000 0 +SPEAKER 00562 0 26.856100 1.648150 0 +SPEAKER 00562 0 50.560000 0.468580 0 +SPEAKER 00562 0 54.967210 0.462970 0 +SPEAKER 00562 0 73.041400 0.602570 0 +SPEAKER 00562 0 75.477300 1.474360 0 +SPEAKER 00562 0 77.283000 0.745580 0 +SPEAKER 00562 0 78.426000 1.000020 0 +SPEAKER 00562 0 83.338000 0.523920 0 +SPEAKER 00562 0 84.522000 0.416840 0 +SPEAKER 00562 0 103.903000 0.379030 0 +SPEAKER 00562 0 112.375000 0.613990 0 +SPEAKER 00562 0 113.474710 1.614280 0 +SPEAKER 00562 0 131.060000 0.870000 0 +SPEAKER 00562 0 132.652000 1.000000 0 +SPEAKER 00562 0 135.073000 1.283000 0 +SPEAKER 00562 0 137.541290 0.538580 0 +SPEAKER 00562 0 139.954000 2.818170 0 +SPEAKER 00562 0 144.708000 0.574000 0 +SPEAKER 00562 0 146.504000 0.445000 0 +SPEAKER 00562 0 149.041290 0.462960 0 +SPEAKER 00562 0 155.464000 0.410620 0 +SPEAKER 00562 0 156.272000 0.371970 0 +SPEAKER 00562 0 158.579000 0.443770 0 +SPEAKER 00562 0 169.764000 0.480990 0 +SPEAKER 00562 0 176.054220 0.538470 0 +SPEAKER 00562 0 182.310630 1.384620 0 +SPEAKER 00562 0 189.768000 0.734550 0 +SPEAKER 00562 0 192.713660 1.253550 0 +SPEAKER 00562 0 197.123000 0.348000 0 +SPEAKER 00562 0 199.393000 1.709550 0 +SPEAKER 00562 0 205.782030 3.603390 0 +SPEAKER 00562 0 219.913000 1.644160 0 +SPEAKER 00562 0 222.026000 2.220340 0 +SPEAKER 00562 0 225.226000 0.993320 0 +SPEAKER 00562 0 229.875000 0.777000 0 +SPEAKER 00562 0 232.263510 0.500490 0 +SPEAKER 00562 0 238.152400 0.481480 0 +SPEAKER 00562 0 250.875000 0.407000 0 +SPEAKER 00562 0 259.729000 0.719690 0 +SPEAKER 00562 0 274.202000 1.000090 0 +SPEAKER 00562 0 275.621000 0.605470 0 +SPEAKER 00562 0 287.856000 0.473360 0 +SPEAKER 00562 0 302.965720 0.745460 0 +SPEAKER 00562 0 307.165720 0.927280 0 +SPEAKER 00562 0 311.060000 1.551180 0 +SPEAKER 00562 0 314.154000 1.497140 0 +SPEAKER 00562 0 317.280000 1.094810 0 +SPEAKER 00562 0 318.820270 0.527270 0 +SPEAKER 00562 0 328.049000 1.000000 0 +SPEAKER 00562 0 329.376000 0.946000 0 +SPEAKER 00562 0 332.356630 0.573370 0 +SPEAKER 00562 0 333.819000 0.619450 0 +SPEAKER 00562 0 337.938450 1.584550 0 +SPEAKER 00562 0 340.738000 1.000000 0 +SPEAKER 00562 0 342.617000 0.657810 0 +SPEAKER 00562 0 343.793000 0.520000 0 +SPEAKER 00562 0 345.076000 1.000000 0 +SPEAKER 00562 0 347.697000 1.029000 0 diff --git a/rttm/few/00567.rttm b/rttm/few/00567.rttm new file mode 100644 index 0000000000000000000000000000000000000000..5e59a157e72edb69a7b6ad17cf96d1006007b0e5 --- /dev/null +++ b/rttm/few/00567.rttm @@ -0,0 +1,74 @@ +SPEAKER 00567 0 0.000000 2.668920 1 +SPEAKER 00567 0 4.567000 1.393590 1 +SPEAKER 00567 0 10.302550 0.491370 1 +SPEAKER 00567 0 11.044000 1.666590 1 +SPEAKER 00567 0 23.367000 1.883000 1 +SPEAKER 00567 0 34.383000 1.577590 1 +SPEAKER 00567 0 38.183000 0.944260 1 +SPEAKER 00567 0 41.183000 3.200000 1 +SPEAKER 00567 0 66.480330 0.802610 1 +SPEAKER 00567 0 67.604000 0.451000 1 +SPEAKER 00567 0 75.512000 0.671000 1 +SPEAKER 00567 0 77.300000 4.545440 1 +SPEAKER 00567 0 82.392000 2.734690 1 +SPEAKER 00567 0 88.035880 2.543940 1 +SPEAKER 00567 0 91.113660 3.419280 1 +SPEAKER 00567 0 95.751690 1.098310 1 +SPEAKER 00567 0 97.560000 0.722940 1 +SPEAKER 00567 0 99.642320 3.571340 1 +SPEAKER 00567 0 106.940000 0.945000 1 +SPEAKER 00567 0 109.000000 2.236070 1 +SPEAKER 00567 0 112.667000 0.750000 1 +SPEAKER 00567 0 114.467000 0.534690 1 +SPEAKER 00567 0 115.302000 0.586000 1 +SPEAKER 00567 0 118.424000 0.483940 1 +SPEAKER 00567 0 119.501690 8.012310 1 +SPEAKER 00567 0 130.550000 7.117000 1 +SPEAKER 00567 0 138.370000 0.536050 1 +SPEAKER 00567 0 139.168000 3.380910 1 +SPEAKER 00567 0 2.867000 0.531090 0 +SPEAKER 00567 0 5.267000 0.485260 0 +SPEAKER 00567 0 6.072000 4.909420 0 +SPEAKER 00567 0 11.628000 0.598000 0 +SPEAKER 00567 0 13.183000 2.131760 0 +SPEAKER 00567 0 15.836000 1.937090 0 +SPEAKER 00567 0 18.104000 1.000000 0 +SPEAKER 00567 0 19.555000 0.530590 0 +SPEAKER 00567 0 20.668920 1.437500 0 +SPEAKER 00567 0 22.359000 1.747420 0 +SPEAKER 00567 0 24.558110 2.048310 0 +SPEAKER 00567 0 26.856420 4.583340 0 +SPEAKER 00567 0 31.711000 2.313770 0 +SPEAKER 00567 0 35.546990 2.871930 0 +SPEAKER 00567 0 40.517000 1.026920 0 +SPEAKER 00567 0 44.418000 4.584260 0 +SPEAKER 00567 0 49.333000 1.273420 0 +SPEAKER 00567 0 50.889000 4.113260 0 +SPEAKER 00567 0 55.273000 1.000000 0 +SPEAKER 00567 0 56.648000 1.000000 0 +SPEAKER 00567 0 58.006000 2.990000 0 +SPEAKER 00567 0 61.669000 3.306000 0 +SPEAKER 00567 0 65.408000 1.171820 0 +SPEAKER 00567 0 67.955000 0.484190 0 +SPEAKER 00567 0 68.751690 5.984380 0 +SPEAKER 00567 0 75.512000 3.114690 0 +SPEAKER 00567 0 80.283000 0.425000 0 +SPEAKER 00567 0 81.900000 0.382000 0 +SPEAKER 00567 0 85.269000 0.533550 0 +SPEAKER 00567 0 86.180330 0.665110 0 +SPEAKER 00567 0 90.954820 0.578120 0 +SPEAKER 00567 0 94.433000 1.318690 0 +SPEAKER 00567 0 96.683000 0.729000 0 +SPEAKER 00567 0 98.867000 2.166000 0 +SPEAKER 00567 0 103.079820 4.020180 0 +SPEAKER 00567 0 107.710000 1.166690 0 +SPEAKER 00567 0 110.733000 0.565570 0 +SPEAKER 00567 0 111.592000 1.000000 0 +SPEAKER 00567 0 113.417000 0.897190 0 +SPEAKER 00567 0 114.689000 4.609570 0 +SPEAKER 00567 0 120.767000 0.833000 0 +SPEAKER 00567 0 122.400000 1.150000 0 +SPEAKER 00567 0 125.483000 1.268290 0 +SPEAKER 00567 0 127.087000 3.473810 0 +SPEAKER 00567 0 137.367000 0.583000 0 +SPEAKER 00567 0 142.617000 0.833000 0 diff --git a/rttm/few/00571.rttm b/rttm/few/00571.rttm new file mode 100644 index 0000000000000000000000000000000000000000..22a9bf57a84ddaf0fb074797ad87bf038e00af1e --- /dev/null +++ b/rttm/few/00571.rttm @@ -0,0 +1,20 @@ +SPEAKER 00571 0 0.002000 0.539290 1 +SPEAKER 00571 0 2.129000 0.615990 1 +SPEAKER 00571 0 3.707950 0.778050 1 +SPEAKER 00571 0 6.670920 0.925920 1 +SPEAKER 00571 0 9.890000 0.900180 1 +SPEAKER 00571 0 13.633880 3.777780 1 +SPEAKER 00571 0 20.441290 2.192590 1 +SPEAKER 00571 0 25.931000 0.814000 1 +SPEAKER 00571 0 28.207950 2.925930 1 +SPEAKER 00571 0 0.255000 1.379000 0 +SPEAKER 00571 0 3.244990 4.555560 0 +SPEAKER 00571 0 2.837580 2.077040 3 +SPEAKER 00571 0 6.744990 2.907010 3 +SPEAKER 00571 0 12.245000 3.944000 3 +SPEAKER 00571 0 18.078000 1.648470 3 +SPEAKER 00571 0 22.412000 3.444000 3 +SPEAKER 00571 0 29.004000 0.833580 3 +SPEAKER 00571 0 31.907000 1.823920 3 +SPEAKER 00571 0 2.560000 0.722030 2 +SPEAKER 00571 0 26.764000 1.703000 2 diff --git a/rttm/few/00572.rttm b/rttm/few/00572.rttm new file mode 100644 index 0000000000000000000000000000000000000000..5afacaf68519841448d4e494570e47952491e443 --- /dev/null +++ b/rttm/few/00572.rttm @@ -0,0 +1,14 @@ +SPEAKER 00572 0 0.000000 2.652400 1 +SPEAKER 00572 0 3.182000 2.862250 1 +SPEAKER 00572 0 6.959000 3.227000 1 +SPEAKER 00572 0 12.762000 2.772000 1 +SPEAKER 00572 0 17.686000 4.304120 1 +SPEAKER 00572 0 22.686000 0.697000 1 +SPEAKER 00572 0 25.977300 1.000000 1 +SPEAKER 00572 0 27.488000 0.683000 1 +SPEAKER 00572 0 29.565000 1.121000 1 +SPEAKER 00572 0 10.870000 1.786000 0 +SPEAKER 00572 0 14.605510 3.641490 0 +SPEAKER 00572 0 22.838000 1.741870 0 +SPEAKER 00572 0 25.023000 0.759030 0 +SPEAKER 00572 0 28.731000 0.412970 0 diff --git a/rttm/few/00573.rttm b/rttm/few/00573.rttm new file mode 100644 index 0000000000000000000000000000000000000000..fc668fda879a9ea7b33a8f0b6b950277467e8a58 --- /dev/null +++ b/rttm/few/00573.rttm @@ -0,0 +1,41 @@ +SPEAKER 00573 0 0.000000 9.127260 0 +SPEAKER 00573 0 9.541000 1.037000 0 +SPEAKER 00573 0 13.264000 12.384090 0 +SPEAKER 00573 0 26.060000 3.648000 0 +SPEAKER 00573 0 31.949000 6.203000 0 +SPEAKER 00573 0 39.467000 10.519000 0 +SPEAKER 00573 0 50.356000 23.593000 0 +SPEAKER 00573 0 74.282000 24.926000 0 +SPEAKER 00573 0 112.831000 0.673000 0 +SPEAKER 00573 0 115.041000 0.908000 0 +SPEAKER 00573 0 119.060000 0.574000 0 +SPEAKER 00573 0 121.247000 1.665000 0 +SPEAKER 00573 0 123.578000 0.760000 0 +SPEAKER 00573 0 127.290000 0.585000 0 +SPEAKER 00573 0 131.053000 0.673000 0 +SPEAKER 00573 0 134.764000 1.462000 0 +SPEAKER 00573 0 136.838000 18.240000 0 +SPEAKER 00573 0 155.467000 2.167000 0 +SPEAKER 00573 0 175.560000 0.518000 0 +SPEAKER 00573 0 179.634000 0.778000 0 +SPEAKER 00573 0 181.338000 7.592000 0 +SPEAKER 00573 0 189.565000 1.717000 0 +SPEAKER 00573 0 191.967000 1.426000 0 +SPEAKER 00573 0 194.338000 23.518000 0 +SPEAKER 00573 0 9.245000 4.037000 1 +SPEAKER 00573 0 18.041000 0.537000 1 +SPEAKER 00573 0 29.986000 3.259000 1 +SPEAKER 00573 0 37.689000 2.704000 1 +SPEAKER 00573 0 49.801000 0.666000 1 +SPEAKER 00573 0 67.560000 1.783000 1 +SPEAKER 00573 0 69.648000 1.000000 1 +SPEAKER 00573 0 99.208000 23.986270 1 +SPEAKER 00573 0 123.680000 9.451770 1 +SPEAKER 00573 0 134.301000 2.907000 1 +SPEAKER 00573 0 154.671000 1.545000 1 +SPEAKER 00573 0 156.796000 24.949000 1 +SPEAKER 00573 0 183.189000 1.797000 1 +SPEAKER 00573 0 190.764000 1.370000 1 +SPEAKER 00573 0 193.208000 3.722000 1 +SPEAKER 00573 0 197.652000 0.704000 1 +SPEAKER 00573 0 213.578000 1.186000 1 diff --git a/rttm/few/00583.rttm b/rttm/few/00583.rttm new file mode 100644 index 0000000000000000000000000000000000000000..b549c14eb06e22531604f5a16980c9842a1648e5 --- /dev/null +++ b/rttm/few/00583.rttm @@ -0,0 +1,19 @@ +SPEAKER 00583 0 0.018000 1.615880 2 +SPEAKER 00583 0 2.319000 0.288000 2 +SPEAKER 00583 0 7.360000 1.265000 2 +SPEAKER 00583 0 40.855000 1.379000 2 +SPEAKER 00583 0 43.197000 1.445000 2 +SPEAKER 00583 0 45.417000 1.275000 2 +SPEAKER 00583 0 1.331000 0.741000 0 +SPEAKER 00583 0 33.662000 1.286000 0 +SPEAKER 00583 0 2.148000 6.265000 3 +SPEAKER 00583 0 8.843000 8.759000 3 +SPEAKER 00583 0 17.935000 0.760000 3 +SPEAKER 00583 0 19.208000 5.880000 3 +SPEAKER 00583 0 25.408000 1.867000 3 +SPEAKER 00583 0 27.715000 2.573000 3 +SPEAKER 00583 0 32.235000 1.100000 3 +SPEAKER 00583 0 34.828000 5.787360 3 +SPEAKER 00583 0 42.192000 1.534470 3 +SPEAKER 00583 0 44.488000 2.788000 3 +SPEAKER 00583 0 47.670920 2.725080 3 diff --git a/rttm/few/00585.rttm b/rttm/few/00585.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c61c60cf2c15c702da162258bd8c02d920516593 --- /dev/null +++ b/rttm/few/00585.rttm @@ -0,0 +1,84 @@ +SPEAKER 00585 0 0.000000 1.600000 0 +SPEAKER 00585 0 2.912000 2.888000 0 +SPEAKER 00585 0 6.486000 1.681000 0 +SPEAKER 00585 0 23.088160 0.670740 0 +SPEAKER 00585 0 26.076000 1.457000 0 +SPEAKER 00585 0 35.550000 3.103810 0 +SPEAKER 00585 0 47.700000 4.033000 0 +SPEAKER 00585 0 53.652000 3.881000 0 +SPEAKER 00585 0 59.009000 2.824000 0 +SPEAKER 00585 0 62.344000 2.489000 0 +SPEAKER 00585 0 68.413000 0.400910 0 +SPEAKER 00585 0 69.967000 2.933000 0 +SPEAKER 00585 0 77.400000 1.967000 0 +SPEAKER 00585 0 82.390000 1.110000 0 +SPEAKER 00585 0 88.282000 2.785000 0 +SPEAKER 00585 0 91.454000 1.495050 0 +SPEAKER 00585 0 96.686000 0.303590 0 +SPEAKER 00585 0 100.076000 1.737910 0 +SPEAKER 00585 0 102.100000 1.889590 0 +SPEAKER 00585 0 104.854000 1.932890 0 +SPEAKER 00585 0 110.584000 5.337270 0 +SPEAKER 00585 0 116.745000 1.373000 0 +SPEAKER 00585 0 127.893000 1.500140 0 +SPEAKER 00585 0 129.967210 1.444450 0 +SPEAKER 00585 0 132.060000 2.425730 0 +SPEAKER 00585 0 137.561000 0.480290 0 +SPEAKER 00585 0 148.121000 0.367990 0 +SPEAKER 00585 0 150.002000 0.658420 0 +SPEAKER 00585 0 153.747000 1.000000 0 +SPEAKER 00585 0 159.250000 1.763660 0 +SPEAKER 00585 0 163.969000 9.164000 0 +SPEAKER 00585 0 175.224000 4.764990 0 +SPEAKER 00585 0 180.518000 0.485280 0 +SPEAKER 00585 0 2.046140 0.800000 1 +SPEAKER 00585 0 4.547000 0.713420 1 +SPEAKER 00585 0 5.718000 0.685280 1 +SPEAKER 00585 0 6.860000 1.171850 1 +SPEAKER 00585 0 9.041000 0.760000 1 +SPEAKER 00585 0 10.731850 0.457150 1 +SPEAKER 00585 0 11.597000 2.637510 1 +SPEAKER 00585 0 14.588000 0.951380 1 +SPEAKER 00585 0 15.875000 0.585420 1 +SPEAKER 00585 0 16.918000 0.599560 1 +SPEAKER 00585 0 18.052000 0.548360 1 +SPEAKER 00585 0 19.159000 0.716000 1 +SPEAKER 00585 0 20.300000 6.464000 1 +SPEAKER 00585 0 27.819000 7.348000 1 +SPEAKER 00585 0 38.567000 1.544210 1 +SPEAKER 00585 0 40.544000 1.350990 1 +SPEAKER 00585 0 43.060000 2.929590 1 +SPEAKER 00585 0 46.760000 2.080940 1 +SPEAKER 00585 0 52.100000 0.833000 1 +SPEAKER 00585 0 53.644000 1.000000 1 +SPEAKER 00585 0 57.927000 0.773000 1 +SPEAKER 00585 0 61.959000 0.572850 1 +SPEAKER 00585 0 63.003280 5.496720 1 +SPEAKER 00585 0 68.800000 1.300000 1 +SPEAKER 00585 0 75.761050 0.431240 1 +SPEAKER 00585 0 81.036000 0.534670 1 +SPEAKER 00585 0 85.036000 2.864000 1 +SPEAKER 00585 0 91.082000 0.418000 1 +SPEAKER 00585 0 92.515000 2.193000 1 +SPEAKER 00585 0 95.449000 1.540590 1 +SPEAKER 00585 0 97.652000 1.972720 1 +SPEAKER 00585 0 108.167000 0.403670 1 +SPEAKER 00585 0 118.121000 3.314530 1 +SPEAKER 00585 0 122.260000 3.040400 1 +SPEAKER 00585 0 125.719000 0.311130 1 +SPEAKER 00585 0 126.557000 1.780580 1 +SPEAKER 00585 0 132.364000 0.306920 1 +SPEAKER 00585 0 134.906000 2.450000 1 +SPEAKER 00585 0 137.763000 3.445000 1 +SPEAKER 00585 0 141.986000 1.722000 1 +SPEAKER 00585 0 144.488990 5.589010 1 +SPEAKER 00585 0 150.572000 3.195000 1 +SPEAKER 00585 0 155.489000 0.828560 1 +SPEAKER 00585 0 156.688990 1.857150 1 +SPEAKER 00585 0 158.903000 1.485990 1 +SPEAKER 00585 0 160.903000 2.814560 1 +SPEAKER 00585 0 168.280000 0.337560 1 +SPEAKER 00585 0 171.033000 1.240000 1 +SPEAKER 00585 0 173.183000 2.220280 1 +SPEAKER 00585 0 176.160000 0.228990 1 +SPEAKER 00585 0 178.203000 0.830000 1 diff --git a/rttm/few/00598.rttm b/rttm/few/00598.rttm new file mode 100644 index 0000000000000000000000000000000000000000..083999ae999d469e7bfe05784362a9d80b587b88 --- /dev/null +++ b/rttm/few/00598.rttm @@ -0,0 +1,20 @@ +SPEAKER 00598 0 1.838000 3.604030 1 +SPEAKER 00598 0 7.263510 1.277490 1 +SPEAKER 00598 0 20.691000 1.405840 1 +SPEAKER 00598 0 26.416000 0.514000 1 +SPEAKER 00598 0 42.356000 0.777880 1 +SPEAKER 00598 0 46.804000 0.497000 1 +SPEAKER 00598 0 48.063000 0.534000 1 +SPEAKER 00598 0 48.983000 0.632360 1 +SPEAKER 00598 0 55.657160 1.695660 1 +SPEAKER 00598 0 60.800000 1.426470 1 +SPEAKER 00598 0 66.059810 0.814810 1 +SPEAKER 00598 0 1.869650 0.986450 0 +SPEAKER 00598 0 5.002670 13.668250 0 +SPEAKER 00598 0 19.096840 2.111110 0 +SPEAKER 00598 0 21.991040 4.272470 0 +SPEAKER 00598 0 26.670920 13.351850 0 +SPEAKER 00598 0 40.570000 6.195860 0 +SPEAKER 00598 0 47.157000 8.456680 0 +SPEAKER 00598 0 56.983250 4.224700 0 +SPEAKER 00598 0 62.207950 9.852050 0 diff --git a/rttm/few/00603.rttm b/rttm/few/00603.rttm new file mode 100644 index 0000000000000000000000000000000000000000..166f11adc7446632db73eab589b7519bd62f3daa --- /dev/null +++ b/rttm/few/00603.rttm @@ -0,0 +1,27 @@ +SPEAKER 00603 0 0.000000 4.041290 1 +SPEAKER 00603 0 4.523000 5.338290 1 +SPEAKER 00603 0 10.504000 0.740990 1 +SPEAKER 00603 0 11.745000 3.444440 1 +SPEAKER 00603 0 16.004000 0.445000 1 +SPEAKER 00603 0 17.449000 0.629000 1 +SPEAKER 00603 0 24.707950 0.660050 1 +SPEAKER 00603 0 26.801000 0.351000 1 +SPEAKER 00603 0 27.875000 0.629000 1 +SPEAKER 00603 0 29.666000 5.357000 1 +SPEAKER 00603 0 35.986000 2.723710 1 +SPEAKER 00603 0 39.541000 1.463000 1 +SPEAKER 00603 0 41.986000 1.934550 1 +SPEAKER 00603 0 44.615000 0.429000 1 +SPEAKER 00603 0 46.030470 0.955530 1 +SPEAKER 00603 0 48.078000 2.560000 1 +SPEAKER 00603 0 51.424000 6.802000 1 +SPEAKER 00603 0 59.263000 2.649000 1 +SPEAKER 00603 0 62.350000 2.357950 1 +SPEAKER 00603 0 65.652000 1.992000 1 +SPEAKER 00603 0 7.486000 1.000000 0 +SPEAKER 00603 0 16.489000 0.960000 0 +SPEAKER 00603 0 18.338000 1.705000 0 +SPEAKER 00603 0 23.764000 1.574000 0 +SPEAKER 00603 0 36.097000 0.444000 0 +SPEAKER 00603 0 37.541000 0.611000 0 +SPEAKER 00603 0 38.800550 0.239350 0 diff --git a/rttm/few/00604.rttm b/rttm/few/00604.rttm new file mode 100644 index 0000000000000000000000000000000000000000..dfd3c11044a950f17e921d50061f8be33ceb624e --- /dev/null +++ b/rttm/few/00604.rttm @@ -0,0 +1,11 @@ +SPEAKER 00604 0 1.689000 2.000000 1 +SPEAKER 00604 0 7.930000 1.389000 1 +SPEAKER 00604 0 10.078320 2.388890 1 +SPEAKER 00604 0 14.078320 2.647680 1 +SPEAKER 00604 0 18.699000 0.768000 1 +SPEAKER 00604 0 21.393000 0.537000 1 +SPEAKER 00604 0 24.504000 1.500250 1 +SPEAKER 00604 0 26.930000 0.654000 1 +SPEAKER 00604 0 0.059810 14.425920 0 +SPEAKER 00604 0 16.726000 5.815000 0 +SPEAKER 00604 0 23.060000 4.074000 0 diff --git a/rttm/few/00614.rttm b/rttm/few/00614.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ea82ea71049e1c00627d489e4a8f77a34796e48c --- /dev/null +++ b/rttm/few/00614.rttm @@ -0,0 +1,10 @@ +SPEAKER 00614 0 0.004000 9.519000 0 +SPEAKER 00614 0 10.430000 2.204000 0 +SPEAKER 00614 0 22.893140 2.944440 0 +SPEAKER 00614 0 32.243510 16.649490 0 +SPEAKER 00614 0 8.671000 0.851770 1 +SPEAKER 00614 0 12.652400 6.481480 1 +SPEAKER 00614 0 19.523000 2.703470 1 +SPEAKER 00614 0 25.911660 0.777780 1 +SPEAKER 00614 0 27.338000 3.221810 1 +SPEAKER 00614 0 30.985730 1.388890 1 diff --git a/rttm/few/00619.rttm b/rttm/few/00619.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ac13820f92f4c87dce499a2e5bfad9ceadfbfe42 --- /dev/null +++ b/rttm/few/00619.rttm @@ -0,0 +1,41 @@ +SPEAKER 00619 0 0.781000 0.649000 0 +SPEAKER 00619 0 3.356000 7.814920 0 +SPEAKER 00619 0 11.558000 5.798100 0 +SPEAKER 00619 0 19.086000 0.789000 0 +SPEAKER 00619 0 21.060000 0.499810 0 +SPEAKER 00619 0 26.467000 0.537000 0 +SPEAKER 00619 0 31.430000 0.463000 0 +SPEAKER 00619 0 33.459000 2.508000 0 +SPEAKER 00619 0 36.875000 2.722000 0 +SPEAKER 00619 0 40.412000 2.037000 0 +SPEAKER 00619 0 43.115000 2.871000 0 +SPEAKER 00619 0 46.967000 5.148360 0 +SPEAKER 00619 0 53.430000 1.352030 0 +SPEAKER 00619 0 68.592000 1.934730 0 +SPEAKER 00619 0 78.930000 0.512870 0 +SPEAKER 00619 0 83.544000 6.489780 0 +SPEAKER 00619 0 94.375000 4.886050 0 +SPEAKER 00619 0 100.023000 2.907000 0 +SPEAKER 00619 0 103.652000 6.502990 0 +SPEAKER 00619 0 111.251000 6.759000 0 +SPEAKER 00619 0 118.504000 4.302510 0 +SPEAKER 00619 0 123.615000 3.736960 0 +SPEAKER 00619 0 129.212000 1.000000 0 +SPEAKER 00619 0 132.004000 7.105540 0 +SPEAKER 00619 0 139.435000 2.444000 0 +SPEAKER 00619 0 2.613000 0.901990 1 +SPEAKER 00619 0 17.152000 5.852000 1 +SPEAKER 00619 0 23.393000 1.722000 1 +SPEAKER 00619 0 25.523000 0.796000 1 +SPEAKER 00619 0 26.708000 5.630000 1 +SPEAKER 00619 0 35.967000 0.834000 1 +SPEAKER 00619 0 52.319000 8.667000 1 +SPEAKER 00619 0 62.983250 2.891300 1 +SPEAKER 00619 0 66.875000 1.760420 1 +SPEAKER 00619 0 70.742000 13.306930 1 +SPEAKER 00619 0 88.041000 1.241000 1 +SPEAKER 00619 0 90.189000 2.784170 1 +SPEAKER 00619 0 93.967000 0.642540 1 +SPEAKER 00619 0 97.632000 2.674510 1 +SPEAKER 00619 0 121.761000 0.621270 1 +SPEAKER 00619 0 132.064000 0.606140 1 diff --git a/rttm/few/00628.rttm b/rttm/few/00628.rttm new file mode 100644 index 0000000000000000000000000000000000000000..3e30c8083576440eea72273cc1f13710f41372b9 --- /dev/null +++ b/rttm/few/00628.rttm @@ -0,0 +1,8 @@ +SPEAKER 00628 0 0.060000 2.184990 2 +SPEAKER 00628 0 4.385000 0.927400 2 +SPEAKER 00628 0 6.436000 8.920100 2 +SPEAKER 00628 0 16.005000 2.295550 2 +SPEAKER 00628 0 2.001000 1.632000 1 +SPEAKER 00628 0 4.767000 1.695000 1 +SPEAKER 00628 0 3.797000 0.855400 3 +SPEAKER 00628 0 17.689000 2.589000 3 diff --git a/rttm/few/00631.rttm b/rttm/few/00631.rttm new file mode 100644 index 0000000000000000000000000000000000000000..47e008ac81d6891be9d3ad27807072de910f4a78 --- /dev/null +++ b/rttm/few/00631.rttm @@ -0,0 +1,16 @@ +SPEAKER 00631 0 0.020000 1.136000 0 +SPEAKER 00631 0 1.746000 0.698000 0 +SPEAKER 00631 0 3.504000 0.606000 0 +SPEAKER 00631 0 29.195000 0.855000 0 +SPEAKER 00631 0 32.958000 3.092000 0 +SPEAKER 00631 0 4.261000 3.210730 1 +SPEAKER 00631 0 7.894000 0.524920 1 +SPEAKER 00631 0 9.225000 3.122140 1 +SPEAKER 00631 0 12.784640 8.968750 1 +SPEAKER 00631 0 22.660000 6.312140 1 +SPEAKER 00631 0 29.410000 3.905890 1 +SPEAKER 00631 0 33.972140 0.607860 1 +SPEAKER 00631 0 35.430000 1.000000 1 +SPEAKER 00631 0 36.986000 13.008000 1 +SPEAKER 00631 0 7.746000 0.797920 h0 +SPEAKER 00631 0 9.440890 1.062110 h0 diff --git a/rttm/few/00635.rttm b/rttm/few/00635.rttm new file mode 100644 index 0000000000000000000000000000000000000000..1bedc2b7a81a832388027d216e6a8047c000e355 --- /dev/null +++ b/rttm/few/00635.rttm @@ -0,0 +1,31 @@ +SPEAKER 00635 0 0.000000 10.837580 2 +SPEAKER 00635 0 15.083000 2.421250 2 +SPEAKER 00635 0 18.041290 1.666660 2 +SPEAKER 00635 0 20.700000 2.180850 2 +SPEAKER 00635 0 23.383000 1.567000 2 +SPEAKER 00635 0 25.356100 1.710900 2 +SPEAKER 00635 0 29.317000 0.516000 2 +SPEAKER 00635 0 35.233000 1.650000 2 +SPEAKER 00635 0 42.633000 0.760000 2 +SPEAKER 00635 0 43.750000 4.862550 2 +SPEAKER 00635 0 49.003000 9.963210 2 +SPEAKER 00635 0 59.417000 1.049210 2 +SPEAKER 00635 0 60.869000 0.924040 2 +SPEAKER 00635 0 62.750000 0.996700 2 +SPEAKER 00635 0 9.433000 0.434000 0 +SPEAKER 00635 0 10.517000 3.816000 0 +SPEAKER 00635 0 14.700000 1.600000 0 +SPEAKER 00635 0 19.333000 1.877120 0 +SPEAKER 00635 0 27.837580 2.592050 0 +SPEAKER 00635 0 31.417000 2.549210 0 +SPEAKER 00635 0 35.197920 1.361890 0 +SPEAKER 00635 0 36.883000 2.205160 0 +SPEAKER 00635 0 42.617000 0.900000 0 +SPEAKER 00635 0 50.670920 0.759080 0 +SPEAKER 00635 0 56.873000 0.538660 0 +SPEAKER 00635 0 57.726470 0.569010 0 +SPEAKER 00635 0 27.067000 1.700000 1 +SPEAKER 00635 0 30.550000 1.600000 1 +SPEAKER 00635 0 39.689440 2.927560 1 +SPEAKER 00635 0 54.467000 1.066000 1 +SPEAKER 00635 0 58.763510 0.471000 1 diff --git a/rttm/few/00636.rttm b/rttm/few/00636.rttm new file mode 100644 index 0000000000000000000000000000000000000000..35d56e5b462e5e18c874214ca7aea12a367406ac --- /dev/null +++ b/rttm/few/00636.rttm @@ -0,0 +1,47 @@ +SPEAKER 00636 0 0.033000 3.234000 3 +SPEAKER 00636 0 4.217000 9.650000 3 +SPEAKER 00636 0 14.433000 0.900000 3 +SPEAKER 00636 0 16.148090 13.320070 3 +SPEAKER 00636 0 29.968000 10.425140 3 +SPEAKER 00636 0 40.764000 1.000000 3 +SPEAKER 00636 0 42.867000 2.711320 3 +SPEAKER 00636 0 46.170920 1.018520 3 +SPEAKER 00636 0 53.867000 0.400000 3 +SPEAKER 00636 0 60.380000 1.246940 3 +SPEAKER 00636 0 62.850000 1.633000 3 +SPEAKER 00636 0 69.198000 1.089650 3 +SPEAKER 00636 0 85.967000 0.519000 3 +SPEAKER 00636 0 93.600000 2.800000 3 +SPEAKER 00636 0 99.883000 5.078080 3 +SPEAKER 00636 0 106.431080 9.573170 3 +SPEAKER 00636 0 116.596840 9.259260 3 +SPEAKER 00636 0 126.356000 2.185290 3 +SPEAKER 00636 0 129.004000 6.481730 3 +SPEAKER 00636 0 136.152000 12.926320 3 +SPEAKER 00636 0 149.911660 21.388890 3 +SPEAKER 00636 0 172.022770 3.759260 3 +SPEAKER 00636 0 177.486000 8.814550 3 +SPEAKER 00636 0 187.004000 17.259510 3 +SPEAKER 00636 0 204.763510 6.686490 3 +SPEAKER 00636 0 3.417000 0.833000 0 +SPEAKER 00636 0 65.308000 2.658220 0 +SPEAKER 00636 0 73.367000 4.383000 0 +SPEAKER 00636 0 78.444000 3.467660 0 +SPEAKER 00636 0 82.689440 3.367620 0 +SPEAKER 00636 0 86.335000 7.540000 0 +SPEAKER 00636 0 95.233000 4.434000 0 +SPEAKER 00636 0 105.050000 1.600000 0 +SPEAKER 00636 0 31.615360 0.781640 1 +SPEAKER 00636 0 36.504000 0.797000 1 +SPEAKER 00636 0 42.050000 0.467000 1 +SPEAKER 00636 0 47.617000 1.332000 1 +SPEAKER 00636 0 50.486000 3.166000 1 +SPEAKER 00636 0 54.600000 8.117000 1 +SPEAKER 00636 0 63.633000 9.850000 1 +SPEAKER 00636 0 75.383000 1.534000 1 +SPEAKER 00636 0 77.967000 0.750000 1 +SPEAKER 00636 0 175.134000 0.558000 1 +SPEAKER 00636 0 176.417000 1.216000 1 +SPEAKER 00636 0 178.637000 0.719100 1 +SPEAKER 00636 0 194.340000 0.610000 1 +SPEAKER 00636 0 32.152000 0.723000 2 diff --git a/rttm/few/00641.rttm b/rttm/few/00641.rttm new file mode 100644 index 0000000000000000000000000000000000000000..f28117b1c5a3a25714ac562b8cbaa444115f2de7 --- /dev/null +++ b/rttm/few/00641.rttm @@ -0,0 +1,8 @@ +SPEAKER 00641 0 0.104000 3.048400 1 +SPEAKER 00641 0 8.969000 12.590810 1 +SPEAKER 00641 0 22.191000 2.010000 1 +SPEAKER 00641 0 2.689000 5.481920 0 +SPEAKER 00641 0 9.933140 1.030860 0 +SPEAKER 00641 0 12.300550 2.037450 0 +SPEAKER 00641 0 16.876100 1.729900 0 +SPEAKER 00641 0 20.496000 2.913000 0 diff --git a/rttm/few/00645.rttm b/rttm/few/00645.rttm new file mode 100644 index 0000000000000000000000000000000000000000..08fdfc570e8dbb39aa9cc5c61af72485fd503706 --- /dev/null +++ b/rttm/few/00645.rttm @@ -0,0 +1,49 @@ +SPEAKER 00645 0 0.003000 1.833000 0 +SPEAKER 00645 0 3.315000 1.875000 0 +SPEAKER 00645 0 8.972000 5.614000 0 +SPEAKER 00645 0 16.226470 1.129630 0 +SPEAKER 00645 0 17.911660 4.778340 0 +SPEAKER 00645 0 24.023000 0.926000 0 +SPEAKER 00645 0 31.648000 1.208000 0 +SPEAKER 00645 0 34.146000 1.465000 0 +SPEAKER 00645 0 36.752000 2.292000 0 +SPEAKER 00645 0 39.648000 2.125000 0 +SPEAKER 00645 0 42.690000 2.943880 0 +SPEAKER 00645 0 47.315000 0.771000 0 +SPEAKER 00645 0 49.044000 2.125000 0 +SPEAKER 00645 0 52.336000 3.937000 0 +SPEAKER 00645 0 58.002000 0.688000 0 +SPEAKER 00645 0 62.815000 1.000000 0 +SPEAKER 00645 0 72.531000 1.715140 0 +SPEAKER 00645 0 76.268000 1.000000 0 +SPEAKER 00645 0 77.947000 0.834000 0 +SPEAKER 00645 0 79.746140 2.114280 0 +SPEAKER 00645 0 82.491000 0.826560 0 +SPEAKER 00645 0 84.488990 2.986010 0 +SPEAKER 00645 0 1.211000 0.437000 h0 +SPEAKER 00645 0 2.685000 1.457000 h0 +SPEAKER 00645 0 10.595000 0.908000 h0 +SPEAKER 00645 0 14.114000 2.695000 h0 +SPEAKER 00645 0 42.171000 2.209000 h0 +SPEAKER 00645 0 54.455000 8.550000 h0 +SPEAKER 00645 0 63.905000 3.877030 h0 +SPEAKER 00645 0 69.759000 1.167000 h0 +SPEAKER 00645 0 72.509000 0.408560 h0 +SPEAKER 00645 0 74.676000 1.916000 h0 +SPEAKER 00645 0 78.592000 1.042000 h0 +SPEAKER 00645 0 15.975000 1.028000 1 +SPEAKER 00645 0 23.586000 1.250000 1 +SPEAKER 00645 0 25.920000 3.000000 1 +SPEAKER 00645 0 45.504250 3.648750 1 +SPEAKER 00645 0 51.178000 1.550000 1 +SPEAKER 00645 0 67.218000 5.757000 1 +SPEAKER 00645 0 74.003280 1.916720 1 +SPEAKER 00645 0 76.364000 1.696000 1 +SPEAKER 00645 0 78.642000 1.000000 1 +SPEAKER 00645 0 83.745000 1.778000 1 +SPEAKER 00645 0 18.781000 1.889000 2 +SPEAKER 00645 0 24.170000 1.889000 2 +SPEAKER 00645 0 28.242000 5.928000 2 +SPEAKER 00645 0 35.260000 1.387000 2 +SPEAKER 00645 0 38.226470 2.241530 2 +SPEAKER 00645 0 45.828000 3.231810 2 diff --git a/rttm/few/00660.rttm b/rttm/few/00660.rttm new file mode 100644 index 0000000000000000000000000000000000000000..3c6dafde39864c16a44a085413892af092e4f7bf --- /dev/null +++ b/rttm/few/00660.rttm @@ -0,0 +1,19 @@ +SPEAKER 00660 0 1.911660 1.037030 1 +SPEAKER 00660 0 3.335350 2.150380 1 +SPEAKER 00660 0 7.133880 1.462960 1 +SPEAKER 00660 0 20.767000 1.433000 1 +SPEAKER 00660 0 26.231850 0.714290 1 +SPEAKER 00660 0 46.740000 0.591850 1 +SPEAKER 00660 0 48.023000 1.694560 1 +SPEAKER 00660 0 55.633000 1.567000 1 +SPEAKER 00660 0 60.746000 1.587000 1 +SPEAKER 00660 0 66.120000 0.754710 1 +SPEAKER 00660 0 1.880000 1.020000 0 +SPEAKER 00660 0 4.900000 13.688990 0 +SPEAKER 00660 0 18.988990 2.385720 0 +SPEAKER 00660 0 22.003280 4.171430 0 +SPEAKER 00660 0 26.617560 13.428580 0 +SPEAKER 00660 0 40.588990 15.000000 0 +SPEAKER 00660 0 57.099000 4.161420 0 +SPEAKER 00660 0 62.276000 2.355850 0 +SPEAKER 00660 0 64.974710 7.071430 0 diff --git a/rttm/few/00666.rttm b/rttm/few/00666.rttm new file mode 100644 index 0000000000000000000000000000000000000000..6aca81e34301b1582e9f44cfb6ca41456376da0b --- /dev/null +++ b/rttm/few/00666.rttm @@ -0,0 +1,10 @@ +SPEAKER 00666 0 0.000000 2.443430 0 +SPEAKER 00666 0 2.959000 2.501000 0 +SPEAKER 00666 0 7.820000 0.591660 0 +SPEAKER 00666 0 10.786000 0.699730 0 +SPEAKER 00666 0 13.381000 0.879000 0 +SPEAKER 00666 0 17.120000 0.780000 0 +SPEAKER 00666 0 19.740000 1.134620 0 +SPEAKER 00666 0 2.220000 0.760000 1 +SPEAKER 00666 0 6.820000 1.192050 1 +SPEAKER 00666 0 16.385000 0.971000 1 diff --git a/rttm/few/00668.rttm b/rttm/few/00668.rttm new file mode 100644 index 0000000000000000000000000000000000000000..40f85d514bea3a6ba17f380468ba3a812c803804 --- /dev/null +++ b/rttm/few/00668.rttm @@ -0,0 +1,19 @@ +SPEAKER 00668 0 0.023000 0.378790 0 +SPEAKER 00668 0 5.351220 3.054780 0 +SPEAKER 00668 0 12.264000 1.148000 0 +SPEAKER 00668 0 16.430000 0.597190 0 +SPEAKER 00668 0 21.545000 0.860240 0 +SPEAKER 00668 0 24.625000 0.658290 0 +SPEAKER 00668 0 36.856460 0.467540 0 +SPEAKER 00668 0 0.767000 0.669130 1 +SPEAKER 00668 0 1.747000 3.632520 1 +SPEAKER 00668 0 7.455000 0.608770 1 +SPEAKER 00668 0 8.490000 1.106840 1 +SPEAKER 00668 0 9.869000 3.304530 1 +SPEAKER 00668 0 13.454000 1.219530 1 +SPEAKER 00668 0 15.064000 1.499770 1 +SPEAKER 00668 0 17.027000 2.634340 1 +SPEAKER 00668 0 20.015000 4.865850 1 +SPEAKER 00668 0 25.235000 2.426340 1 +SPEAKER 00668 0 28.076000 8.048750 1 +SPEAKER 00668 0 36.393000 0.707360 1 diff --git a/rttm/few/00669.rttm b/rttm/few/00669.rttm new file mode 100644 index 0000000000000000000000000000000000000000..0640f2d73cf7c2efad1a683998bcc7b72d16cda3 --- /dev/null +++ b/rttm/few/00669.rttm @@ -0,0 +1,34 @@ +SPEAKER 00669 0 0.060000 0.555000 1 +SPEAKER 00669 0 1.898000 2.921060 1 +SPEAKER 00669 0 5.624250 2.870750 1 +SPEAKER 00669 0 10.356100 1.569900 1 +SPEAKER 00669 0 25.393140 1.648150 1 +SPEAKER 00669 0 39.212400 1.606600 1 +SPEAKER 00669 0 45.561000 0.565000 1 +SPEAKER 00669 0 48.615000 1.963320 1 +SPEAKER 00669 0 52.049000 1.283000 1 +SPEAKER 00669 0 56.564000 6.888000 1 +SPEAKER 00669 0 65.170920 1.222220 1 +SPEAKER 00669 0 67.396100 0.635900 1 +SPEAKER 00669 0 68.633880 0.370370 1 +SPEAKER 00669 0 70.060000 0.518000 1 +SPEAKER 00669 0 71.083000 1.606000 1 +SPEAKER 00669 0 74.171000 2.370000 1 +SPEAKER 00669 0 77.338000 3.917000 1 +SPEAKER 00669 0 81.986000 0.944000 1 +SPEAKER 00669 0 7.793140 3.183860 0 +SPEAKER 00669 0 12.321000 2.364000 0 +SPEAKER 00669 0 15.345000 1.414000 0 +SPEAKER 00669 0 17.376100 4.049900 0 +SPEAKER 00669 0 22.671000 4.662000 0 +SPEAKER 00669 0 29.412000 0.555000 0 +SPEAKER 00669 0 31.822000 1.591000 0 +SPEAKER 00669 0 35.412000 3.814000 0 +SPEAKER 00669 0 40.764000 3.500000 0 +SPEAKER 00669 0 46.059810 5.314810 0 +SPEAKER 00669 0 53.430000 0.806000 0 +SPEAKER 00669 0 62.567000 0.450000 0 +SPEAKER 00669 0 65.338000 0.481000 0 +SPEAKER 00669 0 66.340550 1.730450 0 +SPEAKER 00669 0 68.596840 0.666670 0 +SPEAKER 00669 0 70.893000 1.574210 0 diff --git a/rttm/few/00677.rttm b/rttm/few/00677.rttm new file mode 100644 index 0000000000000000000000000000000000000000..3249567b5eafd2e12191caf2cefd9eaafc531543 --- /dev/null +++ b/rttm/few/00677.rttm @@ -0,0 +1,15 @@ +SPEAKER 00677 0 0.000000 6.930000 0 +SPEAKER 00677 0 7.560000 9.055000 0 +SPEAKER 00677 0 17.078000 1.760000 0 +SPEAKER 00677 0 21.189000 20.595990 0 +SPEAKER 00677 0 42.258000 7.437250 0 +SPEAKER 00677 0 51.282000 0.772220 0 +SPEAKER 00677 0 52.467000 3.797000 0 +SPEAKER 00677 0 57.004000 5.947660 0 +SPEAKER 00677 0 63.441000 0.715790 0 +SPEAKER 00677 0 64.751000 1.187840 0 +SPEAKER 00677 0 67.115000 15.593070 0 +SPEAKER 00677 0 83.529000 4.191890 0 +SPEAKER 00677 0 18.208000 3.018000 1 +SPEAKER 00677 0 50.258000 0.950000 1 +SPEAKER 00677 0 56.375000 0.981000 1 diff --git a/rttm/few/00682.rttm b/rttm/few/00682.rttm new file mode 100644 index 0000000000000000000000000000000000000000..50c5e57ecb5569630132e1f1ab95f726587af25e --- /dev/null +++ b/rttm/few/00682.rttm @@ -0,0 +1,36 @@ +SPEAKER 00682 0 0.001000 4.059000 0 +SPEAKER 00682 0 4.591000 2.332000 0 +SPEAKER 00682 0 7.262000 3.242250 0 +SPEAKER 00682 0 11.228000 2.332000 0 +SPEAKER 00682 0 17.774000 1.207000 0 +SPEAKER 00682 0 19.633880 0.704120 0 +SPEAKER 00682 0 25.797000 1.337000 0 +SPEAKER 00682 0 29.242000 1.410000 0 +SPEAKER 00682 0 31.300000 1.464000 0 +SPEAKER 00682 0 33.356000 0.445000 0 +SPEAKER 00682 0 36.152000 1.074470 0 +SPEAKER 00682 0 44.965000 0.632000 0 +SPEAKER 00682 0 60.057000 0.484000 0 +SPEAKER 00682 0 64.708000 1.351810 0 +SPEAKER 00682 0 67.893000 0.481620 0 +SPEAKER 00682 0 0.065000 1.772580 1 +SPEAKER 00682 0 4.578000 0.852000 1 +SPEAKER 00682 0 13.466000 1.752000 1 +SPEAKER 00682 0 16.197000 2.640580 1 +SPEAKER 00682 0 19.555000 0.671000 1 +SPEAKER 00682 0 20.839000 0.610000 1 +SPEAKER 00682 0 21.856100 5.048150 1 +SPEAKER 00682 0 27.273000 1.897000 1 +SPEAKER 00682 0 29.504250 0.518750 1 +SPEAKER 00682 0 30.842000 0.421510 1 +SPEAKER 00682 0 34.346000 1.529000 1 +SPEAKER 00682 0 38.487000 3.813550 1 +SPEAKER 00682 0 42.597000 2.111000 1 +SPEAKER 00682 0 45.634000 4.425810 1 +SPEAKER 00682 0 50.541290 1.814710 1 +SPEAKER 00682 0 54.088000 1.860690 1 +SPEAKER 00682 0 56.391000 1.983620 1 +SPEAKER 00682 0 59.412000 3.074000 1 +SPEAKER 00682 0 62.856000 1.571000 1 +SPEAKER 00682 0 64.973000 0.827550 1 +SPEAKER 00682 0 66.296000 0.856000 1 diff --git a/rttm/few/00683.rttm b/rttm/few/00683.rttm new file mode 100644 index 0000000000000000000000000000000000000000..e8564ad0cf7b1707ec4954adef0d558e9911e5f8 --- /dev/null +++ b/rttm/few/00683.rttm @@ -0,0 +1,14 @@ +SPEAKER 00683 0 0.209000 1.758210 1 +SPEAKER 00683 0 2.222030 3.137030 1 +SPEAKER 00683 0 5.684000 4.064000 1 +SPEAKER 00683 0 10.059810 2.339250 1 +SPEAKER 00683 0 13.539810 1.408880 1 +SPEAKER 00683 0 17.027210 2.677790 1 +SPEAKER 00683 0 23.692400 1.190600 1 +SPEAKER 00683 0 1.356000 0.407510 0 +SPEAKER 00683 0 5.304990 0.460010 0 +SPEAKER 00683 0 10.133880 0.571110 0 +SPEAKER 00683 0 12.209440 2.220740 0 +SPEAKER 00683 0 14.709440 2.210560 0 +SPEAKER 00683 0 17.282030 1.609630 0 +SPEAKER 00683 0 19.430180 8.146820 0 diff --git a/rttm/few/00689.rttm b/rttm/few/00689.rttm new file mode 100644 index 0000000000000000000000000000000000000000..3b80192225d387c9b40a93a7702616d69a1c86d9 --- /dev/null +++ b/rttm/few/00689.rttm @@ -0,0 +1,22 @@ +SPEAKER 00689 0 0.000000 3.912000 1 +SPEAKER 00689 0 20.874620 3.703700 1 +SPEAKER 00689 0 26.060000 0.592000 1 +SPEAKER 00689 0 30.801000 1.407000 1 +SPEAKER 00689 0 33.634000 2.296180 1 +SPEAKER 00689 0 39.597000 4.000000 1 +SPEAKER 00689 0 4.171000 2.204000 0 +SPEAKER 00689 0 7.137000 1.293180 0 +SPEAKER 00689 0 9.023000 1.685000 0 +SPEAKER 00689 0 11.152000 4.908000 0 +SPEAKER 00689 0 16.652000 1.760000 0 +SPEAKER 00689 0 19.245000 2.778000 0 +SPEAKER 00689 0 24.152400 2.907410 0 +SPEAKER 00689 0 27.393140 1.444440 0 +SPEAKER 00689 0 29.244990 2.185190 0 +SPEAKER 00689 0 32.171000 2.203620 0 +SPEAKER 00689 0 36.245000 2.519000 0 +SPEAKER 00689 0 39.893000 1.130000 0 +SPEAKER 00689 0 43.113000 0.511000 0 +SPEAKER 00689 0 28.060000 1.888690 2 +SPEAKER 00689 0 32.578000 2.092920 2 +SPEAKER 00689 0 35.986000 3.981000 2 diff --git a/rttm/few/00695.rttm b/rttm/few/00695.rttm new file mode 100644 index 0000000000000000000000000000000000000000..045ec6680a4da152fdd4ace7a1330e2ef1826814 --- /dev/null +++ b/rttm/few/00695.rttm @@ -0,0 +1,22 @@ +SPEAKER 00695 0 2.578000 1.071580 0 +SPEAKER 00695 0 4.045420 3.995420 0 +SPEAKER 00695 0 8.782000 1.581850 0 +SPEAKER 00695 0 10.967000 0.629840 0 +SPEAKER 00695 0 12.597000 0.357400 0 +SPEAKER 00695 0 30.152400 1.222600 0 +SPEAKER 00695 0 39.893000 1.093000 0 +SPEAKER 00695 0 0.067000 2.749250 1 +SPEAKER 00695 0 3.153000 1.000000 1 +SPEAKER 00695 0 6.690000 1.259000 1 +SPEAKER 00695 0 9.208000 1.944000 1 +SPEAKER 00695 0 11.726000 0.741000 1 +SPEAKER 00695 0 21.467000 3.871000 1 +SPEAKER 00695 0 29.338000 1.573660 1 +SPEAKER 00695 0 31.312000 6.877440 1 +SPEAKER 00695 0 45.171000 2.018000 1 +SPEAKER 00695 0 13.412000 5.296000 2 +SPEAKER 00695 0 21.208000 1.074000 2 +SPEAKER 00695 0 24.782000 3.035000 2 +SPEAKER 00695 0 28.134000 0.648000 2 +SPEAKER 00695 0 38.245000 2.185000 2 +SPEAKER 00695 0 40.949000 5.240440 2 diff --git a/rttm/few/00700.rttm b/rttm/few/00700.rttm new file mode 100644 index 0000000000000000000000000000000000000000..b4a15ea9dc5a19e1af65c99a34d5181c76978720 --- /dev/null +++ b/rttm/few/00700.rttm @@ -0,0 +1,21 @@ +SPEAKER 00700 0 0.504000 0.630000 1 +SPEAKER 00700 0 1.801000 5.740000 1 +SPEAKER 00700 0 7.976070 4.184350 1 +SPEAKER 00700 0 12.689000 1.642850 1 +SPEAKER 00700 0 19.930000 0.590000 1 +SPEAKER 00700 0 21.375000 1.775000 1 +SPEAKER 00700 0 43.040000 2.620420 1 +SPEAKER 00700 0 46.317560 0.371430 1 +SPEAKER 00700 0 6.393000 0.444580 0 +SPEAKER 00700 0 14.504000 2.413560 0 +SPEAKER 00700 0 17.532000 1.785560 0 +SPEAKER 00700 0 20.634000 1.000000 0 +SPEAKER 00700 0 22.523000 0.352000 0 +SPEAKER 00700 0 23.615000 0.797000 0 +SPEAKER 00700 0 25.060000 1.741000 0 +SPEAKER 00700 0 27.264000 2.185000 0 +SPEAKER 00700 0 30.171000 0.759000 0 +SPEAKER 00700 0 31.541000 6.870660 0 +SPEAKER 00700 0 38.817000 2.113180 0 +SPEAKER 00700 0 41.332000 1.842710 0 +SPEAKER 00700 0 45.412000 0.762710 0 diff --git a/rttm/few/00701.rttm b/rttm/few/00701.rttm new file mode 100644 index 0000000000000000000000000000000000000000..8c1d1a1c635a20a0e9806c1186a39e6f3b9da32c --- /dev/null +++ b/rttm/few/00701.rttm @@ -0,0 +1,13 @@ +SPEAKER 00701 0 4.875000 0.740000 1 +SPEAKER 00701 0 6.189440 3.814810 1 +SPEAKER 00701 0 10.615000 1.574000 1 +SPEAKER 00701 0 15.115000 0.908000 1 +SPEAKER 00701 0 20.078320 0.462970 1 +SPEAKER 00701 0 28.060000 0.444000 1 +SPEAKER 00701 0 12.301000 2.777000 0 +SPEAKER 00701 0 16.244990 3.703700 0 +SPEAKER 00701 0 20.403000 0.749400 0 +SPEAKER 00701 0 21.429000 1.815990 0 +SPEAKER 00701 0 23.562000 4.479290 0 +SPEAKER 00701 0 28.339000 1.924510 0 +SPEAKER 00701 0 30.615360 1.814820 0 diff --git a/rttm/few/00705.rttm b/rttm/few/00705.rttm new file mode 100644 index 0000000000000000000000000000000000000000..44f64b3c37d0461ef373ed78bd3cec79b27e802a --- /dev/null +++ b/rttm/few/00705.rttm @@ -0,0 +1,8 @@ +SPEAKER 00705 0 0.000000 0.893000 1 +SPEAKER 00705 0 1.294000 0.496000 1 +SPEAKER 00705 0 2.215360 1.148150 1 +SPEAKER 00705 0 0.752000 0.437440 0 +SPEAKER 00705 0 3.416000 3.995660 0 +SPEAKER 00705 0 7.893140 3.306860 0 +SPEAKER 00705 0 11.536840 6.356300 0 +SPEAKER 00705 0 18.393140 3.666860 0 diff --git a/rttm/few/00706.rttm b/rttm/few/00706.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4065097b10def8598f8ace37422442b13b2f4a50 --- /dev/null +++ b/rttm/few/00706.rttm @@ -0,0 +1,64 @@ +SPEAKER 00706 0 0.028000 1.124000 0 +SPEAKER 00706 0 1.919000 1.104000 0 +SPEAKER 00706 0 3.560000 0.666470 0 +SPEAKER 00706 0 6.838000 1.444000 0 +SPEAKER 00706 0 10.690000 1.518000 0 +SPEAKER 00706 0 19.386000 1.303000 0 +SPEAKER 00706 0 22.496000 7.193000 0 +SPEAKER 00706 0 30.850000 5.043140 0 +SPEAKER 00706 0 37.370000 1.431000 0 +SPEAKER 00706 0 39.244990 6.737930 0 +SPEAKER 00706 0 46.408000 5.470750 0 +SPEAKER 00706 0 52.246000 1.091080 0 +SPEAKER 00706 0 53.945000 1.000000 0 +SPEAKER 00706 0 55.348000 0.573000 0 +SPEAKER 00706 0 56.458000 8.024920 0 +SPEAKER 00706 0 64.793000 1.294080 0 +SPEAKER 00706 0 66.406000 1.785250 0 +SPEAKER 00706 0 68.483000 6.249920 0 +SPEAKER 00706 0 74.999000 2.468210 0 +SPEAKER 00706 0 79.719000 1.119000 0 +SPEAKER 00706 0 81.498000 10.297420 0 +SPEAKER 00706 0 92.161000 1.000000 0 +SPEAKER 00706 0 93.504000 1.000000 0 +SPEAKER 00706 0 94.887000 1.000000 0 +SPEAKER 00706 0 96.430180 5.258820 0 +SPEAKER 00706 0 102.941000 1.045000 0 +SPEAKER 00706 0 104.558000 1.243000 0 +SPEAKER 00706 0 108.618000 7.364920 0 +SPEAKER 00706 0 116.491000 3.158580 0 +SPEAKER 00706 0 1.056000 0.670000 3 +SPEAKER 00706 0 2.584000 1.346000 3 +SPEAKER 00706 0 12.750000 3.050550 3 +SPEAKER 00706 0 16.356100 0.793480 3 +SPEAKER 00706 0 17.561000 1.517320 3 +SPEAKER 00706 0 19.430180 2.677740 3 +SPEAKER 00706 0 29.827000 0.825000 3 +SPEAKER 00706 0 48.217000 0.824290 3 +SPEAKER 00706 0 78.393000 1.000000 3 +SPEAKER 00706 0 80.470000 1.034000 3 +SPEAKER 00706 0 86.362000 0.623730 3 +SPEAKER 00706 0 102.228000 0.944000 3 +SPEAKER 00706 0 111.309000 1.177000 3 +SPEAKER 00706 0 114.171000 1.853580 3 +SPEAKER 00706 0 116.499000 3.108920 3 +SPEAKER 00706 0 3.570000 1.000000 2 +SPEAKER 00706 0 5.078000 5.166990 2 +SPEAKER 00706 0 10.989000 2.015250 2 +SPEAKER 00706 0 16.652400 1.185600 2 +SPEAKER 00706 0 29.738000 0.822000 2 +SPEAKER 00706 0 52.501000 3.818000 2 +SPEAKER 00706 0 86.422000 1.545000 2 +SPEAKER 00706 0 105.775000 1.000000 2 +SPEAKER 00706 0 116.172000 1.409000 2 +SPEAKER 00706 0 4.689000 0.926000 1 +SPEAKER 00706 0 6.263510 1.277780 1 +SPEAKER 00706 0 15.417000 4.032000 1 +SPEAKER 00706 0 29.411000 2.871000 1 +SPEAKER 00706 0 34.302000 3.535580 1 +SPEAKER 00706 0 39.328000 1.102180 1 +SPEAKER 00706 0 49.264000 0.726000 1 +SPEAKER 00706 0 77.912000 1.497440 1 +SPEAKER 00706 0 85.337000 0.797000 1 +SPEAKER 00706 0 105.967000 1.778000 1 +SPEAKER 00706 0 116.250000 3.402000 1 diff --git a/rttm/few/00708.rttm b/rttm/few/00708.rttm new file mode 100644 index 0000000000000000000000000000000000000000..e4a63211d6062363a73f3c6bcf133b4de2bdf19a --- /dev/null +++ b/rttm/few/00708.rttm @@ -0,0 +1,12 @@ +SPEAKER 00708 0 0.978000 0.649000 1 +SPEAKER 00708 0 2.782000 1.314840 1 +SPEAKER 00708 0 5.689000 1.537000 1 +SPEAKER 00708 0 8.763000 0.630000 1 +SPEAKER 00708 0 12.004000 0.426000 1 +SPEAKER 00708 0 15.713000 0.499080 1 +SPEAKER 00708 0 18.836000 2.843000 1 +SPEAKER 00708 0 3.800550 1.481450 0 +SPEAKER 00708 0 15.708000 3.000000 0 +SPEAKER 00708 0 7.386000 1.359000 3 +SPEAKER 00708 0 9.301000 2.629000 3 +SPEAKER 00708 0 12.300000 3.426000 3 diff --git a/rttm/few/00719.rttm b/rttm/few/00719.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ef6efaa692bc18e0176a118a18700c23d5efdbfd --- /dev/null +++ b/rttm/few/00719.rttm @@ -0,0 +1,15 @@ +SPEAKER 00719 0 0.152000 1.151000 0 +SPEAKER 00719 0 1.906000 1.048000 0 +SPEAKER 00719 0 3.817000 1.890000 0 +SPEAKER 00719 0 6.122000 0.804000 0 +SPEAKER 00719 0 10.917000 1.154000 0 +SPEAKER 00719 0 20.350000 5.322000 0 +SPEAKER 00719 0 0.008000 0.295000 1 +SPEAKER 00719 0 3.180000 0.650000 1 +SPEAKER 00719 0 11.749000 0.533000 1 +SPEAKER 00719 0 19.198000 1.620000 1 +SPEAKER 00719 0 22.843000 1.260000 1 +SPEAKER 00719 0 4.234000 1.350000 2 +SPEAKER 00719 0 5.967000 2.754000 2 +SPEAKER 00719 0 9.481000 1.438000 2 +SPEAKER 00719 0 12.340000 5.206000 2 diff --git a/rttm/few/00734.rttm b/rttm/few/00734.rttm new file mode 100644 index 0000000000000000000000000000000000000000..7c94e65fd70f6974b635ca9546f3bf27b3ebfc2d --- /dev/null +++ b/rttm/few/00734.rttm @@ -0,0 +1,15 @@ +SPEAKER 00734 0 0.783000 0.750000 0 +SPEAKER 00734 0 2.133000 1.284000 0 +SPEAKER 00734 0 4.817000 0.909470 0 +SPEAKER 00734 0 6.708000 2.759210 0 +SPEAKER 00734 0 9.863000 1.160000 0 +SPEAKER 00734 0 11.394000 2.202840 0 +SPEAKER 00734 0 13.986000 1.240470 0 +SPEAKER 00734 0 15.500000 2.726470 0 +SPEAKER 00734 0 18.504000 4.815060 0 +SPEAKER 00734 0 23.615360 1.166670 0 +SPEAKER 00734 0 25.207950 2.129630 0 +SPEAKER 00734 0 0.650000 0.433000 1 +SPEAKER 00734 0 3.883000 0.934000 h0 +SPEAKER 00734 0 5.467000 1.722440 h0 +SPEAKER 00734 0 9.393000 0.593000 h0 diff --git a/rttm/few/00737.rttm b/rttm/few/00737.rttm new file mode 100644 index 0000000000000000000000000000000000000000..471f3b901713a4fe0b23f9d31cd1734c3c70765f --- /dev/null +++ b/rttm/few/00737.rttm @@ -0,0 +1,11 @@ +SPEAKER 00737 0 0.000000 2.523000 h0 +SPEAKER 00737 0 1.988990 7.941010 0 +SPEAKER 00737 0 11.745000 0.558280 0 +SPEAKER 00737 0 13.126000 2.377280 0 +SPEAKER 00737 0 16.226000 2.575000 0 +SPEAKER 00737 0 21.023000 3.737420 0 +SPEAKER 00737 0 25.294000 0.537850 0 +SPEAKER 00737 0 10.115000 1.000000 1 +SPEAKER 00737 0 12.467000 0.778000 1 +SPEAKER 00737 0 20.356000 0.648000 2 +SPEAKER 00737 0 26.838000 0.444000 2 diff --git a/rttm/few/00740.rttm b/rttm/few/00740.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ad3bc38a1331f41d6d38c6ee16558bc495b61f93 --- /dev/null +++ b/rttm/few/00740.rttm @@ -0,0 +1,27 @@ +SPEAKER 00740 0 1.486000 0.648000 1 +SPEAKER 00740 0 6.023000 0.648000 1 +SPEAKER 00740 0 10.764000 0.796000 1 +SPEAKER 00740 0 15.597000 0.889000 1 +SPEAKER 00740 0 20.838000 1.055140 1 +SPEAKER 00740 0 25.764000 1.166180 1 +SPEAKER 00740 0 30.856000 0.833440 1 +SPEAKER 00740 0 35.764000 1.036550 1 +SPEAKER 00740 0 41.152000 0.944840 1 +SPEAKER 00740 0 2.189000 0.871000 0 +SPEAKER 00740 0 7.004250 0.759260 0 +SPEAKER 00740 0 11.615000 0.889250 0 +SPEAKER 00740 0 17.170920 0.703700 0 +SPEAKER 00740 0 22.078320 0.814680 0 +SPEAKER 00740 0 27.060000 0.907210 0 +SPEAKER 00740 0 32.021000 0.946210 0 +SPEAKER 00740 0 36.856000 1.037000 0 +SPEAKER 00740 0 42.319000 0.759320 0 +SPEAKER 00740 0 3.393140 0.722220 2 +SPEAKER 00740 0 8.059810 0.574190 2 +SPEAKER 00740 0 12.578000 0.797000 2 +SPEAKER 00740 0 18.226470 0.722220 2 +SPEAKER 00740 0 23.263510 0.870490 2 +SPEAKER 00740 0 28.615360 1.037040 2 +SPEAKER 00740 0 33.329000 0.934510 2 +SPEAKER 00740 0 37.875000 1.166000 2 +SPEAKER 00740 0 43.375000 0.833000 2 diff --git a/rttm/few/00743.rttm b/rttm/few/00743.rttm new file mode 100644 index 0000000000000000000000000000000000000000..a1f296a5f1a07153869c4032598a0abcbb5e7049 --- /dev/null +++ b/rttm/few/00743.rttm @@ -0,0 +1,18 @@ +SPEAKER 00743 0 0.000000 8.003750 3 +SPEAKER 00743 0 8.325000 3.178750 3 +SPEAKER 00743 0 23.041290 8.425920 3 +SPEAKER 00743 0 33.350000 1.317000 3 +SPEAKER 00743 0 37.189000 1.844000 3 +SPEAKER 00743 0 42.100000 2.733000 3 +SPEAKER 00743 0 11.700000 1.824580 0 +SPEAKER 00743 0 19.100000 3.850000 0 +SPEAKER 00743 0 32.000000 1.350000 0 +SPEAKER 00743 0 33.818000 0.723290 0 +SPEAKER 00743 0 34.837580 2.541170 0 +SPEAKER 00743 0 39.150000 2.883000 0 +SPEAKER 00743 0 44.833000 1.517000 0 +SPEAKER 00743 0 11.911660 0.738340 1 +SPEAKER 00743 0 13.441250 0.729750 1 +SPEAKER 00743 0 40.233000 1.141620 1 +SPEAKER 00743 0 42.008000 0.515000 1 +SPEAKER 00743 0 13.567000 1.650000 2 diff --git a/rttm/few/00745.rttm b/rttm/few/00745.rttm new file mode 100644 index 0000000000000000000000000000000000000000..dfd533d35802789aa136cbc01a62163a5af9d3a6 --- /dev/null +++ b/rttm/few/00745.rttm @@ -0,0 +1,10 @@ +SPEAKER 00745 0 3.375000 0.666000 1 +SPEAKER 00745 0 5.214000 0.679000 1 +SPEAKER 00745 0 16.004000 2.389140 1 +SPEAKER 00745 0 19.189000 2.426000 1 +SPEAKER 00745 0 21.969000 0.406000 1 +SPEAKER 00745 0 0.263510 2.259260 0 +SPEAKER 00745 0 3.707950 1.592600 0 +SPEAKER 00745 0 5.856000 6.129730 0 +SPEAKER 00745 0 12.856100 2.832900 0 +SPEAKER 00745 0 19.189000 0.686000 0 diff --git a/rttm/few/00756.rttm b/rttm/few/00756.rttm new file mode 100644 index 0000000000000000000000000000000000000000..468cd70be36e2de740503dda0d416eebafa61e0f --- /dev/null +++ b/rttm/few/00756.rttm @@ -0,0 +1,16 @@ +SPEAKER 00756 0 1.396000 4.641430 1 +SPEAKER 00756 0 6.747000 1.000000 1 +SPEAKER 00756 0 8.877000 0.604000 1 +SPEAKER 00756 0 11.710120 2.024390 1 +SPEAKER 00756 0 15.771090 1.843910 1 +SPEAKER 00756 0 18.301000 1.868000 1 +SPEAKER 00756 0 6.088160 0.634150 3 +SPEAKER 00756 0 9.454020 0.353660 3 +SPEAKER 00756 0 10.726470 1.849500 3 +SPEAKER 00756 0 13.731000 1.576680 3 +SPEAKER 00756 0 19.819870 0.341470 3 +SPEAKER 00756 0 1.377000 0.646000 2 +SPEAKER 00756 0 6.625000 3.926580 2 +SPEAKER 00756 0 10.991000 0.621550 2 +SPEAKER 00756 0 13.790000 2.129000 2 +SPEAKER 00756 0 17.783290 1.158530 0 diff --git a/rttm/few/00762.rttm b/rttm/few/00762.rttm new file mode 100644 index 0000000000000000000000000000000000000000..53cd5cf074ef2e17f5efef739c4f96f83ac3bf9a --- /dev/null +++ b/rttm/few/00762.rttm @@ -0,0 +1,21 @@ +SPEAKER 00762 0 0.000000 2.320000 2 +SPEAKER 00762 0 4.514990 0.711480 2 +SPEAKER 00762 0 7.098000 1.638000 2 +SPEAKER 00762 0 10.960000 0.433040 2 +SPEAKER 00762 0 16.800000 1.968000 2 +SPEAKER 00762 0 19.247000 0.596000 2 +SPEAKER 00762 0 24.405240 1.224760 2 +SPEAKER 00762 0 25.899000 1.337000 2 +SPEAKER 00762 0 3.320000 1.200000 0 +SPEAKER 00762 0 14.007000 2.011000 0 +SPEAKER 00762 0 16.545000 0.429000 0 +SPEAKER 00762 0 21.864000 1.000000 0 +SPEAKER 00762 0 23.715000 0.702000 0 +SPEAKER 00762 0 5.429630 1.054370 1 +SPEAKER 00762 0 9.335000 1.444000 1 +SPEAKER 00762 0 11.439000 2.563800 1 +SPEAKER 00762 0 16.056000 0.415000 1 +SPEAKER 00762 0 18.875000 0.308000 1 +SPEAKER 00762 0 20.098000 1.266000 1 +SPEAKER 00762 0 22.875000 0.468000 1 +SPEAKER 00762 0 27.683000 0.415000 1 diff --git a/rttm/few/00770.rttm b/rttm/few/00770.rttm new file mode 100644 index 0000000000000000000000000000000000000000..0b9649983c93e885e0141ea5bc2227bfd55a58de --- /dev/null +++ b/rttm/few/00770.rttm @@ -0,0 +1,40 @@ +SPEAKER 00770 0 3.168000 7.355000 0 +SPEAKER 00770 0 16.801000 0.685000 0 +SPEAKER 00770 0 18.567000 0.437000 0 +SPEAKER 00770 0 19.852000 11.115000 0 +SPEAKER 00770 0 31.319000 5.482000 0 +SPEAKER 00770 0 40.731000 6.255000 0 +SPEAKER 00770 0 48.967000 0.593000 0 +SPEAKER 00770 0 50.149000 1.003000 0 +SPEAKER 00770 0 59.615000 0.667000 0 +SPEAKER 00770 0 61.504000 0.815000 0 +SPEAKER 00770 0 64.764000 0.981000 0 +SPEAKER 00770 0 66.152000 0.574000 0 +SPEAKER 00770 0 70.726000 1.000000 0 +SPEAKER 00770 0 72.615000 0.797000 0 +SPEAKER 00770 0 74.024000 1.184000 0 +SPEAKER 00770 0 76.264000 1.444000 0 +SPEAKER 00770 0 81.407000 0.690000 0 +SPEAKER 00770 0 93.134000 2.537000 0 +SPEAKER 00770 0 100.560000 0.870000 0 +SPEAKER 00770 0 0.412000 3.611000 1 +SPEAKER 00770 0 10.523000 4.426000 1 +SPEAKER 00770 0 17.856000 0.463000 1 +SPEAKER 00770 0 18.767000 0.422000 1 +SPEAKER 00770 0 38.170920 3.166660 1 +SPEAKER 00770 0 44.301000 0.425000 1 +SPEAKER 00770 0 47.152000 1.167000 1 +SPEAKER 00770 0 50.004000 0.630000 1 +SPEAKER 00770 0 51.097000 0.907000 1 +SPEAKER 00770 0 52.912000 0.537000 1 +SPEAKER 00770 0 54.139000 0.680000 1 +SPEAKER 00770 0 57.449000 2.166000 1 +SPEAKER 00770 0 60.689000 1.000000 1 +SPEAKER 00770 0 64.066000 0.698000 1 +SPEAKER 00770 0 67.374620 1.333380 1 +SPEAKER 00770 0 73.245000 2.278000 1 +SPEAKER 00770 0 76.837580 0.463420 1 +SPEAKER 00770 0 77.689000 4.000000 1 +SPEAKER 00770 0 84.671000 1.777690 1 +SPEAKER 00770 0 96.208000 0.519000 1 +SPEAKER 00770 0 97.171000 1.500000 1 diff --git a/rttm/few/00778.rttm b/rttm/few/00778.rttm new file mode 100644 index 0000000000000000000000000000000000000000..eb403cc7b35ecebdfa28a6320f89508cfd5629df --- /dev/null +++ b/rttm/few/00778.rttm @@ -0,0 +1,14 @@ +SPEAKER 00778 0 0.060000 1.629440 1 +SPEAKER 00778 0 2.041000 0.537320 1 +SPEAKER 00778 0 2.875000 1.925550 1 +SPEAKER 00778 0 11.449000 2.166360 1 +SPEAKER 00778 0 14.023000 2.184950 1 +SPEAKER 00778 0 18.745000 4.462950 1 +SPEAKER 00778 0 25.412000 1.481140 1 +SPEAKER 00778 0 29.782030 0.490140 1 +SPEAKER 00778 0 3.300550 0.425920 0 +SPEAKER 00778 0 5.652000 2.688550 0 +SPEAKER 00778 0 9.023000 1.962730 0 +SPEAKER 00778 0 16.244990 0.648150 0 +SPEAKER 00778 0 23.615000 0.629990 0 +SPEAKER 00778 0 27.264000 1.684690 0 diff --git a/rttm/few/00785.rttm b/rttm/few/00785.rttm new file mode 100644 index 0000000000000000000000000000000000000000..1a5660bf6c6724562ffb694009893c082328dfa5 --- /dev/null +++ b/rttm/few/00785.rttm @@ -0,0 +1,26 @@ +SPEAKER 00785 0 0.000000 0.891100 0 +SPEAKER 00785 0 2.838000 0.450000 0 +SPEAKER 00785 0 6.819060 1.018940 0 +SPEAKER 00785 0 8.445000 0.874670 0 +SPEAKER 00785 0 10.282000 1.117170 0 +SPEAKER 00785 0 14.986000 1.796000 0 +SPEAKER 00785 0 18.523000 0.481000 0 +SPEAKER 00785 0 19.874000 0.630000 0 +SPEAKER 00785 0 22.652000 0.612000 0 +SPEAKER 00785 0 1.046000 0.955490 1 +SPEAKER 00785 0 3.263510 1.945770 1 +SPEAKER 00785 0 8.306170 0.957080 1 +SPEAKER 00785 0 9.580000 1.202030 1 +SPEAKER 00785 0 18.908880 1.087380 1 +SPEAKER 00785 0 21.559810 0.425920 1 +SPEAKER 00785 0 1.995000 2.084410 h0 +SPEAKER 00785 0 5.014300 0.883720 h0 +SPEAKER 00785 0 7.707950 0.703710 h0 +SPEAKER 00785 0 11.399000 2.309000 h0 +SPEAKER 00785 0 22.134000 1.111000 h0 +SPEAKER 00785 0 1.041290 0.389710 2 +SPEAKER 00785 0 6.072920 1.246140 2 +SPEAKER 00785 0 12.301000 1.629180 2 +SPEAKER 00785 0 14.296000 0.841040 2 +SPEAKER 00785 0 16.826000 1.757640 2 +SPEAKER 00785 0 19.074000 3.615440 2 diff --git a/rttm/few/00788.rttm b/rttm/few/00788.rttm new file mode 100644 index 0000000000000000000000000000000000000000..9f36fba10aebb32af354002be7a5ed01f5b389ed --- /dev/null +++ b/rttm/few/00788.rttm @@ -0,0 +1,10 @@ +SPEAKER 00788 0 0.148000 0.616000 0 +SPEAKER 00788 0 1.301000 6.944000 0 +SPEAKER 00788 0 8.578000 1.445000 0 +SPEAKER 00788 0 10.708000 0.518000 0 +SPEAKER 00788 0 11.597000 2.055000 0 +SPEAKER 00788 0 13.967000 0.463000 0 +SPEAKER 00788 0 14.727000 1.444000 0 +SPEAKER 00788 0 16.511000 4.248000 0 +SPEAKER 00788 0 7.134000 0.814690 1 +SPEAKER 00788 0 10.578000 1.000000 1 diff --git a/rttm/few/00799.rttm b/rttm/few/00799.rttm new file mode 100644 index 0000000000000000000000000000000000000000..a414f67782195603691f5bb4041fa8f7f2c180ba --- /dev/null +++ b/rttm/few/00799.rttm @@ -0,0 +1,7 @@ +SPEAKER 00799 0 0.078000 5.833660 1 +SPEAKER 00799 0 14.524840 1.720150 1 +SPEAKER 00799 0 3.912000 2.925580 0 +SPEAKER 00799 0 7.314620 6.393330 0 +SPEAKER 00799 0 14.226000 1.241000 0 +SPEAKER 00799 0 16.288000 2.550000 0 +SPEAKER 00799 0 19.487000 1.369000 0 diff --git a/rttm/few/00801.rttm b/rttm/few/00801.rttm new file mode 100644 index 0000000000000000000000000000000000000000..8f137cbe8effdf9c21a2c5c18e2aa25bae7223bc --- /dev/null +++ b/rttm/few/00801.rttm @@ -0,0 +1,49 @@ +SPEAKER 00801 0 0.001000 1.614000 2 +SPEAKER 00801 0 2.578000 17.500320 2 +SPEAKER 00801 0 22.041000 1.493360 2 +SPEAKER 00801 0 25.245000 2.448930 2 +SPEAKER 00801 0 28.374000 0.639080 2 +SPEAKER 00801 0 29.768000 0.649340 2 +SPEAKER 00801 0 31.282000 4.145970 2 +SPEAKER 00801 0 35.832000 3.393850 2 +SPEAKER 00801 0 39.588000 4.201680 2 +SPEAKER 00801 0 45.467000 2.354590 2 +SPEAKER 00801 0 48.268000 0.713160 2 +SPEAKER 00801 0 53.393000 1.741000 2 +SPEAKER 00801 0 56.152000 3.741000 2 +SPEAKER 00801 0 61.541000 2.301870 2 +SPEAKER 00801 0 65.671000 0.480380 2 +SPEAKER 00801 0 66.662000 1.957460 2 +SPEAKER 00801 0 69.539000 0.484000 2 +SPEAKER 00801 0 73.024000 0.542270 2 +SPEAKER 00801 0 74.381000 0.738000 2 +SPEAKER 00801 0 76.541000 0.865700 2 +SPEAKER 00801 0 79.041000 1.206120 2 +SPEAKER 00801 0 80.864000 0.553340 2 +SPEAKER 00801 0 1.412000 1.143630 0 +SPEAKER 00801 0 39.407000 0.520970 0 +SPEAKER 00801 0 40.937000 0.345030 0 +SPEAKER 00801 0 42.244990 0.385110 0 +SPEAKER 00801 0 45.449000 1.314510 0 +SPEAKER 00801 0 70.758000 2.233800 0 +SPEAKER 00801 0 73.467000 0.354000 0 +SPEAKER 00801 0 74.319000 1.970680 0 +SPEAKER 00801 0 77.427970 0.606390 0 +SPEAKER 00801 0 12.300000 1.630180 1 +SPEAKER 00801 0 15.430180 1.203820 1 +SPEAKER 00801 0 19.986000 1.870000 1 +SPEAKER 00801 0 22.708000 4.018000 1 +SPEAKER 00801 0 27.745000 1.240730 1 +SPEAKER 00801 0 30.758000 0.425290 1 +SPEAKER 00801 0 43.819000 1.449400 1 +SPEAKER 00801 0 47.023000 1.142000 1 +SPEAKER 00801 0 48.981160 5.300840 1 +SPEAKER 00801 0 54.782000 3.082140 1 +SPEAKER 00801 0 58.577000 2.967990 1 +SPEAKER 00801 0 61.885000 0.883400 1 +SPEAKER 00801 0 63.279040 0.978720 1 +SPEAKER 00801 0 64.598000 1.000000 1 +SPEAKER 00801 0 69.615000 0.951270 1 +SPEAKER 00801 0 73.779040 0.468080 1 +SPEAKER 00801 0 75.194000 1.340360 1 +SPEAKER 00801 0 28.912000 0.781930 h0 diff --git a/rttm/few/00804.rttm b/rttm/few/00804.rttm new file mode 100644 index 0000000000000000000000000000000000000000..f9ba255cb293eb464d7ca6aa5fc3a2482b0fa854 --- /dev/null +++ b/rttm/few/00804.rttm @@ -0,0 +1,87 @@ +SPEAKER 00804 0 0.023000 1.444000 1 +SPEAKER 00804 0 5.097000 0.556000 1 +SPEAKER 00804 0 15.277000 1.000000 1 +SPEAKER 00804 0 35.379000 1.000000 1 +SPEAKER 00804 0 39.920420 2.194580 1 +SPEAKER 00804 0 43.726470 1.339780 1 +SPEAKER 00804 0 45.837580 1.759260 1 +SPEAKER 00804 0 47.985730 3.203270 1 +SPEAKER 00804 0 52.930180 1.203700 1 +SPEAKER 00804 0 55.319060 2.796300 1 +SPEAKER 00804 0 64.836000 0.860000 1 +SPEAKER 00804 0 93.801000 0.685000 1 +SPEAKER 00804 0 124.596840 3.481480 1 +SPEAKER 00804 0 3.301000 0.786080 0 +SPEAKER 00804 0 4.718000 1.749210 0 +SPEAKER 00804 0 7.393000 6.000000 0 +SPEAKER 00804 0 13.801000 1.666210 0 +SPEAKER 00804 0 20.856100 0.518900 0 +SPEAKER 00804 0 21.912000 3.074000 0 +SPEAKER 00804 0 26.615000 6.167030 0 +SPEAKER 00804 0 34.041290 0.611110 0 +SPEAKER 00804 0 40.337580 0.999500 0 +SPEAKER 00804 0 42.244990 3.463010 0 +SPEAKER 00804 0 46.675000 2.589000 0 +SPEAKER 00804 0 51.801000 1.000000 0 +SPEAKER 00804 0 53.634000 2.204000 0 +SPEAKER 00804 0 56.420420 2.398580 0 +SPEAKER 00804 0 60.782000 0.870000 0 +SPEAKER 00804 0 66.226000 2.130000 0 +SPEAKER 00804 0 69.300550 0.870450 0 +SPEAKER 00804 0 70.930000 0.667000 0 +SPEAKER 00804 0 73.264000 1.147660 0 +SPEAKER 00804 0 76.708000 10.814770 0 +SPEAKER 00804 0 94.449000 2.666000 0 +SPEAKER 00804 0 99.338000 3.110690 0 +SPEAKER 00804 0 104.801000 1.981030 0 +SPEAKER 00804 0 108.837000 3.985030 0 +SPEAKER 00804 0 114.526000 3.515290 0 +SPEAKER 00804 0 121.022770 1.092590 0 +SPEAKER 00804 0 131.560000 0.537000 0 +SPEAKER 00804 0 132.393000 4.579000 0 +SPEAKER 00804 0 141.385000 0.952580 0 +SPEAKER 00804 0 145.915000 2.330000 0 +SPEAKER 00804 0 1.374620 1.722380 2 +SPEAKER 00804 0 6.912000 0.610770 2 +SPEAKER 00804 0 13.319060 0.427940 2 +SPEAKER 00804 0 16.596840 2.352160 2 +SPEAKER 00804 0 27.282000 1.463000 2 +SPEAKER 00804 0 33.234000 0.899880 2 +SPEAKER 00804 0 34.986000 3.517750 2 +SPEAKER 00804 0 38.907000 1.180080 2 +SPEAKER 00804 0 50.763510 1.074070 2 +SPEAKER 00804 0 58.430000 1.908000 2 +SPEAKER 00804 0 64.282030 2.277970 2 +SPEAKER 00804 0 67.448000 3.427000 2 +SPEAKER 00804 0 71.300550 1.963450 2 +SPEAKER 00804 0 73.596840 3.351850 2 +SPEAKER 00804 0 87.975000 3.603320 2 +SPEAKER 00804 0 111.097000 1.445000 2 +SPEAKER 00804 0 117.523000 1.259030 2 +SPEAKER 00804 0 123.764000 0.907000 2 +SPEAKER 00804 0 127.134000 2.815000 2 +SPEAKER 00804 0 131.967000 0.833550 2 +SPEAKER 00804 0 137.612400 0.967410 2 +SPEAKER 00804 0 139.596840 1.944160 2 +SPEAKER 00804 0 143.073000 1.876000 2 +SPEAKER 00804 0 145.870000 0.671000 2 +SPEAKER 00804 0 9.707950 1.500000 h0 +SPEAKER 00804 0 16.819060 3.740750 h0 +SPEAKER 00804 0 21.449000 1.000000 h0 +SPEAKER 00804 0 24.764000 1.888400 h0 +SPEAKER 00804 0 33.300550 1.055550 h0 +SPEAKER 00804 0 35.893140 0.481480 h0 +SPEAKER 00804 0 61.374620 2.370380 h0 +SPEAKER 00804 0 83.504000 1.000000 h0 +SPEAKER 00804 0 91.745000 2.883750 h0 +SPEAKER 00804 0 97.578000 2.000320 h0 +SPEAKER 00804 0 101.949000 2.795990 h0 +SPEAKER 00804 0 105.819060 3.055940 h0 +SPEAKER 00804 0 111.837000 4.519000 h0 +SPEAKER 00804 0 119.320000 2.332400 h0 +SPEAKER 00804 0 122.949000 1.555250 h0 +SPEAKER 00804 0 126.504000 4.167000 h0 +SPEAKER 00804 0 131.986000 0.685000 h0 +SPEAKER 00804 0 139.400000 1.000000 h0 +SPEAKER 00804 0 142.411660 1.777340 h0 +SPEAKER 00804 0 147.893000 0.431000 h0 diff --git a/rttm/few/00808.rttm b/rttm/few/00808.rttm new file mode 100644 index 0000000000000000000000000000000000000000..14664d4884663feca5c3d3e691e8c5c9ef06f74f --- /dev/null +++ b/rttm/few/00808.rttm @@ -0,0 +1,17 @@ +SPEAKER 00808 0 0.004000 4.123000 0 +SPEAKER 00808 0 5.508000 2.808250 0 +SPEAKER 00808 0 8.596000 1.000000 0 +SPEAKER 00808 0 10.282000 1.000000 0 +SPEAKER 00808 0 12.044000 0.771000 0 +SPEAKER 00808 0 13.565000 1.000000 0 +SPEAKER 00808 0 15.044000 1.229000 0 +SPEAKER 00808 0 17.031000 1.096000 0 +SPEAKER 00808 0 19.107920 0.436080 0 +SPEAKER 00808 0 4.306000 1.000000 1 +SPEAKER 00808 0 9.525000 1.000000 1 +SPEAKER 00808 0 10.946000 2.873000 1 +SPEAKER 00808 0 15.152000 0.371000 1 +SPEAKER 00808 0 16.633880 0.327120 1 +SPEAKER 00808 0 18.271000 0.877000 1 +SPEAKER 00808 0 19.714000 2.601000 1 +SPEAKER 00808 0 22.649000 1.207000 1 diff --git a/rttm/few/00809.rttm b/rttm/few/00809.rttm new file mode 100644 index 0000000000000000000000000000000000000000..cbed38f24f1f1917d42d9658cdd01cef39874b31 --- /dev/null +++ b/rttm/few/00809.rttm @@ -0,0 +1,18 @@ +SPEAKER 00809 0 0.015000 1.286000 0 +SPEAKER 00809 0 1.734000 0.492000 0 +SPEAKER 00809 0 12.449000 4.204000 0 +SPEAKER 00809 0 2.296000 3.486000 3 +SPEAKER 00809 0 0.000000 1.642000 2 +SPEAKER 00809 0 7.226000 2.889000 2 +SPEAKER 00809 0 10.578000 2.315000 2 +SPEAKER 00809 0 15.670920 2.693080 2 +SPEAKER 00809 0 18.856000 1.630000 2 +SPEAKER 00809 0 21.041000 2.426000 2 +SPEAKER 00809 0 25.245000 0.920820 2 +SPEAKER 00809 0 28.264000 0.445000 2 +SPEAKER 00809 0 0.018320 1.652680 1 +SPEAKER 00809 0 10.134000 0.444000 1 +SPEAKER 00809 0 13.801000 1.166000 1 +SPEAKER 00809 0 15.608000 0.547000 1 +SPEAKER 00809 0 23.134000 3.722000 1 +SPEAKER 00809 0 27.393000 0.648000 1 diff --git a/rttm/few/00817.rttm b/rttm/few/00817.rttm new file mode 100644 index 0000000000000000000000000000000000000000..5d798ca5b7db79b18008513f93b0332c7e20cc04 --- /dev/null +++ b/rttm/few/00817.rttm @@ -0,0 +1,15 @@ +SPEAKER 00817 0 0.000000 0.378000 1 +SPEAKER 00817 0 1.039810 1.225180 1 +SPEAKER 00817 0 5.541290 1.725180 1 +SPEAKER 00817 0 13.669440 1.205180 1 +SPEAKER 00817 0 18.227950 1.404050 1 +SPEAKER 00817 0 19.888690 7.561490 1 +SPEAKER 00817 0 27.854620 10.174070 1 +SPEAKER 00817 0 38.282030 4.074070 1 +SPEAKER 00817 0 0.018320 6.062970 0 +SPEAKER 00817 0 6.396100 0.774820 0 +SPEAKER 00817 0 7.615360 1.504450 0 +SPEAKER 00817 0 9.559810 3.907400 0 +SPEAKER 00817 0 14.652400 2.155600 0 +SPEAKER 00817 0 17.152400 0.888890 0 +SPEAKER 00817 0 41.002770 3.935230 0 diff --git a/rttm/few/00844.rttm b/rttm/few/00844.rttm new file mode 100644 index 0000000000000000000000000000000000000000..30bbe88acd03ee6e2bb6c2fbafd9b9c80e712185 --- /dev/null +++ b/rttm/few/00844.rttm @@ -0,0 +1,21 @@ +SPEAKER 00844 0 0.002000 0.682000 1 +SPEAKER 00844 0 3.274000 0.646000 1 +SPEAKER 00844 0 10.148000 1.954000 1 +SPEAKER 00844 0 12.984000 1.491000 1 +SPEAKER 00844 0 16.602000 0.591000 1 +SPEAKER 00844 0 18.111000 0.912000 1 +SPEAKER 00844 0 20.120000 4.865730 1 +SPEAKER 00844 0 25.578000 1.556000 1 +SPEAKER 00844 0 27.848000 0.727000 1 +SPEAKER 00844 0 29.066000 0.586400 1 +SPEAKER 00844 0 0.820000 2.464000 0 +SPEAKER 00844 0 3.638000 1.682000 0 +SPEAKER 00844 0 5.693000 1.545000 0 +SPEAKER 00844 0 7.538000 0.928000 0 +SPEAKER 00844 0 8.984000 1.309000 0 +SPEAKER 00844 0 14.523000 0.521000 0 +SPEAKER 00844 0 15.522770 1.106230 0 +SPEAKER 00844 0 17.448000 0.645000 0 +SPEAKER 00844 0 18.811000 1.415470 0 +SPEAKER 00844 0 22.243000 1.623000 0 +SPEAKER 00844 0 28.615000 0.815180 0 diff --git a/rttm/few/00850.rttm b/rttm/few/00850.rttm new file mode 100644 index 0000000000000000000000000000000000000000..fcb15eb33da3f5cc334634f5f3edf7c7345df476 --- /dev/null +++ b/rttm/few/00850.rttm @@ -0,0 +1,43 @@ +SPEAKER 00850 0 0.004000 0.515000 1 +SPEAKER 00850 0 7.625000 0.940000 1 +SPEAKER 00850 0 22.610000 2.834000 1 +SPEAKER 00850 0 26.671000 1.712000 1 +SPEAKER 00850 0 28.747000 0.500000 1 +SPEAKER 00850 0 29.974000 9.803000 1 +SPEAKER 00850 0 42.527000 4.432000 1 +SPEAKER 00850 0 47.358000 3.464000 1 +SPEAKER 00850 0 52.504000 0.652000 1 +SPEAKER 00850 0 53.665000 2.188000 1 +SPEAKER 00850 0 58.974000 2.924000 1 +SPEAKER 00850 0 64.974000 0.848000 1 +SPEAKER 00850 0 69.445000 1.180000 1 +SPEAKER 00850 0 72.641000 4.197000 1 +SPEAKER 00850 0 77.534000 1.107000 1 +SPEAKER 00850 0 103.004000 0.697000 1 +SPEAKER 00850 0 112.631000 1.661000 1 +SPEAKER 00850 0 114.625000 3.606000 1 +SPEAKER 00850 0 0.519000 7.106000 0 +SPEAKER 00850 0 8.474000 5.308000 0 +SPEAKER 00850 0 14.459000 3.897000 0 +SPEAKER 00850 0 18.822000 3.834000 0 +SPEAKER 00850 0 25.474000 1.500000 0 +SPEAKER 00850 0 28.277000 0.591000 0 +SPEAKER 00850 0 29.260000 1.093000 0 +SPEAKER 00850 0 31.580000 0.530000 0 +SPEAKER 00850 0 32.368000 0.757000 0 +SPEAKER 00850 0 33.883000 1.455000 0 +SPEAKER 00850 0 39.686000 3.151580 0 +SPEAKER 00850 0 46.959000 0.636000 0 +SPEAKER 00850 0 50.777000 2.212000 0 +SPEAKER 00850 0 53.247000 0.560000 0 +SPEAKER 00850 0 54.125000 0.713000 0 +SPEAKER 00850 0 55.792000 3.712000 0 +SPEAKER 00850 0 61.944000 3.212000 0 +SPEAKER 00850 0 65.755000 6.886000 0 +SPEAKER 00850 0 74.095000 0.909000 0 +SPEAKER 00850 0 76.777000 0.697000 0 +SPEAKER 00850 0 79.453000 15.977000 0 +SPEAKER 00850 0 95.928000 7.000000 0 +SPEAKER 00850 0 103.731000 7.940000 0 +SPEAKER 00850 0 114.292000 0.439000 0 +SPEAKER 00850 0 118.231000 3.531000 0 diff --git a/rttm/few/00852.rttm b/rttm/few/00852.rttm new file mode 100644 index 0000000000000000000000000000000000000000..b1951e3d1e7d174e0613d8f1e2075f1f797ebc78 --- /dev/null +++ b/rttm/few/00852.rttm @@ -0,0 +1,12 @@ +SPEAKER 00852 0 1.959000 2.075000 1 +SPEAKER 00852 0 9.547000 0.938730 1 +SPEAKER 00852 0 14.413000 1.146810 1 +SPEAKER 00852 0 23.564000 2.698000 1 +SPEAKER 00852 0 39.004000 3.515000 1 +SPEAKER 00852 0 45.080000 4.045000 1 +SPEAKER 00852 0 7.004000 1.273000 0 +SPEAKER 00852 0 12.079000 1.925000 0 +SPEAKER 00852 0 19.550000 2.469000 0 +SPEAKER 00852 0 26.231000 2.016000 0 +SPEAKER 00852 0 29.989000 1.818000 0 +SPEAKER 00852 0 32.322000 3.441510 0 diff --git a/rttm/few/00856.rttm b/rttm/few/00856.rttm new file mode 100644 index 0000000000000000000000000000000000000000..f53925768a5512f2d5b116192c46eac71a3cd0c0 --- /dev/null +++ b/rttm/few/00856.rttm @@ -0,0 +1,15 @@ +SPEAKER 00856 0 0.067000 2.455770 0 +SPEAKER 00856 0 38.633880 0.648150 0 +SPEAKER 00856 0 2.152000 1.592250 1 +SPEAKER 00856 0 4.078000 2.352180 1 +SPEAKER 00856 0 6.818000 3.889950 1 +SPEAKER 00856 0 11.726000 1.518990 1 +SPEAKER 00856 0 13.671000 4.185100 1 +SPEAKER 00856 0 18.282000 3.055580 1 +SPEAKER 00856 0 21.782000 3.891880 1 +SPEAKER 00856 0 26.319000 5.262290 1 +SPEAKER 00856 0 32.004000 3.222470 1 +SPEAKER 00856 0 35.764000 2.536550 1 +SPEAKER 00856 0 39.207950 1.492050 1 +SPEAKER 00856 0 0.000000 0.396100 h0 +SPEAKER 00856 0 39.207950 1.481490 h0 diff --git a/rttm/few/00864.rttm b/rttm/few/00864.rttm new file mode 100644 index 0000000000000000000000000000000000000000..517b2a1947ace11a6988ab4cc9b7dcebc0187387 --- /dev/null +++ b/rttm/few/00864.rttm @@ -0,0 +1,16 @@ +SPEAKER 00864 0 0.004000 2.352000 1 +SPEAKER 00864 0 6.708000 1.185000 1 +SPEAKER 00864 0 8.668000 0.891810 1 +SPEAKER 00864 0 10.467210 1.703790 1 +SPEAKER 00864 0 2.337580 3.648420 2 +SPEAKER 00864 0 7.616000 3.147510 2 +SPEAKER 00864 0 12.671000 7.870290 2 +SPEAKER 00864 0 21.171000 1.148000 2 +SPEAKER 00864 0 22.986000 1.944000 2 +SPEAKER 00864 0 26.523000 1.495000 2 +SPEAKER 00864 0 5.967000 1.849000 0 +SPEAKER 00864 0 19.578000 1.593000 0 +SPEAKER 00864 0 21.856000 1.203810 0 +SPEAKER 00864 0 11.226000 1.037510 3 +SPEAKER 00864 0 18.467210 0.740740 3 +SPEAKER 00864 0 24.745000 3.241000 3 diff --git a/rttm/few/00872.rttm b/rttm/few/00872.rttm new file mode 100644 index 0000000000000000000000000000000000000000..1fefaec5744e0e1a214f7be95cfd86a5e669c970 --- /dev/null +++ b/rttm/few/00872.rttm @@ -0,0 +1,33 @@ +SPEAKER 00872 0 0.000000 0.569000 1 +SPEAKER 00872 0 1.985730 0.846670 1 +SPEAKER 00872 0 3.764000 0.779000 1 +SPEAKER 00872 0 6.448690 1.947410 1 +SPEAKER 00872 0 8.726470 1.239260 1 +SPEAKER 00872 0 11.467210 3.351850 1 +SPEAKER 00872 0 15.244990 0.789010 1 +SPEAKER 00872 0 16.450180 5.517030 1 +SPEAKER 00872 0 22.226470 1.777780 1 +SPEAKER 00872 0 24.410180 2.322220 1 +SPEAKER 00872 0 27.078320 3.962970 1 +SPEAKER 00872 0 31.544250 5.557040 1 +SPEAKER 00872 0 44.059810 0.608190 1 +SPEAKER 00872 0 48.891660 0.797340 1 +SPEAKER 00872 0 50.280550 2.760740 1 +SPEAKER 00872 0 53.319060 3.353340 1 +SPEAKER 00872 0 57.356100 5.336300 1 +SPEAKER 00872 0 65.802000 4.377810 1 +SPEAKER 00872 0 71.504250 0.962750 1 +SPEAKER 00872 0 72.804990 2.407010 1 +SPEAKER 00872 0 75.911660 9.240340 1 +SPEAKER 00872 0 1.467210 1.042970 0 +SPEAKER 00872 0 3.058320 3.185190 0 +SPEAKER 00872 0 9.763510 1.666490 0 +SPEAKER 00872 0 15.115360 1.833330 0 +SPEAKER 00872 0 25.184990 2.228150 0 +SPEAKER 00872 0 37.242030 1.317970 0 +SPEAKER 00872 0 39.041290 1.499710 0 +SPEAKER 00872 0 40.893140 3.405920 0 +SPEAKER 00872 0 44.707950 6.962970 0 +SPEAKER 00872 0 61.965730 2.595270 0 +SPEAKER 00872 0 65.059810 1.523190 0 +SPEAKER 00872 0 69.760550 1.629450 0 diff --git a/rttm/few/00882.rttm b/rttm/few/00882.rttm new file mode 100644 index 0000000000000000000000000000000000000000..b1ac5a7579534a1629896b0027e3ba7e5c8e2621 --- /dev/null +++ b/rttm/few/00882.rttm @@ -0,0 +1,13 @@ +SPEAKER 00882 0 0.435000 0.680360 1 +SPEAKER 00882 0 3.411660 0.574070 1 +SPEAKER 00882 0 7.486000 2.439000 1 +SPEAKER 00882 0 12.455000 2.771470 1 +SPEAKER 00882 0 16.094000 1.447290 1 +SPEAKER 00882 0 18.571000 2.038000 1 +SPEAKER 00882 0 21.364000 1.992100 1 +SPEAKER 00882 0 24.994000 0.939000 1 +SPEAKER 00882 0 26.856100 0.555560 1 +SPEAKER 00882 0 2.341000 0.568000 0 +SPEAKER 00882 0 3.309000 1.524000 0 +SPEAKER 00882 0 16.467210 2.303790 0 +SPEAKER 00882 0 26.263510 0.648150 0 diff --git a/rttm/few/00888.rttm b/rttm/few/00888.rttm new file mode 100644 index 0000000000000000000000000000000000000000..d18f22ddfd7c1915cfe7996cca1d6e62082cfe18 --- /dev/null +++ b/rttm/few/00888.rttm @@ -0,0 +1,17 @@ +SPEAKER 00888 0 0.000000 0.536160 1 +SPEAKER 00888 0 1.023000 2.095000 1 +SPEAKER 00888 0 4.363130 0.942870 1 +SPEAKER 00888 0 7.991040 1.160960 1 +SPEAKER 00888 0 10.374780 0.918590 1 +SPEAKER 00888 0 15.725850 1.838680 1 +SPEAKER 00888 0 18.098190 0.385530 1 +SPEAKER 00888 0 19.770110 1.573490 1 +SPEAKER 00888 0 21.940000 0.649180 1 +SPEAKER 00888 0 3.529000 0.869020 2 +SPEAKER 00888 0 8.949000 0.940000 2 +SPEAKER 00888 0 11.764000 0.666180 2 +SPEAKER 00888 0 15.651380 2.445620 2 +SPEAKER 00888 0 18.430180 1.758540 2 +SPEAKER 00888 0 24.142200 1.158800 2 +SPEAKER 00888 0 9.864140 0.563830 0 +SPEAKER 00888 0 21.967780 2.460190 0 diff --git a/rttm/few/00897.rttm b/rttm/few/00897.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ae051fd490f06e11752be6d81da42b3475cd0856 --- /dev/null +++ b/rttm/few/00897.rttm @@ -0,0 +1,57 @@ +SPEAKER 00897 0 0.263510 0.481490 0 +SPEAKER 00897 0 5.875000 0.647770 0 +SPEAKER 00897 0 8.612000 1.077440 0 +SPEAKER 00897 0 13.935000 0.403000 0 +SPEAKER 00897 0 22.041000 0.371000 0 +SPEAKER 00897 0 23.652000 4.500400 0 +SPEAKER 00897 0 28.420000 1.195360 0 +SPEAKER 00897 0 29.909000 5.021180 0 +SPEAKER 00897 0 37.430000 0.370550 0 +SPEAKER 00897 0 43.518000 4.782550 0 +SPEAKER 00897 0 56.078220 0.851780 0 +SPEAKER 00897 0 57.652000 11.333730 0 +SPEAKER 00897 0 74.981000 0.436580 0 +SPEAKER 00897 0 85.300550 0.856290 0 +SPEAKER 00897 0 95.393000 0.360130 0 +SPEAKER 00897 0 96.782000 0.754520 0 +SPEAKER 00897 0 104.041000 0.355100 0 +SPEAKER 00897 0 105.671000 1.777690 0 +SPEAKER 00897 0 108.505000 0.261470 0 +SPEAKER 00897 0 111.142960 0.415930 0 +SPEAKER 00897 0 112.587000 12.381050 0 +SPEAKER 00897 0 127.004000 0.611360 0 +SPEAKER 00897 0 128.208000 1.870320 0 +SPEAKER 00897 0 132.007370 0.700580 0 +SPEAKER 00897 0 142.466000 1.057000 0 +SPEAKER 00897 0 143.985730 17.666270 0 +SPEAKER 00897 0 0.152000 0.977060 1 +SPEAKER 00897 0 1.575000 12.336660 1 +SPEAKER 00897 0 14.319000 4.203770 1 +SPEAKER 00897 0 18.777000 5.043550 1 +SPEAKER 00897 0 24.930000 1.111000 1 +SPEAKER 00897 0 27.226000 1.466400 1 +SPEAKER 00897 0 29.467000 0.408000 1 +SPEAKER 00897 0 34.595170 9.890830 1 +SPEAKER 00897 0 46.078000 0.482000 1 +SPEAKER 00897 0 47.078000 10.592920 1 +SPEAKER 00897 0 59.430000 0.333510 1 +SPEAKER 00897 0 62.134000 0.388770 1 +SPEAKER 00897 0 65.726000 0.593000 1 +SPEAKER 00897 0 68.844000 2.604690 1 +SPEAKER 00897 0 72.096840 2.777780 1 +SPEAKER 00897 0 75.337580 13.148150 1 +SPEAKER 00897 0 88.855000 1.408510 1 +SPEAKER 00897 0 90.541290 10.814810 1 +SPEAKER 00897 0 101.652400 2.374810 1 +SPEAKER 00897 0 104.615000 1.000000 1 +SPEAKER 00897 0 107.301000 4.904330 1 +SPEAKER 00897 0 113.692000 0.316690 1 +SPEAKER 00897 0 118.967210 0.314820 1 +SPEAKER 00897 0 122.264000 0.854320 1 +SPEAKER 00897 0 124.768000 3.644000 1 +SPEAKER 00897 0 130.060000 11.207950 1 +SPEAKER 00897 0 141.801000 2.608400 1 +SPEAKER 00897 0 150.430420 1.240580 1 +SPEAKER 00897 0 152.393000 1.371000 1 +SPEAKER 00897 0 154.942620 0.356610 1 +SPEAKER 00897 0 159.244990 1.132590 1 diff --git a/rttm/few/00902.rttm b/rttm/few/00902.rttm new file mode 100644 index 0000000000000000000000000000000000000000..57bb2f6a487e1507bee71a0a7e5c0227c5b96a12 --- /dev/null +++ b/rttm/few/00902.rttm @@ -0,0 +1,13 @@ +SPEAKER 00902 0 0.596840 1.342920 1 +SPEAKER 00902 0 4.019000 0.546000 1 +SPEAKER 00902 0 5.791000 2.163000 1 +SPEAKER 00902 0 8.625000 1.066000 1 +SPEAKER 00902 0 11.156000 1.278000 1 +SPEAKER 00902 0 13.080000 0.470000 1 +SPEAKER 00902 0 16.279000 1.185000 1 +SPEAKER 00902 0 20.398090 4.284910 1 +SPEAKER 00902 0 0.392000 4.214420 0 +SPEAKER 00902 0 5.100000 1.543000 0 +SPEAKER 00902 0 9.731420 1.345580 0 +SPEAKER 00902 0 12.452000 3.438000 0 +SPEAKER 00902 0 16.152400 2.904600 0 diff --git a/rttm/few/00917.rttm b/rttm/few/00917.rttm new file mode 100644 index 0000000000000000000000000000000000000000..cc16a0df8f6199e60a5a3476c4af05b30b1e81ab --- /dev/null +++ b/rttm/few/00917.rttm @@ -0,0 +1,6 @@ +SPEAKER 00917 0 0.004000 4.431000 1 +SPEAKER 00917 0 37.412000 3.592000 1 +SPEAKER 00917 0 6.101000 6.144000 0 +SPEAKER 00917 0 12.845000 3.001470 0 +SPEAKER 00917 0 16.854620 19.360380 0 +SPEAKER 00917 0 41.504000 0.741000 0 diff --git a/rttm/few/00925.rttm b/rttm/few/00925.rttm new file mode 100644 index 0000000000000000000000000000000000000000..9d1c2594fdcd49ed82e28afeb09eae758bee6565 --- /dev/null +++ b/rttm/few/00925.rttm @@ -0,0 +1,61 @@ +SPEAKER 00925 0 0.023000 1.760000 0 +SPEAKER 00925 0 2.541000 1.768000 0 +SPEAKER 00925 0 6.986000 4.221950 0 +SPEAKER 00925 0 11.837580 1.777420 0 +SPEAKER 00925 0 13.948690 1.500310 0 +SPEAKER 00925 0 17.244990 7.389010 0 +SPEAKER 00925 0 25.134000 0.630000 0 +SPEAKER 00925 0 26.282000 3.019000 0 +SPEAKER 00925 0 29.986000 1.592320 0 +SPEAKER 00925 0 35.245000 3.240730 0 +SPEAKER 00925 0 39.226470 2.203530 0 +SPEAKER 00925 0 48.152400 2.518600 0 +SPEAKER 00925 0 52.152000 3.408000 0 +SPEAKER 00925 0 56.412000 0.555000 0 +SPEAKER 00925 0 57.949000 4.277000 0 +SPEAKER 00925 0 62.597000 3.167000 0 +SPEAKER 00925 0 66.818000 0.519580 0 +SPEAKER 00925 0 69.152000 2.111510 0 +SPEAKER 00925 0 72.782000 2.926000 0 +SPEAKER 00925 0 76.301000 2.351000 0 +SPEAKER 00925 0 79.063000 4.071000 0 +SPEAKER 00925 0 83.856000 4.574000 0 +SPEAKER 00925 0 94.745000 2.907400 0 +SPEAKER 00925 0 98.207950 1.093050 0 +SPEAKER 00925 0 102.800000 0.371000 0 +SPEAKER 00925 0 106.560000 2.074000 0 +SPEAKER 00925 0 113.208000 3.093000 0 +SPEAKER 00925 0 117.152000 3.889000 0 +SPEAKER 00925 0 121.782030 1.962970 0 +SPEAKER 00925 0 124.189000 4.797000 0 +SPEAKER 00925 0 130.597000 1.000000 0 +SPEAKER 00925 0 132.597000 1.370210 0 +SPEAKER 00925 0 136.838000 1.832920 0 +SPEAKER 00925 0 139.136000 1.332000 0 +SPEAKER 00925 0 1.819000 4.833400 1 +SPEAKER 00925 0 11.949000 1.000000 1 +SPEAKER 00925 0 14.097000 1.926000 1 +SPEAKER 00925 0 31.659000 3.586000 1 +SPEAKER 00925 0 41.764000 5.962000 1 +SPEAKER 00925 0 50.949000 1.313030 1 +SPEAKER 00925 0 53.336000 1.020000 1 +SPEAKER 00925 0 55.707950 3.592600 1 +SPEAKER 00925 0 65.226000 1.407880 1 +SPEAKER 00925 0 67.208000 1.444400 1 +SPEAKER 00925 0 69.986000 1.444180 1 +SPEAKER 00925 0 72.097000 0.741000 1 +SPEAKER 00925 0 75.597000 2.074000 1 +SPEAKER 00925 0 88.856000 2.481580 1 +SPEAKER 00925 0 92.375000 0.740360 1 +SPEAKER 00925 0 93.702000 0.580030 1 +SPEAKER 00925 0 97.023000 1.592360 1 +SPEAKER 00925 0 100.745000 1.629620 1 +SPEAKER 00925 0 103.189000 3.704000 1 +SPEAKER 00925 0 107.374620 0.407380 1 +SPEAKER 00925 0 108.412000 0.592000 1 +SPEAKER 00925 0 109.986000 2.147880 1 +SPEAKER 00925 0 112.893000 1.333000 1 +SPEAKER 00925 0 129.133880 1.703700 1 +SPEAKER 00925 0 131.443000 1.227920 1 +SPEAKER 00925 0 134.356100 2.481900 1 +SPEAKER 00925 0 137.449000 2.407100 1 diff --git a/rttm/few/00928.rttm b/rttm/few/00928.rttm new file mode 100644 index 0000000000000000000000000000000000000000..956a1e2443955d856817f40c479888a061dce2d4 --- /dev/null +++ b/rttm/few/00928.rttm @@ -0,0 +1,34 @@ +SPEAKER 00928 0 74.943430 2.686270 0 +SPEAKER 00928 0 79.541000 1.392620 0 +SPEAKER 00928 0 4.855190 0.696080 3 +SPEAKER 00928 0 7.597000 0.826820 3 +SPEAKER 00928 0 13.208130 3.795870 3 +SPEAKER 00928 0 17.276760 0.549020 3 +SPEAKER 00928 0 19.245000 3.159210 3 +SPEAKER 00928 0 23.502250 0.649750 3 +SPEAKER 00928 0 76.393000 1.462190 3 +SPEAKER 00928 0 79.560000 1.089310 3 +SPEAKER 00928 0 0.000000 1.875000 1 +SPEAKER 00928 0 2.393000 0.611000 1 +SPEAKER 00928 0 5.337580 0.462970 1 +SPEAKER 00928 0 10.319000 2.111180 1 +SPEAKER 00928 0 17.208000 0.907000 1 +SPEAKER 00928 0 22.930000 0.834000 1 +SPEAKER 00928 0 24.264000 4.555000 1 +SPEAKER 00928 0 31.449000 12.851550 1 +SPEAKER 00928 0 44.752000 1.641140 1 +SPEAKER 00928 0 46.837580 16.814420 1 +SPEAKER 00928 0 70.953230 3.754720 1 +SPEAKER 00928 0 75.430180 3.277770 1 +SPEAKER 00928 0 79.560000 2.892000 1 +SPEAKER 00928 0 2.078000 0.737980 2 +SPEAKER 00928 0 5.893000 0.611000 2 +SPEAKER 00928 0 12.264000 0.888000 2 +SPEAKER 00928 0 28.838000 2.537000 2 +SPEAKER 00928 0 34.160000 0.386000 2 +SPEAKER 00928 0 48.818000 0.371000 2 +SPEAKER 00928 0 54.718000 0.457000 2 +SPEAKER 00928 0 61.146000 0.372000 2 +SPEAKER 00928 0 63.703000 7.208660 2 +SPEAKER 00928 0 76.832000 1.657000 2 +SPEAKER 00928 0 79.560000 2.886000 2 diff --git a/rttm/few/00942.rttm b/rttm/few/00942.rttm new file mode 100644 index 0000000000000000000000000000000000000000..926f9f6d7601c4249c30fbdd4798f3755a136838 --- /dev/null +++ b/rttm/few/00942.rttm @@ -0,0 +1,22 @@ +SPEAKER 00942 0 0.467000 2.537000 1 +SPEAKER 00942 0 3.630000 5.828110 1 +SPEAKER 00942 0 9.958000 2.066770 1 +SPEAKER 00942 0 12.447000 1.255550 1 +SPEAKER 00942 0 14.158000 7.977880 1 +SPEAKER 00942 0 22.547000 3.777770 1 +SPEAKER 00942 0 26.847000 4.155550 1 +SPEAKER 00942 0 31.358000 1.266770 1 +SPEAKER 00942 0 33.634000 3.759000 1 +SPEAKER 00942 0 40.092000 0.632770 1 +SPEAKER 00942 0 41.207950 0.444450 1 +SPEAKER 00942 0 0.282000 0.557880 0 +SPEAKER 00942 0 3.211970 0.328030 0 +SPEAKER 00942 0 4.985730 0.351850 0 +SPEAKER 00942 0 5.671000 0.398000 0 +SPEAKER 00942 0 6.435880 0.433120 0 +SPEAKER 00942 0 9.615360 0.407410 0 +SPEAKER 00942 0 13.158110 1.544440 0 +SPEAKER 00942 0 36.643000 4.470660 0 +SPEAKER 00942 0 41.480000 4.700330 0 +SPEAKER 00942 0 46.596000 3.839880 0 +SPEAKER 00942 0 50.880000 0.251000 0 diff --git a/rttm/few/00947.rttm b/rttm/few/00947.rttm new file mode 100644 index 0000000000000000000000000000000000000000..2548bf05a01779ac2fb24b6a200bdf3e1a4c84b7 --- /dev/null +++ b/rttm/few/00947.rttm @@ -0,0 +1,38 @@ +SPEAKER 00947 0 0.002000 5.631880 1 +SPEAKER 00947 0 8.856100 4.129900 1 +SPEAKER 00947 0 14.949000 1.444000 1 +SPEAKER 00947 0 19.467210 1.444790 1 +SPEAKER 00947 0 21.263510 1.444490 1 +SPEAKER 00947 0 22.967000 1.833550 1 +SPEAKER 00947 0 26.856000 0.537000 1 +SPEAKER 00947 0 30.116000 0.648000 1 +SPEAKER 00947 0 38.448690 2.963310 1 +SPEAKER 00947 0 41.783000 1.332360 1 +SPEAKER 00947 0 48.634000 5.925810 1 +SPEAKER 00947 0 54.985000 2.185920 1 +SPEAKER 00947 0 57.838000 1.258840 1 +SPEAKER 00947 0 66.004000 1.000000 1 +SPEAKER 00947 0 72.893140 1.574070 1 +SPEAKER 00947 0 79.523000 1.871000 1 +SPEAKER 00947 0 82.060000 1.129000 1 +SPEAKER 00947 0 86.502000 0.539000 1 +SPEAKER 00947 0 91.504000 2.426000 1 +SPEAKER 00947 0 95.432000 0.738920 1 +SPEAKER 00947 0 98.856000 10.852000 1 +SPEAKER 00947 0 5.059810 4.796190 0 +SPEAKER 00947 0 12.207950 4.611110 0 +SPEAKER 00947 0 20.245000 1.759000 0 +SPEAKER 00947 0 25.848000 0.933000 0 +SPEAKER 00947 0 27.716000 0.788250 0 +SPEAKER 00947 0 30.025000 1.645920 0 +SPEAKER 00947 0 32.689000 6.278000 0 +SPEAKER 00947 0 40.448000 8.093000 0 +SPEAKER 00947 0 49.504250 0.629750 0 +SPEAKER 00947 0 57.690000 14.536470 0 +SPEAKER 00947 0 72.547000 2.086880 0 +SPEAKER 00947 0 75.152000 3.296690 0 +SPEAKER 00947 0 80.875000 5.018140 0 +SPEAKER 00947 0 86.245000 5.018510 0 +SPEAKER 00947 0 96.596000 2.038000 0 +SPEAKER 00947 0 111.282000 3.315000 0 +SPEAKER 00947 0 17.630000 1.429810 h0 diff --git a/rttm/few/00948.rttm b/rttm/few/00948.rttm new file mode 100644 index 0000000000000000000000000000000000000000..43acad03a7fc776757da9acba581d205d9595411 --- /dev/null +++ b/rttm/few/00948.rttm @@ -0,0 +1,5 @@ +SPEAKER 00948 0 11.120000 0.600000 1 +SPEAKER 00948 0 12.021810 11.445190 1 +SPEAKER 00948 0 0.393000 6.880090 0 +SPEAKER 00948 0 7.636000 3.449000 0 +SPEAKER 00948 0 17.522770 0.685180 0 diff --git a/rttm/few/00949.rttm b/rttm/few/00949.rttm new file mode 100644 index 0000000000000000000000000000000000000000..0dc4ede9db3f07c783f7486d6d27bdb69afcf933 --- /dev/null +++ b/rttm/few/00949.rttm @@ -0,0 +1,24 @@ +SPEAKER 00949 0 0.009000 3.597000 0 +SPEAKER 00949 0 6.942000 0.455000 0 +SPEAKER 00949 0 8.636000 0.508000 0 +SPEAKER 00949 0 10.666000 2.541950 0 +SPEAKER 00949 0 15.768000 0.459000 0 +SPEAKER 00949 0 21.948690 2.759260 0 +SPEAKER 00949 0 25.356100 2.870370 0 +SPEAKER 00949 0 3.106000 1.261000 2 +SPEAKER 00949 0 4.670000 2.130550 2 +SPEAKER 00949 0 7.532000 1.194470 2 +SPEAKER 00949 0 9.039000 1.246000 2 +SPEAKER 00949 0 10.707950 0.672050 2 +SPEAKER 00949 0 12.157000 0.764000 2 +SPEAKER 00949 0 18.655000 0.868000 2 +SPEAKER 00949 0 20.186000 2.071000 2 +SPEAKER 00949 0 4.507000 0.794000 3 +SPEAKER 00949 0 12.596840 1.462970 3 +SPEAKER 00949 0 22.448690 1.370370 3 +SPEAKER 00949 0 24.170920 1.484080 3 +SPEAKER 00949 0 26.597000 0.444000 3 +SPEAKER 00949 0 11.788000 6.290320 1 +SPEAKER 00949 0 18.763510 0.524490 1 +SPEAKER 00949 0 20.059810 0.574070 1 +SPEAKER 00949 0 24.380000 3.724000 1 diff --git a/rttm/few/00954.rttm b/rttm/few/00954.rttm new file mode 100644 index 0000000000000000000000000000000000000000..04f803a23971eff41a446391a71e6758ddfe2daa --- /dev/null +++ b/rttm/few/00954.rttm @@ -0,0 +1,6 @@ +SPEAKER 00954 0 0.026000 2.144140 1 +SPEAKER 00954 0 2.978000 6.697000 1 +SPEAKER 00954 0 13.467000 0.843630 1 +SPEAKER 00954 0 15.025000 8.458000 1 +SPEAKER 00954 0 7.709000 0.460610 0 +SPEAKER 00954 0 10.048000 5.500000 0 diff --git a/rttm/few/00957.rttm b/rttm/few/00957.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c128f0b3bd398b85fe0a42f92e0f0aff5c3db405 --- /dev/null +++ b/rttm/few/00957.rttm @@ -0,0 +1,10 @@ +SPEAKER 00957 0 0.000000 3.898090 0 +SPEAKER 00957 0 5.106420 5.185580 0 +SPEAKER 00957 0 12.644000 2.375000 0 +SPEAKER 00957 0 15.353000 0.690920 0 +SPEAKER 00957 0 16.792000 0.689420 0 +SPEAKER 00957 0 19.428000 0.874000 0 +SPEAKER 00957 0 4.186000 0.420420 1 +SPEAKER 00957 0 8.494000 0.487000 1 +SPEAKER 00957 0 10.762000 1.864000 1 +SPEAKER 00957 0 18.444000 0.474920 1 diff --git a/rttm/few/00972.rttm b/rttm/few/00972.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4c2aab2bd921f61a91b68661685b01e5289865d5 --- /dev/null +++ b/rttm/few/00972.rttm @@ -0,0 +1,13 @@ +SPEAKER 00972 0 0.004000 1.778030 1 +SPEAKER 00972 0 6.245000 3.481000 1 +SPEAKER 00972 0 10.837580 0.574080 1 +SPEAKER 00972 0 11.856000 3.777880 1 +SPEAKER 00972 0 16.319000 4.648000 1 +SPEAKER 00972 0 23.152000 0.907810 1 +SPEAKER 00972 0 5.523000 0.703470 0 +SPEAKER 00972 0 9.134000 1.333000 0 +SPEAKER 00972 0 14.615000 1.370730 0 +SPEAKER 00972 0 17.041000 0.870660 0 +SPEAKER 00972 0 18.303000 0.534580 0 +SPEAKER 00972 0 19.301000 0.796000 0 +SPEAKER 00972 0 20.819060 0.610940 0 diff --git a/rttm/few/00973.rttm b/rttm/few/00973.rttm new file mode 100644 index 0000000000000000000000000000000000000000..973e855639ddcf3a7eeea2d446723afdc3850b22 --- /dev/null +++ b/rttm/few/00973.rttm @@ -0,0 +1,3 @@ +SPEAKER 00973 0 0.004000 11.926180 1 +SPEAKER 00973 0 4.024000 1.850620 0 +SPEAKER 00973 0 12.245000 4.592580 0 diff --git a/rttm/few/00979.rttm b/rttm/few/00979.rttm new file mode 100644 index 0000000000000000000000000000000000000000..bbd397252293bc4d386e3a12a628a4573bc36350 --- /dev/null +++ b/rttm/few/00979.rttm @@ -0,0 +1,7 @@ +SPEAKER 00979 0 0.004000 4.408000 1 +SPEAKER 00979 0 4.782000 6.315000 1 +SPEAKER 00979 0 11.467000 0.667000 1 +SPEAKER 00979 0 4.043000 0.771760 0 +SPEAKER 00979 0 11.078320 0.403100 0 +SPEAKER 00979 0 11.948690 12.433080 0 +SPEAKER 00979 0 24.641900 20.251100 0 diff --git a/rttm/few/00980.rttm b/rttm/few/00980.rttm new file mode 100644 index 0000000000000000000000000000000000000000..db05d2ca0ee29343e034cbc50790c84ca4d813b8 --- /dev/null +++ b/rttm/few/00980.rttm @@ -0,0 +1,10 @@ +SPEAKER 00980 0 0.338000 0.907000 1 +SPEAKER 00980 0 1.764000 2.184690 1 +SPEAKER 00980 0 4.393140 0.907410 1 +SPEAKER 00980 0 6.726000 1.593060 1 +SPEAKER 00980 0 9.319000 0.611000 1 +SPEAKER 00980 0 11.393000 0.889000 1 +SPEAKER 00980 0 18.986000 2.018000 1 +SPEAKER 00980 0 1.310000 0.454000 0 +SPEAKER 00980 0 5.486000 1.036770 0 +SPEAKER 00980 0 13.838000 4.981060 0 diff --git a/rttm/few/00982.rttm b/rttm/few/00982.rttm new file mode 100644 index 0000000000000000000000000000000000000000..5d65ba27eae6281254d400e09dfd1b46e5a6bb50 --- /dev/null +++ b/rttm/few/00982.rttm @@ -0,0 +1,20 @@ +SPEAKER 00982 0 0.189440 11.186660 1 +SPEAKER 00982 0 11.652400 5.237780 1 +SPEAKER 00982 0 17.262030 8.520000 1 +SPEAKER 00982 0 26.152400 5.803700 1 +SPEAKER 00982 0 32.300550 7.388890 1 +SPEAKER 00982 0 40.096840 1.482970 1 +SPEAKER 00982 0 49.804000 0.541000 1 +SPEAKER 00982 0 51.113880 4.077040 1 +SPEAKER 00982 0 55.484250 1.334810 1 +SPEAKER 00982 0 57.189440 2.796290 1 +SPEAKER 00982 0 15.175000 0.366000 0 +SPEAKER 00982 0 31.694000 0.480000 0 +SPEAKER 00982 0 41.764000 9.404000 0 +SPEAKER 00982 0 59.836000 2.711210 0 +SPEAKER 00982 0 62.911660 15.629630 0 +SPEAKER 00982 0 78.859060 1.109630 0 +SPEAKER 00982 0 80.224990 0.779260 0 +SPEAKER 00982 0 81.282000 0.938550 0 +SPEAKER 00982 0 82.561290 2.609630 0 +SPEAKER 00982 0 85.488690 5.299260 0 diff --git a/rttm/few/00991.rttm b/rttm/few/00991.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4168ffccc963b67ee4ac7cf7bedec5e27f90c3d1 --- /dev/null +++ b/rttm/few/00991.rttm @@ -0,0 +1,17 @@ +SPEAKER 00991 0 0.597000 0.704000 0 +SPEAKER 00991 0 1.967210 1.203710 0 +SPEAKER 00991 0 4.300550 0.870370 0 +SPEAKER 00991 0 5.689000 12.796730 0 +SPEAKER 00991 0 19.393000 1.000000 0 +SPEAKER 00991 0 22.634000 2.944000 0 +SPEAKER 00991 0 26.152000 1.099000 0 +SPEAKER 00991 0 0.041000 3.815000 1 +SPEAKER 00991 0 4.856000 1.833000 1 +SPEAKER 00991 0 18.689000 1.370810 1 +SPEAKER 00991 0 23.059000 0.797000 1 +SPEAKER 00991 0 3.319000 1.722000 2 +SPEAKER 00991 0 10.893000 2.204000 2 +SPEAKER 00991 0 20.319000 2.166730 2 +SPEAKER 00991 0 25.041000 1.526040 2 +SPEAKER 00991 0 23.648000 0.597000 3 +SPEAKER 00991 0 25.356000 1.882000 3 diff --git a/rttm/few/00994.rttm b/rttm/few/00994.rttm new file mode 100644 index 0000000000000000000000000000000000000000..953a7978572e21c93d55b1579c75a315d78e986d --- /dev/null +++ b/rttm/few/00994.rttm @@ -0,0 +1,41 @@ +SPEAKER 00994 0 0.250000 1.200000 0 +SPEAKER 00994 0 2.340000 2.571660 0 +SPEAKER 00994 0 5.917000 0.877620 0 +SPEAKER 00994 0 13.500000 4.740550 0 +SPEAKER 00994 0 19.683000 1.407000 0 +SPEAKER 00994 0 45.827000 5.403920 0 +SPEAKER 00994 0 62.317000 0.566000 0 +SPEAKER 00994 0 66.207950 1.722230 0 +SPEAKER 00994 0 68.224990 5.538520 0 +SPEAKER 00994 0 74.063000 2.719030 0 +SPEAKER 00994 0 77.078320 5.629630 0 +SPEAKER 00994 0 88.322030 4.071110 0 +SPEAKER 00994 0 97.967000 2.763920 0 +SPEAKER 00994 0 100.982000 1.302990 0 +SPEAKER 00994 0 111.900000 0.783000 0 +SPEAKER 00994 0 113.910000 5.229810 0 +SPEAKER 00994 0 1.443510 0.723490 1 +SPEAKER 00994 0 5.195000 0.676660 1 +SPEAKER 00994 0 6.550000 7.065360 1 +SPEAKER 00994 0 15.407000 5.356510 1 +SPEAKER 00994 0 21.383000 5.994580 1 +SPEAKER 00994 0 27.839000 6.887470 1 +SPEAKER 00994 0 35.030180 2.140740 1 +SPEAKER 00994 0 37.763510 3.444440 1 +SPEAKER 00994 0 41.605730 3.917040 1 +SPEAKER 00994 0 51.150000 6.212030 1 +SPEAKER 00994 0 61.342030 1.091110 1 +SPEAKER 00994 0 63.297000 3.410000 1 +SPEAKER 00994 0 81.706470 4.649630 1 +SPEAKER 00994 0 86.670920 2.391850 1 +SPEAKER 00994 0 90.250000 0.643000 1 +SPEAKER 00994 0 92.421000 1.010660 1 +SPEAKER 00994 0 93.726470 4.040000 1 +SPEAKER 00994 0 101.190000 4.962400 1 +SPEAKER 00994 0 106.424000 0.783950 1 +SPEAKER 00994 0 107.465000 2.463690 1 +SPEAKER 00994 0 110.410180 1.371850 1 +SPEAKER 00994 0 112.683000 1.117550 1 +SPEAKER 00994 0 119.100000 3.489440 1 +SPEAKER 00994 0 122.937000 1.919100 1 +SPEAKER 00994 0 125.115360 5.354820 1 diff --git a/rttm/few/00995.rttm b/rttm/few/00995.rttm new file mode 100644 index 0000000000000000000000000000000000000000..0a9598104cae9d51eefcd27c739890820c797d1e --- /dev/null +++ b/rttm/few/00995.rttm @@ -0,0 +1,20 @@ +SPEAKER 00995 0 0.396000 1.785000 1 +SPEAKER 00995 0 3.116840 7.517160 1 +SPEAKER 00995 0 14.260000 1.404000 1 +SPEAKER 00995 0 24.823510 2.606490 1 +SPEAKER 00995 0 28.422030 1.247970 1 +SPEAKER 00995 0 34.101000 4.280290 1 +SPEAKER 00995 0 48.247950 1.266050 1 +SPEAKER 00995 0 51.615360 2.065640 1 +SPEAKER 00995 0 57.638320 1.378680 1 +SPEAKER 00995 0 72.912000 0.610770 1 +SPEAKER 00995 0 2.227950 1.018050 0 +SPEAKER 00995 0 4.596840 0.678160 0 +SPEAKER 00995 0 9.244990 4.888890 0 +SPEAKER 00995 0 16.615360 8.240640 0 +SPEAKER 00995 0 26.356100 4.999900 0 +SPEAKER 00995 0 34.260000 1.075000 0 +SPEAKER 00995 0 40.189000 16.500440 0 +SPEAKER 00995 0 59.174000 11.948030 0 +SPEAKER 00995 0 72.189000 0.541000 0 +SPEAKER 00995 0 32.155360 1.811640 h0 diff --git a/rttm/few/00996.rttm b/rttm/few/00996.rttm new file mode 100644 index 0000000000000000000000000000000000000000..fbf89669fe05882de489ff551e4cc8db5f66939c --- /dev/null +++ b/rttm/few/00996.rttm @@ -0,0 +1,25 @@ +SPEAKER 00996 0 0.003000 0.816000 0 +SPEAKER 00996 0 1.284990 2.108150 0 +SPEAKER 00996 0 8.115360 1.548150 0 +SPEAKER 00996 0 9.986000 1.815000 0 +SPEAKER 00996 0 13.689440 1.163700 0 +SPEAKER 00996 0 28.986000 0.740000 0 +SPEAKER 00996 0 30.433000 1.868000 0 +SPEAKER 00996 0 34.054000 2.601000 0 +SPEAKER 00996 0 0.800550 1.000450 2 +SPEAKER 00996 0 2.559810 1.111110 2 +SPEAKER 00996 0 3.930000 2.926100 2 +SPEAKER 00996 0 8.888000 1.332000 2 +SPEAKER 00996 0 11.981000 1.523000 2 +SPEAKER 00996 0 14.985730 3.574270 2 +SPEAKER 00996 0 18.875000 3.018140 2 +SPEAKER 00996 0 22.152000 5.391000 2 +SPEAKER 00996 0 28.264000 0.860000 2 +SPEAKER 00996 0 0.670920 1.142080 1 +SPEAKER 00996 0 2.764000 0.869880 1 +SPEAKER 00996 0 7.356000 2.056000 1 +SPEAKER 00996 0 10.504250 1.804750 1 +SPEAKER 00996 0 13.578000 1.619000 1 +SPEAKER 00996 0 27.990000 0.977210 1 +SPEAKER 00996 0 31.634000 0.560000 1 +SPEAKER 00996 0 33.282030 1.635550 1 diff --git a/rttm/few/01002.rttm b/rttm/few/01002.rttm new file mode 100644 index 0000000000000000000000000000000000000000..bda27a256ca88943b288b4740978da07f616a2d5 --- /dev/null +++ b/rttm/few/01002.rttm @@ -0,0 +1,8 @@ +SPEAKER 01002 0 0.034000 3.822000 0 +SPEAKER 01002 0 5.023000 0.703000 0 +SPEAKER 01002 0 8.467000 8.222440 0 +SPEAKER 01002 0 19.093880 1.450370 0 +SPEAKER 01002 0 23.868000 1.636000 0 +SPEAKER 01002 0 2.362000 2.587000 1 +SPEAKER 01002 0 5.726000 4.167000 1 +SPEAKER 01002 0 15.782030 12.110970 1 diff --git a/rttm/few/01009.rttm b/rttm/few/01009.rttm new file mode 100644 index 0000000000000000000000000000000000000000..eb9f9baa50453eb4ff57da8870f1cf9953ebc9b7 --- /dev/null +++ b/rttm/few/01009.rttm @@ -0,0 +1,15 @@ +SPEAKER 01009 0 0.010000 2.195000 h0 +SPEAKER 01009 0 39.044000 2.941000 h0 +SPEAKER 01009 0 43.256000 1.119000 h0 +SPEAKER 01009 0 45.338000 1.053000 h0 +SPEAKER 01009 0 2.263510 0.492490 1 +SPEAKER 01009 0 4.138000 1.415000 1 +SPEAKER 01009 0 43.756000 2.060000 1 +SPEAKER 01009 0 2.561000 3.144000 0 +SPEAKER 01009 0 6.061000 3.738000 0 +SPEAKER 01009 0 10.180000 10.068000 0 +SPEAKER 01009 0 20.756000 6.814000 0 +SPEAKER 01009 0 28.180000 5.424000 0 +SPEAKER 01009 0 34.171000 5.161000 0 +SPEAKER 01009 0 41.443000 3.093000 0 +SPEAKER 01009 0 45.485000 0.975000 2 diff --git a/rttm/few/01019.rttm b/rttm/few/01019.rttm new file mode 100644 index 0000000000000000000000000000000000000000..d9f2def4343577e162296e325d4f249af5f7484d --- /dev/null +++ b/rttm/few/01019.rttm @@ -0,0 +1,33 @@ +SPEAKER 01019 0 0.101290 0.680710 0 +SPEAKER 01019 0 7.819000 2.388950 0 +SPEAKER 01019 0 12.726000 1.241210 0 +SPEAKER 01019 0 15.923070 1.981930 0 +SPEAKER 01019 0 21.320550 0.908450 0 +SPEAKER 01019 0 25.096050 2.343760 0 +SPEAKER 01019 0 31.533000 0.700000 0 +SPEAKER 01019 0 33.037100 4.004190 0 +SPEAKER 01019 0 39.645000 6.391050 0 +SPEAKER 01019 0 52.244990 2.685190 0 +SPEAKER 01019 0 61.578320 1.740740 0 +SPEAKER 01019 0 0.000000 3.708000 2 +SPEAKER 01019 0 4.625000 1.980000 2 +SPEAKER 01019 0 7.165000 0.880000 2 +SPEAKER 01019 0 8.885000 0.841470 2 +SPEAKER 01019 0 10.285000 1.646840 2 +SPEAKER 01019 0 13.965000 1.060000 2 +SPEAKER 01019 0 16.105000 5.695550 2 +SPEAKER 01019 0 22.170920 3.103700 2 +SPEAKER 01019 0 27.265000 2.196290 2 +SPEAKER 01019 0 30.445000 0.553000 2 +SPEAKER 01019 0 31.911660 2.944440 2 +SPEAKER 01019 0 36.993240 0.379760 2 +SPEAKER 01019 0 50.334000 2.377660 2 +SPEAKER 01019 0 54.809000 10.361920 2 +SPEAKER 01019 0 78.415000 3.755000 2 +SPEAKER 01019 0 9.282710 0.943290 1 +SPEAKER 01019 0 14.578320 1.950010 1 +SPEAKER 01019 0 24.387980 2.683020 1 +SPEAKER 01019 0 37.505000 3.320000 1 +SPEAKER 01019 0 47.745000 2.481470 1 +SPEAKER 01019 0 65.339060 9.780750 1 +SPEAKER 01019 0 75.596840 2.611110 1 diff --git a/rttm/few/01031.rttm b/rttm/few/01031.rttm new file mode 100644 index 0000000000000000000000000000000000000000..6dd9adb917e08aa92aa1d4ba491a6b37842f40a0 --- /dev/null +++ b/rttm/few/01031.rttm @@ -0,0 +1,8 @@ +SPEAKER 01031 0 0.708000 2.833290 0 +SPEAKER 01031 0 4.134590 3.777410 0 +SPEAKER 01031 0 8.744000 7.911400 0 +SPEAKER 01031 0 22.422000 1.386460 0 +SPEAKER 01031 0 24.578000 1.019000 0 +SPEAKER 01031 0 3.301000 0.814000 1 +SPEAKER 01031 0 7.928000 0.613000 1 +SPEAKER 01031 0 16.764000 7.615890 1 diff --git a/rttm/few/01032.rttm b/rttm/few/01032.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4929ae00ea93888dd98cb954d965c96a5318cec0 --- /dev/null +++ b/rttm/few/01032.rttm @@ -0,0 +1,4 @@ +SPEAKER 01032 0 0.004000 7.017860 1 +SPEAKER 01032 0 7.315980 12.643020 1 +SPEAKER 01032 0 14.928000 0.364000 0 +SPEAKER 01032 0 20.231000 1.940000 0 diff --git a/rttm/few/01034.rttm b/rttm/few/01034.rttm new file mode 100644 index 0000000000000000000000000000000000000000..0c15cd7f573fa1840a47fdfef891f1f1bf9e4a62 --- /dev/null +++ b/rttm/few/01034.rttm @@ -0,0 +1,27 @@ +SPEAKER 01034 0 0.041000 1.334000 2 +SPEAKER 01034 0 7.188000 2.194770 2 +SPEAKER 01034 0 27.966000 1.427140 2 +SPEAKER 01034 0 0.078320 0.647680 1 +SPEAKER 01034 0 5.140000 0.522000 1 +SPEAKER 01034 0 6.615000 0.704000 1 +SPEAKER 01034 0 22.523000 0.872000 1 +SPEAKER 01034 0 0.763510 0.481490 0 +SPEAKER 01034 0 14.375000 0.673690 0 +SPEAKER 01034 0 15.481000 2.674360 0 +SPEAKER 01034 0 18.498000 0.413660 0 +SPEAKER 01034 0 19.597000 0.592440 0 +SPEAKER 01034 0 20.597000 0.518360 0 +SPEAKER 01034 0 21.560000 1.000000 0 +SPEAKER 01034 0 23.244990 0.425930 0 +SPEAKER 01034 0 24.046000 3.624920 0 +SPEAKER 01034 0 29.442000 2.544000 0 +SPEAKER 01034 0 2.152000 1.463360 3 +SPEAKER 01034 0 5.097000 1.093000 3 +SPEAKER 01034 0 7.356000 0.371000 3 +SPEAKER 01034 0 11.682030 1.433330 3 +SPEAKER 01034 0 13.523000 0.721990 3 +SPEAKER 01034 0 15.523000 0.481000 3 +SPEAKER 01034 0 18.948690 2.944450 3 +SPEAKER 01034 0 27.430000 0.500180 3 +SPEAKER 01034 0 29.856100 0.648150 3 +SPEAKER 01034 0 31.967000 2.759000 3 diff --git a/rttm/few/01070.rttm b/rttm/few/01070.rttm new file mode 100644 index 0000000000000000000000000000000000000000..6547e92e9369fd491389fdf7df33141d2ad3e15a --- /dev/null +++ b/rttm/few/01070.rttm @@ -0,0 +1,6 @@ +SPEAKER 01070 0 0.034000 7.680000 0 +SPEAKER 01070 0 8.310000 0.335410 0 +SPEAKER 01070 0 10.550000 11.848090 0 +SPEAKER 01070 0 23.315000 6.155440 0 +SPEAKER 01070 0 7.676000 0.677000 1 +SPEAKER 01070 0 8.827000 1.859000 1 diff --git a/rttm/few/01086.rttm b/rttm/few/01086.rttm new file mode 100644 index 0000000000000000000000000000000000000000..20436ffebda61ae4c58f4c33c823778c9704af22 --- /dev/null +++ b/rttm/few/01086.rttm @@ -0,0 +1,20 @@ +SPEAKER 01086 0 0.337580 3.543270 1 +SPEAKER 01086 0 4.271000 5.280580 1 +SPEAKER 01086 0 10.671000 3.630000 1 +SPEAKER 01086 0 22.478410 3.525590 1 +SPEAKER 01086 0 31.948690 6.005330 1 +SPEAKER 01086 0 38.954000 1.097580 1 +SPEAKER 01086 0 49.689440 2.370370 1 +SPEAKER 01086 0 55.588000 0.545880 1 +SPEAKER 01086 0 6.800550 0.407450 0 +SPEAKER 01086 0 9.589000 1.119000 0 +SPEAKER 01086 0 13.837580 1.629630 0 +SPEAKER 01086 0 15.948690 6.111120 0 +SPEAKER 01086 0 25.967210 3.574080 0 +SPEAKER 01086 0 30.243000 0.409400 0 +SPEAKER 01086 0 31.059810 0.851850 0 +SPEAKER 01086 0 40.380000 2.598410 0 +SPEAKER 01086 0 43.405240 3.295210 0 +SPEAKER 01086 0 47.504000 1.648400 0 +SPEAKER 01086 0 52.504250 3.129630 0 +SPEAKER 01086 0 56.510000 6.599540 0 diff --git a/rttm/few/01087.rttm b/rttm/few/01087.rttm new file mode 100644 index 0000000000000000000000000000000000000000..2891ad5d3f0a3776603c2ad804206e59a10dfb39 --- /dev/null +++ b/rttm/few/01087.rttm @@ -0,0 +1,73 @@ +SPEAKER 01087 0 3.282000 1.407000 2 +SPEAKER 01087 0 10.448690 3.926310 2 +SPEAKER 01087 0 19.819000 0.660000 2 +SPEAKER 01087 0 23.023000 1.167000 2 +SPEAKER 01087 0 26.004250 2.462750 2 +SPEAKER 01087 0 29.208000 0.981440 2 +SPEAKER 01087 0 34.578000 1.167000 2 +SPEAKER 01087 0 38.282000 0.684000 2 +SPEAKER 01087 0 40.300550 0.907450 2 +SPEAKER 01087 0 45.875000 1.499620 2 +SPEAKER 01087 0 50.282030 1.685180 2 +SPEAKER 01087 0 57.356000 0.703810 2 +SPEAKER 01087 0 63.059810 1.666190 2 +SPEAKER 01087 0 73.078000 1.593000 2 +SPEAKER 01087 0 75.801000 1.240000 2 +SPEAKER 01087 0 82.282000 0.907000 2 +SPEAKER 01087 0 83.541290 0.962710 2 +SPEAKER 01087 0 84.856000 1.404000 2 +SPEAKER 01087 0 90.893000 0.963000 2 +SPEAKER 01087 0 96.930000 0.982000 2 +SPEAKER 01087 0 110.726000 4.989600 2 +SPEAKER 01087 0 124.165000 1.000000 2 +SPEAKER 01087 0 131.509000 0.812660 2 +SPEAKER 01087 0 133.993000 4.419570 2 +SPEAKER 01087 0 3.282000 1.407000 0 +SPEAKER 01087 0 5.486000 1.666000 0 +SPEAKER 01087 0 8.319000 1.074000 0 +SPEAKER 01087 0 9.856000 0.685290 0 +SPEAKER 01087 0 13.559810 4.444190 0 +SPEAKER 01087 0 21.431000 0.758000 0 +SPEAKER 01087 0 23.041000 0.908000 0 +SPEAKER 01087 0 25.412000 0.777440 0 +SPEAKER 01087 0 30.004000 1.685000 0 +SPEAKER 01087 0 41.022770 1.741230 0 +SPEAKER 01087 0 47.226000 1.167000 0 +SPEAKER 01087 0 48.782000 1.111000 0 +SPEAKER 01087 0 59.374620 1.500380 0 +SPEAKER 01087 0 63.819000 1.000000 0 +SPEAKER 01087 0 74.041000 1.681000 0 +SPEAKER 01087 0 77.559810 0.666660 0 +SPEAKER 01087 0 79.838000 2.536620 0 +SPEAKER 01087 0 86.189440 1.148140 0 +SPEAKER 01087 0 93.170920 0.963080 0 +SPEAKER 01087 0 96.124690 0.935310 0 +SPEAKER 01087 0 98.375000 3.598170 0 +SPEAKER 01087 0 102.579000 1.000000 0 +SPEAKER 01087 0 106.961000 0.834000 0 +SPEAKER 01087 0 117.319000 1.333000 0 +SPEAKER 01087 0 119.541000 0.741000 0 +SPEAKER 01087 0 125.367110 1.484850 0 +SPEAKER 01087 0 133.190000 5.237720 0 +SPEAKER 01087 0 23.900000 1.585730 1 +SPEAKER 01087 0 29.596840 1.481480 1 +SPEAKER 01087 0 37.282030 2.351850 1 +SPEAKER 01087 0 40.985730 3.685190 1 +SPEAKER 01087 0 44.985730 0.870370 1 +SPEAKER 01087 0 47.948690 2.296300 1 +SPEAKER 01087 0 53.059810 1.889190 1 +SPEAKER 01087 0 58.244990 1.092590 1 +SPEAKER 01087 0 60.300000 1.352400 1 +SPEAKER 01087 0 63.985730 4.703270 1 +SPEAKER 01087 0 70.763510 1.740490 1 +SPEAKER 01087 0 75.856000 1.222000 1 +SPEAKER 01087 0 86.578000 1.871000 1 +SPEAKER 01087 0 94.064080 1.878790 1 +SPEAKER 01087 0 98.430000 3.088630 1 +SPEAKER 01087 0 104.397420 0.666660 1 +SPEAKER 01087 0 105.488330 1.196970 1 +SPEAKER 01087 0 108.223000 0.841080 1 +SPEAKER 01087 0 118.632000 0.659360 1 +SPEAKER 01087 0 120.003480 2.333330 1 +SPEAKER 01087 0 131.124690 4.363640 1 +SPEAKER 01087 0 137.351960 1.282040 1 diff --git a/rttm/few/01092.rttm b/rttm/few/01092.rttm new file mode 100644 index 0000000000000000000000000000000000000000..e11bb935388f971e8c1ff1e263de6c21a2683e37 --- /dev/null +++ b/rttm/few/01092.rttm @@ -0,0 +1,23 @@ +SPEAKER 01092 0 0.002000 0.806000 0 +SPEAKER 01092 0 1.949000 3.253000 0 +SPEAKER 01092 0 5.708000 0.667000 0 +SPEAKER 01092 0 6.649000 2.573000 0 +SPEAKER 01092 0 9.721000 2.494000 0 +SPEAKER 01092 0 12.995000 1.413000 0 +SPEAKER 01092 0 14.902000 0.846000 0 +SPEAKER 01092 0 17.654000 0.674000 0 +SPEAKER 01092 0 18.842000 0.899000 0 +SPEAKER 01092 0 21.060000 0.426000 0 +SPEAKER 01092 0 28.191250 0.395830 0 +SPEAKER 01092 0 36.471000 1.654000 0 +SPEAKER 01092 0 0.993000 0.749000 1 +SPEAKER 01092 0 5.382000 0.171950 1 +SPEAKER 01092 0 12.486000 1.349000 1 +SPEAKER 01092 0 14.642000 0.366000 1 +SPEAKER 01092 0 15.902000 1.476000 1 +SPEAKER 01092 0 18.400000 0.964000 1 +SPEAKER 01092 0 19.991000 2.003000 1 +SPEAKER 01092 0 22.393000 7.152420 1 +SPEAKER 01092 0 29.925000 2.877000 1 +SPEAKER 01092 0 33.319000 2.960000 1 +SPEAKER 01092 0 38.125000 3.269000 1 diff --git a/rttm/few/01124.rttm b/rttm/few/01124.rttm new file mode 100644 index 0000000000000000000000000000000000000000..15a01eafbb6eaad1be9a034ca7c091770efd6857 --- /dev/null +++ b/rttm/few/01124.rttm @@ -0,0 +1,62 @@ +SPEAKER 01124 0 0.023000 0.759000 0 +SPEAKER 01124 0 1.119000 0.674370 0 +SPEAKER 01124 0 2.165460 5.093020 0 +SPEAKER 01124 0 8.011000 1.267000 0 +SPEAKER 01124 0 9.607000 0.884040 0 +SPEAKER 01124 0 12.726000 0.776670 0 +SPEAKER 01124 0 14.416000 1.222000 0 +SPEAKER 01124 0 16.067040 3.640910 0 +SPEAKER 01124 0 20.078000 4.622640 0 +SPEAKER 01124 0 25.092000 2.760820 0 +SPEAKER 01124 0 28.266000 3.565080 0 +SPEAKER 01124 0 32.092000 1.108640 0 +SPEAKER 01124 0 34.430000 0.835860 0 +SPEAKER 01124 0 36.309340 0.731660 0 +SPEAKER 01124 0 38.541000 1.667000 0 +SPEAKER 01124 0 41.049000 0.585000 0 +SPEAKER 01124 0 42.856000 1.278000 0 +SPEAKER 01124 0 45.190000 0.388000 0 +SPEAKER 01124 0 46.004000 1.000000 0 +SPEAKER 01124 0 47.432000 0.458000 0 +SPEAKER 01124 0 48.757000 0.531060 0 +SPEAKER 01124 0 49.869690 4.693880 0 +SPEAKER 01124 0 55.488000 1.983730 0 +SPEAKER 01124 0 58.689000 1.231710 0 +SPEAKER 01124 0 61.784000 0.606100 0 +SPEAKER 01124 0 62.885000 1.545910 0 +SPEAKER 01124 0 65.165610 1.530610 0 +SPEAKER 01124 0 67.767000 2.840000 0 +SPEAKER 01124 0 74.063570 0.530610 0 +SPEAKER 01124 0 76.591000 0.422000 0 +SPEAKER 01124 0 79.074000 0.520180 0 +SPEAKER 01124 0 80.165610 2.224390 0 +SPEAKER 01124 0 83.782000 3.312180 0 +SPEAKER 01124 0 1.541000 0.473300 2 +SPEAKER 01124 0 8.051000 0.563590 2 +SPEAKER 01124 0 40.208000 2.648000 2 +SPEAKER 01124 0 45.439770 0.527230 2 +SPEAKER 01124 0 54.301000 1.000000 2 +SPEAKER 01124 0 60.948000 0.625770 2 +SPEAKER 01124 0 62.430000 0.409080 2 +SPEAKER 01124 0 64.696220 0.357140 2 +SPEAKER 01124 0 66.967000 0.834000 2 +SPEAKER 01124 0 11.215000 0.789000 1 +SPEAKER 01124 0 13.235230 1.009770 1 +SPEAKER 01124 0 15.084060 1.058140 1 +SPEAKER 01124 0 18.495000 0.435180 1 +SPEAKER 01124 0 23.207950 0.425930 1 +SPEAKER 01124 0 24.393000 0.704000 1 +SPEAKER 01124 0 30.765860 0.543480 1 +SPEAKER 01124 0 33.395000 1.000000 1 +SPEAKER 01124 0 35.097000 3.278000 1 +SPEAKER 01124 0 44.352820 0.927180 1 +SPEAKER 01124 0 46.468000 1.000000 1 +SPEAKER 01124 0 47.884000 0.791810 1 +SPEAKER 01124 0 55.022000 0.556000 1 +SPEAKER 01124 0 57.288060 1.123940 1 +SPEAKER 01124 0 60.110000 0.433000 1 +SPEAKER 01124 0 70.716630 3.398370 1 +SPEAKER 01124 0 74.675810 1.884190 1 +SPEAKER 01124 0 77.264000 1.340380 1 +SPEAKER 01124 0 81.094180 0.446820 1 +SPEAKER 01124 0 82.512550 0.399450 1 diff --git a/rttm/few/01136.rttm b/rttm/few/01136.rttm new file mode 100644 index 0000000000000000000000000000000000000000..6a30ef6335329613efa1f506ea3be85e162d894c --- /dev/null +++ b/rttm/few/01136.rttm @@ -0,0 +1,19 @@ +SPEAKER 01136 0 0.004000 6.362030 0 +SPEAKER 01136 0 6.714000 18.233930 0 +SPEAKER 01136 0 25.532000 5.021080 0 +SPEAKER 01136 0 30.910000 7.750420 0 +SPEAKER 01136 0 39.232000 2.242710 0 +SPEAKER 01136 0 42.232000 4.614140 0 +SPEAKER 01136 0 53.896000 0.431000 0 +SPEAKER 01136 0 57.986000 0.607000 0 +SPEAKER 01136 0 62.689000 0.574510 0 +SPEAKER 01136 0 0.201000 0.418000 1 +SPEAKER 01136 0 6.881000 0.529000 1 +SPEAKER 01136 0 26.819000 0.611000 1 +SPEAKER 01136 0 37.460420 0.914290 1 +SPEAKER 01136 0 43.617000 2.414850 1 +SPEAKER 01136 0 47.555000 0.481160 1 +SPEAKER 01136 0 48.617560 5.354170 1 +SPEAKER 01136 0 54.431000 3.863020 1 +SPEAKER 01136 0 58.826000 2.141210 1 +SPEAKER 01136 0 61.356000 2.333440 1 diff --git a/rttm/few/01137.rttm b/rttm/few/01137.rttm new file mode 100644 index 0000000000000000000000000000000000000000..9ae5450e7984a8fd3b408e856c7b782d0496fcc9 --- /dev/null +++ b/rttm/few/01137.rttm @@ -0,0 +1,39 @@ +SPEAKER 01137 0 0.004000 3.019000 0 +SPEAKER 01137 0 5.887000 1.709000 0 +SPEAKER 01137 0 10.541000 1.389000 0 +SPEAKER 01137 0 15.615000 0.407770 0 +SPEAKER 01137 0 25.786000 1.000000 0 +SPEAKER 01137 0 27.319000 3.926000 0 +SPEAKER 01137 0 34.689000 3.000000 0 +SPEAKER 01137 0 38.504000 12.871000 0 +SPEAKER 01137 0 52.801000 1.219000 0 +SPEAKER 01137 0 59.949000 4.944140 0 +SPEAKER 01137 0 67.967000 3.648000 0 +SPEAKER 01137 0 79.319000 2.445000 0 +SPEAKER 01137 0 84.412000 1.852000 0 +SPEAKER 01137 0 86.838000 0.715000 0 +SPEAKER 01137 0 1.264000 1.166000 1 +SPEAKER 01137 0 3.059810 3.148190 1 +SPEAKER 01137 0 12.263510 2.722220 1 +SPEAKER 01137 0 24.541290 1.555710 1 +SPEAKER 01137 0 27.282000 1.463000 1 +SPEAKER 01137 0 39.875000 1.185000 1 +SPEAKER 01137 0 53.930000 6.370550 1 +SPEAKER 01137 0 64.819000 2.222000 1 +SPEAKER 01137 0 71.578000 8.408000 1 +SPEAKER 01137 0 82.041290 0.574070 1 +SPEAKER 01137 0 83.652000 1.834000 1 +SPEAKER 01137 0 86.245000 1.281000 1 +SPEAKER 01137 0 6.356100 4.296900 2 +SPEAKER 01137 0 11.782000 2.444000 2 +SPEAKER 01137 0 14.912000 0.963000 2 +SPEAKER 01137 0 16.523000 8.073840 2 +SPEAKER 01137 0 25.986000 0.388620 2 +SPEAKER 01137 0 31.301000 3.037000 2 +SPEAKER 01137 0 37.699000 0.990000 2 +SPEAKER 01137 0 39.949000 1.296000 2 +SPEAKER 01137 0 42.578000 0.611440 2 +SPEAKER 01137 0 51.393000 1.333470 2 +SPEAKER 01137 0 65.152400 2.951600 2 +SPEAKER 01137 0 71.637000 0.941000 2 +SPEAKER 01137 0 83.356100 0.907410 2 diff --git a/rttm/few/01152.rttm b/rttm/few/01152.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ab23468b20825d671a9f3f18da15c9656fcc2e42 --- /dev/null +++ b/rttm/few/01152.rttm @@ -0,0 +1,21 @@ +SPEAKER 01152 0 0.000000 7.300550 1 +SPEAKER 01152 0 7.671000 0.788000 1 +SPEAKER 01152 0 10.513660 1.377780 1 +SPEAKER 01152 0 13.977000 2.557000 1 +SPEAKER 01152 0 18.490000 4.545880 1 +SPEAKER 01152 0 27.891440 2.461560 1 +SPEAKER 01152 0 32.014000 0.655220 1 +SPEAKER 01152 0 35.072000 0.493000 1 +SPEAKER 01152 0 36.868000 2.621000 1 +SPEAKER 01152 0 0.004000 0.530000 0 +SPEAKER 01152 0 6.761000 3.687690 0 +SPEAKER 01152 0 13.025000 1.959000 0 +SPEAKER 01152 0 15.523000 3.203470 0 +SPEAKER 01152 0 20.428000 0.713000 0 +SPEAKER 01152 0 23.502000 1.722770 0 +SPEAKER 01152 0 25.958110 2.066660 0 +SPEAKER 01152 0 29.228000 0.774550 0 +SPEAKER 01152 0 30.258110 1.733330 0 +SPEAKER 01152 0 32.595000 1.000000 0 +SPEAKER 01152 0 34.136000 2.959000 0 +SPEAKER 01152 0 39.624770 1.485230 0 diff --git a/rttm/few/01157.rttm b/rttm/few/01157.rttm new file mode 100644 index 0000000000000000000000000000000000000000..5bb7c3bda3cdaff6f1d51e1c61a547b2f49e1647 --- /dev/null +++ b/rttm/few/01157.rttm @@ -0,0 +1,148 @@ +SPEAKER 01157 0 0.000000 4.004000 1 +SPEAKER 01157 0 9.912000 0.518000 1 +SPEAKER 01157 0 13.393140 0.722220 1 +SPEAKER 01157 0 15.986000 1.000000 1 +SPEAKER 01157 0 19.967000 0.611000 1 +SPEAKER 01157 0 24.449000 2.463000 1 +SPEAKER 01157 0 28.417000 0.439000 1 +SPEAKER 01157 0 33.819000 2.685000 1 +SPEAKER 01157 0 37.674000 1.390000 1 +SPEAKER 01157 0 40.022000 2.464000 1 +SPEAKER 01157 0 46.702000 0.395000 1 +SPEAKER 01157 0 51.986000 1.296030 1 +SPEAKER 01157 0 53.981000 1.651000 1 +SPEAKER 01157 0 56.338000 3.518000 1 +SPEAKER 01157 0 60.634000 2.796000 1 +SPEAKER 01157 0 64.764000 2.518000 1 +SPEAKER 01157 0 68.025000 2.350000 1 +SPEAKER 01157 0 70.801000 0.388000 1 +SPEAKER 01157 0 71.725000 0.724000 1 +SPEAKER 01157 0 72.986000 0.778000 1 +SPEAKER 01157 0 76.115000 0.518880 1 +SPEAKER 01157 0 77.652000 2.204000 1 +SPEAKER 01157 0 81.853000 1.188290 1 +SPEAKER 01157 0 84.652000 2.667000 1 +SPEAKER 01157 0 96.248000 1.759000 1 +SPEAKER 01157 0 98.356000 1.111000 1 +SPEAKER 01157 0 103.708000 0.556000 1 +SPEAKER 01157 0 105.115000 0.949000 1 +SPEAKER 01157 0 112.687000 0.854000 1 +SPEAKER 01157 0 120.208000 1.944000 1 +SPEAKER 01157 0 123.745000 1.019000 1 +SPEAKER 01157 0 126.064000 0.685000 1 +SPEAKER 01157 0 129.572000 0.381000 1 +SPEAKER 01157 0 131.041000 0.685000 1 +SPEAKER 01157 0 132.093000 0.374000 1 +SPEAKER 01157 0 132.782000 0.467000 1 +SPEAKER 01157 0 136.939000 0.871150 1 +SPEAKER 01157 0 138.681120 2.582880 1 +SPEAKER 01157 0 141.819000 1.000000 1 +SPEAKER 01157 0 143.375000 1.000000 1 +SPEAKER 01157 0 145.838000 0.426000 1 +SPEAKER 01157 0 146.986000 2.018000 1 +SPEAKER 01157 0 149.933000 0.368000 1 +SPEAKER 01157 0 151.265000 0.999000 1 +SPEAKER 01157 0 153.634000 0.450350 1 +SPEAKER 01157 0 159.794020 2.061980 1 +SPEAKER 01157 0 163.800000 0.389000 1 +SPEAKER 01157 0 165.931850 1.387150 1 +SPEAKER 01157 0 168.767000 0.385000 1 +SPEAKER 01157 0 171.819000 0.537000 1 +SPEAKER 01157 0 173.616000 0.407000 1 +SPEAKER 01157 0 176.498000 0.562000 1 +SPEAKER 01157 0 178.069000 0.389000 1 +SPEAKER 01157 0 180.523000 0.407000 1 +SPEAKER 01157 0 4.597000 2.463000 3 +SPEAKER 01157 0 8.300550 1.537450 3 +SPEAKER 01157 0 12.806000 0.920000 3 +SPEAKER 01157 0 20.006000 4.239000 3 +SPEAKER 01157 0 26.986000 1.000000 3 +SPEAKER 01157 0 28.467000 0.500000 3 +SPEAKER 01157 0 29.560000 1.037000 3 +SPEAKER 01157 0 32.911660 0.833340 3 +SPEAKER 01157 0 36.412000 1.222000 3 +SPEAKER 01157 0 39.342000 0.533000 3 +SPEAKER 01157 0 40.226000 1.179000 3 +SPEAKER 01157 0 41.671000 1.000000 3 +SPEAKER 01157 0 59.935000 0.310000 3 +SPEAKER 01157 0 63.671000 1.648000 3 +SPEAKER 01157 0 67.200000 1.193140 3 +SPEAKER 01157 0 70.629000 2.320000 3 +SPEAKER 01157 0 73.338000 0.296000 3 +SPEAKER 01157 0 82.809000 0.899000 3 +SPEAKER 01157 0 87.632730 0.726270 3 +SPEAKER 01157 0 95.264000 1.000000 3 +SPEAKER 01157 0 97.930000 0.482000 3 +SPEAKER 01157 0 99.745000 1.648000 3 +SPEAKER 01157 0 102.411000 1.000000 3 +SPEAKER 01157 0 104.264000 0.629000 3 +SPEAKER 01157 0 106.956000 2.437000 3 +SPEAKER 01157 0 109.726000 1.130000 3 +SPEAKER 01157 0 114.295000 1.987000 3 +SPEAKER 01157 0 116.605000 1.214000 3 +SPEAKER 01157 0 118.352000 2.454000 3 +SPEAKER 01157 0 122.025000 1.609000 3 +SPEAKER 01157 0 124.208000 1.296000 3 +SPEAKER 01157 0 126.458000 2.750000 3 +SPEAKER 01157 0 129.856000 1.000000 3 +SPEAKER 01157 0 131.911660 0.388890 3 +SPEAKER 01157 0 133.342410 0.645160 3 +SPEAKER 01157 0 134.618000 1.321190 3 +SPEAKER 01157 0 137.923060 0.877940 3 +SPEAKER 01157 0 141.264000 0.351000 3 +SPEAKER 01157 0 146.019830 0.892170 3 +SPEAKER 01157 0 149.004000 0.593000 3 +SPEAKER 01157 0 150.003700 0.556300 3 +SPEAKER 01157 0 151.802000 1.906000 3 +SPEAKER 01157 0 154.134000 2.852000 3 +SPEAKER 01157 0 158.689000 4.540000 3 +SPEAKER 01157 0 164.893000 1.889000 3 +SPEAKER 01157 0 167.338000 0.629000 3 +SPEAKER 01157 0 169.224000 0.521000 3 +SPEAKER 01157 0 170.356000 1.315000 3 +SPEAKER 01157 0 172.969000 0.408000 3 +SPEAKER 01157 0 174.857000 0.296000 3 +SPEAKER 01157 0 176.671000 0.555000 3 +SPEAKER 01157 0 178.641000 1.178000 3 +SPEAKER 01157 0 180.967000 0.497000 3 +SPEAKER 01157 0 8.310000 0.478000 0 +SPEAKER 01157 0 9.949000 1.981000 0 +SPEAKER 01157 0 12.593880 1.707120 0 +SPEAKER 01157 0 17.856000 2.204000 0 +SPEAKER 01157 0 22.446000 1.984000 0 +SPEAKER 01157 0 24.955000 1.000000 0 +SPEAKER 01157 0 30.949000 2.222000 0 +SPEAKER 01157 0 46.578000 5.426000 0 +SPEAKER 01157 0 52.984000 1.761000 0 +SPEAKER 01157 0 59.615000 1.815000 0 +SPEAKER 01157 0 62.134000 0.778000 0 +SPEAKER 01157 0 111.445000 0.596000 0 +SPEAKER 01157 0 118.612000 0.614000 0 +SPEAKER 01157 0 150.504000 0.500000 0 +SPEAKER 01157 0 163.671000 0.352000 0 +SPEAKER 01157 0 172.368000 0.421000 0 +SPEAKER 01157 0 14.764000 1.282000 2 +SPEAKER 01157 0 40.378000 0.608000 2 +SPEAKER 01157 0 42.467000 2.278000 2 +SPEAKER 01157 0 59.152000 1.149000 2 +SPEAKER 01157 0 63.227000 0.277000 2 +SPEAKER 01157 0 73.764000 3.888000 2 +SPEAKER 01157 0 77.986000 0.815000 2 +SPEAKER 01157 0 80.178000 2.234000 2 +SPEAKER 01157 0 82.819000 0.611000 2 +SPEAKER 01157 0 88.449000 6.203000 2 +SPEAKER 01157 0 114.245000 0.774830 2 +SPEAKER 01157 0 119.711000 0.574000 2 +SPEAKER 01157 0 125.504000 0.482000 2 +SPEAKER 01157 0 129.430000 0.463000 2 +SPEAKER 01157 0 131.726000 4.223000 2 +SPEAKER 01157 0 147.875000 0.577000 2 +SPEAKER 01157 0 159.486000 0.518000 2 +SPEAKER 01157 0 163.485000 1.260000 2 +SPEAKER 01157 0 165.817560 0.414290 2 +SPEAKER 01157 0 166.708000 0.333000 2 +SPEAKER 01157 0 168.782000 0.426000 2 +SPEAKER 01157 0 173.504000 0.408000 2 +SPEAKER 01157 0 175.006000 0.350000 2 +SPEAKER 01157 0 175.801000 0.629000 2 +SPEAKER 01157 0 180.188990 0.334010 2 diff --git a/rttm/few/01158.rttm b/rttm/few/01158.rttm new file mode 100644 index 0000000000000000000000000000000000000000..d65c7602df561eb82fcd86645f3874b8cb228e7b --- /dev/null +++ b/rttm/few/01158.rttm @@ -0,0 +1,20 @@ +SPEAKER 01158 0 0.023000 3.463000 1 +SPEAKER 01158 0 11.671000 0.389000 1 +SPEAKER 01158 0 16.085590 0.854170 1 +SPEAKER 01158 0 18.708000 2.259000 1 +SPEAKER 01158 0 21.671000 2.331260 1 +SPEAKER 01158 0 27.652000 0.408000 1 +SPEAKER 01158 0 43.523000 0.722000 1 +SPEAKER 01158 0 47.004000 0.585830 1 +SPEAKER 01158 0 3.702000 0.904420 0 +SPEAKER 01158 0 5.148000 2.416760 0 +SPEAKER 01158 0 8.293920 4.166670 0 +SPEAKER 01158 0 12.981000 5.667090 0 +SPEAKER 01158 0 21.762000 0.365260 0 +SPEAKER 01158 0 24.106000 3.856850 0 +SPEAKER 01158 0 28.630000 1.582850 0 +SPEAKER 01158 0 30.921000 6.000180 0 +SPEAKER 01158 0 37.380000 6.416180 0 +SPEAKER 01158 0 44.213000 1.000000 0 +SPEAKER 01158 0 45.630000 1.268650 0 +SPEAKER 01158 0 47.678060 0.211940 0 diff --git a/rttm/few/01167.rttm b/rttm/few/01167.rttm new file mode 100644 index 0000000000000000000000000000000000000000..cfe0a6b5297b0a06c731d32b1e6d8bf53c681e88 --- /dev/null +++ b/rttm/few/01167.rttm @@ -0,0 +1,13 @@ +SPEAKER 01167 0 0.097000 1.685000 0 +SPEAKER 01167 0 2.393000 1.296000 0 +SPEAKER 01167 0 4.949000 1.203000 0 +SPEAKER 01167 0 10.967000 1.426000 0 +SPEAKER 01167 0 13.467000 1.019000 0 +SPEAKER 01167 0 16.541000 1.389000 0 +SPEAKER 01167 0 18.708000 0.944000 0 +SPEAKER 01167 0 20.338000 2.000000 0 +SPEAKER 01167 0 3.764000 0.518030 1 +SPEAKER 01167 0 6.634000 1.185060 1 +SPEAKER 01167 0 12.560000 1.389000 1 +SPEAKER 01167 0 14.801000 0.444000 1 +SPEAKER 01167 0 18.078320 0.518520 1 diff --git a/rttm/few/01169.rttm b/rttm/few/01169.rttm new file mode 100644 index 0000000000000000000000000000000000000000..1f948b6881ab53db989b9d8b75f50f94c6ae06c5 --- /dev/null +++ b/rttm/few/01169.rttm @@ -0,0 +1,22 @@ +SPEAKER 01169 0 0.000000 0.390180 1 +SPEAKER 01169 0 2.133880 0.370370 1 +SPEAKER 01169 0 3.911660 1.037030 1 +SPEAKER 01169 0 6.800550 0.552590 1 +SPEAKER 01169 0 9.744990 1.629630 1 +SPEAKER 01169 0 13.726470 0.537040 1 +SPEAKER 01169 0 21.062770 1.367410 1 +SPEAKER 01169 0 26.039810 0.931850 1 +SPEAKER 01169 0 28.169440 2.874810 1 +SPEAKER 01169 0 0.189440 1.351850 0 +SPEAKER 01169 0 4.763510 2.592590 0 +SPEAKER 01169 0 7.613000 0.631000 0 +SPEAKER 01169 0 2.488690 0.957040 2 +SPEAKER 01169 0 26.747950 1.719260 2 +SPEAKER 01169 0 3.133880 1.722220 3 +SPEAKER 01169 0 7.467210 2.277780 3 +SPEAKER 01169 0 12.502000 3.835580 3 +SPEAKER 01169 0 17.968690 1.757780 3 +SPEAKER 01169 0 22.411660 1.148150 3 +SPEAKER 01169 0 23.910180 2.040000 3 +SPEAKER 01169 0 28.908690 0.763710 3 +SPEAKER 01169 0 31.059810 2.651110 3 diff --git a/rttm/few/01170.rttm b/rttm/few/01170.rttm new file mode 100644 index 0000000000000000000000000000000000000000..5ab3948c31b11c461ad9bd91fca21d244b7fb1ea --- /dev/null +++ b/rttm/few/01170.rttm @@ -0,0 +1,21 @@ +SPEAKER 01170 0 37.200000 1.150000 0 +SPEAKER 01170 0 45.023000 1.000000 0 +SPEAKER 01170 0 46.485730 4.931270 0 +SPEAKER 01170 0 52.283000 1.467000 0 +SPEAKER 01170 0 54.374620 2.888890 0 +SPEAKER 01170 0 57.805000 3.143690 0 +SPEAKER 01170 0 61.883000 7.732360 0 +SPEAKER 01170 0 70.356100 0.395900 0 +SPEAKER 01170 0 0.000000 2.967000 1 +SPEAKER 01170 0 3.819000 2.434750 1 +SPEAKER 01170 0 6.584000 9.607250 1 +SPEAKER 01170 0 17.479000 4.712250 1 +SPEAKER 01170 0 22.843000 1.000000 1 +SPEAKER 01170 0 24.291000 11.287320 1 +SPEAKER 01170 0 36.108000 8.895750 1 +SPEAKER 01170 0 47.633000 0.450000 1 +SPEAKER 01170 0 51.417000 0.716000 1 +SPEAKER 01170 0 55.660000 4.473000 1 +SPEAKER 01170 0 60.950000 0.933000 1 +SPEAKER 01170 0 64.108000 1.000000 1 +SPEAKER 01170 0 68.283000 2.467000 1 diff --git a/rttm/few/01172.rttm b/rttm/few/01172.rttm new file mode 100644 index 0000000000000000000000000000000000000000..67fb78cb9ac114df68ba7d5dc205b57bc93651ff --- /dev/null +++ b/rttm/few/01172.rttm @@ -0,0 +1,11 @@ +SPEAKER 01172 0 0.000000 7.002800 1 +SPEAKER 01172 0 7.444000 1.651000 1 +SPEAKER 01172 0 9.530000 0.765480 1 +SPEAKER 01172 0 10.877000 11.703000 1 +SPEAKER 01172 0 23.020000 3.482800 1 +SPEAKER 01172 0 39.319000 1.367000 1 +SPEAKER 01172 0 9.034000 2.545000 0 +SPEAKER 01172 0 22.917430 0.585370 0 +SPEAKER 01172 0 27.251000 0.526000 0 +SPEAKER 01172 0 28.346000 5.778750 0 +SPEAKER 01172 0 35.383000 3.824950 0 diff --git a/rttm/few/01178.rttm b/rttm/few/01178.rttm new file mode 100644 index 0000000000000000000000000000000000000000..0c5d3d4509814dae2e60d1d2378c6c9d4e6e77dc --- /dev/null +++ b/rttm/few/01178.rttm @@ -0,0 +1,43 @@ +SPEAKER 01178 0 0.078000 4.501870 0 +SPEAKER 01178 0 4.849100 2.085890 0 +SPEAKER 01178 0 7.231000 6.169510 0 +SPEAKER 01178 0 13.694000 2.482370 0 +SPEAKER 01178 0 20.726000 5.140030 0 +SPEAKER 01178 0 26.245000 12.758960 0 +SPEAKER 01178 0 39.401000 6.878820 0 +SPEAKER 01178 0 46.804000 1.441340 0 +SPEAKER 01178 0 48.555680 3.038710 0 +SPEAKER 01178 0 52.170000 8.075900 0 +SPEAKER 01178 0 60.810000 6.193700 0 +SPEAKER 01178 0 67.375000 4.564190 0 +SPEAKER 01178 0 72.246000 8.725440 0 +SPEAKER 01178 0 81.245000 2.113540 0 +SPEAKER 01178 0 83.633000 7.951350 0 +SPEAKER 01178 0 93.100000 2.532730 0 +SPEAKER 01178 0 96.003700 6.611300 0 +SPEAKER 01178 0 103.423060 0.599940 0 +SPEAKER 01178 0 116.319000 3.414710 0 +SPEAKER 01178 0 120.343000 2.934900 0 +SPEAKER 01178 0 123.600480 5.030670 0 +SPEAKER 01178 0 129.134000 3.528020 0 +SPEAKER 01178 0 133.364000 4.127800 0 +SPEAKER 01178 0 137.917000 15.668750 0 +SPEAKER 01178 0 153.945000 1.013020 0 +SPEAKER 01178 0 155.458000 5.596220 0 +SPEAKER 01178 0 161.413000 2.166870 0 +SPEAKER 01178 0 163.977000 8.090040 0 +SPEAKER 01178 0 172.615000 6.666740 0 +SPEAKER 01178 0 179.745000 5.333000 0 +SPEAKER 01178 0 3.986000 0.685000 1 +SPEAKER 01178 0 16.072920 0.758620 1 +SPEAKER 01178 0 17.393000 2.574000 1 +SPEAKER 01178 0 24.969470 1.275870 1 +SPEAKER 01178 0 55.301000 0.851000 1 +SPEAKER 01178 0 75.026730 0.847940 1 +SPEAKER 01178 0 91.189000 2.260000 1 +SPEAKER 01178 0 94.060000 2.555000 1 +SPEAKER 01178 0 102.986000 0.815000 1 +SPEAKER 01178 0 104.310000 2.161440 1 +SPEAKER 01178 0 106.990000 1.551400 1 +SPEAKER 01178 0 108.977300 6.380700 1 +SPEAKER 01178 0 136.504000 0.319460 1 diff --git a/rttm/few/01180.rttm b/rttm/few/01180.rttm new file mode 100644 index 0000000000000000000000000000000000000000..a00f179308e8d083617218cd4980993eaf492856 --- /dev/null +++ b/rttm/few/01180.rttm @@ -0,0 +1,21 @@ +SPEAKER 01180 0 0.430000 13.001000 3 +SPEAKER 01180 0 13.985000 4.371000 3 +SPEAKER 01180 0 18.674860 2.826670 3 +SPEAKER 01180 0 23.402000 0.503000 3 +SPEAKER 01180 0 33.366000 0.615000 3 +SPEAKER 01180 0 35.634000 0.547530 3 +SPEAKER 01180 0 42.031000 0.973000 3 +SPEAKER 01180 0 51.252000 0.512000 3 +SPEAKER 01180 0 62.208000 1.870000 3 +SPEAKER 01180 0 69.328200 0.893330 3 +SPEAKER 01180 0 75.597000 0.574000 3 +SPEAKER 01180 0 13.428000 1.539000 1 +SPEAKER 01180 0 18.369000 0.580000 1 +SPEAKER 01180 0 20.893000 0.627000 1 +SPEAKER 01180 0 37.667000 4.322000 1 +SPEAKER 01180 0 43.179000 16.399000 1 +SPEAKER 01180 0 60.419000 15.461000 1 +SPEAKER 01180 0 76.245000 0.836000 1 +SPEAKER 01180 0 21.345000 14.142210 2 +SPEAKER 01180 0 35.871000 2.508000 2 +SPEAKER 01180 0 69.652000 1.296690 2 diff --git a/rttm/few/01182.rttm b/rttm/few/01182.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4b98266b123cb14fe7b730e36abc66b706345da9 --- /dev/null +++ b/rttm/few/01182.rttm @@ -0,0 +1,28 @@ +SPEAKER 01182 0 0.986000 8.518000 0 +SPEAKER 01182 0 20.261050 2.393940 0 +SPEAKER 01182 0 23.276000 3.591110 0 +SPEAKER 01182 0 27.264000 0.555000 0 +SPEAKER 01182 0 28.374620 2.685380 0 +SPEAKER 01182 0 31.670000 1.030450 0 +SPEAKER 01182 0 33.078000 0.445000 0 +SPEAKER 01182 0 33.893140 1.383060 0 +SPEAKER 01182 0 35.579000 3.606300 0 +SPEAKER 01182 0 41.188000 2.092000 0 +SPEAKER 01182 0 44.856000 1.926030 0 +SPEAKER 01182 0 47.255000 1.452950 0 +SPEAKER 01182 0 64.245000 2.703690 0 +SPEAKER 01182 0 67.395000 1.683320 0 +SPEAKER 01182 0 70.152000 2.074000 0 +SPEAKER 01182 0 72.764000 1.406920 0 +SPEAKER 01182 0 74.670920 4.704080 0 +SPEAKER 01182 0 80.097000 1.092000 0 +SPEAKER 01182 0 90.764000 1.860690 0 +SPEAKER 01182 0 93.034000 1.378570 0 +SPEAKER 01182 0 9.764000 9.777000 1 +SPEAKER 01182 0 39.356000 1.945000 1 +SPEAKER 01182 0 48.776200 7.863640 1 +SPEAKER 01182 0 57.347000 0.686780 1 +SPEAKER 01182 0 58.548930 4.918070 1 +SPEAKER 01182 0 77.578000 0.926000 1 +SPEAKER 01182 0 82.060000 7.685900 1 +SPEAKER 01182 0 94.634000 1.185000 1 diff --git a/rttm/few/01191.rttm b/rttm/few/01191.rttm new file mode 100644 index 0000000000000000000000000000000000000000..8d4a619c798ad96f028199ec9a718ed19953c397 --- /dev/null +++ b/rttm/few/01191.rttm @@ -0,0 +1,79 @@ +SPEAKER 01191 0 0.000000 1.301000 1 +SPEAKER 01191 0 3.412000 1.814470 1 +SPEAKER 01191 0 9.893140 1.166670 1 +SPEAKER 01191 0 18.060000 1.073880 1 +SPEAKER 01191 0 23.689000 1.185620 1 +SPEAKER 01191 0 25.411660 1.333330 1 +SPEAKER 01191 0 29.819000 0.444510 1 +SPEAKER 01191 0 37.912000 1.240000 1 +SPEAKER 01191 0 39.689000 1.128580 1 +SPEAKER 01191 0 42.967000 2.018730 1 +SPEAKER 01191 0 49.097000 3.852000 1 +SPEAKER 01191 0 54.801000 4.388440 1 +SPEAKER 01191 0 60.985730 0.685190 1 +SPEAKER 01191 0 63.245000 1.222000 1 +SPEAKER 01191 0 65.245000 3.537000 1 +SPEAKER 01191 0 80.764000 1.218000 1 +SPEAKER 01191 0 83.615000 2.963000 1 +SPEAKER 01191 0 88.745000 1.741000 1 +SPEAKER 01191 0 95.949000 1.648000 1 +SPEAKER 01191 0 98.522770 1.389230 1 +SPEAKER 01191 0 100.708000 2.389000 1 +SPEAKER 01191 0 109.393000 4.389000 1 +SPEAKER 01191 0 115.004000 8.926000 1 +SPEAKER 01191 0 139.764000 0.629000 1 +SPEAKER 01191 0 141.078320 1.370680 1 +SPEAKER 01191 0 158.986000 1.037000 1 +SPEAKER 01191 0 1.467000 1.129840 2 +SPEAKER 01191 0 10.967000 8.277990 2 +SPEAKER 01191 0 19.967000 3.259470 2 +SPEAKER 01191 0 26.652400 11.240740 2 +SPEAKER 01191 0 56.652000 0.722620 2 +SPEAKER 01191 0 59.338000 4.203000 2 +SPEAKER 01191 0 64.171000 1.073990 2 +SPEAKER 01191 0 68.763510 5.129490 2 +SPEAKER 01191 0 74.504000 4.889140 2 +SPEAKER 01191 0 79.768000 1.000000 2 +SPEAKER 01191 0 87.060000 1.759000 2 +SPEAKER 01191 0 97.578000 0.574400 2 +SPEAKER 01191 0 99.393000 1.185000 2 +SPEAKER 01191 0 102.949000 6.815000 2 +SPEAKER 01191 0 110.430000 0.556000 2 +SPEAKER 01191 0 111.282030 5.129630 2 +SPEAKER 01191 0 122.301000 0.777000 2 +SPEAKER 01191 0 123.837580 1.814420 2 +SPEAKER 01191 0 126.171000 3.203620 2 +SPEAKER 01191 0 130.152400 1.222220 2 +SPEAKER 01191 0 131.911660 1.436340 2 +SPEAKER 01191 0 136.430000 1.777950 2 +SPEAKER 01191 0 138.596840 1.203710 2 +SPEAKER 01191 0 140.189440 2.259250 2 +SPEAKER 01191 0 143.115360 2.259260 2 +SPEAKER 01191 0 146.171000 3.463000 2 +SPEAKER 01191 0 151.486000 7.499730 2 +SPEAKER 01191 0 159.838000 0.444030 2 +SPEAKER 01191 0 160.541000 0.352000 2 +SPEAKER 01191 0 161.411660 1.840340 2 +SPEAKER 01191 0 1.170920 0.592590 0 +SPEAKER 01191 0 2.764000 0.722000 0 +SPEAKER 01191 0 5.541290 2.555550 0 +SPEAKER 01191 0 12.612000 1.000000 0 +SPEAKER 01191 0 23.745000 1.074000 0 +SPEAKER 01191 0 33.764000 1.221730 0 +SPEAKER 01191 0 37.930000 1.352000 0 +SPEAKER 01191 0 41.652000 0.852250 0 +SPEAKER 01191 0 46.801000 2.203250 0 +SPEAKER 01191 0 60.948690 0.851860 0 +SPEAKER 01191 0 67.596840 0.703710 0 +SPEAKER 01191 0 88.986000 6.184920 0 +SPEAKER 01191 0 97.912000 2.148000 0 +SPEAKER 01191 0 102.449000 1.092000 0 +SPEAKER 01191 0 105.338000 1.166000 0 +SPEAKER 01191 0 115.912000 1.092250 0 +SPEAKER 01191 0 119.689000 0.630000 0 +SPEAKER 01191 0 122.504250 0.944440 0 +SPEAKER 01191 0 133.598320 3.628150 0 +SPEAKER 01191 0 147.967000 1.074290 0 +SPEAKER 01191 0 149.671000 3.370000 0 +SPEAKER 01191 0 154.949000 1.796000 0 +SPEAKER 01191 0 162.522770 0.730230 0 diff --git a/rttm/few/01195.rttm b/rttm/few/01195.rttm new file mode 100644 index 0000000000000000000000000000000000000000..f908d174c14dd1b4815063e1e9a809ad90602b3a --- /dev/null +++ b/rttm/few/01195.rttm @@ -0,0 +1,11 @@ +SPEAKER 01195 0 0.000000 4.430180 1 +SPEAKER 01195 0 6.430180 2.981480 1 +SPEAKER 01195 0 10.282000 1.407440 1 +SPEAKER 01195 0 12.282000 4.648000 1 +SPEAKER 01195 0 17.464000 1.929140 1 +SPEAKER 01195 0 1.507000 0.352000 0 +SPEAKER 01195 0 2.984000 0.363000 0 +SPEAKER 01195 0 4.189440 4.185180 0 +SPEAKER 01195 0 9.189000 0.542000 0 +SPEAKER 01195 0 11.708000 0.612000 0 +SPEAKER 01195 0 16.874620 0.518380 0 diff --git a/rttm/few/01196.rttm b/rttm/few/01196.rttm new file mode 100644 index 0000000000000000000000000000000000000000..bdde42639ca0f9f2e2178a8c070d835e77b548bb --- /dev/null +++ b/rttm/few/01196.rttm @@ -0,0 +1,70 @@ +SPEAKER 01196 0 0.011000 4.771710 2 +SPEAKER 01196 0 5.393000 7.591470 2 +SPEAKER 01196 0 15.985730 2.412270 2 +SPEAKER 01196 0 22.245000 2.425920 2 +SPEAKER 01196 0 28.615000 1.037400 2 +SPEAKER 01196 0 36.893000 0.463100 2 +SPEAKER 01196 0 40.967000 0.789400 2 +SPEAKER 01196 0 42.708000 2.741000 2 +SPEAKER 01196 0 46.041000 1.259260 2 +SPEAKER 01196 0 47.659910 1.057650 2 +SPEAKER 01196 0 51.708000 2.395280 2 +SPEAKER 01196 0 54.967000 0.450560 2 +SPEAKER 01196 0 56.189000 2.241000 2 +SPEAKER 01196 0 58.799000 3.992490 2 +SPEAKER 01196 0 63.597000 1.115540 2 +SPEAKER 01196 0 65.274000 1.357850 2 +SPEAKER 01196 0 67.088990 0.485720 2 +SPEAKER 01196 0 67.853000 0.798140 2 +SPEAKER 01196 0 73.967000 5.507710 2 +SPEAKER 01196 0 81.974710 2.881290 2 +SPEAKER 01196 0 88.041000 0.917150 2 +SPEAKER 01196 0 89.689000 1.075000 2 +SPEAKER 01196 0 95.925000 1.392800 2 +SPEAKER 01196 0 100.103000 1.128850 2 +SPEAKER 01196 0 106.002010 3.359650 2 +SPEAKER 01196 0 110.213000 2.060940 2 +SPEAKER 01196 0 113.089730 1.324560 2 +SPEAKER 01196 0 114.896750 2.298250 2 +SPEAKER 01196 0 7.169000 0.594510 1 +SPEAKER 01196 0 14.949000 1.268560 1 +SPEAKER 01196 0 20.208000 2.000000 1 +SPEAKER 01196 0 23.782000 1.834050 1 +SPEAKER 01196 0 27.546140 1.078680 1 +SPEAKER 01196 0 29.708000 1.627350 1 +SPEAKER 01196 0 31.920610 2.625530 1 +SPEAKER 01196 0 45.254000 1.000000 1 +SPEAKER 01196 0 61.660420 0.807580 1 +SPEAKER 01196 0 64.081000 0.694000 1 +SPEAKER 01196 0 89.134000 0.446960 1 +SPEAKER 01196 0 100.856000 5.632990 1 +SPEAKER 01196 0 108.367000 1.000000 1 +SPEAKER 01196 0 118.488990 1.485720 1 +SPEAKER 01196 0 121.041000 1.952240 1 +SPEAKER 01196 0 123.467000 1.113960 1 +SPEAKER 01196 0 124.949380 0.869620 1 +SPEAKER 01196 0 16.060420 0.932820 h0 +SPEAKER 01196 0 17.260420 0.585720 h0 +SPEAKER 01196 0 19.374710 0.442850 h0 +SPEAKER 01196 0 48.356000 2.982000 h0 +SPEAKER 01196 0 54.018000 0.770990 h0 +SPEAKER 01196 0 55.578000 1.882420 h0 +SPEAKER 01196 0 57.975700 0.438590 h0 +SPEAKER 01196 0 69.486000 2.638820 h0 +SPEAKER 01196 0 73.502010 1.058410 h0 +SPEAKER 01196 0 78.671000 4.576630 h0 +SPEAKER 01196 0 85.652000 2.679850 h0 +SPEAKER 01196 0 88.940610 0.508390 h0 +SPEAKER 01196 0 91.309030 4.114040 h0 +SPEAKER 01196 0 102.361660 1.753340 h0 +SPEAKER 01196 0 112.356000 0.760050 h0 +SPEAKER 01196 0 115.924000 0.336420 h0 +SPEAKER 01196 0 37.986000 2.875660 0 +SPEAKER 01196 0 41.912000 0.796000 0 +SPEAKER 01196 0 45.685000 2.703990 0 +SPEAKER 01196 0 50.949000 1.239990 0 +SPEAKER 01196 0 56.374000 0.873630 0 +SPEAKER 01196 0 99.949000 2.035470 0 +SPEAKER 01196 0 108.317800 1.877200 0 +SPEAKER 01196 0 114.393000 0.407260 0 +SPEAKER 01196 0 119.624820 2.549890 0 diff --git a/rttm/few/01197.rttm b/rttm/few/01197.rttm new file mode 100644 index 0000000000000000000000000000000000000000..54fe487fbd3dfa9db084869ffbbd1594f488359c --- /dev/null +++ b/rttm/few/01197.rttm @@ -0,0 +1,14 @@ +SPEAKER 01197 0 0.932000 0.479660 3 +SPEAKER 01197 0 6.411660 0.481480 3 +SPEAKER 01197 0 7.318000 0.427000 3 +SPEAKER 01197 0 20.807000 0.697250 3 +SPEAKER 01197 0 23.723000 0.799770 3 +SPEAKER 01197 0 25.171000 0.487000 3 +SPEAKER 01197 0 32.570000 0.971290 3 +SPEAKER 01197 0 0.041290 6.333330 0 +SPEAKER 01197 0 7.115360 5.722220 0 +SPEAKER 01197 0 13.282000 8.000030 0 +SPEAKER 01197 0 21.596840 2.092600 0 +SPEAKER 01197 0 24.059810 5.166660 0 +SPEAKER 01197 0 29.616000 2.888250 0 +SPEAKER 01197 0 33.067000 3.080000 0 diff --git a/rttm/few/01198.rttm b/rttm/few/01198.rttm new file mode 100644 index 0000000000000000000000000000000000000000..fff37795e7304c00aea217d799c1888114d13e33 --- /dev/null +++ b/rttm/few/01198.rttm @@ -0,0 +1,9 @@ +SPEAKER 01198 0 0.444000 3.848000 1 +SPEAKER 01198 0 15.701000 2.000000 1 +SPEAKER 01198 0 4.868000 2.525140 0 +SPEAKER 01198 0 7.946000 0.849420 0 +SPEAKER 01198 0 9.176000 0.806920 0 +SPEAKER 01198 0 10.482000 2.396750 0 +SPEAKER 01198 0 13.337000 1.833420 0 +SPEAKER 01198 0 18.731000 0.606580 0 +SPEAKER 01198 0 19.930000 2.019000 0 diff --git a/rttm/few/01211.rttm b/rttm/few/01211.rttm new file mode 100644 index 0000000000000000000000000000000000000000..6b95736fbbe718992e5c142aa4a48398126bd7cf --- /dev/null +++ b/rttm/few/01211.rttm @@ -0,0 +1,36 @@ +SPEAKER 01211 0 0.023000 8.481000 1 +SPEAKER 01211 0 9.023000 3.352000 1 +SPEAKER 01211 0 13.424000 2.377000 1 +SPEAKER 01211 0 47.087080 0.562500 1 +SPEAKER 01211 0 50.782000 2.333000 1 +SPEAKER 01211 0 63.689000 1.982000 1 +SPEAKER 01211 0 73.208000 0.593000 1 +SPEAKER 01211 0 79.264000 0.518000 1 +SPEAKER 01211 0 92.726000 0.704000 1 +SPEAKER 01211 0 98.264000 0.518000 1 +SPEAKER 01211 0 99.375000 4.370000 1 +SPEAKER 01211 0 104.291000 0.843000 1 +SPEAKER 01211 0 139.949000 0.833000 1 +SPEAKER 01211 0 149.615000 2.056000 1 +SPEAKER 01211 0 153.948000 7.038000 1 +SPEAKER 01211 0 162.782000 0.642000 1 +SPEAKER 01211 0 16.040000 14.575000 0 +SPEAKER 01211 0 31.172000 2.499000 0 +SPEAKER 01211 0 34.393000 6.871000 0 +SPEAKER 01211 0 41.608000 9.915000 0 +SPEAKER 01211 0 52.745000 9.870000 0 +SPEAKER 01211 0 66.541000 2.093000 0 +SPEAKER 01211 0 68.967000 8.240950 0 +SPEAKER 01211 0 77.671000 1.944000 0 +SPEAKER 01211 0 80.004000 5.741000 0 +SPEAKER 01211 0 86.143000 11.491000 0 +SPEAKER 01211 0 98.084000 0.809000 0 +SPEAKER 01211 0 102.930000 0.741000 0 +SPEAKER 01211 0 104.375000 0.481000 0 +SPEAKER 01211 0 105.448690 4.833310 0 +SPEAKER 01211 0 110.764000 15.092000 0 +SPEAKER 01211 0 126.170420 4.708330 0 +SPEAKER 01211 0 131.404000 9.266420 0 +SPEAKER 01211 0 140.967000 0.815000 0 +SPEAKER 01211 0 142.393000 4.027420 0 +SPEAKER 01211 0 146.737000 7.078420 0 diff --git a/rttm/few/01226.rttm b/rttm/few/01226.rttm new file mode 100644 index 0000000000000000000000000000000000000000..08ed35e84f941e0e99c1eb6687761d0f0abde90b --- /dev/null +++ b/rttm/few/01226.rttm @@ -0,0 +1,25 @@ +SPEAKER 01226 0 0.000000 1.295000 1 +SPEAKER 01226 0 2.060000 2.235420 1 +SPEAKER 01226 0 4.726000 1.704000 1 +SPEAKER 01226 0 7.541000 1.000000 1 +SPEAKER 01226 0 9.449000 1.629000 1 +SPEAKER 01226 0 14.689000 1.278000 1 +SPEAKER 01226 0 25.171000 0.416080 1 +SPEAKER 01226 0 25.919000 0.793080 1 +SPEAKER 01226 0 30.338000 1.436580 1 +SPEAKER 01226 0 32.151000 5.331920 1 +SPEAKER 01226 0 40.523000 0.530000 1 +SPEAKER 01226 0 2.875000 1.000000 0 +SPEAKER 01226 0 6.337000 1.000000 0 +SPEAKER 01226 0 10.189000 0.463000 0 +SPEAKER 01226 0 11.208000 1.129080 0 +SPEAKER 01226 0 12.678000 1.721580 0 +SPEAKER 01226 0 14.962000 0.812580 0 +SPEAKER 01226 0 16.163000 1.000000 0 +SPEAKER 01226 0 18.041000 2.462750 0 +SPEAKER 01226 0 20.893000 1.339920 0 +SPEAKER 01226 0 22.519000 0.797250 0 +SPEAKER 01226 0 23.605000 1.419580 0 +SPEAKER 01226 0 26.708000 3.534000 0 +SPEAKER 01226 0 37.152000 2.143000 0 +SPEAKER 01226 0 39.971000 0.936000 0 diff --git a/rttm/few/01228.rttm b/rttm/few/01228.rttm new file mode 100644 index 0000000000000000000000000000000000000000..75260bb20a7a54657d6f88d45cea3309166a7b8a --- /dev/null +++ b/rttm/few/01228.rttm @@ -0,0 +1,9 @@ +SPEAKER 01228 0 0.007000 0.831000 0 +SPEAKER 01228 0 1.595000 11.061000 0 +SPEAKER 01228 0 14.689440 0.966560 0 +SPEAKER 01228 0 17.307000 2.621000 0 +SPEAKER 01228 0 0.838000 0.757000 1 +SPEAKER 01228 0 10.671000 0.424000 1 +SPEAKER 01228 0 12.383000 2.242000 1 +SPEAKER 01228 0 15.499000 2.096000 1 +SPEAKER 01228 0 19.800550 0.489450 1 diff --git a/rttm/few/01229.rttm b/rttm/few/01229.rttm new file mode 100644 index 0000000000000000000000000000000000000000..6b15bea5818759fde3b49a9317d7bb91326de482 --- /dev/null +++ b/rttm/few/01229.rttm @@ -0,0 +1,15 @@ +SPEAKER 01229 0 0.023000 3.481000 0 +SPEAKER 01229 0 6.023000 1.499770 0 +SPEAKER 01229 0 8.152400 4.388600 0 +SPEAKER 01229 0 13.301000 1.703250 0 +SPEAKER 01229 0 15.328000 0.768840 0 +SPEAKER 01229 0 17.837000 0.519000 0 +SPEAKER 01229 0 18.689440 0.703560 0 +SPEAKER 01229 0 2.449000 1.699000 2 +SPEAKER 01229 0 10.689000 1.257000 2 +SPEAKER 01229 0 16.689000 1.075000 2 +SPEAKER 01229 0 18.967210 1.648790 2 +SPEAKER 01229 0 6.170920 1.314810 3 +SPEAKER 01229 0 18.042000 0.777060 3 +SPEAKER 01229 0 5.800550 1.777770 h0 +SPEAKER 01229 0 20.041290 0.833710 h0 diff --git a/rttm/few/01230.rttm b/rttm/few/01230.rttm new file mode 100644 index 0000000000000000000000000000000000000000..8b487cb0d5246ac63a38baa37d0ae8b7d1f792ba --- /dev/null +++ b/rttm/few/01230.rttm @@ -0,0 +1,38 @@ +SPEAKER 01230 0 0.023000 10.796000 0 +SPEAKER 01230 0 13.282000 16.648180 0 +SPEAKER 01230 0 32.208000 5.426000 0 +SPEAKER 01230 0 39.134000 59.937000 0 +SPEAKER 01230 0 112.856000 0.685000 0 +SPEAKER 01230 0 114.986000 0.833000 0 +SPEAKER 01230 0 119.171000 0.574000 0 +SPEAKER 01230 0 121.467000 0.537000 0 +SPEAKER 01230 0 122.467000 0.764000 0 +SPEAKER 01230 0 123.708000 0.630000 0 +SPEAKER 01230 0 127.430000 0.556000 0 +SPEAKER 01230 0 131.282000 0.537000 0 +SPEAKER 01230 0 134.823000 1.000000 0 +SPEAKER 01230 0 136.819000 20.722290 0 +SPEAKER 01230 0 175.441000 0.630000 0 +SPEAKER 01230 0 179.708000 0.537000 0 +SPEAKER 01230 0 181.504000 1.741000 0 +SPEAKER 01230 0 183.838000 5.185000 0 +SPEAKER 01230 0 189.615000 1.611000 0 +SPEAKER 01230 0 191.856000 1.537000 0 +SPEAKER 01230 0 194.319000 0.648000 0 +SPEAKER 01230 0 195.356000 22.351950 0 +SPEAKER 01230 0 9.245000 4.130000 1 +SPEAKER 01230 0 18.023000 0.481000 1 +SPEAKER 01230 0 29.819000 2.574000 1 +SPEAKER 01230 0 37.764000 2.481000 1 +SPEAKER 01230 0 49.893000 0.574000 1 +SPEAKER 01230 0 67.467000 3.279700 1 +SPEAKER 01230 0 99.115000 28.222580 1 +SPEAKER 01230 0 127.801000 5.647690 1 +SPEAKER 01230 0 134.264000 2.975000 1 +SPEAKER 01230 0 154.782000 1.815000 1 +SPEAKER 01230 0 157.134000 24.518000 1 +SPEAKER 01230 0 183.319000 1.574000 1 +SPEAKER 01230 0 190.875000 1.147000 1 +SPEAKER 01230 0 193.356000 3.352000 1 +SPEAKER 01230 0 197.578000 0.797000 1 +SPEAKER 01230 0 213.689000 0.945000 1 diff --git a/rttm/few/01236.rttm b/rttm/few/01236.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ae14a3c9746640a129b1c82da9048f99b3945525 --- /dev/null +++ b/rttm/few/01236.rttm @@ -0,0 +1,18 @@ +SPEAKER 01236 0 0.170920 6.370370 1 +SPEAKER 01236 0 7.374620 2.296300 1 +SPEAKER 01236 0 12.374620 0.957380 1 +SPEAKER 01236 0 14.525000 0.312580 1 +SPEAKER 01236 0 24.501000 2.040290 1 +SPEAKER 01236 0 27.895000 0.757400 1 +SPEAKER 01236 0 4.427000 3.484660 0 +SPEAKER 01236 0 8.911660 1.883340 0 +SPEAKER 01236 0 18.531000 0.447000 0 +SPEAKER 01236 0 20.007000 0.812000 0 +SPEAKER 01236 0 21.430180 0.447820 0 +SPEAKER 01236 0 22.825000 0.494000 0 +SPEAKER 01236 0 24.946000 0.514420 0 +SPEAKER 01236 0 28.707950 0.545050 0 +SPEAKER 01236 0 7.300550 1.222220 2 +SPEAKER 01236 0 10.078320 12.685190 2 +SPEAKER 01236 0 23.170920 0.814810 2 +SPEAKER 01236 0 28.154000 0.589000 2 diff --git a/rttm/few/01240.rttm b/rttm/few/01240.rttm new file mode 100644 index 0000000000000000000000000000000000000000..f1b68713e8721d0d18b6ad5684e9f8aebd996f0a --- /dev/null +++ b/rttm/few/01240.rttm @@ -0,0 +1,14 @@ +SPEAKER 01240 0 0.000000 1.837580 1 +SPEAKER 01240 0 2.276100 3.064450 1 +SPEAKER 01240 0 5.633880 2.520000 1 +SPEAKER 01240 0 8.467210 3.000000 1 +SPEAKER 01240 0 14.578320 0.592680 1 +SPEAKER 01240 0 19.448690 0.685190 1 +SPEAKER 01240 0 21.726470 0.455530 1 +SPEAKER 01240 0 23.207950 0.942970 1 +SPEAKER 01240 0 10.078320 0.740740 0 +SPEAKER 01240 0 11.187950 8.940000 0 +SPEAKER 01240 0 22.282030 1.425920 0 +SPEAKER 01240 0 20.096840 1.704160 h0 +SPEAKER 01240 0 22.757580 0.987410 h0 +SPEAKER 01240 0 24.173880 0.486120 h0 diff --git a/rttm/few/01246.rttm b/rttm/few/01246.rttm new file mode 100644 index 0000000000000000000000000000000000000000..fabad9c871d2b4c90e3f3c4a105a3c578cf2d530 --- /dev/null +++ b/rttm/few/01246.rttm @@ -0,0 +1,17 @@ +SPEAKER 01246 0 0.041000 1.309000 1 +SPEAKER 01246 0 2.189000 1.056000 1 +SPEAKER 01246 0 3.504000 2.926000 1 +SPEAKER 01246 0 7.208000 4.685000 1 +SPEAKER 01246 0 12.356000 8.167000 1 +SPEAKER 01246 0 20.912000 24.092000 1 +SPEAKER 01246 0 45.597000 2.938000 1 +SPEAKER 01246 0 48.898000 2.828000 1 +SPEAKER 01246 0 52.560000 8.741000 1 +SPEAKER 01246 0 56.264000 1.480990 2 +SPEAKER 01246 0 58.282030 0.814810 2 +SPEAKER 01246 0 59.596840 0.629630 2 +SPEAKER 01246 0 60.689000 15.704000 2 +SPEAKER 01246 0 11.319000 1.997000 0 +SPEAKER 01246 0 29.272000 1.134000 0 +SPEAKER 01246 0 45.097000 0.796000 0 +SPEAKER 01246 0 48.097000 1.296000 0 diff --git a/rttm/few/01257.rttm b/rttm/few/01257.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4b048cfb1be5f1a768dbcd5cfb2fd5f9ca37bb0a --- /dev/null +++ b/rttm/few/01257.rttm @@ -0,0 +1,17 @@ +SPEAKER 01257 0 3.009000 0.791550 1 +SPEAKER 01257 0 7.145000 0.603000 1 +SPEAKER 01257 0 8.145000 0.692580 1 +SPEAKER 01257 0 9.319000 3.407470 1 +SPEAKER 01257 0 13.264000 1.373000 1 +SPEAKER 01257 0 15.872000 0.677000 1 +SPEAKER 01257 0 19.010000 1.698000 1 +SPEAKER 01257 0 21.560000 0.981290 1 +SPEAKER 01257 0 3.652000 3.185580 0 +SPEAKER 01257 0 19.038000 0.521810 0 +SPEAKER 01257 0 20.004000 1.092840 0 +SPEAKER 01257 0 15.240000 0.555000 2 +SPEAKER 01257 0 16.629000 0.492000 2 +SPEAKER 01257 0 17.581000 1.310000 2 +SPEAKER 01257 0 19.708000 1.548000 2 +SPEAKER 01257 0 21.637000 0.422810 2 +SPEAKER 01257 0 22.320000 2.850920 2 diff --git a/rttm/few/01264.rttm b/rttm/few/01264.rttm new file mode 100644 index 0000000000000000000000000000000000000000..fc50a9a8f2c7c648458028f2dc697aca63cb15a7 --- /dev/null +++ b/rttm/few/01264.rttm @@ -0,0 +1,9 @@ +SPEAKER 01264 0 0.893000 1.111000 0 +SPEAKER 01264 0 4.856000 3.518620 0 +SPEAKER 01264 0 9.264000 0.943950 0 +SPEAKER 01264 0 12.375000 0.648000 0 +SPEAKER 01264 0 17.115360 3.833640 0 +SPEAKER 01264 0 1.578000 3.426000 1 +SPEAKER 01264 0 8.486000 3.481000 1 +SPEAKER 01264 0 12.486000 4.499730 1 +SPEAKER 01264 0 20.596840 2.148150 1 diff --git a/rttm/few/01266.rttm b/rttm/few/01266.rttm new file mode 100644 index 0000000000000000000000000000000000000000..5ba3a8864c8d0dcb819538a7cebd4e5cef498d77 --- /dev/null +++ b/rttm/few/01266.rttm @@ -0,0 +1,15 @@ +SPEAKER 01266 0 0.000000 1.874620 0 +SPEAKER 01266 0 2.816250 0.618750 0 +SPEAKER 01266 0 3.761000 1.109000 0 +SPEAKER 01266 0 5.370000 0.550420 0 +SPEAKER 01266 0 6.258000 0.766580 0 +SPEAKER 01266 0 7.358000 2.374920 0 +SPEAKER 01266 0 12.174000 3.022000 0 +SPEAKER 01266 0 15.543000 1.174000 0 +SPEAKER 01266 0 20.935000 0.608000 0 +SPEAKER 01266 0 21.935000 0.989000 0 +SPEAKER 01266 0 9.848000 1.609000 1 +SPEAKER 01266 0 16.741000 1.075250 1 +SPEAKER 01266 0 18.209000 1.000000 1 +SPEAKER 01266 0 19.581000 1.000000 1 +SPEAKER 01266 0 21.928000 0.963000 1 diff --git a/rttm/few/01273.rttm b/rttm/few/01273.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4e4ad3aef0de58131a11c7c588bb312d9a4726fa --- /dev/null +++ b/rttm/few/01273.rttm @@ -0,0 +1,6 @@ +SPEAKER 01273 0 0.054000 35.524000 1 +SPEAKER 01273 0 41.850000 0.469000 1 +SPEAKER 01273 0 48.134000 0.546000 1 +SPEAKER 01273 0 19.893000 0.408000 0 +SPEAKER 01273 0 32.023000 0.352000 0 +SPEAKER 01273 0 34.282000 14.352000 0 diff --git a/rttm/few/01274.rttm b/rttm/few/01274.rttm new file mode 100644 index 0000000000000000000000000000000000000000..37a445d8f6bd7cc8c66863fd44d623ff3ae17cd2 --- /dev/null +++ b/rttm/few/01274.rttm @@ -0,0 +1,13 @@ +SPEAKER 01274 0 0.004250 0.962960 2 +SPEAKER 01274 0 1.282030 1.592590 2 +SPEAKER 01274 0 3.189440 8.403560 2 +SPEAKER 01274 0 17.819060 1.222230 2 +SPEAKER 01274 0 19.875000 1.463000 2 +SPEAKER 01274 0 2.615000 0.463000 1 +SPEAKER 01274 0 13.171000 1.055000 1 +SPEAKER 01274 0 15.041000 2.961000 1 +SPEAKER 01274 0 18.782030 1.184970 1 +SPEAKER 01274 0 20.671000 2.963000 1 +SPEAKER 01274 0 0.579000 0.588000 0 +SPEAKER 01274 0 14.244990 0.481010 0 +SPEAKER 01274 0 17.895000 1.294440 0 diff --git a/rttm/few/01281.rttm b/rttm/few/01281.rttm new file mode 100644 index 0000000000000000000000000000000000000000..0a1392a3e73b7e66b829f2c5f1da34122cbe185d --- /dev/null +++ b/rttm/few/01281.rttm @@ -0,0 +1,23 @@ +SPEAKER 01281 0 0.000000 0.566000 1 +SPEAKER 01281 0 0.966000 1.460000 1 +SPEAKER 01281 0 4.541000 3.278000 1 +SPEAKER 01281 0 8.694000 0.333000 1 +SPEAKER 01281 0 10.695000 1.246000 1 +SPEAKER 01281 0 13.411660 0.425920 1 +SPEAKER 01281 0 14.737000 0.633000 1 +SPEAKER 01281 0 15.818000 0.775000 1 +SPEAKER 01281 0 17.778000 1.214000 1 +SPEAKER 01281 0 19.985730 0.927270 1 +SPEAKER 01281 0 21.278000 1.000000 1 +SPEAKER 01281 0 24.939810 1.266660 1 +SPEAKER 01281 0 2.693000 1.922360 0 +SPEAKER 01281 0 5.075000 0.530000 0 +SPEAKER 01281 0 5.972000 0.939660 0 +SPEAKER 01281 0 7.553000 1.174000 0 +SPEAKER 01281 0 9.182000 1.596000 0 +SPEAKER 01281 0 12.068000 1.251060 0 +SPEAKER 01281 0 13.890000 1.966100 0 +SPEAKER 01281 0 16.652000 1.269000 0 +SPEAKER 01281 0 19.094000 2.465810 0 +SPEAKER 01281 0 22.247000 2.331320 0 +SPEAKER 01281 0 25.356100 0.981480 0 diff --git a/rttm/few/01284.rttm b/rttm/few/01284.rttm new file mode 100644 index 0000000000000000000000000000000000000000..aa5fc5b409968baceeb4d96df89ae6ad1ad78fc9 --- /dev/null +++ b/rttm/few/01284.rttm @@ -0,0 +1,33 @@ +SPEAKER 01284 0 0.041000 3.760000 0 +SPEAKER 01284 0 6.875000 1.777400 0 +SPEAKER 01284 0 9.263510 1.296300 0 +SPEAKER 01284 0 15.764000 2.258770 0 +SPEAKER 01284 0 20.078000 1.315140 0 +SPEAKER 01284 0 22.523000 0.721990 0 +SPEAKER 01284 0 24.245000 0.740730 0 +SPEAKER 01284 0 26.801000 2.869920 0 +SPEAKER 01284 0 31.523000 0.741000 0 +SPEAKER 01284 0 33.411660 1.111340 0 +SPEAKER 01284 0 35.856000 1.259360 0 +SPEAKER 01284 0 38.263510 1.888490 0 +SPEAKER 01284 0 41.652400 1.314600 0 +SPEAKER 01284 0 43.338000 2.110690 0 +SPEAKER 01284 0 46.263510 2.629490 0 +SPEAKER 01284 0 52.300550 0.814450 0 +SPEAKER 01284 0 3.819000 1.111180 1 +SPEAKER 01284 0 5.875000 0.555180 1 +SPEAKER 01284 0 6.893000 0.815000 1 +SPEAKER 01284 0 10.412000 1.607000 1 +SPEAKER 01284 0 12.751000 1.223000 1 +SPEAKER 01284 0 18.615000 1.278140 1 +SPEAKER 01284 0 21.319000 2.537100 1 +SPEAKER 01284 0 25.374620 0.944440 1 +SPEAKER 01284 0 29.245000 1.907400 1 +SPEAKER 01284 0 32.356000 1.167000 1 +SPEAKER 01284 0 34.597000 1.314660 1 +SPEAKER 01284 0 36.930180 1.462820 1 +SPEAKER 01284 0 40.171000 1.426000 1 +SPEAKER 01284 0 43.023000 0.629400 1 +SPEAKER 01284 0 45.356000 1.111000 1 +SPEAKER 01284 0 47.115000 4.723000 1 +SPEAKER 01284 0 53.171000 0.723000 1 diff --git a/rttm/few/01288.rttm b/rttm/few/01288.rttm new file mode 100644 index 0000000000000000000000000000000000000000..6e1677941fe6e38489908e468ff8bfc650ba52db --- /dev/null +++ b/rttm/few/01288.rttm @@ -0,0 +1,10 @@ +SPEAKER 01288 0 0.004000 0.963000 2 +SPEAKER 01288 0 4.092000 6.931000 2 +SPEAKER 01288 0 12.240000 4.227000 2 +SPEAKER 01288 0 18.060000 8.092000 2 +SPEAKER 01288 0 28.097000 2.926000 2 +SPEAKER 01288 0 1.949000 1.740440 0 +SPEAKER 01288 0 26.319000 1.667000 0 +SPEAKER 01288 0 11.166000 1.301000 1 +SPEAKER 01288 0 14.993000 3.011000 1 +SPEAKER 01288 0 21.763510 3.370490 1 diff --git a/rttm/few/01290.rttm b/rttm/few/01290.rttm new file mode 100644 index 0000000000000000000000000000000000000000..2bfccf783a7932574056b24aa2ce4ffb12d59c70 --- /dev/null +++ b/rttm/few/01290.rttm @@ -0,0 +1,29 @@ +SPEAKER 01290 0 0.221000 3.246210 1 +SPEAKER 01290 0 4.319060 7.777780 1 +SPEAKER 01290 0 13.726470 0.425530 1 +SPEAKER 01290 0 19.597000 1.166510 1 +SPEAKER 01290 0 21.554000 6.228030 1 +SPEAKER 01290 0 28.282000 1.518550 1 +SPEAKER 01290 0 35.856000 1.185000 1 +SPEAKER 01290 0 38.060000 1.055360 1 +SPEAKER 01290 0 40.300000 0.815000 1 +SPEAKER 01290 0 43.967210 1.000000 1 +SPEAKER 01290 0 45.708000 0.629580 1 +SPEAKER 01290 0 3.282000 0.749660 2 +SPEAKER 01290 0 10.948690 0.388890 2 +SPEAKER 01290 0 12.171000 1.522880 2 +SPEAKER 01290 0 16.355000 2.519620 2 +SPEAKER 01290 0 19.244990 0.481480 2 +SPEAKER 01290 0 20.115360 0.629630 2 +SPEAKER 01290 0 38.231000 0.851770 2 +SPEAKER 01290 0 40.319000 0.741000 2 +SPEAKER 01290 0 43.253000 0.473470 2 +SPEAKER 01290 0 46.192000 0.932000 2 +SPEAKER 01290 0 14.245000 0.851840 0 +SPEAKER 01290 0 36.856100 2.155560 0 +SPEAKER 01290 0 39.486000 0.666000 0 +SPEAKER 01290 0 45.078000 0.926250 0 +SPEAKER 01290 0 15.375000 0.703320 3 +SPEAKER 01290 0 30.838000 5.073660 3 +SPEAKER 01290 0 36.949000 0.630000 3 +SPEAKER 01290 0 41.282000 4.558550 3 diff --git a/rttm/few/01296.rttm b/rttm/few/01296.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4fb72095f84753a8224e00b7c1a09d80a85c82d9 --- /dev/null +++ b/rttm/few/01296.rttm @@ -0,0 +1,7 @@ +SPEAKER 01296 0 0.469000 0.641000 0 +SPEAKER 01296 0 1.779000 3.736000 0 +SPEAKER 01296 0 6.214000 3.035000 0 +SPEAKER 01296 0 17.022770 0.835230 0 +SPEAKER 01296 0 5.967000 0.983000 1 +SPEAKER 01296 0 7.449000 0.550000 1 +SPEAKER 01296 0 9.079810 9.709190 1 diff --git a/rttm/few/01320.rttm b/rttm/few/01320.rttm new file mode 100644 index 0000000000000000000000000000000000000000..a57a55c55d7cb749b8dbeff4101d1a8b1489379d --- /dev/null +++ b/rttm/few/01320.rttm @@ -0,0 +1,10 @@ +SPEAKER 01320 0 0.097000 2.309700 0 +SPEAKER 01320 0 2.753000 1.166810 0 +SPEAKER 01320 0 0.405000 0.469780 2 +SPEAKER 01320 0 5.393000 3.151990 2 +SPEAKER 01320 0 10.578000 5.445000 2 +SPEAKER 01320 0 16.502440 5.117020 2 +SPEAKER 01320 0 2.744990 0.630010 1 +SPEAKER 01320 0 5.651000 0.447190 1 +SPEAKER 01320 0 9.225850 1.186150 1 +SPEAKER 01320 0 21.840000 10.424000 1 diff --git a/rttm/few/01321.rttm b/rttm/few/01321.rttm new file mode 100644 index 0000000000000000000000000000000000000000..e4e12ef40642ec0addae31b3160e968e51dd2477 --- /dev/null +++ b/rttm/few/01321.rttm @@ -0,0 +1,18 @@ +SPEAKER 01321 0 0.026000 0.421000 0 +SPEAKER 01321 0 1.064000 3.147000 0 +SPEAKER 01321 0 5.079000 1.421000 0 +SPEAKER 01321 0 9.079000 4.579000 0 +SPEAKER 01321 0 14.597000 0.350000 0 +SPEAKER 01321 0 15.921000 0.880810 0 +SPEAKER 01321 0 17.237000 0.895000 0 +SPEAKER 01321 0 18.974000 2.052000 0 +SPEAKER 01321 0 4.502000 0.524000 2 +SPEAKER 01321 0 6.744000 2.335000 2 +SPEAKER 01321 0 13.921000 0.447000 2 +SPEAKER 01321 0 15.168920 0.278080 2 +SPEAKER 01321 0 16.670000 0.398470 2 +SPEAKER 01321 0 15.247000 0.317760 1 +SPEAKER 01321 0 17.168470 0.594530 1 +SPEAKER 01321 0 18.329000 0.382000 1 +SPEAKER 01321 0 19.556000 0.716000 1 +SPEAKER 01321 0 21.325000 0.617000 1 diff --git a/rttm/few/01324.rttm b/rttm/few/01324.rttm new file mode 100644 index 0000000000000000000000000000000000000000..06d4a901cd846e7b637c54da55f0d8ff883f489c --- /dev/null +++ b/rttm/few/01324.rttm @@ -0,0 +1,38 @@ +SPEAKER 01324 0 0.023000 1.000000 1 +SPEAKER 01324 0 8.189000 0.539580 1 +SPEAKER 01324 0 20.726470 0.648150 1 +SPEAKER 01324 0 21.807000 1.138560 1 +SPEAKER 01324 0 25.477000 1.694980 1 +SPEAKER 01324 0 37.219000 2.785000 1 +SPEAKER 01324 0 45.851220 3.311320 1 +SPEAKER 01324 0 49.653110 1.165890 1 +SPEAKER 01324 0 56.509000 1.939690 1 +SPEAKER 01324 0 61.441000 0.897000 1 +SPEAKER 01324 0 0.004250 0.759260 2 +SPEAKER 01324 0 2.467000 5.445000 2 +SPEAKER 01324 0 11.967000 1.556000 2 +SPEAKER 01324 0 14.264000 1.249000 2 +SPEAKER 01324 0 15.838000 4.749070 2 +SPEAKER 01324 0 24.313000 1.265320 2 +SPEAKER 01324 0 29.618000 6.683000 2 +SPEAKER 01324 0 40.928000 0.857180 2 +SPEAKER 01324 0 44.633000 1.000000 2 +SPEAKER 01324 0 51.356100 2.220030 2 +SPEAKER 01324 0 59.190000 2.434810 2 +SPEAKER 01324 0 63.482000 1.350000 2 +SPEAKER 01324 0 65.287000 0.868400 2 +SPEAKER 01324 0 67.634000 0.963000 2 +SPEAKER 01324 0 6.838000 0.871710 0 +SPEAKER 01324 0 8.766320 2.056600 0 +SPEAKER 01324 0 20.022770 0.573230 0 +SPEAKER 01324 0 20.905000 0.692000 0 +SPEAKER 01324 0 27.229000 0.593920 0 +SPEAKER 01324 0 33.207950 0.629630 0 +SPEAKER 01324 0 36.356100 0.444450 0 +SPEAKER 01324 0 40.226470 0.537040 0 +SPEAKER 01324 0 41.841000 1.681000 0 +SPEAKER 01324 0 45.756880 0.566040 0 +SPEAKER 01324 0 49.049330 0.751220 0 +SPEAKER 01324 0 50.772000 0.842240 0 +SPEAKER 01324 0 58.259000 0.560000 0 +SPEAKER 01324 0 61.615360 0.740390 0 diff --git a/rttm/few/01325.rttm b/rttm/few/01325.rttm new file mode 100644 index 0000000000000000000000000000000000000000..b46b655b59bd251404211c2eb1210fa2779d1aa7 --- /dev/null +++ b/rttm/few/01325.rttm @@ -0,0 +1,15 @@ +SPEAKER 01325 0 0.147000 28.900000 0 +SPEAKER 01325 0 46.449000 5.240440 0 +SPEAKER 01325 0 52.186000 10.457000 0 +SPEAKER 01325 0 63.950000 0.400000 0 +SPEAKER 01325 0 69.967000 2.050000 0 +SPEAKER 01325 0 72.723000 2.321000 0 +SPEAKER 01325 0 75.523000 1.000000 0 +SPEAKER 01325 0 15.583000 0.384000 1 +SPEAKER 01325 0 20.817000 0.716000 1 +SPEAKER 01325 0 25.912000 0.449000 1 +SPEAKER 01325 0 26.967210 0.814820 1 +SPEAKER 01325 0 28.967000 17.183000 1 +SPEAKER 01325 0 51.683000 0.500000 1 +SPEAKER 01325 0 54.950000 0.583000 1 +SPEAKER 01325 0 62.683000 11.034000 1 diff --git a/rttm/few/01327.rttm b/rttm/few/01327.rttm new file mode 100644 index 0000000000000000000000000000000000000000..d1ae9cb97cd8d6d28dbb968b768098623c1f9107 --- /dev/null +++ b/rttm/few/01327.rttm @@ -0,0 +1,14 @@ +SPEAKER 01327 0 0.018000 0.634000 0 +SPEAKER 01327 0 5.430180 1.240740 0 +SPEAKER 01327 0 7.097000 7.129470 0 +SPEAKER 01327 0 14.634000 6.278000 0 +SPEAKER 01327 0 22.207950 2.944450 0 +SPEAKER 01327 0 0.856000 0.907510 1 +SPEAKER 01327 0 5.504000 2.407660 1 +SPEAKER 01327 0 8.553000 1.247550 1 +SPEAKER 01327 0 21.189000 3.389320 1 +SPEAKER 01327 0 0.023000 1.000000 2 +SPEAKER 01327 0 1.726000 3.593060 2 +SPEAKER 01327 0 7.902000 0.565210 2 +SPEAKER 01327 0 11.319060 1.000000 2 +SPEAKER 01327 0 20.652000 1.333730 2 diff --git a/rttm/few/01329.rttm b/rttm/few/01329.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c8328b4f9d1d6d4a35f7b4cd3472c4ca1f3b1efc --- /dev/null +++ b/rttm/few/01329.rttm @@ -0,0 +1,29 @@ +SPEAKER 01329 0 0.004000 1.852000 0 +SPEAKER 01329 0 2.412000 5.111000 0 +SPEAKER 01329 0 8.467000 2.130000 0 +SPEAKER 01329 0 12.060000 2.775590 0 +SPEAKER 01329 0 15.523000 0.796000 0 +SPEAKER 01329 0 16.695000 3.717000 0 +SPEAKER 01329 0 21.226000 2.389000 0 +SPEAKER 01329 0 25.652000 4.315000 0 +SPEAKER 01329 0 30.226000 1.000000 0 +SPEAKER 01329 0 31.930000 0.556000 0 +SPEAKER 01329 0 32.765000 3.628000 0 +SPEAKER 01329 0 37.097000 0.592000 0 +SPEAKER 01329 0 39.004000 3.740990 0 +SPEAKER 01329 0 43.135000 0.575590 0 +SPEAKER 01329 0 44.023000 6.812590 0 +SPEAKER 01329 0 51.338000 0.500000 0 +SPEAKER 01329 0 1.418920 0.500000 1 +SPEAKER 01329 0 2.483000 1.040000 1 +SPEAKER 01329 0 7.523000 0.796000 1 +SPEAKER 01329 0 11.115000 0.519000 1 +SPEAKER 01329 0 14.486000 0.500000 1 +SPEAKER 01329 0 24.615000 1.037000 1 +SPEAKER 01329 0 28.424000 1.580000 1 +SPEAKER 01329 0 30.856100 1.035900 1 +SPEAKER 01329 0 38.412000 0.629000 1 +SPEAKER 01329 0 41.398000 0.895920 1 +SPEAKER 01329 0 45.226000 0.556000 1 +SPEAKER 01329 0 50.264000 1.000000 1 +SPEAKER 01329 0 52.208000 1.119000 1 diff --git a/rttm/few/01330.rttm b/rttm/few/01330.rttm new file mode 100644 index 0000000000000000000000000000000000000000..3f86bc0854d0402ac2f523716a82c5c5bae2fc3b --- /dev/null +++ b/rttm/few/01330.rttm @@ -0,0 +1,8 @@ +SPEAKER 01330 0 0.023000 6.743320 1 +SPEAKER 01330 0 22.692170 1.400520 1 +SPEAKER 01330 0 6.990120 4.685690 0 +SPEAKER 01330 0 21.284990 0.705130 0 +SPEAKER 01330 0 4.743000 0.598790 2 +SPEAKER 01330 0 9.097000 0.716490 2 +SPEAKER 01330 0 11.911660 8.888890 2 +SPEAKER 01330 0 23.652000 0.902220 2 diff --git a/rttm/few/01333.rttm b/rttm/few/01333.rttm new file mode 100644 index 0000000000000000000000000000000000000000..22d75dfb93e3fc939e15dc759a7270d3ef0eb281 --- /dev/null +++ b/rttm/few/01333.rttm @@ -0,0 +1,18 @@ +SPEAKER 01333 0 0.226000 1.167140 0 +SPEAKER 01333 0 1.837580 2.537040 0 +SPEAKER 01333 0 8.741000 0.699000 0 +SPEAKER 01333 0 12.954000 1.938000 0 +SPEAKER 01333 0 18.856000 1.092690 0 +SPEAKER 01333 0 20.416000 0.828990 0 +SPEAKER 01333 0 21.819000 1.388950 0 +SPEAKER 01333 0 23.744990 1.370370 0 +SPEAKER 01333 0 25.633880 1.389120 0 +SPEAKER 01333 0 27.427000 2.540210 0 +SPEAKER 01333 0 30.411660 1.201340 0 +SPEAKER 01333 0 3.319060 3.148150 1 +SPEAKER 01333 0 7.189000 2.945000 1 +SPEAKER 01333 0 10.486000 2.389000 1 +SPEAKER 01333 0 14.344000 3.293000 1 +SPEAKER 01333 0 28.652400 0.525600 1 +SPEAKER 01333 0 27.128000 0.925000 2 +SPEAKER 01333 0 28.503000 0.575000 2 diff --git a/rttm/few/01342.rttm b/rttm/few/01342.rttm new file mode 100644 index 0000000000000000000000000000000000000000..90483ddcba057aa34243d30f89dd90ad839dccc3 --- /dev/null +++ b/rttm/few/01342.rttm @@ -0,0 +1,51 @@ +SPEAKER 01342 0 0.000000 1.131150 0 +SPEAKER 01342 0 2.097000 0.740580 0 +SPEAKER 01342 0 8.875000 0.777400 0 +SPEAKER 01342 0 11.875000 1.795920 0 +SPEAKER 01342 0 15.856000 1.000100 0 +SPEAKER 01342 0 17.578320 4.351860 0 +SPEAKER 01342 0 25.744990 2.537040 0 +SPEAKER 01342 0 31.782000 1.574100 0 +SPEAKER 01342 0 38.078000 1.037000 0 +SPEAKER 01342 0 39.856000 1.648000 0 +SPEAKER 01342 0 44.319000 0.907000 0 +SPEAKER 01342 0 47.819000 1.352000 0 +SPEAKER 01342 0 50.023000 4.259000 0 +SPEAKER 01342 0 54.967000 1.555770 0 +SPEAKER 01342 0 57.278000 0.541000 0 +SPEAKER 01342 0 58.115360 1.370370 0 +SPEAKER 01342 0 60.615000 0.574440 0 +SPEAKER 01342 0 63.523000 1.055000 0 +SPEAKER 01342 0 65.226000 0.723000 0 +SPEAKER 01342 0 71.171000 0.722140 0 +SPEAKER 01342 0 73.054000 0.598400 0 +SPEAKER 01342 0 74.301000 1.629180 0 +SPEAKER 01342 0 78.633880 0.574070 0 +SPEAKER 01342 0 80.078000 1.389210 0 +SPEAKER 01342 0 1.023000 1.203000 2 +SPEAKER 01342 0 6.597000 0.685030 2 +SPEAKER 01342 0 9.837580 0.629630 2 +SPEAKER 01342 0 16.504000 1.185440 2 +SPEAKER 01342 0 24.745000 1.189000 2 +SPEAKER 01342 0 29.652000 0.778180 2 +SPEAKER 01342 0 33.096840 1.685160 2 +SPEAKER 01342 0 42.597000 1.722000 2 +SPEAKER 01342 0 45.819060 1.240940 2 +SPEAKER 01342 0 51.115000 0.889250 2 +SPEAKER 01342 0 65.449000 1.703000 2 +SPEAKER 01342 0 72.171000 0.852000 2 +SPEAKER 01342 0 7.023000 1.592360 1 +SPEAKER 01342 0 10.764000 0.592100 1 +SPEAKER 01342 0 22.004250 3.870370 1 +SPEAKER 01342 0 27.485730 0.814820 1 +SPEAKER 01342 0 29.801000 2.500000 1 +SPEAKER 01342 0 34.782030 1.869970 1 +SPEAKER 01342 0 37.530000 0.934480 1 +SPEAKER 01342 0 45.152000 0.852000 1 +SPEAKER 01342 0 47.123000 0.659000 1 +SPEAKER 01342 0 49.171000 0.889000 1 +SPEAKER 01342 0 61.264000 2.444000 1 +SPEAKER 01342 0 64.652400 0.666600 1 +SPEAKER 01342 0 68.059810 1.111110 1 +SPEAKER 01342 0 75.726470 3.259530 1 +SPEAKER 01342 0 81.301000 1.500000 1 diff --git a/rttm/few/01344.rttm b/rttm/few/01344.rttm new file mode 100644 index 0000000000000000000000000000000000000000..5af29f36986993621f3b7977f3c0ea4eada0f72b --- /dev/null +++ b/rttm/few/01344.rttm @@ -0,0 +1,6 @@ +SPEAKER 01344 0 0.014000 0.967420 1 +SPEAKER 01344 0 3.041000 0.752920 1 +SPEAKER 01344 0 1.115000 1.991420 0 +SPEAKER 01344 0 3.413000 0.839260 0 +SPEAKER 01344 0 5.002000 12.058000 0 +SPEAKER 01344 0 17.421000 7.247000 0 diff --git a/rttm/few/01348.rttm b/rttm/few/01348.rttm new file mode 100644 index 0000000000000000000000000000000000000000..68c43cedd26cf380e5e525519d485b9ae7e090b8 --- /dev/null +++ b/rttm/few/01348.rttm @@ -0,0 +1,66 @@ +SPEAKER 01348 0 0.024000 2.729750 1 +SPEAKER 01348 0 3.147000 1.710920 1 +SPEAKER 01348 0 5.163000 4.215750 1 +SPEAKER 01348 0 15.168000 0.486000 1 +SPEAKER 01348 0 18.119000 3.103000 1 +SPEAKER 01348 0 24.031000 0.611000 1 +SPEAKER 01348 0 35.225000 6.747000 1 +SPEAKER 01348 0 42.420000 1.146250 1 +SPEAKER 01348 0 43.993000 6.844080 1 +SPEAKER 01348 0 60.338000 1.417000 1 +SPEAKER 01348 0 64.754000 0.806000 1 +SPEAKER 01348 0 77.382000 0.733000 1 +SPEAKER 01348 0 91.670420 0.416660 1 +SPEAKER 01348 0 92.943000 1.264000 1 +SPEAKER 01348 0 95.178000 1.471000 1 +SPEAKER 01348 0 113.980000 0.454000 1 +SPEAKER 01348 0 118.553000 3.918000 1 +SPEAKER 01348 0 125.233000 1.291580 1 +SPEAKER 01348 0 127.189440 2.777770 1 +SPEAKER 01348 0 131.698000 0.806250 1 +SPEAKER 01348 0 133.893000 4.182000 1 +SPEAKER 01348 0 139.075000 6.866250 1 +SPEAKER 01348 0 147.374620 1.759380 1 +SPEAKER 01348 0 149.764000 0.685000 1 +SPEAKER 01348 0 151.226000 10.593060 1 +SPEAKER 01348 0 172.836000 0.890470 1 +SPEAKER 01348 0 200.685000 0.653000 1 +SPEAKER 01348 0 202.397000 1.143000 1 +SPEAKER 01348 0 8.535000 3.635420 0 +SPEAKER 01348 0 13.026000 2.227750 0 +SPEAKER 01348 0 15.751000 3.961080 0 +SPEAKER 01348 0 20.575000 2.678750 0 +SPEAKER 01348 0 23.599000 1.467250 0 +SPEAKER 01348 0 25.482920 5.270830 0 +SPEAKER 01348 0 31.263510 4.111110 0 +SPEAKER 01348 0 38.941000 0.521080 0 +SPEAKER 01348 0 41.285000 1.968000 0 +SPEAKER 01348 0 51.013000 2.636580 0 +SPEAKER 01348 0 54.304000 6.829880 0 +SPEAKER 01348 0 61.774000 4.542250 0 +SPEAKER 01348 0 66.796000 1.000000 0 +SPEAKER 01348 0 68.399000 3.021420 0 +SPEAKER 01348 0 71.831000 11.860250 0 +SPEAKER 01348 0 84.289000 1.289320 0 +SPEAKER 01348 0 86.548000 6.872420 0 +SPEAKER 01348 0 93.869000 1.368000 0 +SPEAKER 01348 0 96.179000 8.595580 0 +SPEAKER 01348 0 105.189000 6.377250 0 +SPEAKER 01348 0 112.406000 1.524180 0 +SPEAKER 01348 0 114.519000 1.318080 0 +SPEAKER 01348 0 116.379000 2.145580 0 +SPEAKER 01348 0 119.128000 0.675000 0 +SPEAKER 01348 0 122.396000 5.571210 0 +SPEAKER 01348 0 129.020000 4.539810 0 +SPEAKER 01348 0 136.040000 2.928000 0 +SPEAKER 01348 0 144.861000 2.013620 0 +SPEAKER 01348 0 147.618000 2.256620 0 +SPEAKER 01348 0 150.897000 1.088730 0 +SPEAKER 01348 0 162.031000 4.826920 0 +SPEAKER 01348 0 167.404000 4.703920 0 +SPEAKER 01348 0 172.633880 0.869870 0 +SPEAKER 01348 0 173.933000 8.549920 0 +SPEAKER 01348 0 182.992000 10.990920 0 +SPEAKER 01348 0 194.363000 1.733840 0 +SPEAKER 01348 0 196.726470 2.370370 0 +SPEAKER 01348 0 199.835000 2.918750 0 diff --git a/rttm/few/01356.rttm b/rttm/few/01356.rttm new file mode 100644 index 0000000000000000000000000000000000000000..e9e0e3d39b04f67e7767b6130f7b4c255eb8da10 --- /dev/null +++ b/rttm/few/01356.rttm @@ -0,0 +1,83 @@ +SPEAKER 01356 0 0.013000 2.648000 1 +SPEAKER 01356 0 3.038000 0.975000 1 +SPEAKER 01356 0 6.875000 2.563000 1 +SPEAKER 01356 0 11.899000 0.327000 1 +SPEAKER 01356 0 14.811000 0.760000 1 +SPEAKER 01356 0 19.177000 4.531000 1 +SPEAKER 01356 0 25.311000 3.429000 1 +SPEAKER 01356 0 29.922000 1.323000 1 +SPEAKER 01356 0 34.503000 5.401990 1 +SPEAKER 01356 0 45.299000 0.358000 1 +SPEAKER 01356 0 51.224000 1.087000 1 +SPEAKER 01356 0 53.010000 2.357000 1 +SPEAKER 01356 0 55.708000 2.707000 1 +SPEAKER 01356 0 59.375000 4.603000 1 +SPEAKER 01356 0 64.668000 0.540000 1 +SPEAKER 01356 0 65.637000 2.547000 1 +SPEAKER 01356 0 69.121000 3.908000 1 +SPEAKER 01356 0 74.764000 1.060000 1 +SPEAKER 01356 0 77.415000 1.293000 1 +SPEAKER 01356 0 95.455000 0.658000 1 +SPEAKER 01356 0 97.542000 1.793000 1 +SPEAKER 01356 0 100.637000 4.285000 1 +SPEAKER 01356 0 105.677000 0.944000 1 +SPEAKER 01356 0 107.034000 1.857000 1 +SPEAKER 01356 0 109.327000 0.961000 1 +SPEAKER 01356 0 110.795000 1.588000 1 +SPEAKER 01356 0 112.788000 7.028000 1 +SPEAKER 01356 0 125.394000 2.000000 1 +SPEAKER 01356 0 130.080000 2.080000 1 +SPEAKER 01356 0 135.650000 1.548000 1 +SPEAKER 01356 0 137.807000 7.431000 1 +SPEAKER 01356 0 153.394000 4.314000 1 +SPEAKER 01356 0 158.385000 7.100730 1 +SPEAKER 01356 0 166.041290 9.205710 1 +SPEAKER 01356 0 179.855000 3.392000 1 +SPEAKER 01356 0 183.885000 1.862000 1 +SPEAKER 01356 0 193.270000 1.300320 1 +SPEAKER 01356 0 195.056000 3.074000 1 +SPEAKER 01356 0 198.610000 4.618000 1 +SPEAKER 01356 0 4.166000 2.553000 0 +SPEAKER 01356 0 9.827000 2.421000 0 +SPEAKER 01356 0 13.788000 3.031060 0 +SPEAKER 01356 0 17.291000 2.292000 0 +SPEAKER 01356 0 24.653000 1.166000 0 +SPEAKER 01356 0 27.264000 0.484000 0 +SPEAKER 01356 0 28.289000 1.300000 0 +SPEAKER 01356 0 30.423000 1.547000 0 +SPEAKER 01356 0 32.280000 2.158000 0 +SPEAKER 01356 0 39.391000 3.817000 0 +SPEAKER 01356 0 43.843000 0.730000 0 +SPEAKER 01356 0 44.875000 1.397000 0 +SPEAKER 01356 0 46.597000 0.467000 0 +SPEAKER 01356 0 47.684000 0.373000 0 +SPEAKER 01356 0 51.600000 1.251000 0 +SPEAKER 01356 0 58.756000 0.381000 0 +SPEAKER 01356 0 65.653000 1.568000 0 +SPEAKER 01356 0 69.565000 1.400000 0 +SPEAKER 01356 0 72.684000 4.365000 0 +SPEAKER 01356 0 78.827000 2.429000 0 +SPEAKER 01356 0 81.700000 2.072000 0 +SPEAKER 01356 0 84.224000 2.405000 0 +SPEAKER 01356 0 87.502000 3.413000 0 +SPEAKER 01356 0 91.621000 1.357000 0 +SPEAKER 01356 0 93.296000 2.230000 0 +SPEAKER 01356 0 96.391000 1.833000 0 +SPEAKER 01356 0 99.264000 1.873000 0 +SPEAKER 01356 0 120.267000 1.882000 0 +SPEAKER 01356 0 122.640000 0.970000 0 +SPEAKER 01356 0 128.119000 0.638000 0 +SPEAKER 01356 0 129.287000 1.764000 0 +SPEAKER 01356 0 132.019000 3.126000 0 +SPEAKER 01356 0 135.524840 0.732160 0 +SPEAKER 01356 0 145.561000 4.314000 0 +SPEAKER 01356 0 150.159000 1.946730 0 +SPEAKER 01356 0 152.473000 0.578000 0 +SPEAKER 01356 0 161.189000 0.603000 0 +SPEAKER 01356 0 170.502000 0.422000 0 +SPEAKER 01356 0 175.473000 1.021070 0 +SPEAKER 01356 0 177.039000 3.944000 0 +SPEAKER 01356 0 181.522000 0.725000 0 +SPEAKER 01356 0 188.640000 1.000000 0 +SPEAKER 01356 0 190.228000 1.941000 0 +SPEAKER 01356 0 192.806000 2.059000 0 diff --git a/rttm/few/01370.rttm b/rttm/few/01370.rttm new file mode 100644 index 0000000000000000000000000000000000000000..36d4eeb94dbd0fa210759ddf74c38592253b132e --- /dev/null +++ b/rttm/few/01370.rttm @@ -0,0 +1,10 @@ +SPEAKER 01370 0 0.375000 5.758880 0 +SPEAKER 01370 0 14.338000 1.369950 0 +SPEAKER 01370 0 17.745000 0.722000 0 +SPEAKER 01370 0 6.264000 8.092100 1 +SPEAKER 01370 0 18.634000 0.648030 1 +SPEAKER 01370 0 20.004250 5.259750 1 +SPEAKER 01370 0 9.041000 0.833620 2 +SPEAKER 01370 0 14.133880 3.870120 2 +SPEAKER 01370 0 19.152400 1.073600 2 +SPEAKER 01370 0 25.264000 0.552000 2 diff --git a/rttm/few/01378.rttm b/rttm/few/01378.rttm new file mode 100644 index 0000000000000000000000000000000000000000..92766203670329fd50ae45a065a1bbf602001bd0 --- /dev/null +++ b/rttm/few/01378.rttm @@ -0,0 +1,13 @@ +SPEAKER 01378 0 0.004000 18.648400 0 +SPEAKER 01378 0 19.134000 4.996100 0 +SPEAKER 01378 0 24.658000 1.695510 0 +SPEAKER 01378 0 44.431000 0.722000 0 +SPEAKER 01378 0 47.207950 0.648150 0 +SPEAKER 01378 0 48.764000 0.758770 0 +SPEAKER 01378 0 52.486000 0.535200 0 +SPEAKER 01378 0 56.004000 3.778000 0 +SPEAKER 01378 0 8.248000 0.552550 1 +SPEAKER 01378 0 18.908000 0.559210 1 +SPEAKER 01378 0 26.736000 1.564310 1 +SPEAKER 01378 0 28.747120 16.618910 1 +SPEAKER 01378 0 46.034000 10.159610 1 diff --git a/rttm/few/01380.rttm b/rttm/few/01380.rttm new file mode 100644 index 0000000000000000000000000000000000000000..7b444243db2075d9423c0756c221270a093a0e8a --- /dev/null +++ b/rttm/few/01380.rttm @@ -0,0 +1,7 @@ +SPEAKER 01380 0 0.007000 2.789000 1 +SPEAKER 01380 0 6.837580 0.458420 1 +SPEAKER 01380 0 7.821000 0.664730 1 +SPEAKER 01380 0 9.606000 0.355000 1 +SPEAKER 01380 0 12.133880 17.055560 1 +SPEAKER 01380 0 2.987210 9.098790 0 +SPEAKER 01380 0 18.811000 1.378440 0 diff --git a/rttm/few/01385.rttm b/rttm/few/01385.rttm new file mode 100644 index 0000000000000000000000000000000000000000..bf30762639bebddee40f944cd15325807bcf20ca --- /dev/null +++ b/rttm/few/01385.rttm @@ -0,0 +1,16 @@ +SPEAKER 01385 0 22.333000 1.874950 1 +SPEAKER 01385 0 25.143000 1.286000 1 +SPEAKER 01385 0 30.300550 0.981480 1 +SPEAKER 01385 0 36.096000 0.511920 1 +SPEAKER 01385 0 36.923000 4.081250 1 +SPEAKER 01385 0 41.317000 1.936750 1 +SPEAKER 01385 0 0.045000 2.062920 0 +SPEAKER 01385 0 2.439000 7.773080 0 +SPEAKER 01385 0 10.661000 3.071920 0 +SPEAKER 01385 0 14.037000 4.820920 0 +SPEAKER 01385 0 19.135000 3.931250 0 +SPEAKER 01385 0 24.630000 0.751000 0 +SPEAKER 01385 0 27.167000 2.809000 0 +SPEAKER 01385 0 31.071000 4.891080 0 +SPEAKER 01385 0 43.476000 1.006920 0 +SPEAKER 01385 0 44.825000 1.000000 0 diff --git a/rttm/few/01392.rttm b/rttm/few/01392.rttm new file mode 100644 index 0000000000000000000000000000000000000000..db629af59c4b50c41d0c76786c1f93e9b915b9f9 --- /dev/null +++ b/rttm/few/01392.rttm @@ -0,0 +1,6 @@ +SPEAKER 01392 0 0.017000 2.283000 0 +SPEAKER 01392 0 0.017000 1.013000 h0 +SPEAKER 01392 0 2.210000 4.235730 1 +SPEAKER 01392 0 6.819060 6.964450 1 +SPEAKER 01392 0 14.094000 4.819140 1 +SPEAKER 01392 0 19.282030 1.396290 1 diff --git a/rttm/few/01398.rttm b/rttm/few/01398.rttm new file mode 100644 index 0000000000000000000000000000000000000000..a7824b6d699d84daeed8d95830715a40b68562c3 --- /dev/null +++ b/rttm/few/01398.rttm @@ -0,0 +1,22 @@ +SPEAKER 01398 0 0.000000 0.486000 1 +SPEAKER 01398 0 1.194000 1.792000 1 +SPEAKER 01398 0 3.393000 2.000000 1 +SPEAKER 01398 0 8.083000 7.769000 1 +SPEAKER 01398 0 17.004000 3.574000 1 +SPEAKER 01398 0 21.100360 0.806640 1 +SPEAKER 01398 0 23.101000 2.248000 1 +SPEAKER 01398 0 26.661340 2.083650 1 +SPEAKER 01398 0 0.023000 1.870040 3 +SPEAKER 01398 0 3.041000 0.833620 3 +SPEAKER 01398 0 10.800000 0.426000 3 +SPEAKER 01398 0 13.449000 0.365000 3 +SPEAKER 01398 0 15.785000 1.075850 3 +SPEAKER 01398 0 22.282030 1.306130 3 +SPEAKER 01398 0 25.137000 0.536530 3 +SPEAKER 01398 0 3.541000 3.254000 0 +SPEAKER 01398 0 21.881000 0.734000 0 +SPEAKER 01398 0 24.806000 2.180000 0 +SPEAKER 01398 0 29.998000 1.080000 0 +SPEAKER 01398 0 2.417430 0.585370 2 +SPEAKER 01398 0 20.624750 0.676250 2 +SPEAKER 01398 0 27.307680 2.097560 2 diff --git a/rttm/few/01399.rttm b/rttm/few/01399.rttm new file mode 100644 index 0000000000000000000000000000000000000000..9c48b75b7f8550f508e41d2a0c27f5ac78711513 --- /dev/null +++ b/rttm/few/01399.rttm @@ -0,0 +1,15 @@ +SPEAKER 01399 0 0.040000 0.742030 1 +SPEAKER 01399 0 1.096840 0.981480 1 +SPEAKER 01399 0 2.598000 2.581000 1 +SPEAKER 01399 0 7.578320 1.351680 1 +SPEAKER 01399 0 11.431660 3.276290 1 +SPEAKER 01399 0 18.935000 1.651000 1 +SPEAKER 01399 0 21.189440 1.092590 1 +SPEAKER 01399 0 24.319060 1.338940 1 +SPEAKER 01399 0 2.561000 1.776000 0 +SPEAKER 01399 0 5.045730 0.888270 0 +SPEAKER 01399 0 8.026000 1.867140 0 +SPEAKER 01399 0 10.494620 2.878380 0 +SPEAKER 01399 0 14.321000 4.498060 0 +SPEAKER 01399 0 20.430000 1.292000 0 +SPEAKER 01399 0 22.490000 3.118000 0 diff --git a/rttm/few/01407.rttm b/rttm/few/01407.rttm new file mode 100644 index 0000000000000000000000000000000000000000..bb03cc7d50b44cec9471021afcabdb659cefdd0e --- /dev/null +++ b/rttm/few/01407.rttm @@ -0,0 +1,62 @@ +SPEAKER 01407 0 0.000000 1.867970 0 +SPEAKER 01407 0 2.231000 3.190000 0 +SPEAKER 01407 0 7.818000 4.428340 0 +SPEAKER 01407 0 22.219320 0.581080 0 +SPEAKER 01407 0 23.435530 2.982980 0 +SPEAKER 01407 0 31.753000 0.581000 0 +SPEAKER 01407 0 43.496000 0.433000 0 +SPEAKER 01407 0 48.682430 2.324320 0 +SPEAKER 01407 0 57.041000 1.171630 0 +SPEAKER 01407 0 62.212630 3.029370 0 +SPEAKER 01407 0 69.672000 3.386000 0 +SPEAKER 01407 0 73.676000 1.241750 0 +SPEAKER 01407 0 75.555680 2.509890 0 +SPEAKER 01407 0 81.145000 15.455700 0 +SPEAKER 01407 0 97.362610 6.853960 0 +SPEAKER 01407 0 104.708000 2.245410 0 +SPEAKER 01407 0 117.531000 1.454730 0 +SPEAKER 01407 0 119.800550 9.166660 0 +SPEAKER 01407 0 129.356000 4.018620 0 +SPEAKER 01407 0 140.837580 1.875050 0 +SPEAKER 01407 0 143.891000 0.464000 0 +SPEAKER 01407 0 148.183220 1.265470 0 +SPEAKER 01407 0 149.838000 0.592180 0 +SPEAKER 01407 0 152.170920 2.500080 0 +SPEAKER 01407 0 155.448000 1.519210 0 +SPEAKER 01407 0 157.615000 0.555920 0 +SPEAKER 01407 0 161.559810 7.706050 0 +SPEAKER 01407 0 169.849000 1.344610 0 +SPEAKER 01407 0 171.591000 2.481920 0 +SPEAKER 01407 0 174.780000 1.465340 0 +SPEAKER 01407 0 176.956000 0.311000 0 +SPEAKER 01407 0 6.745000 0.814810 1 +SPEAKER 01407 0 12.363000 3.343000 1 +SPEAKER 01407 0 16.356000 2.333000 1 +SPEAKER 01407 0 19.578000 2.389000 1 +SPEAKER 01407 0 27.394990 2.567570 1 +SPEAKER 01407 0 30.367970 1.108100 1 +SPEAKER 01407 0 32.320000 4.197560 1 +SPEAKER 01407 0 36.932000 6.532480 1 +SPEAKER 01407 0 43.759000 1.923430 1 +SPEAKER 01407 0 46.238000 2.303400 1 +SPEAKER 01407 0 51.054220 5.494710 1 +SPEAKER 01407 0 56.989000 5.438720 1 +SPEAKER 01407 0 63.264000 2.044000 1 +SPEAKER 01407 0 66.083000 1.522000 1 +SPEAKER 01407 0 68.330000 1.203780 1 +SPEAKER 01407 0 70.806000 0.922090 1 +SPEAKER 01407 0 78.060000 3.030160 1 +SPEAKER 01407 0 99.644000 0.584000 1 +SPEAKER 01407 0 107.329000 0.598720 1 +SPEAKER 01407 0 108.215600 9.159400 1 +SPEAKER 01407 0 126.559810 0.425920 1 +SPEAKER 01407 0 130.830280 0.335720 1 +SPEAKER 01407 0 133.578320 3.759260 1 +SPEAKER 01407 0 137.967000 1.093000 1 +SPEAKER 01407 0 139.849000 0.963000 1 +SPEAKER 01407 0 142.878000 4.666000 1 +SPEAKER 01407 0 148.133880 0.981480 1 +SPEAKER 01407 0 150.830280 1.913720 1 +SPEAKER 01407 0 157.004000 1.537290 1 +SPEAKER 01407 0 159.486000 2.240470 1 +SPEAKER 01407 0 173.452230 3.755770 1 diff --git a/rttm/few/01418.rttm b/rttm/few/01418.rttm new file mode 100644 index 0000000000000000000000000000000000000000..f7c7a38f541df6263208269a5e4c5d7700f04ac0 --- /dev/null +++ b/rttm/few/01418.rttm @@ -0,0 +1,9 @@ +SPEAKER 01418 0 1.764000 6.666180 0 +SPEAKER 01418 0 9.134000 11.518000 0 +SPEAKER 01418 0 22.264000 2.777000 0 +SPEAKER 01418 0 29.523000 2.037000 0 +SPEAKER 01418 0 33.838000 7.629000 0 +SPEAKER 01418 0 8.930000 0.593000 1 +SPEAKER 01418 0 20.810000 1.546000 1 +SPEAKER 01418 0 24.986000 4.259000 1 +SPEAKER 01418 0 41.467000 0.732000 1 diff --git a/rttm/few/01424.rttm b/rttm/few/01424.rttm new file mode 100644 index 0000000000000000000000000000000000000000..38a83b1b958954d1918a0712ec972d0a1da3fdca --- /dev/null +++ b/rttm/few/01424.rttm @@ -0,0 +1,10 @@ +SPEAKER 01424 0 0.000000 2.226470 0 +SPEAKER 01424 0 2.615360 6.481480 0 +SPEAKER 01424 0 17.652000 3.945000 0 +SPEAKER 01424 0 22.134000 2.889000 0 +SPEAKER 01424 0 10.893000 4.019000 1 +SPEAKER 01424 0 16.375000 0.684810 1 +SPEAKER 01424 0 24.949000 1.352000 1 +SPEAKER 01424 0 0.015000 0.692950 2 +SPEAKER 01424 0 2.801000 1.166210 2 +SPEAKER 01424 0 12.597000 3.981320 2 diff --git a/rttm/few/01429.rttm b/rttm/few/01429.rttm new file mode 100644 index 0000000000000000000000000000000000000000..1696a8b667a5ba6c715ba543688656081a54b10e --- /dev/null +++ b/rttm/few/01429.rttm @@ -0,0 +1,19 @@ +SPEAKER 01429 0 0.004000 1.334000 1 +SPEAKER 01429 0 2.838000 1.295880 1 +SPEAKER 01429 0 5.560000 2.712000 1 +SPEAKER 01429 0 10.282000 0.869000 1 +SPEAKER 01429 0 12.504000 0.482000 1 +SPEAKER 01429 0 14.467000 3.093000 1 +SPEAKER 01429 0 19.597000 1.888730 1 +SPEAKER 01429 0 23.726000 0.426400 1 +SPEAKER 01429 0 25.619000 2.070000 1 +SPEAKER 01429 0 28.467000 0.767000 1 +SPEAKER 01429 0 1.967000 0.717000 0 +SPEAKER 01429 0 4.412000 0.659000 0 +SPEAKER 01429 0 6.203000 0.840000 0 +SPEAKER 01429 0 8.449000 1.571000 0 +SPEAKER 01429 0 10.986000 1.288000 0 +SPEAKER 01429 0 12.948690 3.290310 0 +SPEAKER 01429 0 17.634000 2.715000 0 +SPEAKER 01429 0 21.449000 4.536730 0 +SPEAKER 01429 0 26.856000 1.846000 0 diff --git a/rttm/few/01432.rttm b/rttm/few/01432.rttm new file mode 100644 index 0000000000000000000000000000000000000000..7fa25195a28f257d0c73e6982fa4a4e498aecb1a --- /dev/null +++ b/rttm/few/01432.rttm @@ -0,0 +1,11 @@ +SPEAKER 01432 0 0.333000 2.505000 1 +SPEAKER 01432 0 8.519000 1.515000 1 +SPEAKER 01432 0 11.989000 2.182000 1 +SPEAKER 01432 0 18.428000 0.955000 1 +SPEAKER 01432 0 3.444000 0.803000 0 +SPEAKER 01432 0 4.792000 0.879000 0 +SPEAKER 01432 0 6.853000 0.681000 0 +SPEAKER 01432 0 13.838000 1.303000 0 +SPEAKER 01432 0 15.838000 0.944030 0 +SPEAKER 01432 0 19.111000 2.842000 0 +SPEAKER 01432 0 22.519000 1.091000 0 diff --git a/rttm/few/01433.rttm b/rttm/few/01433.rttm new file mode 100644 index 0000000000000000000000000000000000000000..eccf69007b9f625e67ecae8b3077531454a024db --- /dev/null +++ b/rttm/few/01433.rttm @@ -0,0 +1,7 @@ +SPEAKER 01433 0 0.004000 1.778000 0 +SPEAKER 01433 0 2.412000 10.113730 0 +SPEAKER 01433 0 12.930000 8.222400 0 +SPEAKER 01433 0 1.819000 1.945000 1 +SPEAKER 01433 0 9.152000 1.000000 1 +SPEAKER 01433 0 16.226000 0.463440 1 +SPEAKER 01433 0 20.708000 0.851810 1 diff --git a/rttm/few/01441.rttm b/rttm/few/01441.rttm new file mode 100644 index 0000000000000000000000000000000000000000..f32b222c6faa99c19ca7aa36c8ec123a724c352e --- /dev/null +++ b/rttm/few/01441.rttm @@ -0,0 +1,17 @@ +SPEAKER 01441 0 0.000000 3.559810 1 +SPEAKER 01441 0 16.727000 0.634000 1 +SPEAKER 01441 0 19.744990 0.388890 1 +SPEAKER 01441 0 35.411660 1.055550 1 +SPEAKER 01441 0 53.304000 0.792840 1 +SPEAKER 01441 0 3.837000 6.519100 0 +SPEAKER 01441 0 10.726470 6.191110 0 +SPEAKER 01441 0 17.607000 3.304660 0 +SPEAKER 01441 0 21.356000 3.963060 0 +SPEAKER 01441 0 25.745000 9.481470 0 +SPEAKER 01441 0 36.504000 3.833580 0 +SPEAKER 01441 0 40.800550 5.055550 0 +SPEAKER 01441 0 46.298000 3.224770 0 +SPEAKER 01441 0 50.356100 2.851850 0 +SPEAKER 01441 0 54.559810 6.618510 0 +SPEAKER 01441 0 61.448000 0.889580 0 +SPEAKER 01441 0 62.708000 1.592550 0 diff --git a/rttm/few/01443.rttm b/rttm/few/01443.rttm new file mode 100644 index 0000000000000000000000000000000000000000..7d45b4ee87adef76d42de22262342bb00dcfb098 --- /dev/null +++ b/rttm/few/01443.rttm @@ -0,0 +1,224 @@ +SPEAKER 01443 0 0.000000 1.935530 0 +SPEAKER 01443 0 3.630000 0.708000 0 +SPEAKER 01443 0 5.246340 3.243250 0 +SPEAKER 01443 0 12.976070 1.633930 0 +SPEAKER 01443 0 16.110000 0.756890 0 +SPEAKER 01443 0 21.277000 1.579100 0 +SPEAKER 01443 0 24.151750 3.851350 0 +SPEAKER 01443 0 29.004000 0.440000 0 +SPEAKER 01443 0 29.762000 1.212000 0 +SPEAKER 01443 0 31.297000 7.188730 0 +SPEAKER 01443 0 45.408000 1.228000 0 +SPEAKER 01443 0 46.913000 1.167000 0 +SPEAKER 01443 0 51.413000 3.561000 0 +SPEAKER 01443 0 59.216000 1.576000 0 +SPEAKER 01443 0 61.216000 1.409000 0 +SPEAKER 01443 0 67.747000 1.526370 0 +SPEAKER 01443 0 71.353000 2.636000 0 +SPEAKER 01443 0 77.903000 8.813000 0 +SPEAKER 01443 0 94.186000 1.030000 0 +SPEAKER 01443 0 101.701000 12.364000 0 +SPEAKER 01443 0 129.476070 7.057930 0 +SPEAKER 01443 0 137.959000 1.197000 0 +SPEAKER 01443 0 143.651750 4.625250 0 +SPEAKER 01443 0 150.974000 0.864000 0 +SPEAKER 01443 0 152.959000 1.434140 0 +SPEAKER 01443 0 157.247000 1.545000 0 +SPEAKER 01443 0 161.701000 1.076000 0 +SPEAKER 01443 0 166.474000 3.288000 0 +SPEAKER 01443 0 170.065000 10.661470 0 +SPEAKER 01443 0 181.959000 3.106000 0 +SPEAKER 01443 0 189.716000 11.773000 0 +SPEAKER 01443 0 234.201000 7.940890 0 +SPEAKER 01443 0 245.763510 5.422490 0 +SPEAKER 01443 0 253.832000 0.642000 0 +SPEAKER 01443 0 255.358000 0.973540 0 +SPEAKER 01443 0 261.524000 12.303000 0 +SPEAKER 01443 0 278.463000 3.961000 0 +SPEAKER 01443 0 283.565000 1.227000 0 +SPEAKER 01443 0 285.462000 7.527000 0 +SPEAKER 01443 0 310.565000 0.909000 0 +SPEAKER 01443 0 314.459000 1.060000 0 +SPEAKER 01443 0 317.459000 1.136000 0 +SPEAKER 01443 0 322.338000 0.924000 0 +SPEAKER 01443 0 323.687000 2.166000 0 +SPEAKER 01443 0 328.743000 0.520510 0 +SPEAKER 01443 0 331.833000 1.986060 0 +SPEAKER 01443 0 336.471000 0.533250 0 +SPEAKER 01443 0 347.837580 0.425930 0 +SPEAKER 01443 0 348.959000 3.748950 0 +SPEAKER 01443 0 353.221000 2.875840 0 +SPEAKER 01443 0 371.565000 5.409000 0 +SPEAKER 01443 0 378.368000 0.580690 0 +SPEAKER 01443 0 394.249000 2.437000 0 +SPEAKER 01443 0 402.247000 23.424000 0 +SPEAKER 01443 0 428.610000 2.909000 0 +SPEAKER 01443 0 431.913000 1.485000 0 +SPEAKER 01443 0 437.317000 1.036000 0 +SPEAKER 01443 0 439.989000 1.333000 0 +SPEAKER 01443 0 449.656000 0.742000 0 +SPEAKER 01443 0 451.550000 0.788000 0 +SPEAKER 01443 0 455.777000 1.870000 0 +SPEAKER 01443 0 458.004000 0.864000 0 +SPEAKER 01443 0 460.937000 1.931000 0 +SPEAKER 01443 0 463.974000 0.848000 0 +SPEAKER 01443 0 468.534000 0.410000 0 +SPEAKER 01443 0 469.197000 1.125000 0 +SPEAKER 01443 0 472.745000 6.259000 0 +SPEAKER 01443 0 481.367000 1.319000 0 +SPEAKER 01443 0 486.731000 11.699180 0 +SPEAKER 01443 0 499.322000 0.700770 0 +SPEAKER 01443 0 501.641000 0.511000 0 +SPEAKER 01443 0 506.307000 17.197000 0 +SPEAKER 01443 0 527.979000 3.025000 0 +SPEAKER 01443 0 533.282000 1.934000 0 +SPEAKER 01443 0 539.171000 6.907320 0 +SPEAKER 01443 0 546.417000 6.193000 0 +SPEAKER 01443 0 553.308000 1.923000 0 +SPEAKER 01443 0 557.991000 2.407000 0 +SPEAKER 01443 0 561.683000 1.594000 0 +SPEAKER 01443 0 563.747000 4.909000 0 +SPEAKER 01443 0 574.868000 0.747360 0 +SPEAKER 01443 0 579.495000 1.305550 0 +SPEAKER 01443 0 600.945000 0.438000 0 +SPEAKER 01443 0 602.496000 3.902000 0 +SPEAKER 01443 0 617.944000 0.924000 0 +SPEAKER 01443 0 634.034000 1.788000 0 +SPEAKER 01443 0 640.974000 4.227000 0 +SPEAKER 01443 0 650.383000 0.750880 0 +SPEAKER 01443 0 651.777000 3.212000 0 +SPEAKER 01443 0 656.489000 12.394000 0 +SPEAKER 01443 0 670.716000 2.177140 0 +SPEAKER 01443 0 676.903000 4.586000 0 +SPEAKER 01443 0 687.019000 2.197000 0 +SPEAKER 01443 0 690.974000 3.500000 0 +SPEAKER 01443 0 703.428000 3.531000 0 +SPEAKER 01443 0 707.928000 0.561000 0 +SPEAKER 01443 0 720.342000 1.500000 0 +SPEAKER 01443 0 723.424000 1.550000 0 +SPEAKER 01443 0 726.819000 1.670000 0 +SPEAKER 01443 0 728.792000 7.333000 0 +SPEAKER 01443 0 737.992000 0.467000 0 +SPEAKER 01443 0 742.459000 3.848000 0 +SPEAKER 01443 0 747.189440 1.451560 0 +SPEAKER 01443 0 751.231000 2.546000 0 +SPEAKER 01443 0 758.747000 0.803000 0 +SPEAKER 01443 0 759.838000 18.469000 0 +SPEAKER 01443 0 780.120000 10.909000 0 +SPEAKER 01443 0 794.610000 5.409000 0 +SPEAKER 01443 0 802.110000 2.515000 0 +SPEAKER 01443 0 806.777000 9.106000 0 +SPEAKER 01443 0 820.984000 13.460000 0 +SPEAKER 01443 0 836.416000 0.709000 0 +SPEAKER 01443 0 840.095000 3.712000 0 +SPEAKER 01443 0 848.169000 0.403000 0 +SPEAKER 01443 0 7.686000 0.836770 1 +SPEAKER 01443 0 9.022770 1.365230 1 +SPEAKER 01443 0 10.922020 1.716220 1 +SPEAKER 01443 0 14.610000 1.339050 1 +SPEAKER 01443 0 16.873000 4.742360 1 +SPEAKER 01443 0 38.298000 7.146000 1 +SPEAKER 01443 0 48.747000 2.742000 1 +SPEAKER 01443 0 55.176000 4.056830 1 +SPEAKER 01443 0 62.838000 4.515000 1 +SPEAKER 01443 0 70.030130 2.296870 1 +SPEAKER 01443 0 73.989000 4.015250 1 +SPEAKER 01443 0 87.171000 7.073990 1 +SPEAKER 01443 0 95.216000 6.528990 1 +SPEAKER 01443 0 114.014000 3.597210 1 +SPEAKER 01443 0 117.913000 11.667000 1 +SPEAKER 01443 0 131.436000 0.431970 1 +SPEAKER 01443 0 136.534000 1.440000 1 +SPEAKER 01443 0 139.361000 4.047510 1 +SPEAKER 01443 0 145.853000 0.439000 1 +SPEAKER 01443 0 146.565000 6.424000 1 +SPEAKER 01443 0 154.141000 2.943180 1 +SPEAKER 01443 0 158.633880 3.129630 1 +SPEAKER 01443 0 163.394000 2.879370 1 +SPEAKER 01443 0 168.504000 1.012610 1 +SPEAKER 01443 0 170.141000 0.770660 1 +SPEAKER 01443 0 180.034000 1.985000 1 +SPEAKER 01443 0 182.327000 1.905830 1 +SPEAKER 01443 0 185.065000 4.651000 1 +SPEAKER 01443 0 201.287000 32.975000 1 +SPEAKER 01443 0 242.353000 3.500000 1 +SPEAKER 01443 0 251.186000 4.197000 1 +SPEAKER 01443 0 257.004000 4.537290 1 +SPEAKER 01443 0 266.096000 0.396000 1 +SPEAKER 01443 0 273.763510 4.592590 1 +SPEAKER 01443 0 281.874620 3.500000 1 +SPEAKER 01443 0 292.989000 8.293030 1 +SPEAKER 01443 0 301.849000 5.125000 1 +SPEAKER 01443 0 311.444000 0.772000 1 +SPEAKER 01443 0 313.022770 1.421230 1 +SPEAKER 01443 0 315.024000 2.495000 1 +SPEAKER 01443 0 318.595000 5.046000 1 +SPEAKER 01443 0 323.939000 0.565000 1 +SPEAKER 01443 0 325.686000 3.015000 1 +SPEAKER 01443 0 329.201000 2.515000 1 +SPEAKER 01443 0 333.777000 15.227250 1 +SPEAKER 01443 0 351.944000 2.045000 1 +SPEAKER 01443 0 355.974000 15.682000 1 +SPEAKER 01443 0 375.967210 14.425930 1 +SPEAKER 01443 0 390.896290 2.228710 1 +SPEAKER 01443 0 393.413000 1.485000 1 +SPEAKER 01443 0 397.216000 5.343810 1 +SPEAKER 01443 0 425.686000 2.579860 1 +SPEAKER 01443 0 432.353000 0.621000 1 +SPEAKER 01443 0 433.398000 3.621000 1 +SPEAKER 01443 0 438.868000 1.121000 1 +SPEAKER 01443 0 441.928000 7.652000 1 +SPEAKER 01443 0 450.353000 1.151000 1 +SPEAKER 01443 0 452.318000 3.429000 1 +SPEAKER 01443 0 458.792000 2.197000 1 +SPEAKER 01443 0 463.357000 0.829000 1 +SPEAKER 01443 0 464.504000 3.894000 1 +SPEAKER 01443 0 470.338000 1.848000 1 +SPEAKER 01443 0 472.701000 0.743000 1 +SPEAKER 01443 0 479.004000 2.621000 1 +SPEAKER 01443 0 482.630000 4.047000 1 +SPEAKER 01443 0 497.277000 3.500000 1 +SPEAKER 01443 0 501.034000 0.544000 1 +SPEAKER 01443 0 502.126000 4.287000 1 +SPEAKER 01443 0 523.459000 4.060000 1 +SPEAKER 01443 0 531.733000 1.529000 1 +SPEAKER 01443 0 533.530000 0.656000 1 +SPEAKER 01443 0 535.373000 3.805900 1 +SPEAKER 01443 0 545.080000 1.409000 1 +SPEAKER 01443 0 552.542000 1.980770 1 +SPEAKER 01443 0 554.833000 3.171000 1 +SPEAKER 01443 0 560.216000 1.546000 1 +SPEAKER 01443 0 562.095000 1.743000 1 +SPEAKER 01443 0 568.612000 6.756000 1 +SPEAKER 01443 0 575.716000 4.258000 1 +SPEAKER 01443 0 581.231000 21.365840 1 +SPEAKER 01443 0 602.926000 0.730000 1 +SPEAKER 01443 0 606.307000 11.637000 1 +SPEAKER 01443 0 618.338000 16.055140 1 +SPEAKER 01443 0 635.822000 2.773000 1 +SPEAKER 01443 0 639.230000 1.744000 1 +SPEAKER 01443 0 644.883000 7.973100 1 +SPEAKER 01443 0 654.383000 2.273000 1 +SPEAKER 01443 0 658.701000 2.121000 1 +SPEAKER 01443 0 661.262000 1.408920 1 +SPEAKER 01443 0 668.818000 1.898000 1 +SPEAKER 01443 0 673.050000 4.782000 1 +SPEAKER 01443 0 679.272820 1.261180 1 +SPEAKER 01443 0 681.526000 5.478000 1 +SPEAKER 01443 0 689.125000 1.849000 1 +SPEAKER 01443 0 694.353000 9.121000 1 +SPEAKER 01443 0 708.346000 12.102690 1 +SPEAKER 01443 0 721.941000 1.689000 1 +SPEAKER 01443 0 724.883000 1.909000 1 +SPEAKER 01443 0 736.686000 5.318990 1 +SPEAKER 01443 0 746.307000 0.806680 1 +SPEAKER 01443 0 748.489000 3.255990 1 +SPEAKER 01443 0 753.974000 4.864000 1 +SPEAKER 01443 0 779.443000 1.364000 1 +SPEAKER 01443 0 790.989000 3.652000 1 +SPEAKER 01443 0 800.443000 1.243000 1 +SPEAKER 01443 0 804.625000 2.228000 1 +SPEAKER 01443 0 815.838000 5.166000 1 +SPEAKER 01443 0 834.322000 6.046000 1 +SPEAKER 01443 0 841.762000 0.525600 1 +SPEAKER 01443 0 843.701000 2.349000 1 diff --git a/rttm/few/01447.rttm b/rttm/few/01447.rttm new file mode 100644 index 0000000000000000000000000000000000000000..fa529cd955ac492988761dea6dd602409707abf7 --- /dev/null +++ b/rttm/few/01447.rttm @@ -0,0 +1,14 @@ +SPEAKER 01447 0 0.027190 1.670730 0 +SPEAKER 01447 0 2.967000 1.001000 0 +SPEAKER 01447 0 4.346000 13.156000 0 +SPEAKER 01447 0 18.190000 5.437000 0 +SPEAKER 01447 0 24.315000 1.500000 0 +SPEAKER 01447 0 1.752000 3.688000 1 +SPEAKER 01447 0 14.399000 1.957000 1 +SPEAKER 01447 0 17.106000 1.771000 1 +SPEAKER 01447 0 23.173530 1.097560 1 +SPEAKER 01447 0 25.669000 0.798000 1 +SPEAKER 01447 0 0.000000 0.954020 h0 +SPEAKER 01447 0 16.655000 0.640480 h0 +SPEAKER 01447 0 19.580000 1.000000 h0 +SPEAKER 01447 0 25.699000 0.787000 h0 diff --git a/rttm/few/01450.rttm b/rttm/few/01450.rttm new file mode 100644 index 0000000000000000000000000000000000000000..719515749bb561206a95785984ce8e4c58c72845 --- /dev/null +++ b/rttm/few/01450.rttm @@ -0,0 +1,22 @@ +SPEAKER 01450 0 1.282000 5.296000 2 +SPEAKER 01450 0 6.986000 1.333000 2 +SPEAKER 01450 0 10.282030 0.833330 2 +SPEAKER 01450 0 12.504000 0.334000 2 +SPEAKER 01450 0 14.115000 4.537400 2 +SPEAKER 01450 0 19.301000 2.296000 2 +SPEAKER 01450 0 22.097000 2.870210 2 +SPEAKER 01450 0 31.448690 0.592600 2 +SPEAKER 01450 0 32.744990 2.593010 2 +SPEAKER 01450 0 36.467000 5.593000 2 +SPEAKER 01450 0 6.485000 0.316000 0 +SPEAKER 01450 0 7.430000 1.000000 0 +SPEAKER 01450 0 10.911660 1.370370 0 +SPEAKER 01450 0 12.560000 1.555000 0 +SPEAKER 01450 0 17.023000 1.036810 0 +SPEAKER 01450 0 25.041290 6.925920 0 +SPEAKER 01450 0 11.356100 1.147900 1 +SPEAKER 01450 0 18.467000 0.741000 1 +SPEAKER 01450 0 21.282030 0.814970 1 +SPEAKER 01450 0 24.448690 0.722230 1 +SPEAKER 01450 0 35.189000 1.056000 1 +SPEAKER 01450 0 43.245000 5.111100 1 diff --git a/rttm/few/01452.rttm b/rttm/few/01452.rttm new file mode 100644 index 0000000000000000000000000000000000000000..33d0d000839b4407eff4b5ca4d5e01fe7a9ed0f7 --- /dev/null +++ b/rttm/few/01452.rttm @@ -0,0 +1,9 @@ +SPEAKER 01452 0 0.000000 6.189000 0 +SPEAKER 01452 0 6.486000 4.870100 0 +SPEAKER 01452 0 11.670920 5.981480 0 +SPEAKER 01452 0 20.097000 2.204000 0 +SPEAKER 01452 0 3.134000 0.833000 1 +SPEAKER 01452 0 5.819000 1.000000 1 +SPEAKER 01452 0 8.152400 0.981480 1 +SPEAKER 01452 0 10.689000 2.259690 1 +SPEAKER 01452 0 17.652000 1.408000 1 diff --git a/rttm/few/01457.rttm b/rttm/few/01457.rttm new file mode 100644 index 0000000000000000000000000000000000000000..1892eb15c2942b52d10c3cae145c3c95e2b8367c --- /dev/null +++ b/rttm/few/01457.rttm @@ -0,0 +1,14 @@ +SPEAKER 01457 0 0.000000 2.226470 1 +SPEAKER 01457 0 5.745000 0.981470 1 +SPEAKER 01457 0 8.337580 0.425930 1 +SPEAKER 01457 0 11.059810 0.926190 1 +SPEAKER 01457 0 13.689440 6.129620 1 +SPEAKER 01457 0 20.893140 3.500000 1 +SPEAKER 01457 0 25.059810 1.259250 1 +SPEAKER 01457 0 27.096840 0.746160 1 +SPEAKER 01457 0 2.282030 3.444440 0 +SPEAKER 01457 0 7.022770 6.592590 0 +SPEAKER 01457 0 15.282000 0.481510 0 +SPEAKER 01457 0 18.837580 1.962970 0 +SPEAKER 01457 0 24.282030 0.555550 0 +SPEAKER 01457 0 26.282030 1.055550 0 diff --git a/rttm/few/01484.rttm b/rttm/few/01484.rttm new file mode 100644 index 0000000000000000000000000000000000000000..29787da8bde3f2a89179f91e713fc6bc50155c21 --- /dev/null +++ b/rttm/few/01484.rttm @@ -0,0 +1,17 @@ +SPEAKER 01484 0 0.412000 0.852000 0 +SPEAKER 01484 0 19.782000 1.148000 0 +SPEAKER 01484 0 35.319000 0.982000 0 +SPEAKER 01484 0 0.023000 0.316880 1 +SPEAKER 01484 0 3.386390 7.937070 1 +SPEAKER 01484 0 12.208000 4.782120 1 +SPEAKER 01484 0 18.836000 1.075660 1 +SPEAKER 01484 0 21.282030 1.958860 1 +SPEAKER 01484 0 23.772170 12.732080 1 +SPEAKER 01484 0 1.338000 2.603740 2 +SPEAKER 01484 0 7.006000 0.971300 2 +SPEAKER 01484 0 8.464000 1.077400 2 +SPEAKER 01484 0 11.668000 1.419000 2 +SPEAKER 01484 0 15.906020 2.866150 2 +SPEAKER 01484 0 20.189000 0.778000 2 +SPEAKER 01484 0 22.670920 0.685180 2 +SPEAKER 01484 0 37.375000 0.689000 2 diff --git a/rttm/few/01487.rttm b/rttm/few/01487.rttm new file mode 100644 index 0000000000000000000000000000000000000000..add7b03309b3bde0c9f2736617cd4734f206c156 --- /dev/null +++ b/rttm/few/01487.rttm @@ -0,0 +1,41 @@ +SPEAKER 01487 0 0.017000 24.483000 0 +SPEAKER 01487 0 25.983000 7.334000 0 +SPEAKER 01487 0 33.717560 13.782440 0 +SPEAKER 01487 0 51.750000 0.483000 0 +SPEAKER 01487 0 57.667000 0.466000 0 +SPEAKER 01487 0 59.504000 0.482000 0 +SPEAKER 01487 0 66.350000 1.396140 0 +SPEAKER 01487 0 81.817000 2.076000 0 +SPEAKER 01487 0 87.550000 0.450000 0 +SPEAKER 01487 0 94.483000 2.284000 0 +SPEAKER 01487 0 99.417000 0.733000 0 +SPEAKER 01487 0 104.983000 9.834000 0 +SPEAKER 01487 0 118.683000 0.484000 0 +SPEAKER 01487 0 120.317000 9.814850 0 +SPEAKER 01487 0 131.400000 1.700000 0 +SPEAKER 01487 0 134.633000 0.517000 0 +SPEAKER 01487 0 137.217000 1.271990 0 +SPEAKER 01487 0 143.717000 0.616000 0 +SPEAKER 01487 0 145.883000 0.850000 0 +SPEAKER 01487 0 152.467000 1.383000 0 +SPEAKER 01487 0 154.800000 7.778320 0 +SPEAKER 01487 0 162.967000 10.207710 0 +SPEAKER 01487 0 21.083000 0.717000 1 +SPEAKER 01487 0 23.803280 3.128570 1 +SPEAKER 01487 0 33.317000 0.414850 1 +SPEAKER 01487 0 40.367000 0.600000 1 +SPEAKER 01487 0 41.746000 0.428710 1 +SPEAKER 01487 0 47.474710 18.458290 1 +SPEAKER 01487 0 67.229000 14.788560 1 +SPEAKER 01487 0 82.960420 11.522580 1 +SPEAKER 01487 0 95.883000 0.467000 1 +SPEAKER 01487 0 96.750000 8.010420 1 +SPEAKER 01487 0 110.900000 0.400000 1 +SPEAKER 01487 0 114.167000 6.183000 1 +SPEAKER 01487 0 124.517560 0.500000 1 +SPEAKER 01487 0 131.367000 7.483000 1 +SPEAKER 01487 0 139.383000 6.634000 1 +SPEAKER 01487 0 146.717000 8.083000 1 +SPEAKER 01487 0 164.817000 0.483000 1 +SPEAKER 01487 0 171.667000 0.800000 1 +SPEAKER 01487 0 173.150000 2.817000 1 diff --git a/rttm/few/01499.rttm b/rttm/few/01499.rttm new file mode 100644 index 0000000000000000000000000000000000000000..3843cacea8801da52d4ce7d36d70f4da1f8dc6aa --- /dev/null +++ b/rttm/few/01499.rttm @@ -0,0 +1,29 @@ +SPEAKER 01499 0 0.395000 1.768000 1 +SPEAKER 01499 0 5.790350 0.908450 1 +SPEAKER 01499 0 11.100210 4.218310 1 +SPEAKER 01499 0 17.501620 1.354380 1 +SPEAKER 01499 0 24.467000 2.217710 1 +SPEAKER 01499 0 27.838000 2.740000 1 +SPEAKER 01499 0 38.708000 4.300000 1 +SPEAKER 01499 0 49.043160 2.224490 1 +SPEAKER 01499 0 54.291000 4.823590 1 +SPEAKER 01499 0 1.801000 2.981000 2 +SPEAKER 01499 0 5.719930 0.922530 2 +SPEAKER 01499 0 7.338000 1.426000 2 +SPEAKER 01499 0 10.560000 0.441620 2 +SPEAKER 01499 0 13.438240 1.922530 2 +SPEAKER 01499 0 17.504000 2.482000 2 +SPEAKER 01499 0 26.811480 3.570420 2 +SPEAKER 01499 0 39.241000 1.167000 2 +SPEAKER 01499 0 44.641000 1.191600 2 +SPEAKER 01499 0 59.124000 2.204870 2 +SPEAKER 01499 0 13.501620 3.852110 0 +SPEAKER 01499 0 18.987530 3.880280 0 +SPEAKER 01499 0 30.097000 0.883490 0 +SPEAKER 01499 0 31.560000 2.448660 0 +SPEAKER 01499 0 34.469000 4.743880 0 +SPEAKER 01499 0 44.974000 3.344670 0 +SPEAKER 01499 0 48.822000 2.843610 0 +SPEAKER 01499 0 51.973000 2.304850 0 +SPEAKER 01499 0 55.791000 1.507260 0 +SPEAKER 01499 0 59.198000 0.511000 0 diff --git a/rttm/few/01500.rttm b/rttm/few/01500.rttm new file mode 100644 index 0000000000000000000000000000000000000000..103cc56d15bc4d86293038051ef6e70335e76a5e --- /dev/null +++ b/rttm/few/01500.rttm @@ -0,0 +1,3 @@ +SPEAKER 01500 0 0.000000 12.302000 1 +SPEAKER 01500 0 13.538000 13.757420 1 +SPEAKER 01500 0 12.185000 1.356000 0 diff --git a/rttm/few/01509.rttm b/rttm/few/01509.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4ec746214ca2286d21091de4e59c87f38ad0212f --- /dev/null +++ b/rttm/few/01509.rttm @@ -0,0 +1,25 @@ +SPEAKER 01509 0 0.057160 1.270270 1 +SPEAKER 01509 0 3.708000 4.456000 1 +SPEAKER 01509 0 8.923000 1.000000 1 +SPEAKER 01509 0 10.435530 6.402470 1 +SPEAKER 01509 0 28.594000 0.712000 1 +SPEAKER 01509 0 37.655000 0.963000 1 +SPEAKER 01509 0 39.788990 33.471430 1 +SPEAKER 01509 0 78.804000 3.670710 1 +SPEAKER 01509 0 83.133880 1.500000 1 +SPEAKER 01509 0 95.535880 2.188890 1 +SPEAKER 01509 0 1.394990 2.314010 0 +SPEAKER 01509 0 7.247000 0.675020 0 +SPEAKER 01509 0 8.381480 1.959460 0 +SPEAKER 01509 0 16.935530 12.067750 0 +SPEAKER 01509 0 29.309000 5.251420 0 +SPEAKER 01509 0 34.932000 3.042710 0 +SPEAKER 01509 0 38.615000 1.185550 0 +SPEAKER 01509 0 73.417560 6.471430 0 +SPEAKER 01509 0 81.041000 0.519420 0 +SPEAKER 01509 0 82.338000 0.500000 0 +SPEAKER 01509 0 83.134000 0.746330 0 +SPEAKER 01509 0 84.558110 4.822220 0 +SPEAKER 01509 0 89.725000 2.744220 0 +SPEAKER 01509 0 92.865000 1.344000 0 +SPEAKER 01509 0 94.717000 0.716000 0 diff --git a/rttm/few/01511.rttm b/rttm/few/01511.rttm new file mode 100644 index 0000000000000000000000000000000000000000..0833627df3e14e9a883d088eb5cca152f4ff45f9 --- /dev/null +++ b/rttm/few/01511.rttm @@ -0,0 +1,13 @@ +SPEAKER 01511 0 0.568880 2.452980 2 +SPEAKER 01511 0 3.414000 1.774520 2 +SPEAKER 01511 0 5.590000 3.549500 2 +SPEAKER 01511 0 8.959000 0.387990 1 +SPEAKER 01511 0 12.144000 0.745000 1 +SPEAKER 01511 0 13.225000 3.010880 1 +SPEAKER 01511 0 16.758000 0.887000 1 +SPEAKER 01511 0 18.060000 3.125000 1 +SPEAKER 01511 0 5.138000 0.393660 3 +SPEAKER 01511 0 9.312000 0.366000 3 +SPEAKER 01511 0 10.023000 3.390660 3 +SPEAKER 01511 0 16.238000 0.599580 3 +SPEAKER 01511 0 17.697000 0.547990 3 diff --git a/rttm/few/01520.rttm b/rttm/few/01520.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4f47cbc662c5bd418eac774b0b46e3c59d0bbf47 --- /dev/null +++ b/rttm/few/01520.rttm @@ -0,0 +1,16 @@ +SPEAKER 01520 0 0.023000 3.741000 1 +SPEAKER 01520 0 6.446000 0.923000 1 +SPEAKER 01520 0 8.753000 9.554950 1 +SPEAKER 01520 0 19.764000 0.481000 1 +SPEAKER 01520 0 21.189410 1.501590 1 +SPEAKER 01520 0 22.985730 0.703270 1 +SPEAKER 01520 0 24.578000 1.167000 1 +SPEAKER 01520 0 27.282000 1.885900 1 +SPEAKER 01520 0 30.356000 1.389000 1 +SPEAKER 01520 0 3.880000 2.368000 0 +SPEAKER 01520 0 12.245000 0.963000 0 +SPEAKER 01520 0 18.338000 1.333000 0 +SPEAKER 01520 0 20.282000 0.744000 0 +SPEAKER 01520 0 22.726000 4.454550 0 +SPEAKER 01520 0 28.899080 1.401470 0 +SPEAKER 01520 0 31.560000 0.996000 0 diff --git a/rttm/few/01527.rttm b/rttm/few/01527.rttm new file mode 100644 index 0000000000000000000000000000000000000000..2a65461026fdd70d29c7568757800a2057f3ca28 --- /dev/null +++ b/rttm/few/01527.rttm @@ -0,0 +1,11 @@ +SPEAKER 01527 0 0.822000 1.317000 0 +SPEAKER 01527 0 5.022770 1.185180 0 +SPEAKER 01527 0 7.161000 1.917320 0 +SPEAKER 01527 0 11.104000 0.644000 0 +SPEAKER 01527 0 15.228000 0.390000 0 +SPEAKER 01527 0 29.813000 0.413000 0 +SPEAKER 01527 0 31.292000 0.536000 0 +SPEAKER 01527 0 2.632000 4.558000 1 +SPEAKER 01527 0 8.234000 12.108000 1 +SPEAKER 01527 0 20.965000 10.261000 1 +SPEAKER 01527 0 32.161000 1.341000 1 diff --git a/rttm/few/01536.rttm b/rttm/few/01536.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ce9ba3ea36fb9e294f7f286fd2499faa1a0c0c6e --- /dev/null +++ b/rttm/few/01536.rttm @@ -0,0 +1,8 @@ +SPEAKER 01536 0 13.856000 0.333760 0 +SPEAKER 01536 0 23.218000 0.772000 0 +SPEAKER 01536 0 0.118000 1.000000 1 +SPEAKER 01536 0 1.434000 9.984920 1 +SPEAKER 01536 0 11.773000 5.708420 1 +SPEAKER 01536 0 17.899000 5.269920 1 +SPEAKER 01536 0 24.570000 2.127000 1 +SPEAKER 01536 0 27.232000 7.383000 1 diff --git a/rttm/few/01537.rttm b/rttm/few/01537.rttm new file mode 100644 index 0000000000000000000000000000000000000000..2dfac9d71426e5c3cc89b1428f79165635ce27f3 --- /dev/null +++ b/rttm/few/01537.rttm @@ -0,0 +1,5 @@ +SPEAKER 01537 0 0.009000 0.812000 2 +SPEAKER 01537 0 1.416000 23.028000 2 +SPEAKER 01537 0 24.791000 1.019000 2 +SPEAKER 01537 0 0.599000 1.625000 3 +SPEAKER 01537 0 23.856100 1.729900 3 diff --git a/rttm/few/01539.rttm b/rttm/few/01539.rttm new file mode 100644 index 0000000000000000000000000000000000000000..713398920cfd89d5bab26eff3ff659744d29c5c1 --- /dev/null +++ b/rttm/few/01539.rttm @@ -0,0 +1,14 @@ +SPEAKER 01539 0 2.115000 0.537000 0 +SPEAKER 01539 0 19.183000 1.738270 0 +SPEAKER 01539 0 2.134000 0.481000 2 +SPEAKER 01539 0 3.431000 0.809000 2 +SPEAKER 01539 0 7.486000 1.202720 2 +SPEAKER 01539 0 1.782000 0.796000 1 +SPEAKER 01539 0 7.652000 10.223000 1 +SPEAKER 01539 0 19.319000 2.759000 1 +SPEAKER 01539 0 4.097000 3.667000 h0 +SPEAKER 01539 0 8.584000 2.151230 h0 +SPEAKER 01539 0 13.049000 2.267620 h0 +SPEAKER 01539 0 16.119000 0.872040 h0 +SPEAKER 01539 0 18.023000 1.111000 h0 +SPEAKER 01539 0 21.171000 0.759000 h0 diff --git a/rttm/few/01540.rttm b/rttm/few/01540.rttm new file mode 100644 index 0000000000000000000000000000000000000000..26d29ebe1b1e494fb39db321e3d57259c82abf7f --- /dev/null +++ b/rttm/few/01540.rttm @@ -0,0 +1,109 @@ +SPEAKER 01540 0 0.000000 6.726000 1 +SPEAKER 01540 0 14.486000 5.462690 1 +SPEAKER 01540 0 50.819000 3.685000 1 +SPEAKER 01540 0 78.504000 0.519000 1 +SPEAKER 01540 0 82.782000 3.333000 1 +SPEAKER 01540 0 88.115000 2.278000 1 +SPEAKER 01540 0 91.338000 0.740000 1 +SPEAKER 01540 0 97.726470 3.277530 1 +SPEAKER 01540 0 101.560000 10.611000 1 +SPEAKER 01540 0 144.730000 3.218690 1 +SPEAKER 01540 0 170.847000 0.398000 1 +SPEAKER 01540 0 175.683000 12.043470 1 +SPEAKER 01540 0 188.275000 0.711000 1 +SPEAKER 01540 0 206.652000 0.686000 1 +SPEAKER 01540 0 221.678000 0.678000 1 +SPEAKER 01540 0 228.189000 0.704000 1 +SPEAKER 01540 0 252.115360 4.296300 1 +SPEAKER 01540 0 274.596840 3.148160 1 +SPEAKER 01540 0 280.744990 13.277780 1 +SPEAKER 01540 0 294.504250 1.740740 1 +SPEAKER 01540 0 302.912000 2.963000 1 +SPEAKER 01540 0 310.898000 3.088000 1 +SPEAKER 01540 0 316.319000 7.704000 1 +SPEAKER 01540 0 327.689440 1.981560 1 +SPEAKER 01540 0 332.523000 4.907000 1 +SPEAKER 01540 0 340.856000 1.259000 1 +SPEAKER 01540 0 346.356000 1.278000 1 +SPEAKER 01540 0 348.393000 1.167000 1 +SPEAKER 01540 0 353.713000 3.551000 1 +SPEAKER 01540 0 358.819000 1.574000 1 +SPEAKER 01540 0 363.036000 7.765000 1 +SPEAKER 01540 0 380.245000 0.519000 1 +SPEAKER 01540 0 385.023000 0.444000 1 +SPEAKER 01540 0 391.503700 0.852300 1 +SPEAKER 01540 0 401.689000 0.315000 1 +SPEAKER 01540 0 412.657000 1.007990 1 +SPEAKER 01540 0 417.171000 0.426000 1 +SPEAKER 01540 0 420.648860 0.374140 1 +SPEAKER 01540 0 424.274000 0.452000 1 +SPEAKER 01540 0 429.228000 0.646670 1 +SPEAKER 01540 0 430.986000 0.518000 1 +SPEAKER 01540 0 434.170000 0.519000 1 +SPEAKER 01540 0 436.838000 0.592000 1 +SPEAKER 01540 0 445.152000 0.574000 1 +SPEAKER 01540 0 449.337000 0.473150 1 +SPEAKER 01540 0 450.523000 1.555000 1 +SPEAKER 01540 0 463.967000 0.536700 1 +SPEAKER 01540 0 468.100000 0.569000 1 +SPEAKER 01540 0 490.911660 0.314340 1 +SPEAKER 01540 0 497.264000 0.462000 1 +SPEAKER 01540 0 499.227000 0.537000 1 +SPEAKER 01540 0 507.986000 10.759000 1 +SPEAKER 01540 0 6.726000 7.723000 0 +SPEAKER 01540 0 20.105000 11.491840 0 +SPEAKER 01540 0 31.930000 18.889000 0 +SPEAKER 01540 0 54.504000 10.019000 0 +SPEAKER 01540 0 65.170920 12.000080 0 +SPEAKER 01540 0 77.633880 3.537120 0 +SPEAKER 01540 0 81.726000 1.000000 0 +SPEAKER 01540 0 85.764000 2.166000 0 +SPEAKER 01540 0 88.449000 0.647840 0 +SPEAKER 01540 0 90.671000 6.926000 0 +SPEAKER 01540 0 101.004000 0.519000 0 +SPEAKER 01540 0 112.208000 18.574000 0 +SPEAKER 01540 0 131.318000 5.353000 0 +SPEAKER 01540 0 137.319060 7.351940 0 +SPEAKER 01540 0 148.070000 27.268000 0 +SPEAKER 01540 0 189.059810 32.296190 0 +SPEAKER 01540 0 222.319000 15.444510 0 +SPEAKER 01540 0 238.226470 2.259260 0 +SPEAKER 01540 0 241.018000 10.931000 0 +SPEAKER 01540 0 256.633880 17.667120 0 +SPEAKER 01540 0 277.930180 2.055820 0 +SPEAKER 01540 0 296.541290 3.240740 0 +SPEAKER 01540 0 300.189440 2.537030 0 +SPEAKER 01540 0 305.856100 4.332900 0 +SPEAKER 01540 0 312.449000 3.833000 0 +SPEAKER 01540 0 319.838000 0.444000 0 +SPEAKER 01540 0 322.299000 0.465000 0 +SPEAKER 01540 0 323.134000 0.370000 0 +SPEAKER 01540 0 324.170920 3.074080 0 +SPEAKER 01540 0 328.708000 3.056000 0 +SPEAKER 01540 0 334.597000 0.555000 0 +SPEAKER 01540 0 336.986000 3.870000 0 +SPEAKER 01540 0 341.412000 0.444000 0 +SPEAKER 01540 0 342.171000 6.204000 0 +SPEAKER 01540 0 349.726470 3.944530 0 +SPEAKER 01540 0 357.238000 1.581000 0 +SPEAKER 01540 0 359.326280 0.757720 0 +SPEAKER 01540 0 360.474000 2.308000 0 +SPEAKER 01540 0 363.226000 0.648670 0 +SPEAKER 01540 0 369.986000 21.370000 0 +SPEAKER 01540 0 392.056000 9.633000 0 +SPEAKER 01540 0 401.986000 10.778000 0 +SPEAKER 01540 0 413.708000 3.463000 0 +SPEAKER 01540 0 417.486000 3.148000 0 +SPEAKER 01540 0 420.986000 3.222000 0 +SPEAKER 01540 0 424.617000 2.918960 0 +SPEAKER 01540 0 428.052000 0.854930 0 +SPEAKER 01540 0 429.393000 1.278000 0 +SPEAKER 01540 0 431.227000 5.944000 0 +SPEAKER 01540 0 437.671000 11.611000 0 +SPEAKER 01540 0 452.078000 11.926000 0 +SPEAKER 01540 0 464.486000 3.500000 0 +SPEAKER 01540 0 468.458000 12.713000 0 +SPEAKER 01540 0 481.534000 2.663250 0 +SPEAKER 01540 0 484.616600 6.202400 0 +SPEAKER 01540 0 491.231000 8.014000 0 +SPEAKER 01540 0 499.794020 8.191980 0 diff --git a/rttm/few/01542.rttm b/rttm/few/01542.rttm new file mode 100644 index 0000000000000000000000000000000000000000..1dc9249864621894ef04bd73c128868c8ff8e469 --- /dev/null +++ b/rttm/few/01542.rttm @@ -0,0 +1,57 @@ +SPEAKER 01542 0 3.473170 1.272730 3 +SPEAKER 01542 0 20.648000 0.813000 3 +SPEAKER 01542 0 22.773000 0.685020 3 +SPEAKER 01542 0 24.291000 1.136720 3 +SPEAKER 01542 0 39.252000 6.127000 3 +SPEAKER 01542 0 51.315000 26.673330 3 +SPEAKER 01542 0 78.885000 9.830600 3 +SPEAKER 01542 0 89.488000 0.682140 3 +SPEAKER 01542 0 94.005000 3.666000 3 +SPEAKER 01542 0 100.755000 2.397400 3 +SPEAKER 01542 0 103.604000 1.000000 3 +SPEAKER 01542 0 105.307000 5.711630 3 +SPEAKER 01542 0 112.255000 0.350000 3 +SPEAKER 01542 0 113.525000 0.441000 3 +SPEAKER 01542 0 121.406000 0.524000 3 +SPEAKER 01542 0 125.030000 1.000000 3 +SPEAKER 01542 0 128.245900 3.465100 3 +SPEAKER 01542 0 132.237000 0.730000 3 +SPEAKER 01542 0 136.472000 3.137540 3 +SPEAKER 01542 0 140.079000 4.485080 3 +SPEAKER 01542 0 4.961000 12.209920 1 +SPEAKER 01542 0 17.606000 1.731580 1 +SPEAKER 01542 0 21.586000 5.872020 1 +SPEAKER 01542 0 28.059000 2.762660 1 +SPEAKER 01542 0 31.897420 0.439390 1 +SPEAKER 01542 0 34.752000 2.354000 1 +SPEAKER 01542 0 37.961000 1.104000 1 +SPEAKER 01542 0 43.190000 5.555900 1 +SPEAKER 01542 0 97.380000 1.875000 1 +SPEAKER 01542 0 104.897000 0.424660 1 +SPEAKER 01542 0 131.731000 0.417000 1 +SPEAKER 01542 0 134.041000 2.170000 1 +SPEAKER 01542 0 144.791000 0.613000 1 +SPEAKER 01542 0 11.252000 1.375000 0 +SPEAKER 01542 0 18.745000 1.778000 0 +SPEAKER 01542 0 25.730000 1.000000 0 +SPEAKER 01542 0 31.949000 2.054480 0 +SPEAKER 01542 0 41.473000 0.485020 0 +SPEAKER 01542 0 47.961000 3.250000 0 +SPEAKER 01542 0 88.796000 1.084000 0 +SPEAKER 01542 0 91.546000 0.669600 0 +SPEAKER 01542 0 98.338000 3.292000 0 +SPEAKER 01542 0 120.746000 2.601000 0 +SPEAKER 01542 0 25.834000 0.836920 2 +SPEAKER 01542 0 27.656000 1.000000 2 +SPEAKER 01542 0 37.169000 0.625000 2 +SPEAKER 01542 0 39.425000 1.077000 2 +SPEAKER 01542 0 90.634000 1.885000 2 +SPEAKER 01542 0 98.413000 1.508000 2 +SPEAKER 01542 0 110.155000 3.333330 2 +SPEAKER 01542 0 114.023000 0.631990 2 +SPEAKER 01542 0 115.427720 0.757580 2 +SPEAKER 01542 0 117.276000 1.257780 2 +SPEAKER 01542 0 123.430000 1.648320 2 +SPEAKER 01542 0 125.893140 2.360860 2 +SPEAKER 01542 0 130.169000 1.062000 2 +SPEAKER 01542 0 136.516000 1.662000 2 diff --git a/rttm/few/01543.rttm b/rttm/few/01543.rttm new file mode 100644 index 0000000000000000000000000000000000000000..75df1948bc7df8ae9d7a0c6b55def4209baf2c5b --- /dev/null +++ b/rttm/few/01543.rttm @@ -0,0 +1,19 @@ +SPEAKER 01543 0 0.001000 1.725470 1 +SPEAKER 01543 0 2.226000 2.185660 1 +SPEAKER 01543 0 11.578320 0.944680 1 +SPEAKER 01543 0 15.134000 0.648000 1 +SPEAKER 01543 0 16.967000 1.870580 1 +SPEAKER 01543 0 20.875000 1.925550 1 +SPEAKER 01543 0 23.949000 0.853000 1 +SPEAKER 01543 0 26.541290 2.722710 1 +SPEAKER 01543 0 29.880000 0.551000 1 +SPEAKER 01543 0 5.041000 2.796580 0 +SPEAKER 01543 0 8.633880 1.630120 0 +SPEAKER 01543 0 10.985730 1.537270 0 +SPEAKER 01543 0 16.595360 2.268150 0 +SPEAKER 01543 0 20.578320 2.074080 0 +SPEAKER 01543 0 23.282000 0.480000 0 +SPEAKER 01543 0 24.170920 1.537030 0 +SPEAKER 01543 0 28.023000 1.152360 0 +SPEAKER 01543 0 29.541000 1.685470 0 +SPEAKER 01543 0 33.393000 1.277920 0 diff --git a/rttm/few/01548.rttm b/rttm/few/01548.rttm new file mode 100644 index 0000000000000000000000000000000000000000..8d31f70dc1bf2643eaf5064a713ecd8cad2a3a14 --- /dev/null +++ b/rttm/few/01548.rttm @@ -0,0 +1,68 @@ +SPEAKER 01548 0 0.006000 1.000000 0 +SPEAKER 01548 0 4.560000 0.989330 0 +SPEAKER 01548 0 6.942000 4.322000 0 +SPEAKER 01548 0 11.821000 0.378000 0 +SPEAKER 01548 0 12.545000 1.799590 0 +SPEAKER 01548 0 14.764590 3.860130 0 +SPEAKER 01548 0 19.111000 1.646440 0 +SPEAKER 01548 0 21.471730 0.510200 0 +SPEAKER 01548 0 22.441000 3.928690 0 +SPEAKER 01548 0 29.950000 1.500000 0 +SPEAKER 01548 0 34.449000 1.083950 0 +SPEAKER 01548 0 36.125000 2.766440 0 +SPEAKER 01548 0 40.602090 3.836750 0 +SPEAKER 01548 0 44.721000 0.384510 0 +SPEAKER 01548 0 45.362000 6.550570 0 +SPEAKER 01548 0 52.949000 0.751450 0 +SPEAKER 01548 0 56.127000 0.803000 0 +SPEAKER 01548 0 57.515000 3.360000 0 +SPEAKER 01548 0 63.170000 3.482000 0 +SPEAKER 01548 0 67.301000 3.240000 0 +SPEAKER 01548 0 71.781000 1.131000 0 +SPEAKER 01548 0 76.004000 2.482000 0 +SPEAKER 01548 0 78.823000 3.274000 0 +SPEAKER 01548 0 85.796000 1.208000 0 +SPEAKER 01548 0 89.148000 2.412000 0 +SPEAKER 01548 0 92.803000 4.738000 0 +SPEAKER 01548 0 99.137000 2.904000 0 +SPEAKER 01548 0 102.504000 3.185000 0 +SPEAKER 01548 0 1.095000 7.275090 2 +SPEAKER 01548 0 30.689000 0.517420 2 +SPEAKER 01548 0 37.509760 0.654240 2 +SPEAKER 01548 0 40.246000 0.628740 2 +SPEAKER 01548 0 56.856000 0.526270 2 +SPEAKER 01548 0 77.393000 0.482000 2 +SPEAKER 01548 0 78.313000 0.580000 2 +SPEAKER 01548 0 82.947000 2.039000 2 +SPEAKER 01548 0 87.634000 1.505840 2 +SPEAKER 01548 0 90.301000 0.692000 2 +SPEAKER 01548 0 92.221000 1.080000 2 +SPEAKER 01548 0 95.060000 1.185000 2 +SPEAKER 01548 0 8.745000 0.766600 1 +SPEAKER 01548 0 11.199000 0.520150 1 +SPEAKER 01548 0 14.320000 0.484050 1 +SPEAKER 01548 0 18.430000 0.478510 1 +SPEAKER 01548 0 20.838000 0.786790 1 +SPEAKER 01548 0 21.993000 0.295060 1 +SPEAKER 01548 0 26.264000 1.166910 1 +SPEAKER 01548 0 33.348000 0.889000 1 +SPEAKER 01548 0 39.348000 1.635900 1 +SPEAKER 01548 0 43.968000 0.496480 1 +SPEAKER 01548 0 45.173000 0.958150 1 +SPEAKER 01548 0 47.745000 0.616920 1 +SPEAKER 01548 0 51.671000 1.544600 1 +SPEAKER 01548 0 53.578000 1.260000 1 +SPEAKER 01548 0 55.216000 1.196000 1 +SPEAKER 01548 0 60.227000 0.648000 1 +SPEAKER 01548 0 61.502000 1.724000 1 +SPEAKER 01548 0 63.852000 0.560000 1 +SPEAKER 01548 0 66.458020 0.991980 1 +SPEAKER 01548 0 70.159000 1.660000 1 +SPEAKER 01548 0 73.086000 2.974000 1 +SPEAKER 01548 0 81.301000 2.055000 1 +SPEAKER 01548 0 84.777000 5.764000 1 +SPEAKER 01548 0 91.602000 1.032000 1 +SPEAKER 01548 0 94.115000 0.704000 1 +SPEAKER 01548 0 97.708000 1.259000 1 +SPEAKER 01548 0 101.723000 0.689000 1 +SPEAKER 01548 0 103.004000 0.426180 1 diff --git a/rttm/few/01549.rttm b/rttm/few/01549.rttm new file mode 100644 index 0000000000000000000000000000000000000000..b72bcf9093ab49291d319fb7d2c203fb5d619506 --- /dev/null +++ b/rttm/few/01549.rttm @@ -0,0 +1,10 @@ +SPEAKER 01549 0 0.080960 4.408040 1 +SPEAKER 01549 0 4.772000 2.475000 1 +SPEAKER 01549 0 7.642360 3.675440 1 +SPEAKER 01549 0 12.133590 3.510080 1 +SPEAKER 01549 0 15.949000 10.798450 1 +SPEAKER 01549 0 27.058770 2.349060 1 +SPEAKER 01549 0 4.777000 0.712000 0 +SPEAKER 01549 0 11.024000 1.802570 0 +SPEAKER 01549 0 26.957000 0.384790 0 +SPEAKER 01549 0 29.792000 2.333000 0 diff --git a/rttm/few/01567.rttm b/rttm/few/01567.rttm new file mode 100644 index 0000000000000000000000000000000000000000..085a2a6237db583f1f76b0cbbdc82142b14a86ad --- /dev/null +++ b/rttm/few/01567.rttm @@ -0,0 +1,13 @@ +SPEAKER 01567 0 0.041000 2.315100 2 +SPEAKER 01567 0 4.875000 8.777400 2 +SPEAKER 01567 0 13.998000 1.000000 2 +SPEAKER 01567 0 24.782000 0.500000 2 +SPEAKER 01567 0 0.000000 0.229510 0 +SPEAKER 01567 0 0.810150 4.258070 0 +SPEAKER 01567 0 5.630000 0.467000 0 +SPEAKER 01567 0 16.338000 5.221810 0 +SPEAKER 01567 0 22.225000 2.482950 0 +SPEAKER 01567 0 11.875000 1.148000 1 +SPEAKER 01567 0 14.967000 1.259000 1 +SPEAKER 01567 0 20.657000 0.833000 1 +SPEAKER 01567 0 23.374620 1.870370 1 diff --git a/rttm/few/01568.rttm b/rttm/few/01568.rttm new file mode 100644 index 0000000000000000000000000000000000000000..8b9aa78d5b833df603bbb2af185d4e79893b05cf --- /dev/null +++ b/rttm/few/01568.rttm @@ -0,0 +1,16 @@ +SPEAKER 01568 0 0.000000 4.689760 0 +SPEAKER 01568 0 5.335590 1.229170 0 +SPEAKER 01568 0 6.982000 2.874420 0 +SPEAKER 01568 0 10.127260 10.520830 0 +SPEAKER 01568 0 21.201000 1.840290 0 +SPEAKER 01568 0 23.411660 0.574070 0 +SPEAKER 01568 0 25.023000 0.555320 0 +SPEAKER 01568 0 25.837580 1.560510 0 +SPEAKER 01568 0 2.375000 0.481000 1 +SPEAKER 01568 0 4.560000 1.333140 1 +SPEAKER 01568 0 9.801000 1.000000 1 +SPEAKER 01568 0 15.022770 0.703700 1 +SPEAKER 01568 0 21.097000 1.407250 1 +SPEAKER 01568 0 22.856000 0.352000 1 +SPEAKER 01568 0 23.523000 0.625090 1 +SPEAKER 01568 0 25.948690 1.370310 1 diff --git a/rttm/few/01594.rttm b/rttm/few/01594.rttm new file mode 100644 index 0000000000000000000000000000000000000000..6dad487f99d957054fbd9cd5113329b2fe02305a --- /dev/null +++ b/rttm/few/01594.rttm @@ -0,0 +1,8 @@ +SPEAKER 01594 0 1.597000 5.851690 2 +SPEAKER 01594 0 7.849000 9.618210 2 +SPEAKER 01594 0 19.282030 0.500000 2 +SPEAKER 01594 0 10.282000 0.815000 1 +SPEAKER 01594 0 18.967000 0.852060 1 +SPEAKER 01594 0 22.837580 1.685420 1 +SPEAKER 01594 0 17.652000 1.315000 3 +SPEAKER 01594 0 19.375000 2.962580 3 diff --git a/rttm/few/01599.rttm b/rttm/few/01599.rttm new file mode 100644 index 0000000000000000000000000000000000000000..64561d60962eca609c592016648912cdbfc80955 --- /dev/null +++ b/rttm/few/01599.rttm @@ -0,0 +1,5 @@ +SPEAKER 01599 0 0.000000 3.983000 1 +SPEAKER 01599 0 4.801000 9.277320 1 +SPEAKER 01599 0 14.615360 15.148640 1 +SPEAKER 01599 0 3.983000 0.734000 0 +SPEAKER 01599 0 29.856000 3.111000 0 diff --git a/rttm/few/01607.rttm b/rttm/few/01607.rttm new file mode 100644 index 0000000000000000000000000000000000000000..380817b7e2944a9a40fed355012f688515224a5e --- /dev/null +++ b/rttm/few/01607.rttm @@ -0,0 +1,13 @@ +SPEAKER 01607 0 0.000000 7.838000 0 +SPEAKER 01607 0 12.091000 0.941000 0 +SPEAKER 01607 0 14.793000 0.619000 0 +SPEAKER 01607 0 15.778000 4.089000 0 +SPEAKER 01607 0 24.522770 0.537040 0 +SPEAKER 01607 0 34.856100 0.611110 0 +SPEAKER 01607 0 37.952000 1.089290 0 +SPEAKER 01607 0 0.511000 1.863620 1 +SPEAKER 01607 0 8.106000 6.657510 1 +SPEAKER 01607 0 20.061000 11.187000 1 +SPEAKER 01607 0 31.841000 1.541000 1 +SPEAKER 01607 0 33.731000 4.711000 1 +SPEAKER 01607 0 38.782030 1.786970 1 diff --git a/rttm/few/01617.rttm b/rttm/few/01617.rttm new file mode 100644 index 0000000000000000000000000000000000000000..6fcfc3ef4ad42624e921f6980a682b630db937ea --- /dev/null +++ b/rttm/few/01617.rttm @@ -0,0 +1,8 @@ +SPEAKER 01617 0 0.000000 4.926000 0 +SPEAKER 01617 0 5.375000 8.369990 0 +SPEAKER 01617 0 14.171000 5.666580 0 +SPEAKER 01617 0 20.171000 0.907000 0 +SPEAKER 01617 0 22.319000 3.259000 0 +SPEAKER 01617 0 26.189000 5.204000 0 +SPEAKER 01617 0 20.615000 1.648510 1 +SPEAKER 01617 0 23.097000 0.889000 1 diff --git a/rttm/few/01657.rttm b/rttm/few/01657.rttm new file mode 100644 index 0000000000000000000000000000000000000000..58f2ae0b2595bedf26bd86e432be9bb8f6886b70 --- /dev/null +++ b/rttm/few/01657.rttm @@ -0,0 +1,32 @@ +SPEAKER 01657 0 0.440000 4.564000 1 +SPEAKER 01657 0 6.014000 4.638000 1 +SPEAKER 01657 0 10.938000 6.881000 1 +SPEAKER 01657 0 18.270000 3.623000 1 +SPEAKER 01657 0 22.529000 12.716000 1 +SPEAKER 01657 0 35.730000 2.293000 1 +SPEAKER 01657 0 39.011000 7.548810 1 +SPEAKER 01657 0 47.213000 0.662000 1 +SPEAKER 01657 0 51.467210 1.073790 1 +SPEAKER 01657 0 56.670920 0.500080 1 +SPEAKER 01657 0 61.247000 1.331000 1 +SPEAKER 01657 0 66.268000 0.736000 1 +SPEAKER 01657 0 89.450000 10.128000 1 +SPEAKER 01657 0 5.189440 1.425920 3 +SPEAKER 01657 0 8.930180 0.351820 3 +SPEAKER 01657 0 17.287000 0.495000 3 +SPEAKER 01657 0 27.554000 0.450000 3 +SPEAKER 01657 0 37.722000 2.356320 3 +SPEAKER 01657 0 46.540000 0.890180 3 +SPEAKER 01657 0 52.958000 3.787000 3 +SPEAKER 01657 0 57.402000 9.380000 3 +SPEAKER 01657 0 67.137000 12.349000 3 +SPEAKER 01657 0 88.503000 0.674710 3 +SPEAKER 01657 0 47.912000 3.352000 0 +SPEAKER 01657 0 78.508000 3.570000 0 +SPEAKER 01657 0 82.386000 2.915000 0 +SPEAKER 01657 0 85.556000 4.096400 0 +SPEAKER 01657 0 93.740000 0.598000 0 +SPEAKER 01657 0 98.550000 1.825000 0 +SPEAKER 01657 0 14.446000 0.459000 2 +SPEAKER 01657 0 27.718000 0.625000 2 +SPEAKER 01657 0 78.003000 1.000000 2 diff --git a/rttm/few/01660.rttm b/rttm/few/01660.rttm new file mode 100644 index 0000000000000000000000000000000000000000..66fe2496b9796f5967291181c4a300b63ae1e540 --- /dev/null +++ b/rttm/few/01660.rttm @@ -0,0 +1,19 @@ +SPEAKER 01660 0 0.060000 0.407000 2 +SPEAKER 01660 0 0.504000 2.385000 0 +SPEAKER 01660 0 3.596000 0.723060 0 +SPEAKER 01660 0 4.745000 1.481000 0 +SPEAKER 01660 0 7.264000 0.941000 0 +SPEAKER 01660 0 8.541000 0.723000 0 +SPEAKER 01660 0 9.875000 0.518000 0 +SPEAKER 01660 0 11.198000 0.806000 0 +SPEAKER 01660 0 12.726000 1.721210 0 +SPEAKER 01660 0 15.938000 6.381000 0 +SPEAKER 01660 0 24.893000 1.871000 0 +SPEAKER 01660 0 0.835350 0.779650 3 +SPEAKER 01660 0 2.819000 0.463000 3 +SPEAKER 01660 0 6.264000 0.481000 3 +SPEAKER 01660 0 12.060000 0.481000 3 +SPEAKER 01660 0 23.230080 1.274170 3 +SPEAKER 01660 0 27.189440 4.592560 3 +SPEAKER 01660 0 8.226000 3.796770 1 +SPEAKER 01660 0 22.319000 3.200560 1 diff --git a/rttm/few/01661.rttm b/rttm/few/01661.rttm new file mode 100644 index 0000000000000000000000000000000000000000..5c8d8e875fa3397737bbb77f0dbcdb04d940de39 --- /dev/null +++ b/rttm/few/01661.rttm @@ -0,0 +1,9 @@ +SPEAKER 01661 0 0.009000 0.902660 0 +SPEAKER 01661 0 1.571660 14.766340 0 +SPEAKER 01661 0 16.838000 9.555000 0 +SPEAKER 01661 0 33.029000 0.336610 0 +SPEAKER 01661 0 3.690000 0.557350 1 +SPEAKER 01661 0 19.467000 0.556400 1 +SPEAKER 01661 0 24.221000 0.420000 1 +SPEAKER 01661 0 25.133880 10.926120 1 +SPEAKER 01661 0 36.689000 1.426000 1 diff --git a/rttm/few/01664.rttm b/rttm/few/01664.rttm new file mode 100644 index 0000000000000000000000000000000000000000..b8a678462c8cfbfcf4dbf72a614b1d26c24554b5 --- /dev/null +++ b/rttm/few/01664.rttm @@ -0,0 +1,2 @@ +SPEAKER 01664 0 0.134000 14.111000 0 +SPEAKER 01664 0 14.615000 5.223000 1 diff --git a/rttm/few/01672.rttm b/rttm/few/01672.rttm new file mode 100644 index 0000000000000000000000000000000000000000..85a4ed6010cb5044d442f217101766cbd199ab96 --- /dev/null +++ b/rttm/few/01672.rttm @@ -0,0 +1,10 @@ +SPEAKER 01672 0 0.023000 1.852000 0 +SPEAKER 01672 0 3.986000 1.537000 0 +SPEAKER 01672 0 7.912000 1.814000 0 +SPEAKER 01672 0 11.134000 3.648000 0 +SPEAKER 01672 0 16.801000 3.185000 0 +SPEAKER 01672 0 1.985730 2.000270 1 +SPEAKER 01672 0 6.005000 1.907000 1 +SPEAKER 01672 0 9.856000 0.722000 1 +SPEAKER 01672 0 15.467000 0.759000 1 +SPEAKER 01672 0 19.986000 1.185000 1 diff --git a/rttm/few/01674.rttm b/rttm/few/01674.rttm new file mode 100644 index 0000000000000000000000000000000000000000..445dd12c03bf142c270cda2c33d2d8a46210f2fd --- /dev/null +++ b/rttm/few/01674.rttm @@ -0,0 +1,19 @@ +SPEAKER 01674 0 0.023000 4.979940 1 +SPEAKER 01674 0 5.261000 1.142280 1 +SPEAKER 01674 0 6.675000 0.748060 1 +SPEAKER 01674 0 8.036000 0.925510 1 +SPEAKER 01674 0 10.024000 2.937510 1 +SPEAKER 01674 0 13.488000 4.112480 1 +SPEAKER 01674 0 20.813000 3.513280 1 +SPEAKER 01674 0 25.665000 0.596770 1 +SPEAKER 01674 0 5.483250 1.391420 0 +SPEAKER 01674 0 13.375000 0.483540 0 +SPEAKER 01674 0 27.245640 1.888360 0 +SPEAKER 01674 0 5.282000 4.753960 3 +SPEAKER 01674 0 11.433000 0.508000 3 +SPEAKER 01674 0 12.486720 0.551720 3 +SPEAKER 01674 0 17.716000 2.755440 3 +SPEAKER 01674 0 22.358540 0.548390 3 +SPEAKER 01674 0 23.584000 2.129380 3 +SPEAKER 01674 0 26.181000 0.548510 3 +SPEAKER 01674 0 26.619000 0.933090 2 diff --git a/rttm/few/01688.rttm b/rttm/few/01688.rttm new file mode 100644 index 0000000000000000000000000000000000000000..054688c769e6a9b525aac22e6bca25b5db84212f --- /dev/null +++ b/rttm/few/01688.rttm @@ -0,0 +1,25 @@ +SPEAKER 01688 0 0.014000 0.929000 0 +SPEAKER 01688 0 1.521000 1.013000 0 +SPEAKER 01688 0 4.005000 0.741000 0 +SPEAKER 01688 0 5.352000 2.450030 0 +SPEAKER 01688 0 9.872000 2.232000 0 +SPEAKER 01688 0 12.522000 4.247000 0 +SPEAKER 01688 0 19.923000 2.523000 0 +SPEAKER 01688 0 23.532000 1.113000 0 +SPEAKER 01688 0 25.708000 3.580000 0 +SPEAKER 01688 0 29.820000 0.642000 0 +SPEAKER 01688 0 30.780000 2.619000 0 +SPEAKER 01688 0 3.417000 0.439100 2 +SPEAKER 01688 0 8.420000 1.195360 2 +SPEAKER 01688 0 11.174000 0.878000 2 +SPEAKER 01688 0 22.570000 0.749000 2 +SPEAKER 01688 0 24.200000 0.365000 2 +SPEAKER 01688 0 28.311000 1.683000 2 +SPEAKER 01688 0 32.328000 0.317000 2 +SPEAKER 01688 0 4.125000 0.825000 1 +SPEAKER 01688 0 16.241000 0.396000 1 +SPEAKER 01688 0 17.495000 3.128000 1 +SPEAKER 01688 0 23.311000 0.619000 1 +SPEAKER 01688 0 24.819000 0.667000 1 +SPEAKER 01688 0 29.927000 0.591000 1 +SPEAKER 01688 0 33.059810 0.364190 1 diff --git a/rttm/few/01697.rttm b/rttm/few/01697.rttm new file mode 100644 index 0000000000000000000000000000000000000000..0a165c10c072a40162152f06dd24c2912986cf63 --- /dev/null +++ b/rttm/few/01697.rttm @@ -0,0 +1,51 @@ +SPEAKER 01697 0 0.000000 2.200280 0 +SPEAKER 01697 0 2.553000 3.990000 0 +SPEAKER 01697 0 7.225000 1.211000 0 +SPEAKER 01697 0 61.111210 1.675680 0 +SPEAKER 01697 0 90.041290 6.740740 0 +SPEAKER 01697 0 98.312000 6.062620 0 +SPEAKER 01697 0 138.395000 2.685680 0 +SPEAKER 01697 0 141.817000 2.018880 0 +SPEAKER 01697 0 7.097000 0.407000 2 +SPEAKER 01697 0 8.109540 3.199800 2 +SPEAKER 01697 0 11.721000 1.434000 2 +SPEAKER 01697 0 13.664000 2.994000 2 +SPEAKER 01697 0 17.114000 4.325770 2 +SPEAKER 01697 0 21.786000 2.978000 2 +SPEAKER 01697 0 25.184000 0.562340 2 +SPEAKER 01697 0 26.246000 3.993000 2 +SPEAKER 01697 0 30.732830 4.945950 2 +SPEAKER 01697 0 36.330000 1.334000 2 +SPEAKER 01697 0 37.976070 8.576020 2 +SPEAKER 01697 0 47.276200 7.569800 2 +SPEAKER 01697 0 55.226000 4.070000 2 +SPEAKER 01697 0 60.309340 1.209290 2 +SPEAKER 01697 0 62.022770 9.333330 2 +SPEAKER 01697 0 71.705000 3.907000 2 +SPEAKER 01697 0 75.935000 2.067940 2 +SPEAKER 01697 0 78.528580 1.445740 2 +SPEAKER 01697 0 80.325000 3.326000 2 +SPEAKER 01697 0 83.985000 2.619590 2 +SPEAKER 01697 0 86.985000 1.299590 2 +SPEAKER 01697 0 88.765000 1.899590 2 +SPEAKER 01697 0 94.078000 1.006590 2 +SPEAKER 01697 0 95.492000 1.252590 2 +SPEAKER 01697 0 97.169000 0.835590 2 +SPEAKER 01697 0 98.445000 2.020000 2 +SPEAKER 01697 0 104.115360 4.314820 2 +SPEAKER 01697 0 109.031000 9.009980 2 +SPEAKER 01697 0 118.608000 1.766320 2 +SPEAKER 01697 0 120.741000 6.933320 2 +SPEAKER 01697 0 128.541000 1.833740 2 +SPEAKER 01697 0 130.938840 6.666670 2 +SPEAKER 01697 0 138.093000 1.000000 2 +SPEAKER 01697 0 140.096840 0.462970 2 +SPEAKER 01697 0 140.991000 2.144880 2 +SPEAKER 01697 0 143.758000 1.233440 2 +SPEAKER 01697 0 145.365000 3.583690 2 +SPEAKER 01697 0 149.269000 0.400220 2 +SPEAKER 01697 0 150.003000 2.310660 2 +SPEAKER 01697 0 152.700000 2.524770 2 +SPEAKER 01697 0 155.736000 1.144000 2 +SPEAKER 01697 0 157.216000 2.893220 2 +SPEAKER 01697 0 160.454000 2.581880 2 diff --git a/rttm/few/01700.rttm b/rttm/few/01700.rttm new file mode 100644 index 0000000000000000000000000000000000000000..98e9718907487e217633d743556b9efeb831658e --- /dev/null +++ b/rttm/few/01700.rttm @@ -0,0 +1,22 @@ +SPEAKER 01700 0 0.004000 2.074000 0 +SPEAKER 01700 0 2.509000 0.421000 0 +SPEAKER 01700 0 4.875000 0.926000 0 +SPEAKER 01700 0 8.134000 0.926000 0 +SPEAKER 01700 0 9.406000 1.302000 0 +SPEAKER 01700 0 12.097000 1.000000 0 +SPEAKER 01700 0 15.689000 0.630000 0 +SPEAKER 01700 0 19.875000 1.333000 0 +SPEAKER 01700 0 22.641890 0.795110 0 +SPEAKER 01700 0 24.301000 0.333000 0 +SPEAKER 01700 0 25.171000 0.444000 0 +SPEAKER 01700 0 26.338000 0.944000 0 +SPEAKER 01700 0 30.197000 1.686270 0 +SPEAKER 01700 0 2.152400 2.722600 1 +SPEAKER 01700 0 5.659130 2.474870 1 +SPEAKER 01700 0 9.060000 2.944000 1 +SPEAKER 01700 0 14.366030 6.341970 1 +SPEAKER 01700 0 21.531000 0.992000 1 +SPEAKER 01700 0 23.486000 0.815000 1 +SPEAKER 01700 0 24.634000 1.944000 1 +SPEAKER 01700 0 27.467000 2.445000 1 +SPEAKER 01700 0 30.615000 1.939000 1 diff --git a/rttm/few/01719.rttm b/rttm/few/01719.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4504f0c86e99e64a48ac4b782d86bed1d13a8698 --- /dev/null +++ b/rttm/few/01719.rttm @@ -0,0 +1,76 @@ +SPEAKER 01719 0 0.489000 0.885620 1 +SPEAKER 01719 0 1.754000 0.620620 1 +SPEAKER 01719 0 2.735000 2.584060 1 +SPEAKER 01719 0 6.141000 1.789180 1 +SPEAKER 01719 0 8.238000 2.099580 1 +SPEAKER 01719 0 10.834000 1.688770 1 +SPEAKER 01719 0 12.858000 3.312000 1 +SPEAKER 01719 0 16.464000 1.000000 1 +SPEAKER 01719 0 17.781000 5.389920 1 +SPEAKER 01719 0 23.425000 3.634810 1 +SPEAKER 01719 0 27.378000 2.941060 1 +SPEAKER 01719 0 30.578000 0.648470 1 +SPEAKER 01719 0 32.642030 3.677030 1 +SPEAKER 01719 0 36.631000 6.762140 1 +SPEAKER 01719 0 44.127000 1.506880 1 +SPEAKER 01719 0 46.034000 0.785060 1 +SPEAKER 01719 0 47.211000 0.904360 1 +SPEAKER 01719 0 48.449000 1.000000 1 +SPEAKER 01719 0 49.838000 1.000000 1 +SPEAKER 01719 0 51.391000 0.742880 1 +SPEAKER 01719 0 52.394000 1.888030 1 +SPEAKER 01719 0 54.553000 5.154950 1 +SPEAKER 01719 0 60.419000 1.566730 1 +SPEAKER 01719 0 62.522000 3.185950 1 +SPEAKER 01719 0 65.997000 2.044290 1 +SPEAKER 01719 0 69.347000 4.397990 1 +SPEAKER 01719 0 74.289000 2.965000 1 +SPEAKER 01719 0 77.905000 2.228880 1 +SPEAKER 01719 0 80.401000 6.943250 1 +SPEAKER 01719 0 87.924000 0.635810 1 +SPEAKER 01719 0 88.880000 4.420550 1 +SPEAKER 01719 0 103.369000 1.653770 1 +SPEAKER 01719 0 105.379000 5.127000 1 +SPEAKER 01719 0 111.846000 1.399000 1 +SPEAKER 01719 0 113.543000 3.942730 1 +SPEAKER 01719 0 117.945000 4.281470 1 +SPEAKER 01719 0 122.510000 5.920180 1 +SPEAKER 01719 0 128.801000 0.906950 1 +SPEAKER 01719 0 130.059000 1.297100 1 +SPEAKER 01719 0 131.790000 3.454990 1 +SPEAKER 01719 0 135.635000 1.000000 1 +SPEAKER 01719 0 137.839000 2.961550 1 +SPEAKER 01719 0 141.115000 1.926290 1 +SPEAKER 01719 0 143.440000 4.652000 1 +SPEAKER 01719 0 148.366000 5.234000 1 +SPEAKER 01719 0 153.982000 1.059290 1 +SPEAKER 01719 0 155.920000 6.714000 1 +SPEAKER 01719 0 163.010000 12.809060 1 +SPEAKER 01719 0 176.134000 1.829000 1 +SPEAKER 01719 0 178.220000 1.840000 1 +SPEAKER 01719 0 180.591000 2.135470 1 +SPEAKER 01719 0 183.097000 2.759100 1 +SPEAKER 01719 0 186.201000 2.229180 1 +SPEAKER 01719 0 188.745000 5.555550 1 +SPEAKER 01719 0 194.724000 4.798770 1 +SPEAKER 01719 0 199.930000 3.814990 1 +SPEAKER 01719 0 204.041000 5.574360 1 +SPEAKER 01719 0 210.004000 1.092840 1 +SPEAKER 01719 0 211.449000 1.555250 1 +SPEAKER 01719 0 213.628000 1.396000 1 +SPEAKER 01719 0 215.498000 2.773000 1 +SPEAKER 01719 0 218.524000 3.443210 1 +SPEAKER 01719 0 222.230000 1.292770 1 +SPEAKER 01719 0 223.912000 3.612000 1 +SPEAKER 01719 0 227.837580 2.846420 1 +SPEAKER 01719 0 231.736000 0.786770 1 +SPEAKER 01719 0 232.899000 2.845990 1 +SPEAKER 01719 0 236.000000 1.744990 1 +SPEAKER 01719 0 238.903000 1.000000 1 +SPEAKER 01719 0 240.522770 0.292230 1 +SPEAKER 01719 0 30.082000 3.635000 3 +SPEAKER 01719 0 92.893000 2.129770 3 +SPEAKER 01719 0 95.379000 1.106730 3 +SPEAKER 01719 0 155.696000 0.530470 3 +SPEAKER 01719 0 162.388000 0.746000 3 +SPEAKER 01719 0 97.611000 3.782140 0 diff --git a/rttm/few/01725.rttm b/rttm/few/01725.rttm new file mode 100644 index 0000000000000000000000000000000000000000..e03af74cdc18cbf55c8a01612b1d7c1f20a83e28 --- /dev/null +++ b/rttm/few/01725.rttm @@ -0,0 +1,12 @@ +SPEAKER 01725 0 0.000000 1.652000 1 +SPEAKER 01725 0 7.442870 10.969130 1 +SPEAKER 01725 0 20.115000 2.149000 1 +SPEAKER 01725 0 25.094390 10.465610 1 +SPEAKER 01725 0 36.115000 0.760000 1 +SPEAKER 01725 0 38.541000 11.982000 1 +SPEAKER 01725 0 52.393000 0.796000 1 +SPEAKER 01725 0 2.064080 5.569920 0 +SPEAKER 01725 0 18.412000 8.240000 0 +SPEAKER 01725 0 34.263000 4.519030 0 +SPEAKER 01725 0 44.431000 1.462000 0 +SPEAKER 01725 0 50.523000 4.074000 0 diff --git a/rttm/few/01726.rttm b/rttm/few/01726.rttm new file mode 100644 index 0000000000000000000000000000000000000000..d3d8326efbf21b4a0c7215c7a502c3a0a8ab4cd0 --- /dev/null +++ b/rttm/few/01726.rttm @@ -0,0 +1,13 @@ +SPEAKER 01726 0 0.335000 0.410000 1 +SPEAKER 01726 0 10.004000 4.963000 1 +SPEAKER 01726 0 15.245000 8.444000 1 +SPEAKER 01726 0 24.097000 0.759000 1 +SPEAKER 01726 0 26.004000 12.463000 1 +SPEAKER 01726 0 0.338000 9.644920 0 +SPEAKER 01726 0 11.523000 0.500000 0 +SPEAKER 01726 0 14.967000 0.371000 0 +SPEAKER 01726 0 21.245000 1.222000 0 +SPEAKER 01726 0 23.801000 0.314000 0 +SPEAKER 01726 0 24.615000 1.389000 0 +SPEAKER 01726 0 30.397000 0.367000 0 +SPEAKER 01726 0 31.226000 0.778000 0 diff --git a/rttm/few/01731.rttm b/rttm/few/01731.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4c0649beb25dc64e7795e9158020198df3bdecfe --- /dev/null +++ b/rttm/few/01731.rttm @@ -0,0 +1,11 @@ +SPEAKER 01731 0 0.000000 0.947000 3 +SPEAKER 01731 0 3.059810 0.440190 3 +SPEAKER 01731 0 11.079000 4.943770 3 +SPEAKER 01731 0 16.930000 2.518690 3 +SPEAKER 01731 0 19.893140 6.851850 3 +SPEAKER 01731 0 27.158000 0.474000 3 +SPEAKER 01731 0 0.947000 0.631000 2 +SPEAKER 01731 0 2.171000 0.907000 2 +SPEAKER 01731 0 3.474000 4.710000 1 +SPEAKER 01731 0 23.526000 0.500000 1 +SPEAKER 01731 0 15.842000 0.958550 0 diff --git a/rttm/few/01740.rttm b/rttm/few/01740.rttm new file mode 100644 index 0000000000000000000000000000000000000000..5b4b768d4a4e6107992f76383603dd377c7cebeb --- /dev/null +++ b/rttm/few/01740.rttm @@ -0,0 +1,15 @@ +SPEAKER 01740 0 0.004000 0.574000 1 +SPEAKER 01740 0 1.890100 2.132650 1 +SPEAKER 01740 0 11.941000 0.438890 1 +SPEAKER 01740 0 17.237000 0.795950 1 +SPEAKER 01740 0 19.350000 0.529890 1 +SPEAKER 01740 0 20.696000 1.178800 1 +SPEAKER 01740 0 23.511000 1.883410 1 +SPEAKER 01740 0 4.696220 3.163260 0 +SPEAKER 01740 0 8.441000 0.683790 0 +SPEAKER 01740 0 11.115000 0.499590 0 +SPEAKER 01740 0 11.981000 1.306000 0 +SPEAKER 01740 0 22.650000 1.431000 0 +SPEAKER 01740 0 18.400000 0.622750 2 +SPEAKER 01740 0 19.839080 1.183670 2 +SPEAKER 01740 0 22.002250 0.970590 2 diff --git a/rttm/few/01755.rttm b/rttm/few/01755.rttm new file mode 100644 index 0000000000000000000000000000000000000000..743fc36deef58ade36e23eaa8a2cc2c684e4988f --- /dev/null +++ b/rttm/few/01755.rttm @@ -0,0 +1,16 @@ +SPEAKER 01755 0 0.198000 2.677000 h0 +SPEAKER 01755 0 5.412000 0.981000 h0 +SPEAKER 01755 0 9.041000 1.513000 h0 +SPEAKER 01755 0 13.671000 2.704000 h0 +SPEAKER 01755 0 17.838000 0.518000 h0 +SPEAKER 01755 0 19.708000 0.537000 h0 +SPEAKER 01755 0 21.782000 2.019000 h0 +SPEAKER 01755 0 2.821000 0.368000 2 +SPEAKER 01755 0 9.356000 1.157000 2 +SPEAKER 01755 0 19.708000 2.028000 2 +SPEAKER 01755 0 2.893000 0.500000 0 +SPEAKER 01755 0 7.115000 2.181960 0 +SPEAKER 01755 0 12.115000 1.426000 0 +SPEAKER 01755 0 3.472000 1.403000 1 +SPEAKER 01755 0 14.641000 4.974000 1 +SPEAKER 01755 0 20.282000 2.000000 1 diff --git a/rttm/few/01763.rttm b/rttm/few/01763.rttm new file mode 100644 index 0000000000000000000000000000000000000000..808cd7e7cef775ca5c1503cb8aafb4b2f42e3e42 --- /dev/null +++ b/rttm/few/01763.rttm @@ -0,0 +1,26 @@ +SPEAKER 01763 0 0.259000 0.505000 0 +SPEAKER 01763 0 1.269000 2.124000 0 +SPEAKER 01763 0 4.033000 2.137920 0 +SPEAKER 01763 0 7.282000 1.185000 0 +SPEAKER 01763 0 42.744990 1.537010 0 +SPEAKER 01763 0 46.134000 0.656000 0 +SPEAKER 01763 0 2.399000 1.000000 2 +SPEAKER 01763 0 4.634000 1.000000 2 +SPEAKER 01763 0 8.556000 2.114920 2 +SPEAKER 01763 0 17.856000 1.908000 2 +SPEAKER 01763 0 21.504000 2.945000 2 +SPEAKER 01763 0 26.170920 2.092590 2 +SPEAKER 01763 0 30.986000 1.221950 2 +SPEAKER 01763 0 34.226000 1.926000 2 +SPEAKER 01763 0 37.615000 1.315180 2 +SPEAKER 01763 0 40.504000 1.593000 2 +SPEAKER 01763 0 5.962000 1.560770 1 +SPEAKER 01763 0 10.874000 1.000000 1 +SPEAKER 01763 0 16.393000 1.333000 1 +SPEAKER 01763 0 19.825000 1.000000 1 +SPEAKER 01763 0 21.671000 0.629550 1 +SPEAKER 01763 0 25.319000 1.000000 1 +SPEAKER 01763 0 29.986000 1.000000 1 +SPEAKER 01763 0 31.453000 3.070000 1 +SPEAKER 01763 0 36.152000 1.556000 1 +SPEAKER 01763 0 38.046000 2.106000 1 diff --git a/rttm/few/01764.rttm b/rttm/few/01764.rttm new file mode 100644 index 0000000000000000000000000000000000000000..a15d7494b42174b1a4546a789d3e2cb2b9aa6856 --- /dev/null +++ b/rttm/few/01764.rttm @@ -0,0 +1,18 @@ +SPEAKER 01764 0 0.214000 1.142000 0 +SPEAKER 01764 0 1.894000 9.425000 0 +SPEAKER 01764 0 11.797000 2.411000 0 +SPEAKER 01764 0 17.337000 1.556000 0 +SPEAKER 01764 0 21.541290 0.510290 0 +SPEAKER 01764 0 23.767000 0.563920 0 +SPEAKER 01764 0 25.302000 1.794000 0 +SPEAKER 01764 0 37.183000 1.266000 0 +SPEAKER 01764 0 40.776000 1.450000 0 +SPEAKER 01764 0 42.784000 0.572000 0 +SPEAKER 01764 0 49.328000 1.162600 0 +SPEAKER 01764 0 54.067000 5.382000 0 +SPEAKER 01764 0 14.217000 2.834580 1 +SPEAKER 01764 0 19.577000 4.594000 1 +SPEAKER 01764 0 26.988000 9.980000 1 +SPEAKER 01764 0 37.556000 3.337000 1 +SPEAKER 01764 0 44.014000 5.318070 1 +SPEAKER 01764 0 50.115000 4.448770 1 diff --git a/rttm/few/01772.rttm b/rttm/few/01772.rttm new file mode 100644 index 0000000000000000000000000000000000000000..2584f76c1fe9d0ee6fae7db1d4f2a0bf9cc40b8f --- /dev/null +++ b/rttm/few/01772.rttm @@ -0,0 +1,22 @@ +SPEAKER 01772 0 0.000000 0.502000 3 +SPEAKER 01772 0 5.555000 1.671470 3 +SPEAKER 01772 0 13.363000 0.906000 3 +SPEAKER 01772 0 16.501000 0.620000 3 +SPEAKER 01772 0 17.642320 3.547120 3 +SPEAKER 01772 0 21.975000 0.498000 3 +SPEAKER 01772 0 7.115360 0.592590 2 +SPEAKER 01772 0 8.106420 2.286720 2 +SPEAKER 01772 0 19.559810 0.481480 2 +SPEAKER 01772 0 0.356000 0.685000 1 +SPEAKER 01772 0 2.004250 1.643750 1 +SPEAKER 01772 0 6.002260 0.395830 1 +SPEAKER 01772 0 7.726000 0.500470 1 +SPEAKER 01772 0 10.345000 0.782000 1 +SPEAKER 01772 0 11.444000 1.871000 1 +SPEAKER 01772 0 13.961000 2.395000 1 +SPEAKER 01772 0 17.208000 0.960000 1 +SPEAKER 01772 0 19.732000 1.624000 1 +SPEAKER 01772 0 0.527000 1.000000 0 +SPEAKER 01772 0 10.544000 0.541590 0 +SPEAKER 01772 0 12.507000 0.791570 0 +SPEAKER 01772 0 20.961000 1.000000 0 diff --git a/rttm/few/01774.rttm b/rttm/few/01774.rttm new file mode 100644 index 0000000000000000000000000000000000000000..0fde09d3ffa1b9546ff636278a861ef25b5aed84 --- /dev/null +++ b/rttm/few/01774.rttm @@ -0,0 +1,9 @@ +SPEAKER 01774 0 0.319060 0.925930 2 +SPEAKER 01774 0 1.523000 2.074000 2 +SPEAKER 01774 0 4.911000 2.871030 2 +SPEAKER 01774 0 8.578000 1.500000 2 +SPEAKER 01774 0 2.504250 2.221750 3 +SPEAKER 01774 0 8.430180 4.203700 3 +SPEAKER 01774 0 16.097000 0.593000 3 +SPEAKER 01774 0 9.523000 1.833000 0 +SPEAKER 01774 0 14.744990 8.481010 0 diff --git a/rttm/few/01776.rttm b/rttm/few/01776.rttm new file mode 100644 index 0000000000000000000000000000000000000000..69cfd0e4136b97afbab7ec0700cf5a6cf2c10f44 --- /dev/null +++ b/rttm/few/01776.rttm @@ -0,0 +1,20 @@ +SPEAKER 01776 0 3.125000 0.824000 0 +SPEAKER 01776 0 6.430180 1.333820 0 +SPEAKER 01776 0 12.689000 0.852000 0 +SPEAKER 01776 0 16.396000 0.849000 0 +SPEAKER 01776 0 21.034360 1.025640 0 +SPEAKER 01776 0 25.657000 3.347000 0 +SPEAKER 01776 0 29.782000 0.351880 0 +SPEAKER 01776 0 2.782000 1.241000 2 +SPEAKER 01776 0 5.912000 0.499660 2 +SPEAKER 01776 0 7.226000 1.075000 2 +SPEAKER 01776 0 11.393140 0.925920 2 +SPEAKER 01776 0 16.411660 1.174610 2 +SPEAKER 01776 0 22.189000 0.500440 2 +SPEAKER 01776 0 24.162020 0.897980 2 +SPEAKER 01776 0 29.342870 0.744680 2 +SPEAKER 01776 0 0.000000 2.707950 1 +SPEAKER 01776 0 9.559000 0.852660 1 +SPEAKER 01776 0 13.603000 2.623000 1 +SPEAKER 01776 0 19.504250 1.481750 1 +SPEAKER 01776 0 23.375000 1.216800 1 diff --git a/rttm/few/01777.rttm b/rttm/few/01777.rttm new file mode 100644 index 0000000000000000000000000000000000000000..e0768a09710a0ec2a7ae6f403b3a171efa30cfe5 --- /dev/null +++ b/rttm/few/01777.rttm @@ -0,0 +1,21 @@ +SPEAKER 01777 0 0.060000 0.852000 1 +SPEAKER 01777 0 1.652000 4.566000 1 +SPEAKER 01777 0 7.481000 1.690000 1 +SPEAKER 01777 0 10.578000 1.757150 1 +SPEAKER 01777 0 12.946270 1.428880 1 +SPEAKER 01777 0 15.708170 1.888670 1 +SPEAKER 01777 0 22.452000 10.515210 1 +SPEAKER 01777 0 33.541000 9.297000 1 +SPEAKER 01777 0 43.517690 0.616310 1 +SPEAKER 01777 0 49.097000 2.584000 1 +SPEAKER 01777 0 55.557000 6.521000 1 +SPEAKER 01777 0 0.041290 3.055710 0 +SPEAKER 01777 0 4.097000 0.778000 0 +SPEAKER 01777 0 6.264000 7.219000 0 +SPEAKER 01777 0 14.467000 1.693550 0 +SPEAKER 01777 0 16.875000 5.148000 0 +SPEAKER 01777 0 42.838000 2.629210 0 +SPEAKER 01777 0 45.905730 2.119900 0 +SPEAKER 01777 0 49.775000 0.803000 0 +SPEAKER 01777 0 51.359000 2.534140 0 +SPEAKER 01777 0 54.226470 3.333340 0 diff --git a/rttm/few/01788.rttm b/rttm/few/01788.rttm new file mode 100644 index 0000000000000000000000000000000000000000..0b3cc77f7788a795d6056e3af83a158c619773e3 --- /dev/null +++ b/rttm/few/01788.rttm @@ -0,0 +1,36 @@ +SPEAKER 01788 0 0.023000 6.777550 0 +SPEAKER 01788 0 7.189000 9.944880 0 +SPEAKER 01788 0 20.597000 5.240580 0 +SPEAKER 01788 0 26.153000 8.721620 0 +SPEAKER 01788 0 35.319000 10.981550 0 +SPEAKER 01788 0 46.762000 1.223730 0 +SPEAKER 01788 0 48.523000 3.036810 0 +SPEAKER 01788 0 52.115000 8.074440 0 +SPEAKER 01788 0 60.819000 4.592660 0 +SPEAKER 01788 0 65.708000 1.277730 0 +SPEAKER 01788 0 67.486000 11.388620 0 +SPEAKER 01788 0 79.227000 12.258730 0 +SPEAKER 01788 0 93.004250 9.592590 0 +SPEAKER 01788 0 103.338000 0.758000 0 +SPEAKER 01788 0 116.374000 3.611730 0 +SPEAKER 01788 0 120.332000 8.153730 0 +SPEAKER 01788 0 129.062000 3.757060 0 +SPEAKER 01788 0 133.300000 30.241290 0 +SPEAKER 01788 0 164.042000 9.202990 0 +SPEAKER 01788 0 173.560000 5.407210 0 +SPEAKER 01788 0 179.726000 5.778250 0 +SPEAKER 01788 0 4.041000 0.685470 1 +SPEAKER 01788 0 15.986000 1.000000 1 +SPEAKER 01788 0 17.388000 2.801000 1 +SPEAKER 01788 0 24.800550 1.611450 1 +SPEAKER 01788 0 55.281000 0.853000 1 +SPEAKER 01788 0 75.376000 0.591000 1 +SPEAKER 01788 0 91.208000 2.056000 1 +SPEAKER 01788 0 94.070000 2.416000 1 +SPEAKER 01788 0 102.892000 1.000000 1 +SPEAKER 01788 0 104.208000 4.277730 1 +SPEAKER 01788 0 108.955000 1.901100 1 +SPEAKER 01788 0 111.171000 4.296210 1 +SPEAKER 01788 0 136.614000 0.575000 1 +SPEAKER 01788 0 181.004000 1.333580 1 +SPEAKER 01788 0 184.541290 0.981710 1 diff --git a/rttm/few/01791.rttm b/rttm/few/01791.rttm new file mode 100644 index 0000000000000000000000000000000000000000..1ca0639803dbd0c7c67e48200f75756285adb316 --- /dev/null +++ b/rttm/few/01791.rttm @@ -0,0 +1,14 @@ +SPEAKER 01791 0 1.444990 0.478520 2 +SPEAKER 01791 0 6.837580 0.722230 2 +SPEAKER 01791 0 9.666000 2.486400 2 +SPEAKER 01791 0 15.041000 1.000290 2 +SPEAKER 01791 0 1.375000 4.777000 1 +SPEAKER 01791 0 7.065000 1.000000 1 +SPEAKER 01791 0 9.097000 0.555400 1 +SPEAKER 01791 0 11.708000 2.130000 1 +SPEAKER 01791 0 15.949000 1.722000 1 +SPEAKER 01791 0 18.522000 1.297060 1 +SPEAKER 01791 0 6.171000 0.815000 3 +SPEAKER 01791 0 10.921000 1.120000 3 +SPEAKER 01791 0 13.719000 1.674000 3 +SPEAKER 01791 0 17.523000 0.981000 0 diff --git a/rttm/few/01796.rttm b/rttm/few/01796.rttm new file mode 100644 index 0000000000000000000000000000000000000000..16c6d178e47e36069fdbe251f5a5035a1d579541 --- /dev/null +++ b/rttm/few/01796.rttm @@ -0,0 +1,24 @@ +SPEAKER 01796 0 0.124000 2.213580 2 +SPEAKER 01796 0 7.282030 2.104970 2 +SPEAKER 01796 0 28.300550 0.871450 2 +SPEAKER 01796 0 2.053000 1.481000 3 +SPEAKER 01796 0 5.228000 1.366000 3 +SPEAKER 01796 0 7.241000 0.711000 3 +SPEAKER 01796 0 11.726000 2.667000 3 +SPEAKER 01796 0 15.541000 0.648440 3 +SPEAKER 01796 0 18.967210 2.833790 3 +SPEAKER 01796 0 27.458000 0.583290 3 +SPEAKER 01796 0 29.930180 0.814810 3 +SPEAKER 01796 0 31.948690 2.740750 3 +SPEAKER 01796 0 0.050000 0.898690 1 +SPEAKER 01796 0 4.968000 0.740000 1 +SPEAKER 01796 0 6.504000 1.166920 1 +SPEAKER 01796 0 22.532000 1.072000 1 +SPEAKER 01796 0 0.837580 0.574420 0 +SPEAKER 01796 0 3.578320 0.462970 0 +SPEAKER 01796 0 14.263510 0.870490 0 +SPEAKER 01796 0 15.596840 3.492600 0 +SPEAKER 01796 0 19.745000 2.889000 0 +SPEAKER 01796 0 23.337580 0.481480 0 +SPEAKER 01796 0 24.300550 1.462960 0 +SPEAKER 01796 0 29.319060 2.685190 0 diff --git a/rttm/few/01825.rttm b/rttm/few/01825.rttm new file mode 100644 index 0000000000000000000000000000000000000000..9ce865dbb3a384c2baf88129b3ad99081cf569a1 --- /dev/null +++ b/rttm/few/01825.rttm @@ -0,0 +1,16 @@ +SPEAKER 01825 0 0.041000 7.759550 0 +SPEAKER 01825 0 12.152000 1.352250 0 +SPEAKER 01825 0 14.856000 0.629730 0 +SPEAKER 01825 0 15.849000 4.025620 0 +SPEAKER 01825 0 24.616000 0.722000 0 +SPEAKER 01825 0 34.930000 0.574000 0 +SPEAKER 01825 0 37.930000 1.222000 0 +SPEAKER 01825 0 0.560000 1.796000 1 +SPEAKER 01825 0 8.115000 6.704000 1 +SPEAKER 01825 0 20.154000 2.165060 1 +SPEAKER 01825 0 22.590000 4.821660 1 +SPEAKER 01825 0 27.819000 1.629690 1 +SPEAKER 01825 0 29.784000 1.220250 1 +SPEAKER 01825 0 31.727000 1.629100 1 +SPEAKER 01825 0 33.752000 4.731000 1 +SPEAKER 01825 0 38.822000 1.726000 1 diff --git a/rttm/few/01826.rttm b/rttm/few/01826.rttm new file mode 100644 index 0000000000000000000000000000000000000000..8f474745375c3668b27d6117e373414e63620d11 --- /dev/null +++ b/rttm/few/01826.rttm @@ -0,0 +1,25 @@ +SPEAKER 01826 0 0.004000 2.185440 0 +SPEAKER 01826 0 4.341000 1.511000 0 +SPEAKER 01826 0 21.633880 6.151300 0 +SPEAKER 01826 0 28.405560 2.172080 0 +SPEAKER 01826 0 31.528930 2.444240 0 +SPEAKER 01826 0 34.427720 5.031280 0 +SPEAKER 01826 0 41.580000 1.059840 0 +SPEAKER 01826 0 48.455000 0.443390 0 +SPEAKER 01826 0 50.196200 3.913340 0 +SPEAKER 01826 0 54.595000 7.241810 0 +SPEAKER 01826 0 62.331000 1.000000 0 +SPEAKER 01826 0 74.039000 0.829000 0 +SPEAKER 01826 0 87.675000 0.682000 0 +SPEAKER 01826 0 2.701000 1.452110 1 +SPEAKER 01826 0 5.782030 0.574070 1 +SPEAKER 01826 0 6.936130 3.301880 1 +SPEAKER 01826 0 10.841790 10.606900 1 +SPEAKER 01826 0 28.338000 0.454000 1 +SPEAKER 01826 0 30.258000 2.870930 1 +SPEAKER 01826 0 39.580000 1.879000 1 +SPEAKER 01826 0 42.609540 0.697460 1 +SPEAKER 01826 0 43.822000 4.152000 1 +SPEAKER 01826 0 48.639840 0.831160 1 +SPEAKER 01826 0 62.231000 0.530000 1 +SPEAKER 01826 0 63.262000 24.597690 1 diff --git a/rttm/few/01827.rttm b/rttm/few/01827.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ce01694d9956523b89e21f1aaff6ecba53a05bf8 --- /dev/null +++ b/rttm/few/01827.rttm @@ -0,0 +1,23 @@ +SPEAKER 01827 0 0.003000 9.243000 2 +SPEAKER 01827 0 9.700000 4.313080 2 +SPEAKER 01827 0 14.280000 2.445850 2 +SPEAKER 01827 0 17.769000 1.422000 2 +SPEAKER 01827 0 20.147000 1.749060 2 +SPEAKER 01827 0 23.036000 1.967000 2 +SPEAKER 01827 0 26.247000 3.978000 2 +SPEAKER 01827 0 31.336000 0.922000 2 +SPEAKER 01827 0 32.891000 2.856000 2 +SPEAKER 01827 0 37.025000 1.278000 2 +SPEAKER 01827 0 38.736000 3.787720 2 +SPEAKER 01827 0 42.854000 4.403760 2 +SPEAKER 01827 0 48.914000 2.789000 2 +SPEAKER 01827 0 52.391000 4.242880 2 +SPEAKER 01827 0 56.949000 0.521000 2 +SPEAKER 01827 0 9.094000 1.440000 0 +SPEAKER 01827 0 21.291000 2.256000 0 +SPEAKER 01827 0 24.962000 1.955340 0 +SPEAKER 01827 0 30.236000 0.340910 0 +SPEAKER 01827 0 38.803000 1.555000 0 +SPEAKER 01827 0 41.425000 0.489000 0 +SPEAKER 01827 0 47.458000 1.133000 0 +SPEAKER 01827 0 9.556000 1.425160 1 diff --git a/rttm/few/01830.rttm b/rttm/few/01830.rttm new file mode 100644 index 0000000000000000000000000000000000000000..912568d8ccf9c3e9cae1a5ddd96c43910868092a --- /dev/null +++ b/rttm/few/01830.rttm @@ -0,0 +1,175 @@ +SPEAKER 01830 0 0.000000 3.730750 0 +SPEAKER 01830 0 7.615000 1.020000 0 +SPEAKER 01830 0 9.577000 8.816000 0 +SPEAKER 01830 0 19.220000 3.081000 0 +SPEAKER 01830 0 22.594390 3.893940 0 +SPEAKER 01830 0 35.636000 0.394000 0 +SPEAKER 01830 0 42.959000 17.267000 0 +SPEAKER 01830 0 63.839000 25.346300 0 +SPEAKER 01830 0 91.415000 4.618780 0 +SPEAKER 01830 0 112.660000 2.312000 0 +SPEAKER 01830 0 115.798000 0.544000 0 +SPEAKER 01830 0 117.680000 0.410000 0 +SPEAKER 01830 0 122.306510 1.401490 0 +SPEAKER 01830 0 125.761050 13.094950 0 +SPEAKER 01830 0 140.908510 16.762490 0 +SPEAKER 01830 0 158.380000 2.680000 0 +SPEAKER 01830 0 179.403000 14.586590 0 +SPEAKER 01830 0 194.911000 19.547020 0 +SPEAKER 01830 0 215.323000 1.533000 0 +SPEAKER 01830 0 220.672000 0.406000 0 +SPEAKER 01830 0 221.578000 2.093000 0 +SPEAKER 01830 0 228.004000 0.500000 0 +SPEAKER 01830 0 229.326000 2.641000 0 +SPEAKER 01830 0 234.217560 4.083440 0 +SPEAKER 01830 0 240.263000 10.186000 0 +SPEAKER 01830 0 257.406000 1.987000 0 +SPEAKER 01830 0 262.000000 2.084000 0 +SPEAKER 01830 0 264.394000 0.740000 0 +SPEAKER 01830 0 269.060420 17.036580 0 +SPEAKER 01830 0 289.887000 1.469100 0 +SPEAKER 01830 0 292.877000 10.085560 0 +SPEAKER 01830 0 303.838000 21.388470 0 +SPEAKER 01830 0 325.671000 2.204000 0 +SPEAKER 01830 0 329.100000 0.906000 0 +SPEAKER 01830 0 331.374000 0.556000 0 +SPEAKER 01830 0 341.375000 0.592000 0 +SPEAKER 01830 0 342.640000 1.292000 0 +SPEAKER 01830 0 346.637000 1.738000 0 +SPEAKER 01830 0 356.373000 11.437150 0 +SPEAKER 01830 0 368.823000 9.499000 0 +SPEAKER 01830 0 378.906000 7.061000 0 +SPEAKER 01830 0 389.634000 16.537000 0 +SPEAKER 01830 0 409.203000 0.912000 0 +SPEAKER 01830 0 411.394000 12.907000 0 +SPEAKER 01830 0 426.473000 5.013000 0 +SPEAKER 01830 0 433.356000 7.204000 0 +SPEAKER 01830 0 441.560000 3.222030 0 +SPEAKER 01830 0 453.374620 15.759380 0 +SPEAKER 01830 0 472.356000 19.204000 0 +SPEAKER 01830 0 494.522770 2.963230 0 +SPEAKER 01830 0 498.062000 6.887000 0 +SPEAKER 01830 0 506.772000 4.066000 0 +SPEAKER 01830 0 512.634000 4.259000 0 +SPEAKER 01830 0 526.084350 38.808650 0 +SPEAKER 01830 0 566.430000 1.000000 0 +SPEAKER 01830 0 568.301000 0.444000 0 +SPEAKER 01830 0 574.486000 8.963000 0 +SPEAKER 01830 0 584.372000 3.235410 0 +SPEAKER 01830 0 592.727000 0.907000 0 +SPEAKER 01830 0 595.560000 1.833000 0 +SPEAKER 01830 0 606.245340 0.758620 0 +SPEAKER 01830 0 607.817000 5.726000 0 +SPEAKER 01830 0 614.219000 0.433000 0 +SPEAKER 01830 0 619.152000 4.352250 0 +SPEAKER 01830 0 624.059000 7.185990 0 +SPEAKER 01830 0 636.152000 0.649000 0 +SPEAKER 01830 0 640.004250 4.115750 0 +SPEAKER 01830 0 644.932000 3.905580 0 +SPEAKER 01830 0 649.264000 0.500000 0 +SPEAKER 01830 0 651.134000 1.963000 0 +SPEAKER 01830 0 654.264000 3.314000 0 +SPEAKER 01830 0 659.329000 1.755000 0 +SPEAKER 01830 0 662.875000 0.907000 0 +SPEAKER 01830 0 664.556000 1.467000 0 +SPEAKER 01830 0 666.403000 4.788000 0 +SPEAKER 01830 0 683.930000 0.407580 0 +SPEAKER 01830 0 698.745000 42.133000 0 +SPEAKER 01830 0 757.288000 0.438000 0 +SPEAKER 01830 0 773.964000 0.408000 0 +SPEAKER 01830 0 777.689000 3.075000 0 +SPEAKER 01830 0 781.059000 0.426730 0 +SPEAKER 01830 0 783.523000 0.821000 0 +SPEAKER 01830 0 2.578000 0.546690 1 +SPEAKER 01830 0 3.671000 3.981000 1 +SPEAKER 01830 0 8.740000 0.931000 1 +SPEAKER 01830 0 17.978000 1.583000 1 +SPEAKER 01830 0 22.299000 0.576000 1 +SPEAKER 01830 0 24.560000 1.241000 1 +SPEAKER 01830 0 26.450000 16.583780 1 +SPEAKER 01830 0 60.136000 3.746270 1 +SPEAKER 01830 0 89.168000 1.259720 1 +SPEAKER 01830 0 96.023000 17.525930 1 +SPEAKER 01830 0 114.940000 11.396810 1 +SPEAKER 01830 0 138.939000 2.184000 1 +SPEAKER 01830 0 147.473000 0.735000 1 +SPEAKER 01830 0 157.686000 0.971000 1 +SPEAKER 01830 0 158.967000 1.203920 1 +SPEAKER 01830 0 161.246000 18.824670 1 +SPEAKER 01830 0 192.624720 2.783790 1 +SPEAKER 01830 0 207.041000 0.741000 1 +SPEAKER 01830 0 211.372000 0.623000 1 +SPEAKER 01830 0 214.414000 0.849510 1 +SPEAKER 01830 0 217.280000 3.697300 1 +SPEAKER 01830 0 221.299000 8.261420 1 +SPEAKER 01830 0 230.410000 0.428000 1 +SPEAKER 01830 0 231.460420 2.969580 1 +SPEAKER 01830 0 237.912000 2.833000 1 +SPEAKER 01830 0 244.264000 0.453560 1 +SPEAKER 01830 0 250.346140 7.171420 1 +SPEAKER 01830 0 259.267000 2.793420 1 +SPEAKER 01830 0 263.848000 5.312420 1 +SPEAKER 01830 0 271.620000 0.668990 1 +SPEAKER 01830 0 286.109540 2.454540 1 +SPEAKER 01830 0 291.796000 0.763810 1 +SPEAKER 01830 0 302.603000 1.156000 1 +SPEAKER 01830 0 317.726470 0.722220 1 +SPEAKER 01830 0 318.905000 1.099000 1 +SPEAKER 01830 0 324.670920 1.592590 1 +SPEAKER 01830 0 327.726470 10.574080 1 +SPEAKER 01830 0 338.673000 2.201620 1 +SPEAKER 01830 0 341.308000 1.363000 1 +SPEAKER 01830 0 343.615000 3.074000 1 +SPEAKER 01830 0 348.313000 8.117180 1 +SPEAKER 01830 0 357.615000 1.000000 1 +SPEAKER 01830 0 366.729000 2.146000 1 +SPEAKER 01830 0 373.444000 1.000000 1 +SPEAKER 01830 0 376.139000 0.773000 1 +SPEAKER 01830 0 377.239000 2.006000 1 +SPEAKER 01830 0 385.779820 3.891180 1 +SPEAKER 01830 0 393.712000 0.755000 1 +SPEAKER 01830 0 405.189440 4.370370 1 +SPEAKER 01830 0 410.134000 1.685060 1 +SPEAKER 01830 0 422.642000 3.825000 1 +SPEAKER 01830 0 431.542000 1.925000 1 +SPEAKER 01830 0 437.337000 0.778360 1 +SPEAKER 01830 0 440.226000 1.649000 1 +SPEAKER 01830 0 443.260000 0.503510 1 +SPEAKER 01830 0 445.486000 7.969000 1 +SPEAKER 01830 0 465.967000 0.722000 1 +SPEAKER 01830 0 468.726470 3.685190 1 +SPEAKER 01830 0 476.486000 0.629360 1 +SPEAKER 01830 0 479.760000 0.559000 1 +SPEAKER 01830 0 487.910000 1.242000 1 +SPEAKER 01830 0 491.638000 3.181000 1 +SPEAKER 01830 0 497.504000 0.722000 1 +SPEAKER 01830 0 503.452000 2.848550 1 +SPEAKER 01830 0 508.338000 1.296000 1 +SPEAKER 01830 0 510.288000 2.272000 1 +SPEAKER 01830 0 514.714000 1.327000 1 +SPEAKER 01830 0 516.875000 9.222000 1 +SPEAKER 01830 0 547.529000 1.006960 1 +SPEAKER 01830 0 554.189000 1.315000 1 +SPEAKER 01830 0 562.652000 0.800230 1 +SPEAKER 01830 0 564.348780 2.063220 1 +SPEAKER 01830 0 566.982000 7.485000 1 +SPEAKER 01830 0 582.821000 1.405000 1 +SPEAKER 01830 0 587.359000 8.278000 1 +SPEAKER 01830 0 595.982000 11.985000 1 +SPEAKER 01830 0 612.171000 7.483000 1 +SPEAKER 01830 0 622.802000 1.889000 1 +SPEAKER 01830 0 626.134000 2.037000 1 +SPEAKER 01830 0 631.189000 9.112000 1 +SPEAKER 01830 0 643.229000 3.889000 1 +SPEAKER 01830 0 648.150000 3.076470 1 +SPEAKER 01830 0 652.561000 2.573000 1 +SPEAKER 01830 0 657.471000 2.255000 1 +SPEAKER 01830 0 661.208000 1.630000 1 +SPEAKER 01830 0 663.760000 0.857000 1 +SPEAKER 01830 0 666.097000 0.778000 1 +SPEAKER 01830 0 669.208000 29.444000 1 +SPEAKER 01830 0 704.930000 0.648000 1 +SPEAKER 01830 0 713.701000 1.600000 1 +SPEAKER 01830 0 738.947000 0.483000 1 +SPEAKER 01830 0 740.875000 36.814000 1 +SPEAKER 01830 0 780.764000 3.518000 1 diff --git a/rttm/few/01834.rttm b/rttm/few/01834.rttm new file mode 100644 index 0000000000000000000000000000000000000000..737da0a0d669fb9eb41a81ef2294dcc25f116a51 --- /dev/null +++ b/rttm/few/01834.rttm @@ -0,0 +1,10 @@ +SPEAKER 01834 0 0.041000 0.482000 1 +SPEAKER 01834 0 6.523000 0.555000 1 +SPEAKER 01834 0 8.801000 0.444000 1 +SPEAKER 01834 0 15.245000 2.704000 1 +SPEAKER 01834 0 20.911660 4.148340 1 +SPEAKER 01834 0 27.930000 1.352000 1 +SPEAKER 01834 0 0.041290 15.444710 0 +SPEAKER 01834 0 17.764000 3.500000 0 +SPEAKER 01834 0 24.912000 11.573730 0 +SPEAKER 01834 0 37.300550 1.036450 0 diff --git a/rttm/few/01848.rttm b/rttm/few/01848.rttm new file mode 100644 index 0000000000000000000000000000000000000000..e1256a6df718d24523278d84593d63bbff557257 --- /dev/null +++ b/rttm/few/01848.rttm @@ -0,0 +1,15 @@ +SPEAKER 01848 0 0.000000 3.574710 0 +SPEAKER 01848 0 4.245000 1.593000 0 +SPEAKER 01848 0 6.301000 0.930850 0 +SPEAKER 01848 0 7.721000 3.166560 0 +SPEAKER 01848 0 11.597000 3.555000 0 +SPEAKER 01848 0 16.977300 2.026700 0 +SPEAKER 01848 0 19.319000 0.556000 0 +SPEAKER 01848 0 20.430000 2.259000 0 +SPEAKER 01848 0 3.171000 1.432280 1 +SPEAKER 01848 0 5.174710 2.311290 1 +SPEAKER 01848 0 8.938840 3.457160 1 +SPEAKER 01848 0 15.067040 2.158960 1 +SPEAKER 01848 0 18.726000 0.871000 1 +SPEAKER 01848 0 20.430000 0.741000 1 +SPEAKER 01848 0 22.764000 1.803040 1 diff --git a/rttm/few/01855.rttm b/rttm/few/01855.rttm new file mode 100644 index 0000000000000000000000000000000000000000..7d4f79deaa2ae10242fb2ac30937911b5d1d7765 --- /dev/null +++ b/rttm/few/01855.rttm @@ -0,0 +1,17 @@ +SPEAKER 01855 0 0.000000 1.000000 1 +SPEAKER 01855 0 1.412000 3.962620 1 +SPEAKER 01855 0 6.585000 0.501000 1 +SPEAKER 01855 0 7.653000 3.246580 1 +SPEAKER 01855 0 11.252000 1.000000 1 +SPEAKER 01855 0 12.641000 3.779420 1 +SPEAKER 01855 0 16.811000 3.984420 1 +SPEAKER 01855 0 21.210000 2.572030 1 +SPEAKER 01855 0 25.981000 0.646000 1 +SPEAKER 01855 0 27.335000 0.731250 1 +SPEAKER 01855 0 28.369000 6.383000 1 +SPEAKER 01855 0 35.084000 1.439000 1 +SPEAKER 01855 0 5.366000 2.240000 0 +SPEAKER 01855 0 15.190000 0.542000 0 +SPEAKER 01855 0 20.294000 0.458000 0 +SPEAKER 01855 0 23.760000 4.326000 0 +SPEAKER 01855 0 36.563000 1.108000 0 diff --git a/rttm/few/01859.rttm b/rttm/few/01859.rttm new file mode 100644 index 0000000000000000000000000000000000000000..1ad28f80f03ff4d17b7d49dc87fca0fe097b6896 --- /dev/null +++ b/rttm/few/01859.rttm @@ -0,0 +1,103 @@ +SPEAKER 01859 0 0.000000 7.397420 1 +SPEAKER 01859 0 9.676000 4.953000 1 +SPEAKER 01859 0 15.500000 12.518630 1 +SPEAKER 01859 0 28.367000 4.191110 1 +SPEAKER 01859 0 34.269220 9.321780 1 +SPEAKER 01859 0 44.520000 1.058320 1 +SPEAKER 01859 0 46.038450 7.400000 1 +SPEAKER 01859 0 54.056630 13.860930 1 +SPEAKER 01859 0 69.403280 5.057140 1 +SPEAKER 01859 0 75.678000 1.640000 1 +SPEAKER 01859 0 77.864000 4.767850 1 +SPEAKER 01859 0 84.727000 1.000000 1 +SPEAKER 01859 0 86.460420 2.628570 1 +SPEAKER 01859 0 90.318000 1.182000 1 +SPEAKER 01859 0 92.952000 2.548000 1 +SPEAKER 01859 0 103.389000 0.957140 1 +SPEAKER 01859 0 114.078000 1.963290 1 +SPEAKER 01859 0 116.393140 12.981480 1 +SPEAKER 01859 0 129.764000 4.024990 1 +SPEAKER 01859 0 134.060000 0.728990 1 +SPEAKER 01859 0 135.802000 0.472710 1 +SPEAKER 01859 0 143.409000 1.182000 1 +SPEAKER 01859 0 145.374710 11.034290 1 +SPEAKER 01859 0 157.292000 0.539850 1 +SPEAKER 01859 0 158.631000 1.000000 1 +SPEAKER 01859 0 160.454000 0.410000 1 +SPEAKER 01859 0 164.431850 5.700000 1 +SPEAKER 01859 0 174.000000 3.888990 1 +SPEAKER 01859 0 180.480000 0.611000 1 +SPEAKER 01859 0 184.831850 4.486150 1 +SPEAKER 01859 0 195.636000 0.943870 1 +SPEAKER 01859 0 197.975000 5.066290 1 +SPEAKER 01859 0 204.318000 30.609720 1 +SPEAKER 01859 0 235.500000 12.773000 1 +SPEAKER 01859 0 252.170000 1.512000 1 +SPEAKER 01859 0 255.000000 0.818000 1 +SPEAKER 01859 0 256.618330 7.745670 1 +SPEAKER 01859 0 267.029000 6.607000 1 +SPEAKER 01859 0 274.089000 3.063400 1 +SPEAKER 01859 0 277.532000 1.546320 1 +SPEAKER 01859 0 281.865000 12.180000 1 +SPEAKER 01859 0 294.728000 1.198020 1 +SPEAKER 01859 0 309.909000 0.401630 1 +SPEAKER 01859 0 318.887560 0.961440 1 +SPEAKER 01859 0 322.079870 1.692300 1 +SPEAKER 01859 0 324.023000 6.518290 1 +SPEAKER 01859 0 331.022770 0.257230 1 +SPEAKER 01859 0 7.565000 2.089990 0 +SPEAKER 01859 0 14.694000 1.032000 0 +SPEAKER 01859 0 29.474000 1.661880 0 +SPEAKER 01859 0 32.546000 1.767660 0 +SPEAKER 01859 0 38.802000 1.056110 0 +SPEAKER 01859 0 43.480330 2.339940 0 +SPEAKER 01859 0 68.591000 0.683710 0 +SPEAKER 01859 0 73.409000 2.851420 0 +SPEAKER 01859 0 77.800550 0.869060 0 +SPEAKER 01859 0 82.268000 3.497000 0 +SPEAKER 01859 0 89.117560 1.314290 0 +SPEAKER 01859 0 91.636000 1.364000 0 +SPEAKER 01859 0 95.918000 4.864030 0 +SPEAKER 01859 0 101.578320 1.767820 0 +SPEAKER 01859 0 103.775000 7.842560 0 +SPEAKER 01859 0 112.648000 1.522920 0 +SPEAKER 01859 0 115.527000 0.590560 0 +SPEAKER 01859 0 120.546000 0.681000 0 +SPEAKER 01859 0 129.772000 0.806320 0 +SPEAKER 01859 0 133.362000 2.274000 0 +SPEAKER 01859 0 136.274000 6.693210 0 +SPEAKER 01859 0 144.457000 0.946280 0 +SPEAKER 01859 0 147.870000 0.590420 0 +SPEAKER 01859 0 154.360000 1.286140 0 +SPEAKER 01859 0 156.455000 1.697400 0 +SPEAKER 01859 0 158.660000 0.443280 0 +SPEAKER 01859 0 159.671000 4.678000 0 +SPEAKER 01859 0 165.337580 0.888890 0 +SPEAKER 01859 0 169.946000 0.457280 0 +SPEAKER 01859 0 170.917560 3.037440 0 +SPEAKER 01859 0 177.438000 1.269950 0 +SPEAKER 01859 0 179.596840 1.263580 0 +SPEAKER 01859 0 181.288990 3.542860 0 +SPEAKER 01859 0 185.620000 0.454710 0 +SPEAKER 01859 0 189.495000 6.046290 0 +SPEAKER 01859 0 196.417000 1.688510 0 +SPEAKER 01859 0 200.703000 1.443140 0 +SPEAKER 01859 0 202.632000 1.085560 0 +SPEAKER 01859 0 224.824000 0.543110 0 +SPEAKER 01859 0 234.955000 0.454000 0 +SPEAKER 01859 0 246.820000 0.593200 0 +SPEAKER 01859 0 248.318000 2.428530 0 +SPEAKER 01859 0 251.495000 1.000000 0 +SPEAKER 01859 0 252.810630 2.551290 0 +SPEAKER 01859 0 255.928000 0.905000 0 +SPEAKER 01859 0 265.500000 1.708070 0 +SPEAKER 01859 0 273.167000 2.374400 0 +SPEAKER 01859 0 278.753000 3.173020 0 +SPEAKER 01859 0 283.533000 0.694000 0 +SPEAKER 01859 0 293.033000 0.393020 0 +SPEAKER 01859 0 296.182000 13.727000 0 +SPEAKER 01859 0 310.387560 3.468540 0 +SPEAKER 01859 0 314.343000 4.441990 0 +SPEAKER 01859 0 320.091000 2.117070 0 +SPEAKER 01859 0 323.400000 0.692690 0 +SPEAKER 01859 0 330.096840 0.389160 0 diff --git a/rttm/few/01866.rttm b/rttm/few/01866.rttm new file mode 100644 index 0000000000000000000000000000000000000000..2506727e30e6e462d9309a82059bbc3e9b15ebab --- /dev/null +++ b/rttm/few/01866.rttm @@ -0,0 +1,32 @@ +SPEAKER 01866 0 0.001000 3.799550 1 +SPEAKER 01866 0 4.113000 0.843000 1 +SPEAKER 01866 0 5.319000 3.474370 1 +SPEAKER 01866 0 9.353140 1.963480 1 +SPEAKER 01866 0 11.677090 6.186040 1 +SPEAKER 01866 0 18.223600 2.262130 1 +SPEAKER 01866 0 20.944000 2.279600 1 +SPEAKER 01866 0 23.618950 3.593020 1 +SPEAKER 01866 0 27.770110 1.922890 1 +SPEAKER 01866 0 30.221000 0.847000 1 +SPEAKER 01866 0 31.421270 2.527420 1 +SPEAKER 01866 0 34.211970 2.588580 1 +SPEAKER 01866 0 40.023000 0.384000 1 +SPEAKER 01866 0 41.389000 0.614000 1 +SPEAKER 01866 0 43.911660 0.344520 1 +SPEAKER 01866 0 44.764660 1.517370 1 +SPEAKER 01866 0 51.316620 0.650590 1 +SPEAKER 01866 0 57.642200 2.010200 1 +SPEAKER 01866 0 11.642000 1.325210 0 +SPEAKER 01866 0 29.418000 1.700000 0 +SPEAKER 01866 0 31.472000 0.696000 0 +SPEAKER 01866 0 33.917000 0.359000 0 +SPEAKER 01866 0 36.514300 4.790690 0 +SPEAKER 01866 0 41.670000 0.482400 0 +SPEAKER 01866 0 42.430000 1.333510 0 +SPEAKER 01866 0 44.453000 1.054210 0 +SPEAKER 01866 0 45.970000 0.830550 0 +SPEAKER 01866 0 47.133000 3.278660 0 +SPEAKER 01866 0 50.764000 0.462470 0 +SPEAKER 01866 0 51.560000 5.573880 0 +SPEAKER 01866 0 60.524000 0.540000 0 +SPEAKER 01866 0 61.377000 0.504000 0 diff --git a/rttm/few/01874.rttm b/rttm/few/01874.rttm new file mode 100644 index 0000000000000000000000000000000000000000..8d39562c7200d1da1a7c4a0b5a49046f2c26f594 --- /dev/null +++ b/rttm/few/01874.rttm @@ -0,0 +1,11 @@ +SPEAKER 01874 0 0.282000 3.720770 1 +SPEAKER 01874 0 5.589000 0.804000 1 +SPEAKER 01874 0 7.948690 4.703710 1 +SPEAKER 01874 0 13.062770 4.512590 1 +SPEAKER 01874 0 17.857580 0.940000 1 +SPEAKER 01874 0 19.152400 1.388890 1 +SPEAKER 01874 0 4.306000 4.040470 0 +SPEAKER 01874 0 11.854620 1.316300 0 +SPEAKER 01874 0 13.602770 0.586670 0 +SPEAKER 01874 0 17.879000 0.921550 0 +SPEAKER 01874 0 19.131000 1.428810 0 diff --git a/rttm/few/01875.rttm b/rttm/few/01875.rttm new file mode 100644 index 0000000000000000000000000000000000000000..3043f140498b3e08e57d34c9114e546af3be0c6c --- /dev/null +++ b/rttm/few/01875.rttm @@ -0,0 +1,20 @@ +SPEAKER 01875 0 0.000000 0.652000 0 +SPEAKER 01875 0 8.079000 1.832660 0 +SPEAKER 01875 0 11.393000 0.851990 0 +SPEAKER 01875 0 13.430180 1.136290 0 +SPEAKER 01875 0 26.430180 0.851850 0 +SPEAKER 01875 0 33.596840 0.462970 0 +SPEAKER 01875 0 37.782030 5.536970 0 +SPEAKER 01875 0 1.389000 1.448580 1 +SPEAKER 01875 0 3.356000 0.500000 1 +SPEAKER 01875 0 5.504250 0.444440 1 +SPEAKER 01875 0 7.466000 0.816000 1 +SPEAKER 01875 0 8.822000 0.423000 1 +SPEAKER 01875 0 9.747950 3.693340 1 +SPEAKER 01875 0 15.024000 1.646920 1 +SPEAKER 01875 0 17.523000 1.269000 1 +SPEAKER 01875 0 19.060000 16.036840 1 +SPEAKER 01875 0 35.430180 0.555550 1 +SPEAKER 01875 0 37.030000 0.789060 1 +SPEAKER 01875 0 38.495000 1.157000 1 +SPEAKER 01875 0 40.467210 0.648150 1 diff --git a/rttm/few/01888.rttm b/rttm/few/01888.rttm new file mode 100644 index 0000000000000000000000000000000000000000..539b2c09384040a3ced72b75ca11474ca7e49b78 --- /dev/null +++ b/rttm/few/01888.rttm @@ -0,0 +1,7 @@ +SPEAKER 01888 0 0.689000 8.130060 1 +SPEAKER 01888 0 9.152400 2.907410 1 +SPEAKER 01888 0 12.744990 8.129630 1 +SPEAKER 01888 0 21.634000 0.573950 1 +SPEAKER 01888 0 22.744990 7.425930 1 +SPEAKER 01888 0 31.172000 1.295210 1 +SPEAKER 01888 0 32.523000 1.992000 0 diff --git a/rttm/few/01893.rttm b/rttm/few/01893.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c9d24a1e1dfb8d6d3c8e3a0ce3f41b41f14d8c36 --- /dev/null +++ b/rttm/few/01893.rttm @@ -0,0 +1,64 @@ +SPEAKER 01893 0 1.332000 1.691000 0 +SPEAKER 01893 0 5.744990 4.277780 0 +SPEAKER 01893 0 11.004000 1.371000 0 +SPEAKER 01893 0 12.949000 1.315000 0 +SPEAKER 01893 0 14.670000 1.594000 0 +SPEAKER 01893 0 42.356000 1.000000 0 +SPEAKER 01893 0 51.671000 0.500000 0 +SPEAKER 01893 0 56.671000 5.481400 0 +SPEAKER 01893 0 90.945000 0.578000 0 +SPEAKER 01893 0 92.819000 0.537100 0 +SPEAKER 01893 0 98.226000 1.000000 0 +SPEAKER 01893 0 107.986000 1.722000 0 +SPEAKER 01893 0 111.726000 12.778250 0 +SPEAKER 01893 0 148.096840 0.592160 0 +SPEAKER 01893 0 159.115360 0.518640 0 +SPEAKER 01893 0 164.541000 6.389180 0 +SPEAKER 01893 0 173.541000 4.426000 0 +SPEAKER 01893 0 178.986000 3.463000 0 +SPEAKER 01893 0 183.425000 0.542000 0 +SPEAKER 01893 0 188.782000 2.241000 0 +SPEAKER 01893 0 197.060000 1.037000 0 +SPEAKER 01893 0 199.319000 0.556000 0 +SPEAKER 01893 0 200.764000 0.814000 0 +SPEAKER 01893 0 10.004000 0.556000 1 +SPEAKER 01893 0 17.842000 1.000000 1 +SPEAKER 01893 0 19.485000 0.519250 1 +SPEAKER 01893 0 20.409000 4.113770 1 +SPEAKER 01893 0 24.986000 7.740000 1 +SPEAKER 01893 0 33.004000 9.260000 1 +SPEAKER 01893 0 44.106000 7.288000 1 +SPEAKER 01893 0 52.023000 2.018000 1 +SPEAKER 01893 0 54.689000 1.112000 1 +SPEAKER 01893 0 62.356000 6.555660 1 +SPEAKER 01893 0 69.448690 11.352310 1 +SPEAKER 01893 0 81.782000 6.926000 1 +SPEAKER 01893 0 89.412000 3.203000 1 +SPEAKER 01893 0 95.023000 0.759000 1 +SPEAKER 01893 0 101.782000 2.741000 1 +SPEAKER 01893 0 106.689000 1.204000 1 +SPEAKER 01893 0 109.264000 1.092000 1 +SPEAKER 01893 0 110.809000 0.788000 1 +SPEAKER 01893 0 112.097000 1.185000 1 +SPEAKER 01893 0 117.834000 1.874000 1 +SPEAKER 01893 0 125.352000 1.245000 1 +SPEAKER 01893 0 126.930000 0.741000 1 +SPEAKER 01893 0 128.264000 5.259000 1 +SPEAKER 01893 0 135.781000 9.223250 1 +SPEAKER 01893 0 145.796000 1.986030 1 +SPEAKER 01893 0 149.726000 0.649000 1 +SPEAKER 01893 0 152.578000 3.352000 1 +SPEAKER 01893 0 156.801000 1.647690 1 +SPEAKER 01893 0 159.430000 2.593000 1 +SPEAKER 01893 0 162.726000 1.575000 1 +SPEAKER 01893 0 169.412000 0.574000 1 +SPEAKER 01893 0 171.159000 0.605000 1 +SPEAKER 01893 0 172.096840 1.296160 1 +SPEAKER 01893 0 176.782000 2.204000 1 +SPEAKER 01893 0 184.504000 1.315000 1 +SPEAKER 01893 0 186.264000 1.685000 1 +SPEAKER 01893 0 189.838000 2.036620 1 +SPEAKER 01893 0 198.652000 1.574000 1 +SPEAKER 01893 0 95.782000 0.852000 2 +SPEAKER 01893 0 98.559810 3.870190 2 +SPEAKER 01893 0 103.393000 3.611000 2 diff --git a/rttm/few/01899.rttm b/rttm/few/01899.rttm new file mode 100644 index 0000000000000000000000000000000000000000..15fae9b5a99addc6463819ebf7b4bb368ba96e46 --- /dev/null +++ b/rttm/few/01899.rttm @@ -0,0 +1,7 @@ +SPEAKER 01899 0 0.017000 3.765030 1 +SPEAKER 01899 0 4.244990 2.500000 1 +SPEAKER 01899 0 7.290000 1.603140 1 +SPEAKER 01899 0 10.733000 0.549000 1 +SPEAKER 01899 0 16.217000 0.566000 1 +SPEAKER 01899 0 17.183000 4.684000 1 +SPEAKER 01899 0 7.267000 9.833000 0 diff --git a/rttm/few/01909.rttm b/rttm/few/01909.rttm new file mode 100644 index 0000000000000000000000000000000000000000..e478a497afbddff1ab3ae8ab6782c8241ca60fd0 --- /dev/null +++ b/rttm/few/01909.rttm @@ -0,0 +1,15 @@ +SPEAKER 01909 0 0.703000 0.541990 1 +SPEAKER 01909 0 19.189000 0.852000 1 +SPEAKER 01909 0 40.075000 0.688000 1 +SPEAKER 01909 0 42.986000 0.518000 1 +SPEAKER 01909 0 0.025000 1.000000 0 +SPEAKER 01909 0 1.384000 4.390580 0 +SPEAKER 01909 0 6.125000 5.628750 0 +SPEAKER 01909 0 12.143000 1.819080 0 +SPEAKER 01909 0 14.279000 1.000000 0 +SPEAKER 01909 0 15.677000 3.951750 0 +SPEAKER 01909 0 20.097000 4.177580 0 +SPEAKER 01909 0 24.648000 0.439080 0 +SPEAKER 01909 0 25.613000 4.030000 0 +SPEAKER 01909 0 30.068000 11.206580 0 +SPEAKER 01909 0 41.589000 5.039750 0 diff --git a/rttm/few/01912.rttm b/rttm/few/01912.rttm new file mode 100644 index 0000000000000000000000000000000000000000..8b13ed55f6fe1bd951c93aa6ec2e75179d63bf35 --- /dev/null +++ b/rttm/few/01912.rttm @@ -0,0 +1,13 @@ +SPEAKER 01912 0 0.000000 0.627000 1 +SPEAKER 01912 0 1.482000 10.702000 1 +SPEAKER 01912 0 12.809000 7.653080 1 +SPEAKER 01912 0 21.963000 0.643000 1 +SPEAKER 01912 0 25.252000 1.335080 1 +SPEAKER 01912 0 26.990000 2.930420 1 +SPEAKER 01912 0 0.731000 0.646000 0 +SPEAKER 01912 0 8.373000 1.000000 0 +SPEAKER 01912 0 9.940000 0.480420 0 +SPEAKER 01912 0 11.357000 2.041000 0 +SPEAKER 01912 0 20.380000 1.769580 0 +SPEAKER 01912 0 22.675000 2.577000 0 +SPEAKER 01912 0 29.815000 0.773000 0 diff --git a/rttm/few/01913.rttm b/rttm/few/01913.rttm new file mode 100644 index 0000000000000000000000000000000000000000..9d6af938ef0e75ca9c5386b22464ad57f190e28b --- /dev/null +++ b/rttm/few/01913.rttm @@ -0,0 +1,92 @@ +SPEAKER 01913 0 0.000000 5.189000 1 +SPEAKER 01913 0 5.639000 5.667000 1 +SPEAKER 01913 0 11.726000 0.852000 1 +SPEAKER 01913 0 12.882000 1.000000 1 +SPEAKER 01913 0 14.171000 11.333000 1 +SPEAKER 01913 0 25.801000 5.592000 1 +SPEAKER 01913 0 31.819000 1.000000 1 +SPEAKER 01913 0 33.319000 8.796000 1 +SPEAKER 01913 0 42.449000 1.096420 1 +SPEAKER 01913 0 44.171000 6.111000 1 +SPEAKER 01913 0 50.578000 4.630000 1 +SPEAKER 01913 0 55.578000 1.519000 1 +SPEAKER 01913 0 57.449000 2.685000 1 +SPEAKER 01913 0 62.708000 3.444000 1 +SPEAKER 01913 0 66.541000 1.000000 1 +SPEAKER 01913 0 67.838000 1.111000 1 +SPEAKER 01913 0 69.421000 1.824000 1 +SPEAKER 01913 0 71.875000 0.555000 1 +SPEAKER 01913 0 72.753750 1.732250 1 +SPEAKER 01913 0 74.782000 4.037000 1 +SPEAKER 01913 0 79.171000 4.130000 1 +SPEAKER 01913 0 83.949000 0.555000 1 +SPEAKER 01913 0 86.819000 0.445000 1 +SPEAKER 01913 0 88.671000 0.352000 1 +SPEAKER 01913 0 89.420420 2.972580 1 +SPEAKER 01913 0 92.735000 1.926000 1 +SPEAKER 01913 0 95.430000 0.834000 1 +SPEAKER 01913 0 96.606000 0.666000 1 +SPEAKER 01913 0 97.597000 3.667000 1 +SPEAKER 01913 0 102.023000 2.592000 1 +SPEAKER 01913 0 104.912000 4.296000 1 +SPEAKER 01913 0 109.523000 1.629000 1 +SPEAKER 01913 0 111.486000 1.389000 1 +SPEAKER 01913 0 114.486000 1.981000 1 +SPEAKER 01913 0 117.041000 5.648000 1 +SPEAKER 01913 0 124.523000 0.389000 1 +SPEAKER 01913 0 125.449000 1.111000 1 +SPEAKER 01913 0 128.449000 0.333000 1 +SPEAKER 01913 0 129.295420 6.023580 1 +SPEAKER 01913 0 135.837000 2.371000 1 +SPEAKER 01913 0 138.745000 1.185000 1 +SPEAKER 01913 0 140.962000 1.839000 1 +SPEAKER 01913 0 144.541000 1.241000 1 +SPEAKER 01913 0 146.226000 4.186000 1 +SPEAKER 01913 0 150.980000 2.839000 1 +SPEAKER 01913 0 154.171000 1.707750 1 +SPEAKER 01913 0 156.128750 1.653250 1 +SPEAKER 01913 0 158.430000 1.115420 1 +SPEAKER 01913 0 160.041000 0.297000 1 +SPEAKER 01913 0 161.114000 1.261000 1 +SPEAKER 01913 0 162.838000 2.518000 1 +SPEAKER 01913 0 170.041000 1.815100 1 +SPEAKER 01913 0 173.949000 1.111000 1 +SPEAKER 01913 0 176.411660 0.981340 1 +SPEAKER 01913 0 178.541000 6.233580 1 +SPEAKER 01913 0 185.301000 0.314000 1 +SPEAKER 01913 0 186.226000 3.926000 1 +SPEAKER 01913 0 190.504000 1.685000 1 +SPEAKER 01913 0 12.597000 1.537000 0 +SPEAKER 01913 0 35.838000 2.944000 0 +SPEAKER 01913 0 42.263000 1.612000 0 +SPEAKER 01913 0 48.801000 0.537000 0 +SPEAKER 01913 0 49.893000 1.574000 0 +SPEAKER 01913 0 57.264000 0.611000 0 +SPEAKER 01913 0 59.634000 3.000000 0 +SPEAKER 01913 0 68.726000 1.482000 0 +SPEAKER 01913 0 71.319000 1.407000 0 +SPEAKER 01913 0 81.912000 5.222000 0 +SPEAKER 01913 0 87.504000 1.852000 0 +SPEAKER 01913 0 92.652000 0.315000 0 +SPEAKER 01913 0 94.578000 0.852000 0 +SPEAKER 01913 0 97.597000 1.370000 0 +SPEAKER 01913 0 104.912000 1.000000 0 +SPEAKER 01913 0 113.078000 2.000000 0 +SPEAKER 01913 0 116.467000 0.574000 0 +SPEAKER 01913 0 119.597000 1.111000 0 +SPEAKER 01913 0 121.727000 4.111000 0 +SPEAKER 01913 0 126.578000 3.130000 0 +SPEAKER 01913 0 131.171000 1.574000 0 +SPEAKER 01913 0 135.319000 0.445000 0 +SPEAKER 01913 0 136.967000 0.889000 0 +SPEAKER 01913 0 143.727000 1.203000 0 +SPEAKER 01913 0 154.338000 0.394920 0 +SPEAKER 01913 0 155.054000 1.470580 0 +SPEAKER 01913 0 158.430000 1.136250 0 +SPEAKER 01913 0 160.338000 1.000000 0 +SPEAKER 01913 0 162.097000 8.615080 0 +SPEAKER 01913 0 172.727000 1.314000 0 +SPEAKER 01913 0 174.912000 1.240000 0 +SPEAKER 01913 0 176.523000 1.944000 0 +SPEAKER 01913 0 185.615000 1.951250 0 +SPEAKER 01913 0 190.208000 0.296000 0 diff --git a/rttm/few/01914.rttm b/rttm/few/01914.rttm new file mode 100644 index 0000000000000000000000000000000000000000..2022c8c5887f8d0c6473b60d939a057bf172ca9c --- /dev/null +++ b/rttm/few/01914.rttm @@ -0,0 +1,17 @@ +SPEAKER 01914 0 0.000000 1.800590 0 +SPEAKER 01914 0 3.043920 0.520840 0 +SPEAKER 01914 0 4.138000 0.612000 0 +SPEAKER 01914 0 6.041000 0.488000 0 +SPEAKER 01914 0 8.579820 5.983400 0 +SPEAKER 01914 0 17.796000 0.479540 0 +SPEAKER 01914 0 21.657940 0.156250 0 +SPEAKER 01914 0 24.248150 6.737920 0 +SPEAKER 01914 0 2.060000 1.525590 2 +SPEAKER 01914 0 18.201000 0.444410 2 +SPEAKER 01914 0 27.248000 0.289000 2 +SPEAKER 01914 0 31.189190 0.250000 2 +SPEAKER 01914 0 34.486000 0.265690 2 +SPEAKER 01914 0 5.080000 0.663920 3 +SPEAKER 01914 0 6.912530 0.729790 1 +SPEAKER 01914 0 14.939190 2.984380 1 +SPEAKER 01914 0 35.924000 0.337850 1 diff --git a/rttm/few/01927.rttm b/rttm/few/01927.rttm new file mode 100644 index 0000000000000000000000000000000000000000..7c31af33358057079a81cdf477749a68d017cd66 --- /dev/null +++ b/rttm/few/01927.rttm @@ -0,0 +1,36 @@ +SPEAKER 01927 0 0.375000 1.022420 1 +SPEAKER 01927 0 2.246000 2.212020 1 +SPEAKER 01927 0 5.180000 0.520000 1 +SPEAKER 01927 0 8.170920 1.796080 1 +SPEAKER 01927 0 11.819060 0.813940 1 +SPEAKER 01927 0 14.800550 0.666450 1 +SPEAKER 01927 0 16.496000 0.386270 1 +SPEAKER 01927 0 18.534000 0.711900 1 +SPEAKER 01927 0 25.048930 0.918070 1 +SPEAKER 01927 0 29.670140 1.729860 1 +SPEAKER 01927 0 33.462000 0.409000 1 +SPEAKER 01927 0 34.529000 6.322960 1 +SPEAKER 01927 0 41.973000 0.394110 1 +SPEAKER 01927 0 50.593000 2.107450 1 +SPEAKER 01927 0 53.670000 2.394080 1 +SPEAKER 01927 0 56.548000 1.152450 1 +SPEAKER 01927 0 1.256000 0.762630 2 +SPEAKER 01927 0 6.406000 1.536870 2 +SPEAKER 01927 0 13.058000 1.539700 2 +SPEAKER 01927 0 17.124690 1.275310 2 +SPEAKER 01927 0 20.261000 1.060660 2 +SPEAKER 01927 0 26.697000 1.070000 2 +SPEAKER 01927 0 46.190000 1.419540 2 +SPEAKER 01927 0 48.307000 2.211630 2 +SPEAKER 01927 0 58.542000 2.885720 2 +SPEAKER 01927 0 4.331850 0.876150 0 +SPEAKER 01927 0 10.033000 1.267000 0 +SPEAKER 01927 0 15.507000 1.000000 0 +SPEAKER 01927 0 21.153000 1.633000 0 +SPEAKER 01927 0 28.182000 0.806330 0 +SPEAKER 01927 0 32.133000 1.034000 0 +SPEAKER 01927 0 40.569000 2.313270 0 +SPEAKER 01927 0 43.899000 1.877200 0 +SPEAKER 01927 0 58.012000 1.567230 0 +SPEAKER 01927 0 60.678780 0.121620 0 +SPEAKER 01927 0 61.337000 1.454360 0 diff --git a/rttm/few/01939.rttm b/rttm/few/01939.rttm new file mode 100644 index 0000000000000000000000000000000000000000..5354d9a1eb60ff2878dad53076c6516967b5ef88 --- /dev/null +++ b/rttm/few/01939.rttm @@ -0,0 +1,41 @@ +SPEAKER 01939 0 0.001000 0.979000 2 +SPEAKER 01939 0 1.485730 2.928890 2 +SPEAKER 01939 0 4.820000 0.557580 2 +SPEAKER 01939 0 9.078320 1.277780 2 +SPEAKER 01939 0 17.486000 0.779000 2 +SPEAKER 01939 0 21.119000 3.163030 2 +SPEAKER 01939 0 26.304990 1.180740 2 +SPEAKER 01939 0 28.242000 1.574000 2 +SPEAKER 01939 0 32.264000 3.502470 2 +SPEAKER 01939 0 38.373140 1.649630 2 +SPEAKER 01939 0 40.413000 1.517180 2 +SPEAKER 01939 0 43.133880 0.833330 2 +SPEAKER 01939 0 45.819000 1.500060 2 +SPEAKER 01939 0 48.611000 1.967320 2 +SPEAKER 01939 0 58.342000 2.045210 2 +SPEAKER 01939 0 65.245000 3.519000 2 +SPEAKER 01939 0 75.532000 1.528000 2 +SPEAKER 01939 0 78.061000 5.232880 2 +SPEAKER 01939 0 0.958000 0.675880 0 +SPEAKER 01939 0 7.319060 0.470380 0 +SPEAKER 01939 0 11.006000 1.749000 0 +SPEAKER 01939 0 13.071000 0.674000 0 +SPEAKER 01939 0 18.060000 3.018320 0 +SPEAKER 01939 0 24.007000 4.052810 0 +SPEAKER 01939 0 29.022770 3.629630 0 +SPEAKER 01939 0 38.059810 0.963190 0 +SPEAKER 01939 0 42.045730 2.242220 0 +SPEAKER 01939 0 48.363000 1.020000 0 +SPEAKER 01939 0 56.004000 2.452000 0 +SPEAKER 01939 0 60.284000 1.495000 0 +SPEAKER 01939 0 63.838000 0.537000 0 +SPEAKER 01939 0 69.134000 3.092000 0 +SPEAKER 01939 0 72.822000 1.642000 0 +SPEAKER 01939 0 76.967000 0.975000 0 +SPEAKER 01939 0 79.393000 0.371000 0 +SPEAKER 01939 0 80.204000 0.431000 0 +SPEAKER 01939 0 8.541000 0.751000 1 +SPEAKER 01939 0 43.726470 2.074080 1 +SPEAKER 01939 0 47.132000 2.038000 1 +SPEAKER 01939 0 54.800000 1.039000 1 +SPEAKER 01939 0 74.343000 1.846000 1 diff --git a/rttm/few/01943.rttm b/rttm/few/01943.rttm new file mode 100644 index 0000000000000000000000000000000000000000..5e500cbe49ed77a516d511c8e4c88d89ea65638a --- /dev/null +++ b/rttm/few/01943.rttm @@ -0,0 +1,7 @@ +SPEAKER 01943 0 0.006000 52.093000 1 +SPEAKER 01943 0 52.579000 2.263000 1 +SPEAKER 01943 0 59.921000 1.132000 1 +SPEAKER 01943 0 23.300550 0.722220 0 +SPEAKER 01943 0 32.911000 0.589000 0 +SPEAKER 01943 0 52.079000 0.795620 0 +SPEAKER 01943 0 53.541290 6.759260 0 diff --git a/rttm/few/01945.rttm b/rttm/few/01945.rttm new file mode 100644 index 0000000000000000000000000000000000000000..0e91c9923b853999587e096dd3f3629849a99a6e --- /dev/null +++ b/rttm/few/01945.rttm @@ -0,0 +1,18 @@ +SPEAKER 01945 0 0.044000 1.354000 0 +SPEAKER 01945 0 6.419000 1.242000 0 +SPEAKER 01945 0 8.111000 0.620000 0 +SPEAKER 01945 0 9.467210 2.597790 0 +SPEAKER 01945 0 12.405000 1.660000 0 +SPEAKER 01945 0 14.461000 1.229000 0 +SPEAKER 01945 0 16.542000 2.231000 0 +SPEAKER 01945 0 22.893000 2.426000 0 +SPEAKER 01945 0 1.419000 0.854000 1 +SPEAKER 01945 0 2.940000 1.771000 1 +SPEAKER 01945 0 5.565000 0.458000 1 +SPEAKER 01945 0 6.911660 0.388890 1 +SPEAKER 01945 0 7.701000 1.697000 1 +SPEAKER 01945 0 11.552000 1.000000 1 +SPEAKER 01945 0 13.773000 0.542000 1 +SPEAKER 01945 0 15.789000 0.505000 2 +SPEAKER 01945 0 18.287000 0.736000 2 +SPEAKER 01945 0 19.611000 4.725000 2 diff --git a/rttm/few/01951.rttm b/rttm/few/01951.rttm new file mode 100644 index 0000000000000000000000000000000000000000..67e141baaac682eead59f960bfd87aa6e13af048 --- /dev/null +++ b/rttm/few/01951.rttm @@ -0,0 +1,14 @@ +SPEAKER 01951 0 0.319060 0.795940 0 +SPEAKER 01951 0 2.152000 2.000400 0 +SPEAKER 01951 0 4.893000 1.148290 0 +SPEAKER 01951 0 8.615000 2.129990 0 +SPEAKER 01951 0 11.522770 3.500000 0 +SPEAKER 01951 0 15.985730 1.259260 0 +SPEAKER 01951 0 18.263510 2.166670 0 +SPEAKER 01951 0 0.930000 1.389060 1 +SPEAKER 01951 0 4.060000 1.370000 1 +SPEAKER 01951 0 6.226000 1.574550 1 +SPEAKER 01951 0 8.726000 0.815000 1 +SPEAKER 01951 0 10.911660 0.758340 1 +SPEAKER 01951 0 14.096000 1.593440 1 +SPEAKER 01951 0 17.375000 1.166290 1 diff --git a/rttm/few/01967.rttm b/rttm/few/01967.rttm new file mode 100644 index 0000000000000000000000000000000000000000..e3784b6f2d5c8ea5df3aede6c872f83872b58d4b --- /dev/null +++ b/rttm/few/01967.rttm @@ -0,0 +1,78 @@ +SPEAKER 01967 0 0.000000 2.707950 1 +SPEAKER 01967 0 3.012000 1.100000 1 +SPEAKER 01967 0 4.420420 2.861610 1 +SPEAKER 01967 0 7.579000 5.536360 1 +SPEAKER 01967 0 13.419000 2.029690 1 +SPEAKER 01967 0 15.794000 1.969510 1 +SPEAKER 01967 0 19.955000 1.000000 1 +SPEAKER 01967 0 21.494000 1.366000 1 +SPEAKER 01967 0 23.921000 0.675840 1 +SPEAKER 01967 0 24.910000 2.075730 1 +SPEAKER 01967 0 27.275000 1.000000 1 +SPEAKER 01967 0 28.886000 1.451000 1 +SPEAKER 01967 0 30.831000 1.444000 1 +SPEAKER 01967 0 32.646000 1.314000 1 +SPEAKER 01967 0 36.483000 1.000000 1 +SPEAKER 01967 0 38.276000 1.000000 1 +SPEAKER 01967 0 39.545000 2.996290 1 +SPEAKER 01967 0 47.025000 3.048000 1 +SPEAKER 01967 0 50.399580 0.604420 1 +SPEAKER 01967 0 51.411000 2.167320 1 +SPEAKER 01967 0 53.864000 1.306000 1 +SPEAKER 01967 0 55.442000 1.583000 1 +SPEAKER 01967 0 57.566250 0.603750 1 +SPEAKER 01967 0 58.782000 5.629660 1 +SPEAKER 01967 0 66.191000 1.604000 1 +SPEAKER 01967 0 69.192000 1.478000 1 +SPEAKER 01967 0 71.219000 1.000000 1 +SPEAKER 01967 0 74.170000 2.205000 1 +SPEAKER 01967 0 77.775000 1.932950 1 +SPEAKER 01967 0 79.970000 2.071290 1 +SPEAKER 01967 0 82.340000 1.747000 1 +SPEAKER 01967 0 90.108000 2.915000 1 +SPEAKER 01967 0 96.316000 2.146000 1 +SPEAKER 01967 0 99.150000 1.741000 1 +SPEAKER 01967 0 101.163000 1.815820 1 +SPEAKER 01967 0 103.912000 0.529000 1 +SPEAKER 01967 0 105.215000 0.768000 1 +SPEAKER 01967 0 107.337000 5.667250 1 +SPEAKER 01967 0 115.362000 1.938550 1 +SPEAKER 01967 0 117.614000 3.464320 1 +SPEAKER 01967 0 121.441250 3.121840 1 +SPEAKER 01967 0 125.060000 3.030000 1 +SPEAKER 01967 0 128.366000 1.511690 1 +SPEAKER 01967 0 130.958000 2.916620 1 +SPEAKER 01967 0 134.273000 3.335000 1 +SPEAKER 01967 0 138.721000 0.601000 1 +SPEAKER 01967 0 0.000000 0.726470 2 +SPEAKER 01967 0 11.390000 0.965220 2 +SPEAKER 01967 0 16.921000 3.009180 2 +SPEAKER 01967 0 20.232920 3.419480 2 +SPEAKER 01967 0 26.513000 0.627000 2 +SPEAKER 01967 0 34.233000 0.771250 2 +SPEAKER 01967 0 37.670000 0.536000 2 +SPEAKER 01967 0 43.191000 2.821530 2 +SPEAKER 01967 0 63.233000 0.562000 2 +SPEAKER 01967 0 64.629000 1.000000 2 +SPEAKER 01967 0 66.225000 1.197640 2 +SPEAKER 01967 0 97.692000 1.416000 2 +SPEAKER 01967 0 103.402000 4.120770 2 +SPEAKER 01967 0 112.951000 2.256950 2 +SPEAKER 01967 0 130.227000 1.318000 2 +SPEAKER 01967 0 131.858000 0.562000 2 +SPEAKER 01967 0 137.191000 1.000000 2 +SPEAKER 01967 0 17.729000 1.423400 0 +SPEAKER 01967 0 22.962000 1.521000 0 +SPEAKER 01967 0 25.864000 0.550000 0 +SPEAKER 01967 0 39.936000 1.839000 0 +SPEAKER 01967 0 45.296000 1.729000 0 +SPEAKER 01967 0 65.911000 3.114000 0 +SPEAKER 01967 0 72.709000 1.378000 0 +SPEAKER 01967 0 76.101000 1.470000 0 +SPEAKER 01967 0 83.036000 1.000000 0 +SPEAKER 01967 0 84.546000 5.562000 0 +SPEAKER 01967 0 92.675450 1.668540 0 +SPEAKER 01967 0 94.639000 2.219000 0 +SPEAKER 01967 0 103.947000 0.633000 0 +SPEAKER 01967 0 105.417000 1.899000 0 +SPEAKER 01967 0 112.929000 0.616000 0 diff --git a/rttm/few/01976.rttm b/rttm/few/01976.rttm new file mode 100644 index 0000000000000000000000000000000000000000..a5d2d0a51df75a9be8855febdf1a158eb80a122a --- /dev/null +++ b/rttm/few/01976.rttm @@ -0,0 +1,26 @@ +SPEAKER 01976 0 0.059810 4.363250 1 +SPEAKER 01976 0 4.803000 4.443140 1 +SPEAKER 01976 0 9.789000 4.807840 1 +SPEAKER 01976 0 15.273000 2.361000 1 +SPEAKER 01976 0 18.940000 8.119000 1 +SPEAKER 01976 0 27.746000 1.924920 1 +SPEAKER 01976 0 30.245640 8.869720 1 +SPEAKER 01976 0 40.355000 1.000000 1 +SPEAKER 01976 0 42.369000 0.431550 1 +SPEAKER 01976 0 43.337580 12.759260 1 +SPEAKER 01976 0 56.411660 19.537030 1 +SPEAKER 01976 0 76.393140 6.481480 1 +SPEAKER 01976 0 83.448000 0.889580 1 +SPEAKER 01976 0 84.726470 9.666670 1 +SPEAKER 01976 0 94.911660 6.666660 1 +SPEAKER 01976 0 4.261000 0.570850 0 +SPEAKER 01976 0 17.457000 1.337000 0 +SPEAKER 01976 0 21.170000 1.472000 0 +SPEAKER 01976 0 26.864000 0.750000 0 +SPEAKER 01976 0 38.540000 2.192830 0 +SPEAKER 01976 0 41.273000 2.446320 0 +SPEAKER 01976 0 44.209000 1.443400 0 +SPEAKER 01976 0 46.041290 0.407400 0 +SPEAKER 01976 0 47.022770 0.962960 0 +SPEAKER 01976 0 60.897000 0.888000 0 +SPEAKER 01976 0 43.596840 0.833340 h0 diff --git a/rttm/few/01980.rttm b/rttm/few/01980.rttm new file mode 100644 index 0000000000000000000000000000000000000000..b745143a74550c102a4222562d616d041fd7df6c --- /dev/null +++ b/rttm/few/01980.rttm @@ -0,0 +1,12 @@ +SPEAKER 01980 0 1.671000 1.333000 1 +SPEAKER 01980 0 4.652000 1.000000 1 +SPEAKER 01980 0 19.208000 3.815000 1 +SPEAKER 01980 0 25.615000 1.870730 1 +SPEAKER 01980 0 28.375000 1.711000 1 +SPEAKER 01980 0 3.560000 3.907000 0 +SPEAKER 01980 0 10.330000 1.100000 0 +SPEAKER 01980 0 12.319000 2.296000 0 +SPEAKER 01980 0 16.356000 1.408000 0 +SPEAKER 01980 0 18.207950 0.777780 0 +SPEAKER 01980 0 21.338000 0.814000 0 +SPEAKER 01980 0 29.745000 2.463000 0 diff --git a/rttm/few/01989.rttm b/rttm/few/01989.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ef6a62b76743b900551e4c681fba96cdc2dc8af7 --- /dev/null +++ b/rttm/few/01989.rttm @@ -0,0 +1,32 @@ +SPEAKER 01989 0 0.009000 2.035000 0 +SPEAKER 01989 0 2.460000 5.675000 0 +SPEAKER 01989 0 8.618000 3.800000 0 +SPEAKER 01989 0 13.285000 18.274000 0 +SPEAKER 01989 0 34.746000 5.300000 0 +SPEAKER 01989 0 42.296000 0.671210 0 +SPEAKER 01989 0 46.713000 14.294000 0 +SPEAKER 01989 0 63.069000 1.000000 0 +SPEAKER 01989 0 69.694000 2.665480 0 +SPEAKER 01989 0 0.732000 2.312000 2 +SPEAKER 01989 0 11.135000 1.950000 2 +SPEAKER 01989 0 18.041000 1.000000 2 +SPEAKER 01989 0 19.425000 0.635000 2 +SPEAKER 01989 0 24.788060 1.683670 2 +SPEAKER 01989 0 27.492140 1.060860 2 +SPEAKER 01989 0 31.059000 3.972000 2 +SPEAKER 01989 0 39.880000 2.750000 2 +SPEAKER 01989 0 56.504000 1.315000 2 +SPEAKER 01989 0 59.412000 4.282000 2 +SPEAKER 01989 0 8.185000 0.500000 1 +SPEAKER 01989 0 11.035000 2.683000 1 +SPEAKER 01989 0 18.021000 1.000000 1 +SPEAKER 01989 0 24.794000 1.646000 1 +SPEAKER 01989 0 27.478000 1.100000 1 +SPEAKER 01989 0 30.553000 1.783000 1 +SPEAKER 01989 0 34.475000 1.269990 1 +SPEAKER 01989 0 42.425000 4.538000 1 +SPEAKER 01989 0 53.944000 1.000000 1 +SPEAKER 01989 0 56.569000 0.842660 1 +SPEAKER 01989 0 59.084000 1.298000 1 +SPEAKER 01989 0 63.194000 6.688000 1 +SPEAKER 01989 0 71.838000 0.544000 1 diff --git a/rttm/few/01998.rttm b/rttm/few/01998.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c27961374203336739d86d8d17a3235ed5f1f461 --- /dev/null +++ b/rttm/few/01998.rttm @@ -0,0 +1,20 @@ +SPEAKER 01998 0 0.020000 14.018440 1 +SPEAKER 01998 0 14.315000 10.619990 1 +SPEAKER 01998 0 27.172000 2.886000 1 +SPEAKER 01998 0 31.393000 0.852000 1 +SPEAKER 01998 0 34.556000 2.466770 1 +SPEAKER 01998 0 38.072920 2.005400 1 +SPEAKER 01998 0 41.375000 8.129000 1 +SPEAKER 01998 0 1.912000 0.407000 2 +SPEAKER 01998 0 3.171000 0.481000 2 +SPEAKER 01998 0 25.046000 2.578650 2 +SPEAKER 01998 0 29.665000 1.597580 2 +SPEAKER 01998 0 31.866030 2.990070 2 +SPEAKER 01998 0 12.356000 1.000000 0 +SPEAKER 01998 0 19.952000 0.517470 0 +SPEAKER 01998 0 24.245000 0.703690 0 +SPEAKER 01998 0 25.875000 0.666000 0 +SPEAKER 01998 0 28.523000 0.980000 0 +SPEAKER 01998 0 35.430000 7.537210 0 +SPEAKER 01998 0 46.157000 0.715000 0 +SPEAKER 01998 0 50.986000 1.333000 0 diff --git a/rttm/few/01999.rttm b/rttm/few/01999.rttm new file mode 100644 index 0000000000000000000000000000000000000000..404302d48b53f99e4f04d226539fd16cb597aaab --- /dev/null +++ b/rttm/few/01999.rttm @@ -0,0 +1,30 @@ +SPEAKER 01999 0 3.782030 0.555970 1 +SPEAKER 01999 0 12.102000 0.347000 1 +SPEAKER 01999 0 12.819060 3.259260 1 +SPEAKER 01999 0 17.379000 1.216000 1 +SPEAKER 01999 0 33.465000 1.894000 1 +SPEAKER 01999 0 36.485730 0.397270 1 +SPEAKER 01999 0 39.633880 1.833330 1 +SPEAKER 01999 0 45.662000 1.434840 1 +SPEAKER 01999 0 49.448690 2.425930 1 +SPEAKER 01999 0 0.004250 4.333330 0 +SPEAKER 01999 0 4.800550 5.518510 0 +SPEAKER 01999 0 10.625000 1.008880 0 +SPEAKER 01999 0 12.170920 0.739080 0 +SPEAKER 01999 0 16.245000 1.611100 0 +SPEAKER 01999 0 19.156000 0.697000 0 +SPEAKER 01999 0 20.189440 0.925920 0 +SPEAKER 01999 0 21.550000 0.991290 0 +SPEAKER 01999 0 23.504250 2.018520 0 +SPEAKER 01999 0 25.967210 0.574080 0 +SPEAKER 01999 0 26.800550 0.658450 0 +SPEAKER 01999 0 28.019000 1.429690 0 +SPEAKER 01999 0 30.080000 0.500000 0 +SPEAKER 01999 0 31.337580 0.963420 0 +SPEAKER 01999 0 35.856100 2.481480 0 +SPEAKER 01999 0 38.671000 0.851770 0 +SPEAKER 01999 0 41.467210 1.726790 0 +SPEAKER 01999 0 47.096840 0.962970 0 +SPEAKER 01999 0 48.430000 0.814990 0 +SPEAKER 01999 0 11.230000 0.459440 h0 +SPEAKER 01999 0 32.967000 0.518730 h0 diff --git a/rttm/few/02003.rttm b/rttm/few/02003.rttm new file mode 100644 index 0000000000000000000000000000000000000000..5565be003d5e9a089705da34ea4b1f2756d7be23 --- /dev/null +++ b/rttm/few/02003.rttm @@ -0,0 +1,30 @@ +SPEAKER 02003 0 0.078000 1.254070 0 +SPEAKER 02003 0 1.759000 1.280380 0 +SPEAKER 02003 0 3.490000 4.634750 0 +SPEAKER 02003 0 9.380850 2.085360 0 +SPEAKER 02003 0 13.063770 2.107230 0 +SPEAKER 02003 0 17.306000 3.667170 0 +SPEAKER 02003 0 21.533000 1.927420 0 +SPEAKER 02003 0 24.121000 3.196560 0 +SPEAKER 02003 0 27.797000 2.787350 0 +SPEAKER 02003 0 32.115000 0.630000 0 +SPEAKER 02003 0 33.338000 4.222000 0 +SPEAKER 02003 0 38.326280 7.129030 0 +SPEAKER 02003 0 8.171000 2.555000 1 +SPEAKER 02003 0 12.023000 4.685000 1 +SPEAKER 02003 0 21.229000 1.686000 1 +SPEAKER 02003 0 33.264000 1.185000 1 +SPEAKER 02003 0 37.352000 1.000000 1 +SPEAKER 02003 0 11.819000 1.611000 h0 +SPEAKER 02003 0 14.412000 1.322510 h0 +SPEAKER 02003 0 20.218000 5.013850 h0 +SPEAKER 02003 0 25.832000 1.775410 h0 +SPEAKER 02003 0 33.746000 4.418990 h0 +SPEAKER 02003 0 39.133000 0.612640 h0 +SPEAKER 02003 0 15.764000 1.415000 h1 +SPEAKER 02003 0 18.661000 3.732040 h1 +SPEAKER 02003 0 22.975000 1.000000 h1 +SPEAKER 02003 0 24.660000 1.000000 h1 +SPEAKER 02003 0 27.190000 0.796720 h1 +SPEAKER 02003 0 33.499000 2.777000 h1 +SPEAKER 02003 0 38.430000 2.352000 h1 diff --git a/rttm/few/02005.rttm b/rttm/few/02005.rttm new file mode 100644 index 0000000000000000000000000000000000000000..d2b8161f547b819fff4a791cc7761e7c43031cba --- /dev/null +++ b/rttm/few/02005.rttm @@ -0,0 +1,28 @@ +SPEAKER 02005 0 0.004000 25.019000 1 +SPEAKER 02005 0 31.838000 0.666000 1 +SPEAKER 02005 0 33.338000 0.833000 1 +SPEAKER 02005 0 34.597000 7.110950 1 +SPEAKER 02005 0 42.096840 12.013160 1 +SPEAKER 02005 0 54.670920 2.648140 1 +SPEAKER 02005 0 58.319000 2.500060 1 +SPEAKER 02005 0 61.152400 14.555600 1 +SPEAKER 02005 0 76.467000 0.908000 1 +SPEAKER 02005 0 80.670920 2.167080 1 +SPEAKER 02005 0 93.059810 0.926190 1 +SPEAKER 02005 0 103.097000 0.611000 1 +SPEAKER 02005 0 6.338000 0.555000 0 +SPEAKER 02005 0 20.504000 0.556000 0 +SPEAKER 02005 0 25.023000 9.629000 0 +SPEAKER 02005 0 38.486000 0.389000 0 +SPEAKER 02005 0 40.652000 1.926000 0 +SPEAKER 02005 0 43.430000 0.408000 0 +SPEAKER 02005 0 47.115000 0.926000 0 +SPEAKER 02005 0 49.263510 0.833490 0 +SPEAKER 02005 0 57.134000 3.333000 0 +SPEAKER 02005 0 64.338000 1.833000 0 +SPEAKER 02005 0 75.356000 1.018620 0 +SPEAKER 02005 0 77.097000 3.278000 0 +SPEAKER 02005 0 81.152000 8.426320 0 +SPEAKER 02005 0 90.125000 0.694060 0 +SPEAKER 02005 0 91.393000 1.648290 0 +SPEAKER 02005 0 94.041290 10.684710 0 diff --git a/rttm/few/02019.rttm b/rttm/few/02019.rttm new file mode 100644 index 0000000000000000000000000000000000000000..04c96b09a8832b0d51f635f231e0889e827d3174 --- /dev/null +++ b/rttm/few/02019.rttm @@ -0,0 +1,7 @@ +SPEAKER 02019 0 0.000000 8.560000 1 +SPEAKER 02019 0 8.875000 2.463000 1 +SPEAKER 02019 0 12.319000 0.630000 1 +SPEAKER 02019 0 19.597000 0.783330 1 +SPEAKER 02019 0 8.758110 0.577770 0 +SPEAKER 02019 0 10.523000 9.092000 0 +SPEAKER 02019 0 20.004000 0.674000 0 diff --git a/rttm/few/02020.rttm b/rttm/few/02020.rttm new file mode 100644 index 0000000000000000000000000000000000000000..a10acc2e57da02f406b88a0046aeb0c9d1e79641 --- /dev/null +++ b/rttm/few/02020.rttm @@ -0,0 +1,9 @@ +SPEAKER 02020 0 0.060000 0.815000 h0 +SPEAKER 02020 0 40.288060 0.622450 h0 +SPEAKER 02020 0 0.171000 14.006090 0 +SPEAKER 02020 0 15.615000 0.667000 0 +SPEAKER 02020 0 18.023000 13.132400 0 +SPEAKER 02020 0 33.127000 8.972480 0 +SPEAKER 02020 0 13.246850 4.566760 1 +SPEAKER 02020 0 30.390100 2.595900 1 +SPEAKER 02020 0 41.246000 1.443000 1 diff --git a/rttm/few/02021.rttm b/rttm/few/02021.rttm new file mode 100644 index 0000000000000000000000000000000000000000..0e24ab0691101bcf04493d1ea2eaa19b1abe0dc4 --- /dev/null +++ b/rttm/few/02021.rttm @@ -0,0 +1,29 @@ +SPEAKER 02021 0 0.461000 2.946000 1 +SPEAKER 02021 0 4.203510 2.097490 1 +SPEAKER 02021 0 25.338000 0.629000 1 +SPEAKER 02021 0 43.292000 0.506000 1 +SPEAKER 02021 0 50.301000 0.860000 1 +SPEAKER 02021 0 51.758000 5.164000 1 +SPEAKER 02021 0 57.628380 5.841620 1 +SPEAKER 02021 0 64.534000 6.420000 1 +SPEAKER 02021 0 71.424590 9.520410 1 +SPEAKER 02021 0 81.364590 15.651410 1 +SPEAKER 02021 0 3.426000 1.272800 3 +SPEAKER 02021 0 6.408000 18.801610 3 +SPEAKER 02021 0 25.500000 6.280000 3 +SPEAKER 02021 0 34.036000 5.134630 3 +SPEAKER 02021 0 39.710000 6.460000 3 +SPEAKER 02021 0 46.634000 5.619000 3 +SPEAKER 02021 0 56.856000 0.833000 3 +SPEAKER 02021 0 62.893000 0.556000 3 +SPEAKER 02021 0 67.136000 1.000000 3 +SPEAKER 02021 0 72.862000 0.714000 3 +SPEAKER 02021 0 74.897000 0.382000 3 +SPEAKER 02021 0 80.881000 0.490000 3 +SPEAKER 02021 0 89.856000 0.342800 3 +SPEAKER 02021 0 97.154000 0.505000 3 +SPEAKER 02021 0 31.224000 2.980000 0 +SPEAKER 02021 0 45.408000 1.300000 0 +SPEAKER 02021 0 57.412000 1.202290 0 +SPEAKER 02021 0 62.504000 0.408000 0 +SPEAKER 02021 0 35.596000 1.297000 2 diff --git a/rttm/few/02025.rttm b/rttm/few/02025.rttm new file mode 100644 index 0000000000000000000000000000000000000000..6aac1c3cc51e3e2d219a1e9e83dfcc943987eb2d --- /dev/null +++ b/rttm/few/02025.rttm @@ -0,0 +1,12 @@ +SPEAKER 02025 0 0.006000 10.257510 0 +SPEAKER 02025 0 10.856100 6.866900 0 +SPEAKER 02025 0 18.782030 0.651970 0 +SPEAKER 02025 0 19.919000 2.472440 0 +SPEAKER 02025 0 4.332000 0.359440 h0 +SPEAKER 02025 0 7.702000 0.543000 h0 +SPEAKER 02025 0 10.245000 0.457000 h0 +SPEAKER 02025 0 6.093000 0.465110 1 +SPEAKER 02025 0 10.117000 0.846000 1 +SPEAKER 02025 0 17.446990 1.833340 1 +SPEAKER 02025 0 19.571000 0.478000 1 +SPEAKER 02025 0 20.658110 0.956890 1 diff --git a/rttm/few/02035.rttm b/rttm/few/02035.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ed3934d6cc7a818b94f987438dbd8f88c5c3e0fc --- /dev/null +++ b/rttm/few/02035.rttm @@ -0,0 +1,8 @@ +SPEAKER 02035 0 0.000000 3.404210 1 +SPEAKER 02035 0 13.423820 3.529410 1 +SPEAKER 02035 0 38.168920 0.823530 1 +SPEAKER 02035 0 0.000000 0.404210 0 +SPEAKER 02035 0 3.504000 10.174720 0 +SPEAKER 02035 0 17.149310 3.382350 0 +SPEAKER 02035 0 21.266960 16.470580 0 +SPEAKER 02035 0 39.139500 0.205890 0 diff --git a/rttm/few/02036.rttm b/rttm/few/02036.rttm new file mode 100644 index 0000000000000000000000000000000000000000..b99ed6b001ec9b6eb36ece1e69607c7b5e944d33 --- /dev/null +++ b/rttm/few/02036.rttm @@ -0,0 +1,39 @@ +SPEAKER 02036 0 0.003000 1.202000 0 +SPEAKER 02036 0 9.438000 0.504000 0 +SPEAKER 02036 0 13.747000 2.942440 0 +SPEAKER 02036 0 17.105000 2.158510 0 +SPEAKER 02036 0 20.477000 0.416140 0 +SPEAKER 02036 0 21.396000 0.862000 0 +SPEAKER 02036 0 27.811000 1.917000 0 +SPEAKER 02036 0 30.109000 2.306000 0 +SPEAKER 02036 0 37.155000 0.347000 0 +SPEAKER 02036 0 38.034000 2.213000 0 +SPEAKER 02036 0 41.481000 0.362000 0 +SPEAKER 02036 0 42.319000 1.000000 0 +SPEAKER 02036 0 43.632400 7.635600 0 +SPEAKER 02036 0 55.183000 1.000000 0 +SPEAKER 02036 0 1.364000 1.319000 1 +SPEAKER 02036 0 3.524000 0.917820 1 +SPEAKER 02036 0 6.141000 1.968000 1 +SPEAKER 02036 0 8.417000 0.734000 1 +SPEAKER 02036 0 9.943000 0.470000 1 +SPEAKER 02036 0 10.715000 1.532000 1 +SPEAKER 02036 0 12.694000 1.370000 1 +SPEAKER 02036 0 15.248000 2.116000 1 +SPEAKER 02036 0 24.279000 0.862000 1 +SPEAKER 02036 0 40.343000 0.457000 1 +SPEAKER 02036 0 41.986000 0.370100 1 +SPEAKER 02036 0 4.506000 1.241000 2 +SPEAKER 02036 0 19.566000 0.543000 2 +SPEAKER 02036 0 20.917000 0.330000 2 +SPEAKER 02036 0 22.364000 1.297000 2 +SPEAKER 02036 0 24.055360 5.671110 2 +SPEAKER 02036 0 31.098000 0.284000 2 +SPEAKER 02036 0 32.045000 1.477000 2 +SPEAKER 02036 0 33.843000 1.808000 2 +SPEAKER 02036 0 36.098000 0.904000 2 +SPEAKER 02036 0 37.759000 0.307000 2 +SPEAKER 02036 0 41.498000 0.358100 2 +SPEAKER 02036 0 48.864000 0.329000 2 +SPEAKER 02036 0 51.544000 4.239290 2 +SPEAKER 02036 0 56.236000 0.711000 2 diff --git a/rttm/few/02047.rttm b/rttm/few/02047.rttm new file mode 100644 index 0000000000000000000000000000000000000000..3349fc39b73288333617e064fbeb68cd0bd365d5 --- /dev/null +++ b/rttm/few/02047.rttm @@ -0,0 +1,33 @@ +SPEAKER 02047 0 0.000000 1.041000 0 +SPEAKER 02047 0 1.581290 4.811850 0 +SPEAKER 02047 0 6.856100 2.259260 0 +SPEAKER 02047 0 9.467210 8.925930 0 +SPEAKER 02047 0 18.766470 2.126670 0 +SPEAKER 02047 0 21.449000 4.058210 0 +SPEAKER 02047 0 26.134000 1.995440 0 +SPEAKER 02047 0 35.670920 11.037080 0 +SPEAKER 02047 0 47.597000 1.271690 0 +SPEAKER 02047 0 49.207950 0.532600 0 +SPEAKER 02047 0 50.097000 1.500000 0 +SPEAKER 02047 0 54.470000 7.794000 0 +SPEAKER 02047 0 62.615000 4.796660 0 +SPEAKER 02047 0 67.920000 5.324990 0 +SPEAKER 02047 0 73.841000 1.642000 0 +SPEAKER 02047 0 88.579810 1.165180 0 +SPEAKER 02047 0 90.062770 4.515550 0 +SPEAKER 02047 0 94.860550 0.995550 0 +SPEAKER 02047 0 96.107000 1.494290 0 +SPEAKER 02047 0 6.412000 0.574000 1 +SPEAKER 02047 0 28.597000 4.592440 1 +SPEAKER 02047 0 33.800550 4.192590 1 +SPEAKER 02047 0 39.411660 0.449630 1 +SPEAKER 02047 0 53.393000 1.315000 1 +SPEAKER 02047 0 62.504000 0.603000 1 +SPEAKER 02047 0 64.930180 0.686660 1 +SPEAKER 02047 0 67.669000 0.504880 1 +SPEAKER 02047 0 73.650000 0.547000 1 +SPEAKER 02047 0 75.803510 0.937490 1 +SPEAKER 02047 0 77.115360 4.482960 1 +SPEAKER 02047 0 81.886000 2.970100 1 +SPEAKER 02047 0 85.300550 2.388890 1 +SPEAKER 02047 0 88.689000 1.278000 1 diff --git a/rttm/few/02049.rttm b/rttm/few/02049.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ff562827884987b80e16aadde9b0def7c58be7e1 --- /dev/null +++ b/rttm/few/02049.rttm @@ -0,0 +1,34 @@ +SPEAKER 02049 0 0.170920 7.555080 1 +SPEAKER 02049 0 9.064000 1.514000 1 +SPEAKER 02049 0 11.856000 3.333000 1 +SPEAKER 02049 0 19.467210 9.833790 1 +SPEAKER 02049 0 30.930000 9.185000 1 +SPEAKER 02049 0 47.764000 0.833000 1 +SPEAKER 02049 0 58.319000 1.778000 1 +SPEAKER 02049 0 74.615000 0.724000 1 +SPEAKER 02049 0 80.949000 4.811420 1 +SPEAKER 02049 0 86.417000 0.471990 1 +SPEAKER 02049 0 98.004000 0.656420 1 +SPEAKER 02049 0 103.986000 2.222000 1 +SPEAKER 02049 0 106.615000 1.873990 1 +SPEAKER 02049 0 112.933000 0.822000 1 +SPEAKER 02049 0 119.782000 0.506990 1 +SPEAKER 02049 0 121.078000 3.815000 1 +SPEAKER 02049 0 125.764000 4.259000 1 +SPEAKER 02049 0 7.319060 4.575940 0 +SPEAKER 02049 0 14.786000 6.871000 0 +SPEAKER 02049 0 22.148000 0.338000 0 +SPEAKER 02049 0 29.301000 1.629000 0 +SPEAKER 02049 0 31.670920 0.667080 0 +SPEAKER 02049 0 36.635000 0.797000 0 +SPEAKER 02049 0 39.665000 18.390890 0 +SPEAKER 02049 0 59.299000 21.797840 0 +SPEAKER 02049 0 82.489000 0.742850 0 +SPEAKER 02049 0 84.489000 3.059930 0 +SPEAKER 02049 0 87.851960 15.079890 0 +SPEAKER 02049 0 103.460000 0.657560 0 +SPEAKER 02049 0 105.041000 7.500000 0 +SPEAKER 02049 0 113.317560 8.114290 0 +SPEAKER 02049 0 123.597000 0.481000 0 +SPEAKER 02049 0 124.893000 1.000000 0 +SPEAKER 02049 0 128.058000 1.125000 0 diff --git a/rttm/few/02053.rttm b/rttm/few/02053.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c9d097b51c0ed971e78822204db08248afe7625c --- /dev/null +++ b/rttm/few/02053.rttm @@ -0,0 +1,29 @@ +SPEAKER 02053 0 0.148000 1.000000 1 +SPEAKER 02053 0 1.430000 1.704000 1 +SPEAKER 02053 0 3.986000 1.389000 1 +SPEAKER 02053 0 6.006000 3.518000 1 +SPEAKER 02053 0 11.579000 1.000000 1 +SPEAKER 02053 0 14.776760 1.283240 1 +SPEAKER 02053 0 16.717940 1.823060 1 +SPEAKER 02053 0 19.502250 2.137250 1 +SPEAKER 02053 0 24.171000 1.593000 1 +SPEAKER 02053 0 26.597000 2.055000 1 +SPEAKER 02053 0 29.801000 3.128630 1 +SPEAKER 02053 0 37.134000 0.481000 1 +SPEAKER 02053 0 39.745000 1.019000 1 +SPEAKER 02053 0 41.504000 0.498250 1 +SPEAKER 02053 0 43.785000 1.218000 1 +SPEAKER 02053 0 47.134000 0.671000 1 +SPEAKER 02053 0 5.393000 0.393560 0 +SPEAKER 02053 0 10.003000 0.979640 0 +SPEAKER 02053 0 11.894000 1.069030 0 +SPEAKER 02053 0 13.414010 1.225490 0 +SPEAKER 02053 0 18.764000 0.407000 0 +SPEAKER 02053 0 21.865000 2.480390 0 +SPEAKER 02053 0 25.764000 0.404920 0 +SPEAKER 02053 0 28.208000 0.304050 0 +SPEAKER 02053 0 32.726000 1.266450 0 +SPEAKER 02053 0 34.287000 2.891720 0 +SPEAKER 02053 0 40.825780 0.392160 0 +SPEAKER 02053 0 42.782000 0.504560 0 +SPEAKER 02053 0 45.985000 0.920000 0 diff --git a/rttm/few/02057.rttm b/rttm/few/02057.rttm new file mode 100644 index 0000000000000000000000000000000000000000..f85612cbe3720269286dff1a630f20c6deff49ac --- /dev/null +++ b/rttm/few/02057.rttm @@ -0,0 +1,29 @@ +SPEAKER 02057 0 0.211000 1.687000 0 +SPEAKER 02057 0 2.231000 0.396000 0 +SPEAKER 02057 0 3.107000 1.286140 0 +SPEAKER 02057 0 7.856800 1.532200 0 +SPEAKER 02057 0 10.661000 1.000000 0 +SPEAKER 02057 0 15.025000 4.932000 0 +SPEAKER 02057 0 20.843000 0.458000 0 +SPEAKER 02057 0 21.639000 2.500000 0 +SPEAKER 02057 0 24.843000 1.000000 0 +SPEAKER 02057 0 26.321000 7.571000 0 +SPEAKER 02057 0 35.920000 1.827000 0 +SPEAKER 02057 0 38.338000 1.333000 0 +SPEAKER 02057 0 40.781000 1.222000 0 +SPEAKER 02057 0 43.225000 3.824580 0 +SPEAKER 02057 0 48.809000 0.444000 0 +SPEAKER 02057 0 50.861000 1.106000 0 +SPEAKER 02057 0 52.775000 0.711000 0 +SPEAKER 02057 0 2.606000 0.438000 1 +SPEAKER 02057 0 4.461000 10.996000 1 +SPEAKER 02057 0 19.911000 1.751000 1 +SPEAKER 02057 0 27.502000 1.773000 1 +SPEAKER 02057 0 31.704000 0.521000 1 +SPEAKER 02057 0 33.975000 1.733000 1 +SPEAKER 02057 0 37.086000 0.975620 1 +SPEAKER 02057 0 39.725000 1.111000 1 +SPEAKER 02057 0 41.475000 1.556000 1 +SPEAKER 02057 0 44.928000 2.133620 1 +SPEAKER 02057 0 47.856000 4.945000 1 +SPEAKER 02057 0 53.575000 2.000000 1 diff --git a/rttm/few/02061.rttm b/rttm/few/02061.rttm new file mode 100644 index 0000000000000000000000000000000000000000..e1ddb8993b33f068aa58a5bdb8f4b94811254f76 --- /dev/null +++ b/rttm/few/02061.rttm @@ -0,0 +1,52 @@ +SPEAKER 02061 0 0.058320 0.533680 1 +SPEAKER 02061 0 4.544180 0.682160 1 +SPEAKER 02061 0 5.477700 6.257300 1 +SPEAKER 02061 0 16.266000 1.428000 1 +SPEAKER 02061 0 18.721000 0.638000 1 +SPEAKER 02061 0 19.980000 1.157000 1 +SPEAKER 02061 0 21.733370 1.161080 1 +SPEAKER 02061 0 23.818000 0.300780 1 +SPEAKER 02061 0 24.718780 2.081770 1 +SPEAKER 02061 0 35.875530 1.330270 1 +SPEAKER 02061 0 39.259860 0.662700 1 +SPEAKER 02061 0 54.367970 1.178030 1 +SPEAKER 02061 0 69.429000 0.335000 1 +SPEAKER 02061 0 0.411000 0.798000 2 +SPEAKER 02061 0 1.523000 0.486000 2 +SPEAKER 02061 0 2.786000 2.101430 2 +SPEAKER 02061 0 5.338000 0.771590 2 +SPEAKER 02061 0 6.948690 2.352310 2 +SPEAKER 02061 0 10.758000 0.488340 2 +SPEAKER 02061 0 16.651750 0.716250 2 +SPEAKER 02061 0 20.989000 0.710000 2 +SPEAKER 02061 0 29.023000 1.000000 2 +SPEAKER 02061 0 33.838000 0.926000 2 +SPEAKER 02061 0 35.560000 1.473000 2 +SPEAKER 02061 0 37.867000 1.120000 2 +SPEAKER 02061 0 39.753370 0.844330 2 +SPEAKER 02061 0 40.915530 0.411360 2 +SPEAKER 02061 0 43.261000 0.914000 2 +SPEAKER 02061 0 50.274000 1.545060 2 +SPEAKER 02061 0 54.340940 3.176220 2 +SPEAKER 02061 0 69.447000 0.835000 2 +SPEAKER 02061 0 0.726000 2.831160 0 +SPEAKER 02061 0 7.541000 0.723000 0 +SPEAKER 02061 0 11.615000 3.781070 0 +SPEAKER 02061 0 15.813370 0.595680 0 +SPEAKER 02061 0 18.041000 2.315000 0 +SPEAKER 02061 0 21.652000 3.128000 0 +SPEAKER 02061 0 26.786000 2.218000 0 +SPEAKER 02061 0 29.615000 4.888100 0 +SPEAKER 02061 0 34.764000 0.685000 0 +SPEAKER 02061 0 36.893000 1.623610 0 +SPEAKER 02061 0 40.840940 2.385060 0 +SPEAKER 02061 0 44.171000 5.555000 0 +SPEAKER 02061 0 51.764000 0.254000 0 +SPEAKER 02061 0 53.449000 1.203290 0 +SPEAKER 02061 0 55.232830 0.526490 0 +SPEAKER 02061 0 56.084180 4.013520 0 +SPEAKER 02061 0 60.475530 6.914600 0 +SPEAKER 02061 0 67.665260 1.770840 0 +SPEAKER 02061 0 26.256000 0.850000 h0 +SPEAKER 02061 0 34.557160 0.742160 h0 +SPEAKER 02061 0 41.259860 0.567570 h0 diff --git a/rttm/few/02062.rttm b/rttm/few/02062.rttm new file mode 100644 index 0000000000000000000000000000000000000000..fafe8e052479a05b373bc17adeb38f4a965c9005 --- /dev/null +++ b/rttm/few/02062.rttm @@ -0,0 +1,143 @@ +SPEAKER 02062 0 0.023000 1.959000 1 +SPEAKER 02062 0 2.356000 2.833440 1 +SPEAKER 02062 0 5.797000 3.386000 1 +SPEAKER 02062 0 10.764000 1.814320 1 +SPEAKER 02062 0 13.160000 0.756000 1 +SPEAKER 02062 0 14.319000 0.778000 1 +SPEAKER 02062 0 16.022770 3.759260 1 +SPEAKER 02062 0 21.421000 0.472000 1 +SPEAKER 02062 0 22.356000 0.426000 1 +SPEAKER 02062 0 24.417000 2.809470 1 +SPEAKER 02062 0 30.449000 0.578000 1 +SPEAKER 02062 0 34.300550 0.407400 1 +SPEAKER 02062 0 36.201000 2.469920 1 +SPEAKER 02062 0 40.707950 0.574080 1 +SPEAKER 02062 0 42.671000 3.759180 1 +SPEAKER 02062 0 48.652000 1.537440 1 +SPEAKER 02062 0 51.819000 1.491000 1 +SPEAKER 02062 0 53.874000 2.056000 1 +SPEAKER 02062 0 57.708000 6.611060 1 +SPEAKER 02062 0 65.342000 4.850000 1 +SPEAKER 02062 0 71.209000 3.968000 1 +SPEAKER 02062 0 75.782000 1.599000 1 +SPEAKER 02062 0 78.172000 0.835000 1 +SPEAKER 02062 0 79.962000 2.505210 1 +SPEAKER 02062 0 83.281000 2.191000 1 +SPEAKER 02062 0 94.152400 1.454600 1 +SPEAKER 02062 0 96.430180 0.629630 1 +SPEAKER 02062 0 97.504250 1.500000 1 +SPEAKER 02062 0 100.801000 4.962510 1 +SPEAKER 02062 0 106.406000 0.894550 1 +SPEAKER 02062 0 107.726470 3.462970 1 +SPEAKER 02062 0 111.652000 1.436000 1 +SPEAKER 02062 0 113.790000 4.591000 1 +SPEAKER 02062 0 119.043000 3.390000 1 +SPEAKER 02062 0 123.394000 0.573000 1 +SPEAKER 02062 0 126.915000 0.478000 1 +SPEAKER 02062 0 127.828000 3.322000 1 +SPEAKER 02062 0 133.263510 0.500000 1 +SPEAKER 02062 0 135.208000 3.444000 1 +SPEAKER 02062 0 139.157000 4.569000 1 +SPEAKER 02062 0 146.745000 2.222210 1 +SPEAKER 02062 0 150.430000 6.611290 1 +SPEAKER 02062 0 158.147000 0.449000 1 +SPEAKER 02062 0 159.286000 0.563000 1 +SPEAKER 02062 0 160.707950 0.630050 1 +SPEAKER 02062 0 161.687000 0.814000 1 +SPEAKER 02062 0 164.265000 1.260000 1 +SPEAKER 02062 0 171.041290 6.444440 1 +SPEAKER 02062 0 178.429000 2.433000 1 +SPEAKER 02062 0 181.948690 2.055310 1 +SPEAKER 02062 0 185.356100 0.647900 1 +SPEAKER 02062 0 186.458000 2.829000 1 +SPEAKER 02062 0 190.240000 2.075000 1 +SPEAKER 02062 0 192.952000 0.632000 1 +SPEAKER 02062 0 195.442000 2.062000 1 +SPEAKER 02062 0 198.707950 0.598050 1 +SPEAKER 02062 0 200.583000 2.538000 1 +SPEAKER 02062 0 204.652000 2.861000 1 +SPEAKER 02062 0 207.949000 6.436000 1 +SPEAKER 02062 0 215.386000 5.970100 1 +SPEAKER 02062 0 223.811000 4.503000 1 +SPEAKER 02062 0 235.182000 0.525000 1 +SPEAKER 02062 0 236.312000 4.900000 1 +SPEAKER 02062 0 242.232000 0.698180 1 +SPEAKER 02062 0 246.014000 0.490000 1 +SPEAKER 02062 0 252.954000 0.427000 1 +SPEAKER 02062 0 254.321000 0.591000 1 +SPEAKER 02062 0 255.356000 3.592690 1 +SPEAKER 02062 0 259.449000 4.450060 1 +SPEAKER 02062 0 264.387000 4.569000 1 +SPEAKER 02062 0 274.413000 1.165320 1 +SPEAKER 02062 0 278.844000 0.584000 1 +SPEAKER 02062 0 5.140000 0.808690 0 +SPEAKER 02062 0 8.837580 5.444420 0 +SPEAKER 02062 0 15.325000 0.605180 0 +SPEAKER 02062 0 17.173000 0.689000 0 +SPEAKER 02062 0 20.356100 0.935900 0 +SPEAKER 02062 0 21.924000 0.525000 0 +SPEAKER 02062 0 23.026000 0.885660 0 +SPEAKER 02062 0 27.541000 1.222510 0 +SPEAKER 02062 0 29.741000 1.097000 0 +SPEAKER 02062 0 31.319000 1.552000 0 +SPEAKER 02062 0 33.480000 0.766000 0 +SPEAKER 02062 0 35.103000 0.864210 0 +SPEAKER 02062 0 39.004000 1.333580 0 +SPEAKER 02062 0 41.460000 1.060000 0 +SPEAKER 02062 0 45.621000 1.568440 0 +SPEAKER 02062 0 47.670920 0.944440 0 +SPEAKER 02062 0 49.764000 0.814320 0 +SPEAKER 02062 0 51.261000 0.555000 0 +SPEAKER 02062 0 52.749000 0.866360 0 +SPEAKER 02062 0 55.936000 1.438620 0 +SPEAKER 02062 0 57.773000 0.916440 0 +SPEAKER 02062 0 64.422000 0.852000 0 +SPEAKER 02062 0 70.016000 2.748000 0 +SPEAKER 02062 0 81.783000 2.906440 0 +SPEAKER 02062 0 85.769000 0.475990 0 +SPEAKER 02062 0 86.578320 1.111120 0 +SPEAKER 02062 0 88.115360 0.555560 0 +SPEAKER 02062 0 90.055000 0.542000 0 +SPEAKER 02062 0 91.151000 0.773000 0 +SPEAKER 02062 0 92.800550 2.148450 0 +SPEAKER 02062 0 95.746000 0.798000 0 +SPEAKER 02062 0 96.967000 0.619000 0 +SPEAKER 02062 0 99.245000 1.925920 0 +SPEAKER 02062 0 109.932000 1.873000 0 +SPEAKER 02062 0 115.602000 0.642990 0 +SPEAKER 02062 0 121.827000 6.269000 0 +SPEAKER 02062 0 131.411000 1.594000 0 +SPEAKER 02062 0 133.740000 0.709000 0 +SPEAKER 02062 0 137.208000 1.963000 0 +SPEAKER 02062 0 143.133000 1.573000 0 +SPEAKER 02062 0 145.153000 1.480880 0 +SPEAKER 02062 0 149.115000 0.759620 0 +SPEAKER 02062 0 150.356100 0.592590 0 +SPEAKER 02062 0 156.338000 1.444030 0 +SPEAKER 02062 0 158.615000 4.055920 0 +SPEAKER 02062 0 163.152400 1.472600 0 +SPEAKER 02062 0 165.202000 3.265000 0 +SPEAKER 02062 0 168.985730 1.518270 0 +SPEAKER 02062 0 171.152000 0.741140 0 +SPEAKER 02062 0 177.371000 1.541000 0 +SPEAKER 02062 0 181.680000 3.750000 0 +SPEAKER 02062 0 189.785000 1.519000 0 +SPEAKER 02062 0 191.952000 1.071000 0 +SPEAKER 02062 0 193.856000 1.315000 0 +SPEAKER 02062 0 195.804000 0.792840 0 +SPEAKER 02062 0 197.244990 1.981480 0 +SPEAKER 02062 0 210.755000 0.694000 0 +SPEAKER 02062 0 214.617000 1.995000 0 +SPEAKER 02062 0 221.041000 3.278060 0 +SPEAKER 02062 0 227.104000 2.111000 0 +SPEAKER 02062 0 230.219000 1.697000 0 +SPEAKER 02062 0 232.688000 2.613000 0 +SPEAKER 02062 0 235.743000 1.708000 0 +SPEAKER 02062 0 241.265000 4.758000 0 +SPEAKER 02062 0 246.733000 0.678660 0 +SPEAKER 02062 0 247.948690 2.500000 0 +SPEAKER 02062 0 251.190000 3.221660 0 +SPEAKER 02062 0 257.980000 1.539000 0 +SPEAKER 02062 0 262.725000 0.688000 0 +SPEAKER 02062 0 269.647000 5.653000 0 +SPEAKER 02062 0 275.756000 3.606000 0 diff --git a/rttm/few/02074.rttm b/rttm/few/02074.rttm new file mode 100644 index 0000000000000000000000000000000000000000..e5c3b096a1798c9861b202f212f34c775bc8871e --- /dev/null +++ b/rttm/few/02074.rttm @@ -0,0 +1,13 @@ +SPEAKER 02074 0 0.504000 1.166420 1 +SPEAKER 02074 0 1.998000 2.589080 1 +SPEAKER 02074 0 5.058000 2.779080 1 +SPEAKER 02074 0 8.858000 5.124920 1 +SPEAKER 02074 0 14.294000 1.000000 1 +SPEAKER 02074 0 1.315000 0.541000 3 +SPEAKER 02074 0 7.002000 1.605000 3 +SPEAKER 02074 0 14.930000 0.833000 3 +SPEAKER 02074 0 16.189440 6.814310 3 +SPEAKER 02074 0 23.316250 0.982750 3 +SPEAKER 02074 0 4.400000 0.604000 2 +SPEAKER 02074 0 6.566000 0.396080 2 +SPEAKER 02074 0 13.180000 0.427920 2 diff --git a/rttm/few/02081.rttm b/rttm/few/02081.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4b39bdeded59bb5d5af4792fea7507845ece7455 --- /dev/null +++ b/rttm/few/02081.rttm @@ -0,0 +1,19 @@ +SPEAKER 02081 0 0.500000 8.752260 1 +SPEAKER 02081 0 9.752000 6.521090 1 +SPEAKER 02081 0 16.961000 2.041260 1 +SPEAKER 02081 0 19.417000 6.921000 1 +SPEAKER 02081 0 26.898000 13.810000 1 +SPEAKER 02081 0 41.245000 3.160420 1 +SPEAKER 02081 0 44.955420 12.671580 1 +SPEAKER 02081 0 60.690000 0.292000 1 +SPEAKER 02081 0 65.047000 0.330000 1 +SPEAKER 02081 0 66.253000 0.416000 1 +SPEAKER 02081 0 26.411660 0.424340 0 +SPEAKER 02081 0 40.649000 0.604870 0 +SPEAKER 02081 0 54.374620 0.565380 0 +SPEAKER 02081 0 55.467000 1.000000 0 +SPEAKER 02081 0 56.898000 3.750000 0 +SPEAKER 02081 0 60.994000 0.781190 0 +SPEAKER 02081 0 62.231000 2.250000 0 +SPEAKER 02081 0 65.018000 1.437000 0 +SPEAKER 02081 0 66.865000 1.927000 0 diff --git a/rttm/few/02093.rttm b/rttm/few/02093.rttm new file mode 100644 index 0000000000000000000000000000000000000000..e3a1754598542f33a7beddf26a5ee67b4ce8c948 --- /dev/null +++ b/rttm/few/02093.rttm @@ -0,0 +1,15 @@ +SPEAKER 02093 0 0.109000 1.077000 1 +SPEAKER 02093 0 5.225000 4.292000 1 +SPEAKER 02093 0 16.782030 0.444440 1 +SPEAKER 02093 0 18.874620 0.351850 1 +SPEAKER 02093 0 22.779000 0.569000 1 +SPEAKER 02093 0 1.902000 2.861510 0 +SPEAKER 02093 0 9.856000 1.423000 0 +SPEAKER 02093 0 11.806000 3.365000 0 +SPEAKER 02093 0 16.095360 0.612590 0 +SPEAKER 02093 0 18.187000 0.338000 0 +SPEAKER 02093 0 19.525000 1.054000 0 +SPEAKER 02093 0 21.048000 1.385000 0 +SPEAKER 02093 0 23.643000 10.043000 0 +SPEAKER 02093 0 34.025000 6.254000 0 +SPEAKER 02093 0 40.612000 8.805000 0 diff --git a/rttm/few/02095.rttm b/rttm/few/02095.rttm new file mode 100644 index 0000000000000000000000000000000000000000..f24b87617e912c0584819c05823a4c26b402c96c --- /dev/null +++ b/rttm/few/02095.rttm @@ -0,0 +1,20 @@ +SPEAKER 02095 0 0.078000 1.926000 0 +SPEAKER 02095 0 2.819000 1.093000 0 +SPEAKER 02095 0 4.689000 1.612000 0 +SPEAKER 02095 0 12.986000 7.296000 0 +SPEAKER 02095 0 27.226000 0.538000 0 +SPEAKER 02095 0 29.023000 7.778000 0 +SPEAKER 02095 0 39.597000 1.777620 0 +SPEAKER 02095 0 3.689000 0.537000 h0 +SPEAKER 02095 0 5.078000 1.537000 h0 +SPEAKER 02095 0 8.115000 1.260000 h0 +SPEAKER 02095 0 20.301000 1.703000 h0 +SPEAKER 02095 0 26.541000 1.185000 h0 +SPEAKER 02095 0 36.764000 2.388000 h0 +SPEAKER 02095 0 43.393000 0.759000 h0 +SPEAKER 02095 0 5.393000 4.056000 1 +SPEAKER 02095 0 11.356000 1.482000 1 +SPEAKER 02095 0 15.449000 0.777000 1 +SPEAKER 02095 0 23.078000 4.593000 1 +SPEAKER 02095 0 28.764000 1.150620 1 +SPEAKER 02095 0 39.801000 3.407000 1 diff --git a/rttm/few/02098.rttm b/rttm/few/02098.rttm new file mode 100644 index 0000000000000000000000000000000000000000..59a550b9e2d2c8e590e9044323e63929f504d85b --- /dev/null +++ b/rttm/few/02098.rttm @@ -0,0 +1,97 @@ +SPEAKER 02098 0 0.035000 0.960000 1 +SPEAKER 02098 0 3.726000 2.113890 1 +SPEAKER 02098 0 6.726000 3.143690 1 +SPEAKER 02098 0 15.087000 6.899000 1 +SPEAKER 02098 0 23.104380 4.673470 1 +SPEAKER 02098 0 28.485730 0.407270 1 +SPEAKER 02098 0 30.970000 0.627000 1 +SPEAKER 02098 0 32.393000 2.221590 1 +SPEAKER 02098 0 38.615360 0.722220 1 +SPEAKER 02098 0 49.986000 0.537000 1 +SPEAKER 02098 0 53.578000 10.282710 1 +SPEAKER 02098 0 65.578000 2.261080 1 +SPEAKER 02098 0 68.374620 0.425930 1 +SPEAKER 02098 0 70.109000 1.321910 1 +SPEAKER 02098 0 73.967000 0.556000 1 +SPEAKER 02098 0 81.543160 0.794840 1 +SPEAKER 02098 0 86.206420 2.459190 1 +SPEAKER 02098 0 89.135400 1.081600 1 +SPEAKER 02098 0 95.467210 0.500000 1 +SPEAKER 02098 0 99.226000 6.683000 1 +SPEAKER 02098 0 110.123000 1.289000 1 +SPEAKER 02098 0 114.541000 1.073590 1 +SPEAKER 02098 0 120.911660 0.462960 1 +SPEAKER 02098 0 123.467000 0.471000 1 +SPEAKER 02098 0 125.838000 1.185000 1 +SPEAKER 02098 0 128.154000 1.665060 1 +SPEAKER 02098 0 133.114590 0.945220 1 +SPEAKER 02098 0 134.670920 0.888890 1 +SPEAKER 02098 0 138.727000 2.887590 1 +SPEAKER 02098 0 143.450000 0.851000 1 +SPEAKER 02098 0 154.115000 1.754690 1 +SPEAKER 02098 0 160.356100 0.518900 1 +SPEAKER 02098 0 166.277850 0.633810 1 +SPEAKER 02098 0 174.633880 4.944440 1 +SPEAKER 02098 0 187.356000 1.129730 1 +SPEAKER 02098 0 189.002340 0.530610 1 +SPEAKER 02098 0 198.449000 1.253000 1 +SPEAKER 02098 0 200.467000 1.290440 1 +SPEAKER 02098 0 202.301000 11.076580 1 +SPEAKER 02098 0 215.134000 1.333000 1 +SPEAKER 02098 0 218.670920 0.574070 1 +SPEAKER 02098 0 220.819000 0.722290 1 +SPEAKER 02098 0 222.992140 1.938040 1 +SPEAKER 02098 0 229.930000 4.378460 1 +SPEAKER 02098 0 236.155000 0.553000 1 +SPEAKER 02098 0 237.282000 0.703730 1 +SPEAKER 02098 0 238.541290 1.055550 1 +SPEAKER 02098 0 239.985730 8.277780 1 +SPEAKER 02098 0 249.175810 7.367350 1 +SPEAKER 02098 0 258.134000 1.000000 1 +SPEAKER 02098 0 263.319000 0.481550 1 +SPEAKER 02098 0 272.949000 0.850060 1 +SPEAKER 02098 0 283.170920 1.586520 1 +SPEAKER 02098 0 298.819000 1.571100 1 +SPEAKER 02098 0 301.245000 1.000000 1 +SPEAKER 02098 0 304.043160 1.516840 1 +SPEAKER 02098 0 306.801000 1.584000 1 +SPEAKER 02098 0 0.004000 2.980000 0 +SPEAKER 02098 0 4.875000 3.500000 0 +SPEAKER 02098 0 9.486000 4.261240 0 +SPEAKER 02098 0 16.764000 1.156710 0 +SPEAKER 02098 0 21.986000 0.981210 0 +SPEAKER 02098 0 27.675810 4.624740 0 +SPEAKER 02098 0 34.004000 4.518750 0 +SPEAKER 02098 0 39.523000 13.826280 0 +SPEAKER 02098 0 62.763510 0.481480 0 +SPEAKER 02098 0 63.875000 1.759000 0 +SPEAKER 02098 0 66.325000 0.531000 0 +SPEAKER 02098 0 67.856000 0.544300 0 +SPEAKER 02098 0 68.992140 1.794860 0 +SPEAKER 02098 0 72.039000 14.953140 0 +SPEAKER 02098 0 88.634000 9.888770 0 +SPEAKER 02098 0 105.948690 8.722230 0 +SPEAKER 02098 0 115.808460 18.959190 0 +SPEAKER 02098 0 135.597000 3.296140 0 +SPEAKER 02098 0 141.578000 12.814000 0 +SPEAKER 02098 0 155.376000 5.248790 0 +SPEAKER 02098 0 160.986000 0.587770 0 +SPEAKER 02098 0 162.909000 11.632290 0 +SPEAKER 02098 0 179.652000 11.360550 0 +SPEAKER 02098 0 191.490000 6.869480 0 +SPEAKER 02098 0 200.708000 2.962920 0 +SPEAKER 02098 0 207.486000 0.666400 0 +SPEAKER 02098 0 211.875000 0.814440 0 +SPEAKER 02098 0 213.634000 2.685000 0 +SPEAKER 02098 0 216.838000 3.851000 0 +SPEAKER 02098 0 221.671000 1.000000 0 +SPEAKER 02098 0 226.591000 3.237870 0 +SPEAKER 02098 0 234.689000 2.593000 0 +SPEAKER 02098 0 238.096840 0.444450 0 +SPEAKER 02098 0 239.763510 0.500000 0 +SPEAKER 02098 0 256.523000 8.265060 0 +SPEAKER 02098 0 267.452000 5.448300 0 +SPEAKER 02098 0 273.837580 9.481420 0 +SPEAKER 02098 0 283.768000 14.652710 0 +SPEAKER 02098 0 299.252000 0.750340 0 +SPEAKER 02098 0 300.634000 7.741000 0 diff --git a/rttm/few/02109.rttm b/rttm/few/02109.rttm new file mode 100644 index 0000000000000000000000000000000000000000..2ce04ce34ff59f1d035bdeda6a64b126a185fb3b --- /dev/null +++ b/rttm/few/02109.rttm @@ -0,0 +1,14 @@ +SPEAKER 02109 0 0.002770 6.259260 1 +SPEAKER 02109 0 8.726470 0.797780 1 +SPEAKER 02109 0 10.438000 3.933660 1 +SPEAKER 02109 0 14.824990 1.480000 1 +SPEAKER 02109 0 19.601290 2.384440 1 +SPEAKER 02109 0 23.320550 4.827450 1 +SPEAKER 02109 0 0.000000 0.710920 0 +SPEAKER 02109 0 5.889000 4.716730 0 +SPEAKER 02109 0 11.318000 0.461060 0 +SPEAKER 02109 0 13.989000 1.922660 0 +SPEAKER 02109 0 16.193880 4.420000 0 +SPEAKER 02109 0 21.527210 2.142230 0 +SPEAKER 02109 0 24.777580 0.634080 0 +SPEAKER 02109 0 27.397000 0.760000 0 diff --git a/rttm/few/02110.rttm b/rttm/few/02110.rttm new file mode 100644 index 0000000000000000000000000000000000000000..70d892a0e7651b222b09d04fffd15ee8e068d0b4 --- /dev/null +++ b/rttm/few/02110.rttm @@ -0,0 +1,69 @@ +SPEAKER 02110 0 0.004000 0.593000 0 +SPEAKER 02110 0 1.004000 3.222000 0 +SPEAKER 02110 0 6.097000 1.444000 0 +SPEAKER 02110 0 9.264000 4.708000 0 +SPEAKER 02110 0 14.485730 1.309690 0 +SPEAKER 02110 0 16.375000 1.253750 0 +SPEAKER 02110 0 17.993000 5.823250 0 +SPEAKER 02110 0 24.092000 1.000000 0 +SPEAKER 02110 0 30.986000 4.205250 0 +SPEAKER 02110 0 43.801000 1.000000 0 +SPEAKER 02110 0 45.942000 1.507000 0 +SPEAKER 02110 0 48.671000 0.541080 0 +SPEAKER 02110 0 49.490000 3.138750 0 +SPEAKER 02110 0 52.922000 1.000000 0 +SPEAKER 02110 0 54.316000 1.604420 0 +SPEAKER 02110 0 56.374000 1.000000 0 +SPEAKER 02110 0 58.003000 1.000000 0 +SPEAKER 02110 0 59.351000 1.881920 0 +SPEAKER 02110 0 61.536000 3.863580 0 +SPEAKER 02110 0 66.341000 1.850250 0 +SPEAKER 02110 0 68.574000 1.000000 0 +SPEAKER 02110 0 70.020000 1.942080 0 +SPEAKER 02110 0 72.264000 3.593920 0 +SPEAKER 02110 0 4.189000 1.814750 3 +SPEAKER 02110 0 12.078000 0.904920 3 +SPEAKER 02110 0 13.294000 1.000000 3 +SPEAKER 02110 0 23.801000 2.111000 3 +SPEAKER 02110 0 37.875000 0.685000 3 +SPEAKER 02110 0 41.208000 1.922000 3 +SPEAKER 02110 0 43.546000 2.624420 3 +SPEAKER 02110 0 46.516000 2.071080 3 +SPEAKER 02110 0 48.906000 0.535000 3 +SPEAKER 02110 0 56.379000 1.000000 3 +SPEAKER 02110 0 57.944000 1.000000 3 +SPEAKER 02110 0 59.387000 1.866750 3 +SPEAKER 02110 0 61.581000 4.340000 3 +SPEAKER 02110 0 66.311000 1.859420 3 +SPEAKER 02110 0 68.563000 1.000000 3 +SPEAKER 02110 0 70.005000 1.915420 3 +SPEAKER 02110 0 72.257000 3.580080 3 +SPEAKER 02110 0 8.004000 1.260000 2 +SPEAKER 02110 0 10.726000 0.741210 2 +SPEAKER 02110 0 15.689000 0.667000 2 +SPEAKER 02110 0 31.134000 0.981000 2 +SPEAKER 02110 0 36.226470 0.925530 2 +SPEAKER 02110 0 39.541000 1.445000 2 +SPEAKER 02110 0 43.801000 0.740000 2 +SPEAKER 02110 0 56.420000 1.000000 2 +SPEAKER 02110 0 57.945000 1.000000 2 +SPEAKER 02110 0 59.358000 1.916580 2 +SPEAKER 02110 0 61.591000 3.725250 2 +SPEAKER 02110 0 66.379000 1.770580 2 +SPEAKER 02110 0 68.587000 1.000000 2 +SPEAKER 02110 0 70.045000 1.917080 2 +SPEAKER 02110 0 72.337000 3.541750 2 +SPEAKER 02110 0 25.578000 0.613250 1 +SPEAKER 02110 0 26.519000 1.859750 1 +SPEAKER 02110 0 28.745000 3.393000 1 +SPEAKER 02110 0 37.152000 0.414250 1 +SPEAKER 02110 0 37.901000 0.853000 1 +SPEAKER 02110 0 39.153000 1.896000 1 +SPEAKER 02110 0 46.052000 1.082000 1 +SPEAKER 02110 0 48.671000 0.741000 1 +SPEAKER 02110 0 53.103000 0.716000 1 +SPEAKER 02110 0 56.400000 1.000000 1 +SPEAKER 02110 0 57.962000 1.000000 1 +SPEAKER 02110 0 59.374620 1.899960 1 +SPEAKER 02110 0 62.535000 2.718750 1 +SPEAKER 02110 0 72.252000 3.605920 1 diff --git a/rttm/few/02123.rttm b/rttm/few/02123.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ec661374baa28c807b03be5d43890565cd9abe4c --- /dev/null +++ b/rttm/few/02123.rttm @@ -0,0 +1,11 @@ +SPEAKER 02123 0 0.000000 3.838000 1 +SPEAKER 02123 0 6.319000 1.370000 1 +SPEAKER 02123 0 8.467000 1.000000 1 +SPEAKER 02123 0 10.356000 3.111000 1 +SPEAKER 02123 0 13.930000 0.667000 1 +SPEAKER 02123 0 2.189000 1.389000 0 +SPEAKER 02123 0 4.134000 2.203080 0 +SPEAKER 02123 0 7.041000 3.685000 0 +SPEAKER 02123 0 13.671000 0.389000 0 +SPEAKER 02123 0 14.578000 4.000320 0 +SPEAKER 02123 0 18.957000 6.158360 0 diff --git a/rttm/few/02127.rttm b/rttm/few/02127.rttm new file mode 100644 index 0000000000000000000000000000000000000000..b062c3cd68020aabe430b7dffb9f82685e1e437f --- /dev/null +++ b/rttm/few/02127.rttm @@ -0,0 +1,21 @@ +SPEAKER 02127 0 0.023000 1.518000 0 +SPEAKER 02127 0 1.838000 1.333000 0 +SPEAKER 02127 0 5.745000 0.704000 0 +SPEAKER 02127 0 7.245000 0.370000 0 +SPEAKER 02127 0 7.986000 3.703000 0 +SPEAKER 02127 0 11.986000 4.481000 0 +SPEAKER 02127 0 17.023000 2.333000 0 +SPEAKER 02127 0 19.652000 5.056000 0 +SPEAKER 02127 0 25.708000 3.074000 0 +SPEAKER 02127 0 29.078000 2.223000 0 +SPEAKER 02127 0 4.114000 1.261000 1 +SPEAKER 02127 0 6.449000 1.537000 1 +SPEAKER 02127 0 8.931000 0.592000 1 +SPEAKER 02127 0 11.689000 0.334000 1 +SPEAKER 02127 0 16.411660 0.722220 1 +SPEAKER 02127 0 18.056000 0.467000 1 +SPEAKER 02127 0 19.264000 0.407000 1 +SPEAKER 02127 0 23.597000 0.407000 1 +SPEAKER 02127 0 24.682000 0.841000 1 +SPEAKER 02127 0 27.560000 1.206320 1 +SPEAKER 02127 0 29.078000 2.204000 1 diff --git a/rttm/few/02135.rttm b/rttm/few/02135.rttm new file mode 100644 index 0000000000000000000000000000000000000000..35b308aeed67bb3dc3da32538e5fa0a4cd34636b --- /dev/null +++ b/rttm/few/02135.rttm @@ -0,0 +1,20 @@ +SPEAKER 02135 0 0.106000 3.745000 1 +SPEAKER 02135 0 5.065000 4.318000 1 +SPEAKER 02135 0 11.502000 19.870000 1 +SPEAKER 02135 0 33.670920 0.462960 1 +SPEAKER 02135 0 34.866000 1.156770 1 +SPEAKER 02135 0 38.772000 4.010030 1 +SPEAKER 02135 0 43.426000 1.584000 1 +SPEAKER 02135 0 54.204000 0.520000 1 +SPEAKER 02135 0 55.891000 0.785000 1 +SPEAKER 02135 0 58.708000 0.963000 1 +SPEAKER 02135 0 64.351000 0.500000 1 +SPEAKER 02135 0 4.057000 0.770000 0 +SPEAKER 02135 0 6.169000 0.563000 0 +SPEAKER 02135 0 8.252000 0.972000 0 +SPEAKER 02135 0 10.311000 1.080000 0 +SPEAKER 02135 0 31.454000 3.397000 0 +SPEAKER 02135 0 36.518000 2.171440 0 +SPEAKER 02135 0 43.948690 11.545310 0 +SPEAKER 02135 0 56.066000 2.492000 0 +SPEAKER 02135 0 59.774000 8.363000 0 diff --git a/rttm/few/02138.rttm b/rttm/few/02138.rttm new file mode 100644 index 0000000000000000000000000000000000000000..0bfcfdab1dd567c6873e3fb1767f02ac672ae877 --- /dev/null +++ b/rttm/few/02138.rttm @@ -0,0 +1,278 @@ +SPEAKER 02138 0 0.171000 1.654000 1 +SPEAKER 02138 0 4.617000 6.561780 1 +SPEAKER 02138 0 21.946000 0.945000 1 +SPEAKER 02138 0 23.446000 2.103000 1 +SPEAKER 02138 0 25.827000 0.365290 1 +SPEAKER 02138 0 26.786890 13.756750 1 +SPEAKER 02138 0 40.811000 2.135000 1 +SPEAKER 02138 0 43.232000 5.706000 1 +SPEAKER 02138 0 58.371000 0.485100 1 +SPEAKER 02138 0 64.398000 0.712000 1 +SPEAKER 02138 0 66.489000 0.500000 1 +SPEAKER 02138 0 70.608000 1.337000 1 +SPEAKER 02138 0 82.322000 0.754000 1 +SPEAKER 02138 0 90.777000 12.864000 1 +SPEAKER 02138 0 104.026000 5.525000 1 +SPEAKER 02138 0 110.124720 6.324330 1 +SPEAKER 02138 0 117.018000 3.971590 1 +SPEAKER 02138 0 125.693000 0.678000 1 +SPEAKER 02138 0 129.110000 0.849000 1 +SPEAKER 02138 0 130.297000 0.429470 1 +SPEAKER 02138 0 142.436000 11.992000 1 +SPEAKER 02138 0 154.842000 1.217000 1 +SPEAKER 02138 0 156.387000 0.344000 1 +SPEAKER 02138 0 173.282030 0.432970 1 +SPEAKER 02138 0 174.051000 0.459000 1 +SPEAKER 02138 0 175.633000 7.606000 1 +SPEAKER 02138 0 183.651000 0.798000 1 +SPEAKER 02138 0 185.027000 8.405000 1 +SPEAKER 02138 0 193.756000 0.500000 1 +SPEAKER 02138 0 194.695000 0.351000 1 +SPEAKER 02138 0 201.344000 0.719000 1 +SPEAKER 02138 0 202.993000 4.360000 1 +SPEAKER 02138 0 207.660000 8.710000 1 +SPEAKER 02138 0 216.949000 11.013560 1 +SPEAKER 02138 0 239.731000 0.434260 1 +SPEAKER 02138 0 242.045000 0.366660 1 +SPEAKER 02138 0 252.046000 0.807000 1 +SPEAKER 02138 0 261.449000 0.299000 1 +SPEAKER 02138 0 267.528000 6.272000 1 +SPEAKER 02138 0 274.243000 9.434000 1 +SPEAKER 02138 0 284.252000 0.873000 1 +SPEAKER 02138 0 285.642000 10.035000 1 +SPEAKER 02138 0 295.993000 6.316000 1 +SPEAKER 02138 0 302.677000 0.588000 1 +SPEAKER 02138 0 313.081000 0.316000 1 +SPEAKER 02138 0 318.239000 0.508000 1 +SPEAKER 02138 0 323.397000 0.649000 1 +SPEAKER 02138 0 329.090000 0.421000 1 +SPEAKER 02138 0 330.169000 1.000000 1 +SPEAKER 02138 0 340.080000 0.413000 1 +SPEAKER 02138 0 343.374000 0.500620 1 +SPEAKER 02138 0 344.748000 0.324000 1 +SPEAKER 02138 0 356.020000 0.535000 1 +SPEAKER 02138 0 365.037000 8.282060 1 +SPEAKER 02138 0 373.778000 5.485510 1 +SPEAKER 02138 0 379.756000 0.421000 1 +SPEAKER 02138 0 384.239000 0.723560 1 +SPEAKER 02138 0 387.590000 0.289000 1 +SPEAKER 02138 0 401.546000 0.767910 1 +SPEAKER 02138 0 407.941000 0.508050 1 +SPEAKER 02138 0 410.669000 0.446000 1 +SPEAKER 02138 0 417.449000 0.540590 1 +SPEAKER 02138 0 420.877000 0.502000 1 +SPEAKER 02138 0 423.165260 11.643740 1 +SPEAKER 02138 0 435.344000 14.456000 1 +SPEAKER 02138 0 450.134000 2.684000 1 +SPEAKER 02138 0 453.204000 7.605000 1 +SPEAKER 02138 0 464.669000 15.175000 1 +SPEAKER 02138 0 483.713000 0.958000 1 +SPEAKER 02138 0 488.791000 0.465000 1 +SPEAKER 02138 0 490.379000 3.643770 1 +SPEAKER 02138 0 494.599000 0.398000 1 +SPEAKER 02138 0 498.291000 0.562000 1 +SPEAKER 02138 0 499.625000 0.351000 1 +SPEAKER 02138 0 500.353000 0.658000 1 +SPEAKER 02138 0 502.897000 0.403000 1 +SPEAKER 02138 0 508.160000 0.421000 1 +SPEAKER 02138 0 518.844000 5.693000 1 +SPEAKER 02138 0 524.791000 4.139180 1 +SPEAKER 02138 0 530.730000 0.421000 1 +SPEAKER 02138 0 535.607000 0.443000 1 +SPEAKER 02138 0 537.555000 1.745550 1 +SPEAKER 02138 0 541.666000 11.257000 1 +SPEAKER 02138 0 553.827000 0.587000 1 +SPEAKER 02138 0 571.853000 0.368000 1 +SPEAKER 02138 0 576.397000 1.745000 1 +SPEAKER 02138 0 585.178780 23.244220 1 +SPEAKER 02138 0 608.853000 6.920370 1 +SPEAKER 02138 0 623.748000 0.315000 1 +SPEAKER 02138 0 633.063000 8.518000 1 +SPEAKER 02138 0 642.241000 0.551000 1 +SPEAKER 02138 0 654.458000 0.719000 1 +SPEAKER 02138 0 659.756000 0.439000 1 +SPEAKER 02138 0 661.148000 0.917000 1 +SPEAKER 02138 0 675.063000 0.343000 1 +SPEAKER 02138 0 676.448000 6.791000 1 +SPEAKER 02138 0 683.923000 3.512530 1 +SPEAKER 02138 0 695.313910 0.732090 1 +SPEAKER 02138 0 696.827000 10.054480 1 +SPEAKER 02138 0 708.791000 5.512000 1 +SPEAKER 02138 0 715.658000 7.222000 1 +SPEAKER 02138 0 723.206000 0.344000 1 +SPEAKER 02138 0 724.928000 0.516000 1 +SPEAKER 02138 0 734.725000 0.800000 1 +SPEAKER 02138 0 735.825000 0.633000 1 +SPEAKER 02138 0 738.778000 0.458000 1 +SPEAKER 02138 0 747.836000 0.422000 1 +SPEAKER 02138 0 752.108000 3.327530 1 +SPEAKER 02138 0 763.113000 2.076000 1 +SPEAKER 02138 0 765.927000 10.598000 1 +SPEAKER 02138 0 777.047000 1.856000 1 +SPEAKER 02138 0 785.126000 0.454000 1 +SPEAKER 02138 0 787.080000 0.423000 1 +SPEAKER 02138 0 794.191000 4.690480 1 +SPEAKER 02138 0 807.444000 0.969000 1 +SPEAKER 02138 0 809.178000 0.658000 1 +SPEAKER 02138 0 814.115000 6.032000 1 +SPEAKER 02138 0 821.358000 0.967000 1 +SPEAKER 02138 0 825.736000 2.202000 1 +SPEAKER 02138 0 832.036000 0.480610 1 +SPEAKER 02138 0 834.836000 2.655000 1 +SPEAKER 02138 0 838.136000 10.955000 1 +SPEAKER 02138 0 852.725000 11.365670 1 +SPEAKER 02138 0 864.703000 0.377000 1 +SPEAKER 02138 0 872.614000 15.211000 1 +SPEAKER 02138 0 888.191000 1.678000 1 +SPEAKER 02138 0 890.347000 1.156000 1 +SPEAKER 02138 0 904.980000 5.723000 1 +SPEAKER 02138 0 911.047000 5.944000 1 +SPEAKER 02138 0 918.225000 0.411000 1 +SPEAKER 02138 0 926.705800 0.452200 1 +SPEAKER 02138 0 928.403000 0.411000 1 +SPEAKER 02138 0 930.036000 12.833000 1 +SPEAKER 02138 0 943.714000 1.816130 1 +SPEAKER 02138 0 950.806000 0.486000 1 +SPEAKER 02138 0 956.058000 1.983290 1 +SPEAKER 02138 0 966.869000 32.764880 1 +SPEAKER 02138 0 999.948690 3.742310 1 +SPEAKER 02138 0 1007.367970 0.970030 1 +SPEAKER 02138 0 1010.625000 4.459180 1 +SPEAKER 02138 0 1017.114000 0.355000 1 +SPEAKER 02138 0 2.240000 2.108000 0 +SPEAKER 02138 0 6.827430 0.337830 0 +SPEAKER 02138 0 11.886000 9.981000 0 +SPEAKER 02138 0 22.356100 0.804900 0 +SPEAKER 02138 0 32.359000 0.348950 0 +SPEAKER 02138 0 39.987000 0.499000 0 +SPEAKER 02138 0 47.847000 0.726000 0 +SPEAKER 02138 0 48.962560 2.678440 0 +SPEAKER 02138 0 52.100000 18.148000 0 +SPEAKER 02138 0 70.567000 0.381690 0 +SPEAKER 02138 0 71.445000 2.213000 0 +SPEAKER 02138 0 73.953000 7.975000 0 +SPEAKER 02138 0 82.256000 5.410000 0 +SPEAKER 02138 0 87.989590 2.340410 0 +SPEAKER 02138 0 96.158000 0.311000 0 +SPEAKER 02138 0 113.518000 0.295000 0 +SPEAKER 02138 0 121.550000 0.409000 0 +SPEAKER 02138 0 123.182000 6.623000 0 +SPEAKER 02138 0 130.412000 6.492000 0 +SPEAKER 02138 0 137.215000 5.008000 0 +SPEAKER 02138 0 155.413000 6.654000 0 +SPEAKER 02138 0 162.354000 1.649100 0 +SPEAKER 02138 0 164.273370 2.015630 0 +SPEAKER 02138 0 166.854000 8.550000 0 +SPEAKER 02138 0 177.912000 0.537000 0 +SPEAKER 02138 0 183.256000 1.781000 0 +SPEAKER 02138 0 194.204000 1.473000 0 +SPEAKER 02138 0 196.107000 2.149000 0 +SPEAKER 02138 0 198.581000 2.579000 0 +SPEAKER 02138 0 201.581000 1.403000 0 +SPEAKER 02138 0 216.879000 0.553000 0 +SPEAKER 02138 0 225.077000 0.337000 0 +SPEAKER 02138 0 228.186000 2.237000 0 +SPEAKER 02138 0 231.028000 12.571000 0 +SPEAKER 02138 0 244.046000 7.798000 0 +SPEAKER 02138 0 252.230000 4.447000 0 +SPEAKER 02138 0 257.028000 7.860000 0 +SPEAKER 02138 0 265.230000 1.840670 0 +SPEAKER 02138 0 273.967000 0.377000 0 +SPEAKER 02138 0 284.125000 0.272000 0 +SPEAKER 02138 0 291.835000 0.342000 0 +SPEAKER 02138 0 302.476000 0.658000 0 +SPEAKER 02138 0 303.476000 9.228000 0 +SPEAKER 02138 0 313.169000 5.465000 0 +SPEAKER 02138 0 319.107000 6.500000 0 +SPEAKER 02138 0 326.125000 8.945670 0 +SPEAKER 02138 0 335.484000 7.351000 0 +SPEAKER 02138 0 343.353000 0.789000 0 +SPEAKER 02138 0 344.625000 11.079000 0 +SPEAKER 02138 0 356.099000 7.831180 0 +SPEAKER 02138 0 364.312000 1.000000 0 +SPEAKER 02138 0 373.932000 0.289000 0 +SPEAKER 02138 0 378.309000 5.842000 0 +SPEAKER 02138 0 384.406000 27.456000 0 +SPEAKER 02138 0 412.423000 5.447000 0 +SPEAKER 02138 0 418.232830 4.918920 0 +SPEAKER 02138 0 427.318000 0.426990 0 +SPEAKER 02138 0 431.036000 0.320100 0 +SPEAKER 02138 0 433.563000 2.381000 0 +SPEAKER 02138 0 443.651000 0.307000 0 +SPEAKER 02138 0 444.792000 0.738130 0 +SPEAKER 02138 0 460.555000 3.867020 0 +SPEAKER 02138 0 472.765000 0.369000 0 +SPEAKER 02138 0 475.989000 0.364000 0 +SPEAKER 02138 0 479.967000 3.921000 0 +SPEAKER 02138 0 484.256000 4.088000 0 +SPEAKER 02138 0 489.134000 0.921000 0 +SPEAKER 02138 0 495.011000 4.359000 0 +SPEAKER 02138 0 500.599000 2.052000 0 +SPEAKER 02138 0 503.037000 0.412000 0 +SPEAKER 02138 0 504.002000 3.939000 0 +SPEAKER 02138 0 508.248000 3.763000 0 +SPEAKER 02138 0 512.423000 5.816000 0 +SPEAKER 02138 0 524.893000 0.408000 0 +SPEAKER 02138 0 528.195000 0.956000 0 +SPEAKER 02138 0 530.773000 3.071000 0 +SPEAKER 02138 0 534.748000 1.922920 0 +SPEAKER 02138 0 536.993000 4.342000 0 +SPEAKER 02138 0 549.134000 0.537000 0 +SPEAKER 02138 0 553.704000 17.001800 0 +SPEAKER 02138 0 571.063000 0.430000 0 +SPEAKER 02138 0 571.853000 3.163610 0 +SPEAKER 02138 0 576.484000 8.140720 0 +SPEAKER 02138 0 594.107000 0.377000 0 +SPEAKER 02138 0 614.204000 4.298000 0 +SPEAKER 02138 0 619.388000 4.754000 0 +SPEAKER 02138 0 624.502000 8.912000 0 +SPEAKER 02138 0 636.746000 0.652000 0 +SPEAKER 02138 0 641.125000 2.899000 0 +SPEAKER 02138 0 644.300000 19.904000 0 +SPEAKER 02138 0 664.581000 8.228000 0 +SPEAKER 02138 0 673.186000 2.790070 0 +SPEAKER 02138 0 676.310000 0.543000 0 +SPEAKER 02138 0 683.239000 0.430000 0 +SPEAKER 02138 0 684.535000 0.712000 0 +SPEAKER 02138 0 688.081000 7.009000 0 +SPEAKER 02138 0 697.353000 0.530000 0 +SPEAKER 02138 0 700.625000 1.544000 0 +SPEAKER 02138 0 706.847000 1.700000 0 +SPEAKER 02138 0 714.813910 0.581080 0 +SPEAKER 02138 0 723.566000 1.203000 0 +SPEAKER 02138 0 725.114000 0.489000 0 +SPEAKER 02138 0 725.869000 9.256000 0 +SPEAKER 02138 0 735.780000 10.209590 0 +SPEAKER 02138 0 746.280000 5.567000 0 +SPEAKER 02138 0 755.851000 1.996000 0 +SPEAKER 02138 0 758.180000 4.534000 0 +SPEAKER 02138 0 764.756000 0.702000 0 +SPEAKER 02138 0 774.391000 0.312000 0 +SPEAKER 02138 0 777.536000 10.355000 0 +SPEAKER 02138 0 788.747000 5.122000 0 +SPEAKER 02138 0 799.614000 4.366000 0 +SPEAKER 02138 0 804.714000 4.277000 0 +SPEAKER 02138 0 810.569000 2.811000 0 +SPEAKER 02138 0 821.125000 0.485000 0 +SPEAKER 02138 0 822.169000 3.534000 0 +SPEAKER 02138 0 827.858000 6.901860 0 +SPEAKER 02138 0 849.391000 3.156000 0 +SPEAKER 02138 0 859.069000 1.089000 0 +SPEAKER 02138 0 864.025000 8.545670 0 +SPEAKER 02138 0 885.069000 0.645000 0 +SPEAKER 02138 0 888.245000 2.044000 0 +SPEAKER 02138 0 891.171000 1.000000 0 +SPEAKER 02138 0 892.504250 3.866750 0 +SPEAKER 02138 0 896.773370 0.484630 0 +SPEAKER 02138 0 897.603000 7.386590 0 +SPEAKER 02138 0 917.414000 6.744000 0 +SPEAKER 02138 0 924.597700 3.593300 0 +SPEAKER 02138 0 928.503000 2.888000 0 +SPEAKER 02138 0 936.003000 1.121720 0 +SPEAKER 02138 0 943.783000 1.850880 0 +SPEAKER 02138 0 946.115360 20.364640 0 +SPEAKER 02138 0 985.519000 0.428000 0 +SPEAKER 02138 0 990.570670 1.283780 0 +SPEAKER 02138 0 998.191000 1.500000 0 +SPEAKER 02138 0 1003.747000 6.533000 0 +SPEAKER 02138 0 1015.259860 1.487140 0 diff --git a/rttm/few/02147.rttm b/rttm/few/02147.rttm new file mode 100644 index 0000000000000000000000000000000000000000..45eab965834330eddb7f45f8e809b6e79c3519c3 --- /dev/null +++ b/rttm/few/02147.rttm @@ -0,0 +1,27 @@ +SPEAKER 02147 0 0.004000 1.186840 2 +SPEAKER 02147 0 5.319000 7.777840 2 +SPEAKER 02147 0 15.819000 6.611180 2 +SPEAKER 02147 0 22.911660 23.629630 2 +SPEAKER 02147 0 49.004000 8.759510 2 +SPEAKER 02147 0 60.995000 8.247040 2 +SPEAKER 02147 0 70.541000 0.760000 2 +SPEAKER 02147 0 72.389100 1.911770 2 +SPEAKER 02147 0 75.449000 1.018000 2 +SPEAKER 02147 0 78.138000 0.574630 2 +SPEAKER 02147 0 1.282000 1.439410 0 +SPEAKER 02147 0 10.634000 2.542000 0 +SPEAKER 02147 0 19.239000 0.418160 0 +SPEAKER 02147 0 27.273000 0.486860 0 +SPEAKER 02147 0 36.652000 0.500000 0 +SPEAKER 02147 0 46.170920 1.312330 0 +SPEAKER 02147 0 47.962000 1.561250 0 +SPEAKER 02147 0 57.743560 3.274440 0 +SPEAKER 02147 0 76.712630 1.653370 0 +SPEAKER 02147 0 2.449000 3.536000 1 +SPEAKER 02147 0 12.605940 2.443390 1 +SPEAKER 02147 0 16.448690 0.407410 1 +SPEAKER 02147 0 29.354450 1.418920 1 +SPEAKER 02147 0 31.430180 0.777770 1 +SPEAKER 02147 0 66.071000 1.022810 1 +SPEAKER 02147 0 69.378000 3.128750 1 +SPEAKER 02147 0 74.338000 1.185000 1 diff --git a/rttm/few/02150.rttm b/rttm/few/02150.rttm new file mode 100644 index 0000000000000000000000000000000000000000..0c2bfb98e35f635a90bfc098c2277e90d6aaafd2 --- /dev/null +++ b/rttm/few/02150.rttm @@ -0,0 +1,15 @@ +SPEAKER 02150 0 0.152000 0.630030 1 +SPEAKER 02150 0 2.218000 2.191650 1 +SPEAKER 02150 0 14.782000 1.000000 1 +SPEAKER 02150 0 18.002670 1.158330 1 +SPEAKER 02150 0 27.412000 0.520900 1 +SPEAKER 02150 0 29.041290 2.277770 1 +SPEAKER 02150 0 0.764000 2.099130 0 +SPEAKER 02150 0 5.561000 1.371900 0 +SPEAKER 02150 0 7.852000 2.243690 0 +SPEAKER 02150 0 10.654000 2.964950 0 +SPEAKER 02150 0 14.142000 1.697880 0 +SPEAKER 02150 0 16.356000 1.648000 0 +SPEAKER 02150 0 19.502670 0.558140 0 +SPEAKER 02150 0 21.546000 6.810000 0 +SPEAKER 02150 0 31.785000 10.423000 0 diff --git a/rttm/few/02153.rttm b/rttm/few/02153.rttm new file mode 100644 index 0000000000000000000000000000000000000000..a8ded288c21c48fba85bdacb8d0168e6804586eb --- /dev/null +++ b/rttm/few/02153.rttm @@ -0,0 +1,82 @@ +SPEAKER 02153 0 0.732530 1.771470 2 +SPEAKER 02153 0 2.777000 3.801000 2 +SPEAKER 02153 0 8.967000 1.537000 2 +SPEAKER 02153 0 12.560000 1.944000 2 +SPEAKER 02153 0 15.819000 1.648000 2 +SPEAKER 02153 0 19.449000 1.000000 2 +SPEAKER 02153 0 21.194070 1.087930 2 +SPEAKER 02153 0 26.856000 0.852000 2 +SPEAKER 02153 0 38.430000 0.945000 2 +SPEAKER 02153 0 44.470000 1.000000 2 +SPEAKER 02153 0 50.301000 1.703000 2 +SPEAKER 02153 0 52.615000 8.408000 2 +SPEAKER 02153 0 82.078000 3.593000 2 +SPEAKER 02153 0 90.375000 0.842150 2 +SPEAKER 02153 0 91.893000 8.611000 2 +SPEAKER 02153 0 109.051000 0.611000 2 +SPEAKER 02153 0 112.782000 1.000000 2 +SPEAKER 02153 0 115.838000 0.722000 2 +SPEAKER 02153 0 117.060000 2.426000 2 +SPEAKER 02153 0 129.449000 0.833000 2 +SPEAKER 02153 0 136.819000 0.574140 2 +SPEAKER 02153 0 139.301000 1.259000 2 +SPEAKER 02153 0 145.948000 0.464000 2 +SPEAKER 02153 0 148.004000 2.167000 2 +SPEAKER 02153 0 155.819000 1.870000 2 +SPEAKER 02153 0 6.560000 3.370000 0 +SPEAKER 02153 0 13.634000 2.152380 0 +SPEAKER 02153 0 18.986000 2.574000 0 +SPEAKER 02153 0 25.134000 1.000000 0 +SPEAKER 02153 0 30.578000 2.056000 0 +SPEAKER 02153 0 34.264000 4.332840 0 +SPEAKER 02153 0 39.949000 1.889000 0 +SPEAKER 02153 0 65.983000 2.484000 0 +SPEAKER 02153 0 70.597000 3.944290 0 +SPEAKER 02153 0 76.134000 2.759000 0 +SPEAKER 02153 0 79.245000 2.111000 0 +SPEAKER 02153 0 85.375000 2.018000 0 +SPEAKER 02153 0 89.115000 1.037400 0 +SPEAKER 02153 0 104.264000 3.222000 0 +SPEAKER 02153 0 109.301000 3.593070 0 +SPEAKER 02153 0 114.059000 2.242000 0 +SPEAKER 02153 0 117.764000 2.722000 0 +SPEAKER 02153 0 120.967000 12.981690 0 +SPEAKER 02153 0 134.340230 2.034770 0 +SPEAKER 02153 0 141.688000 1.279000 0 +SPEAKER 02153 0 147.041000 1.834000 0 +SPEAKER 02153 0 150.764000 5.480990 0 +SPEAKER 02153 0 157.541000 3.834000 0 +SPEAKER 02153 0 0.013000 0.704150 3 +SPEAKER 02153 0 2.777000 3.801320 3 +SPEAKER 02153 0 9.430000 3.259000 3 +SPEAKER 02153 0 15.412000 3.574000 3 +SPEAKER 02153 0 21.189000 1.000000 3 +SPEAKER 02153 0 23.744990 0.852010 3 +SPEAKER 02153 0 26.115000 1.000000 3 +SPEAKER 02153 0 27.782000 2.796000 3 +SPEAKER 02153 0 31.856000 0.833000 3 +SPEAKER 02153 0 33.041000 2.500000 3 +SPEAKER 02153 0 38.686000 1.652000 3 +SPEAKER 02153 0 41.708000 6.648000 3 +SPEAKER 02153 0 48.615000 1.686000 3 +SPEAKER 02153 0 61.838000 1.000000 3 +SPEAKER 02153 0 68.467000 0.797000 3 +SPEAKER 02153 0 69.967000 0.945000 3 +SPEAKER 02153 0 74.189000 1.889000 3 +SPEAKER 02153 0 78.931000 0.817000 3 +SPEAKER 02153 0 80.338000 0.944000 3 +SPEAKER 02153 0 82.708000 0.416840 3 +SPEAKER 02153 0 87.208000 0.667000 3 +SPEAKER 02153 0 88.239000 1.000000 3 +SPEAKER 02153 0 100.504000 2.222000 3 +SPEAKER 02153 0 103.430000 0.871000 3 +SPEAKER 02153 0 107.486000 1.499730 3 +SPEAKER 02153 0 124.726000 1.000000 3 +SPEAKER 02153 0 133.838000 0.611000 3 +SPEAKER 02153 0 135.308000 0.678000 3 +SPEAKER 02153 0 144.134000 1.759000 3 +SPEAKER 02153 0 147.004000 0.408000 3 +SPEAKER 02153 0 149.060000 0.981000 3 +SPEAKER 02153 0 10.117150 0.979850 h0 +SPEAKER 02153 0 44.782000 1.000000 h0 +SPEAKER 02153 0 64.189440 1.055560 h0 diff --git a/rttm/few/02160.rttm b/rttm/few/02160.rttm new file mode 100644 index 0000000000000000000000000000000000000000..5f007bfcac099aefb9d4552e36fbaf541a913236 --- /dev/null +++ b/rttm/few/02160.rttm @@ -0,0 +1,43 @@ +SPEAKER 02160 0 0.000000 1.700550 0 +SPEAKER 02160 0 3.812000 4.044100 0 +SPEAKER 02160 0 8.203000 1.356810 0 +SPEAKER 02160 0 9.941000 2.507690 0 +SPEAKER 02160 0 15.708000 0.666620 0 +SPEAKER 02160 0 17.081000 0.423000 0 +SPEAKER 02160 0 25.171000 4.418000 0 +SPEAKER 02160 0 31.060000 0.462770 0 +SPEAKER 02160 0 32.448690 0.666670 0 +SPEAKER 02160 0 34.226470 10.444530 0 +SPEAKER 02160 0 57.767000 6.086140 0 +SPEAKER 02160 0 65.782000 0.703730 0 +SPEAKER 02160 0 70.393140 0.592590 0 +SPEAKER 02160 0 71.420000 1.677000 0 +SPEAKER 02160 0 74.114620 5.012590 0 +SPEAKER 02160 0 79.744990 8.240740 0 +SPEAKER 02160 0 91.633880 0.425930 0 +SPEAKER 02160 0 99.504250 1.314810 0 +SPEAKER 02160 0 108.912000 0.592250 0 +SPEAKER 02160 0 110.911660 0.555340 0 +SPEAKER 02160 0 121.096840 20.277780 0 +SPEAKER 02160 0 146.967000 4.722440 0 +SPEAKER 02160 0 155.652400 0.986600 0 +SPEAKER 02160 0 0.893140 2.890860 1 +SPEAKER 02160 0 7.377580 1.089420 1 +SPEAKER 02160 0 12.492400 2.197040 1 +SPEAKER 02160 0 15.004250 10.185190 1 +SPEAKER 02160 0 29.541290 4.648150 1 +SPEAKER 02160 0 44.652000 13.056000 1 +SPEAKER 02160 0 63.875000 11.111000 1 +SPEAKER 02160 0 78.840000 0.904990 1 +SPEAKER 02160 0 85.502000 0.410000 1 +SPEAKER 02160 0 86.948000 4.648840 1 +SPEAKER 02160 0 92.090180 7.932590 1 +SPEAKER 02160 0 100.282030 10.611110 1 +SPEAKER 02160 0 111.653000 0.351250 1 +SPEAKER 02160 0 112.374620 0.759260 1 +SPEAKER 02160 0 113.763510 7.296300 1 +SPEAKER 02160 0 127.689440 0.370370 1 +SPEAKER 02160 0 130.670920 0.500000 1 +SPEAKER 02160 0 132.078320 0.444450 1 +SPEAKER 02160 0 141.511000 5.474730 1 +SPEAKER 02160 0 151.705000 3.928880 1 diff --git a/rttm/few/02161.rttm b/rttm/few/02161.rttm new file mode 100644 index 0000000000000000000000000000000000000000..0a7f7b367bd70f81e343cfee70207d3f7c7ef05e --- /dev/null +++ b/rttm/few/02161.rttm @@ -0,0 +1,7 @@ +SPEAKER 02161 0 1.652000 1.797000 1 +SPEAKER 02161 0 24.578000 0.963000 1 +SPEAKER 02161 0 31.709000 1.000000 1 +SPEAKER 02161 0 1.504000 0.794260 0 +SPEAKER 02161 0 3.282000 10.527340 0 +SPEAKER 02161 0 14.308000 17.370900 0 +SPEAKER 02161 0 32.782000 11.995850 0 diff --git a/rttm/few/02169.rttm b/rttm/few/02169.rttm new file mode 100644 index 0000000000000000000000000000000000000000..938c8b3b2ef5d061a46706f7cf6cfd3d0c6348ff --- /dev/null +++ b/rttm/few/02169.rttm @@ -0,0 +1,6 @@ +SPEAKER 02169 0 0.173000 4.318000 1 +SPEAKER 02169 0 10.268000 1.071000 1 +SPEAKER 02169 0 15.817000 4.238000 1 +SPEAKER 02169 0 4.930000 0.929000 0 +SPEAKER 02169 0 6.370000 3.163780 0 +SPEAKER 02169 0 11.281660 2.567340 0 diff --git a/rttm/few/02176.rttm b/rttm/few/02176.rttm new file mode 100644 index 0000000000000000000000000000000000000000..5556380812c0c477964787f6d431b30c3239fdf7 --- /dev/null +++ b/rttm/few/02176.rttm @@ -0,0 +1,32 @@ +SPEAKER 02176 0 0.014000 0.258170 0 +SPEAKER 02176 0 0.726000 1.100000 0 +SPEAKER 02176 0 2.122000 5.137350 0 +SPEAKER 02176 0 7.890000 0.325000 0 +SPEAKER 02176 0 9.059000 1.721330 0 +SPEAKER 02176 0 11.147000 1.944440 0 +SPEAKER 02176 0 15.880330 0.611110 0 +SPEAKER 02176 0 16.915000 1.071000 0 +SPEAKER 02176 0 20.300550 0.462960 0 +SPEAKER 02176 0 25.091000 0.378220 0 +SPEAKER 02176 0 25.835000 2.667550 0 +SPEAKER 02176 0 28.930180 0.388880 0 +SPEAKER 02176 0 30.041290 0.444440 0 +SPEAKER 02176 0 30.800000 1.352000 0 +SPEAKER 02176 0 36.845000 1.157550 0 +SPEAKER 02176 0 38.854000 0.992990 0 +SPEAKER 02176 0 7.395000 0.479620 3 +SPEAKER 02176 0 8.460900 0.617100 3 +SPEAKER 02176 0 19.346990 0.433340 3 +SPEAKER 02176 0 21.338000 1.475660 3 +SPEAKER 02176 0 28.766000 1.979000 3 +SPEAKER 02176 0 35.766000 1.831000 3 +SPEAKER 02176 0 3.115000 1.400760 1 +SPEAKER 02176 0 9.926000 1.994710 1 +SPEAKER 02176 0 13.819000 1.741000 1 +SPEAKER 02176 0 18.467210 0.574080 1 +SPEAKER 02176 0 19.875000 1.316440 1 +SPEAKER 02176 0 22.149000 1.842440 1 +SPEAKER 02176 0 34.712000 1.090550 1 +SPEAKER 02176 0 37.689440 0.424220 1 +SPEAKER 02176 0 40.375000 0.523000 1 +SPEAKER 02176 0 39.290000 1.010550 2 diff --git a/rttm/few/02187.rttm b/rttm/few/02187.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ddb1f8c719fa20a522ea2fb703ae9a5e765f164a --- /dev/null +++ b/rttm/few/02187.rttm @@ -0,0 +1,35 @@ +SPEAKER 02187 0 0.029000 0.420000 3 +SPEAKER 02187 0 7.326000 0.558000 3 +SPEAKER 02187 0 8.518000 0.648000 3 +SPEAKER 02187 0 19.354540 0.485290 3 +SPEAKER 02187 0 21.315000 1.493000 3 +SPEAKER 02187 0 28.769000 1.832000 3 +SPEAKER 02187 0 35.862000 1.727000 3 +SPEAKER 02187 0 40.264000 0.593000 3 +SPEAKER 02187 0 0.511000 1.360000 0 +SPEAKER 02187 0 2.177000 4.724000 0 +SPEAKER 02187 0 7.861000 0.481000 0 +SPEAKER 02187 0 9.137000 0.534000 0 +SPEAKER 02187 0 10.465000 0.500000 0 +SPEAKER 02187 0 11.281010 1.808990 0 +SPEAKER 02187 0 16.008000 0.626000 0 +SPEAKER 02187 0 16.999000 1.061420 0 +SPEAKER 02187 0 20.396000 0.280000 0 +SPEAKER 02187 0 24.184000 0.697010 0 +SPEAKER 02187 0 25.163360 0.558820 0 +SPEAKER 02187 0 25.984000 2.488180 0 +SPEAKER 02187 0 28.774000 0.427000 0 +SPEAKER 02187 0 30.021000 0.465890 0 +SPEAKER 02187 0 30.781010 1.250000 0 +SPEAKER 02187 0 36.710000 1.260000 0 +SPEAKER 02187 0 38.811000 0.856000 0 +SPEAKER 02187 0 39.001590 1.117650 2 +SPEAKER 02187 0 2.939000 1.528000 1 +SPEAKER 02187 0 9.854540 2.057460 1 +SPEAKER 02187 0 13.692770 1.735290 1 +SPEAKER 02187 0 18.470000 0.428650 1 +SPEAKER 02187 0 19.928000 1.200000 1 +SPEAKER 02187 0 22.199000 1.680000 1 +SPEAKER 02187 0 32.575000 0.985420 1 +SPEAKER 02187 0 34.724000 0.924650 1 +SPEAKER 02187 0 37.658000 0.387710 1 diff --git a/rttm/few/02189.rttm b/rttm/few/02189.rttm new file mode 100644 index 0000000000000000000000000000000000000000..237d40e241d63d8b950ef80782565893ec6b60ba --- /dev/null +++ b/rttm/few/02189.rttm @@ -0,0 +1,14 @@ +SPEAKER 02189 0 17.105510 2.660220 1 +SPEAKER 02189 0 23.430180 0.615550 1 +SPEAKER 02189 0 28.547210 1.327530 1 +SPEAKER 02189 0 30.770180 1.400740 1 +SPEAKER 02189 0 3.982770 3.706670 0 +SPEAKER 02189 0 8.819060 1.722230 0 +SPEAKER 02189 0 20.464000 1.318030 0 +SPEAKER 02189 0 22.930180 1.370370 0 +SPEAKER 02189 0 27.624990 0.953330 0 +SPEAKER 02189 0 33.652400 1.629630 0 +SPEAKER 02189 0 0.445000 4.040730 2 +SPEAKER 02189 0 6.132000 0.972990 2 +SPEAKER 02189 0 9.133880 6.203700 2 +SPEAKER 02189 0 20.754000 5.672020 2 diff --git a/rttm/few/02190.rttm b/rttm/few/02190.rttm new file mode 100644 index 0000000000000000000000000000000000000000..91501c4f561b921436be1181cfdd7bddb9569af6 --- /dev/null +++ b/rttm/few/02190.rttm @@ -0,0 +1,7 @@ +SPEAKER 02190 0 0.322000 37.738000 0 +SPEAKER 02190 0 39.186000 7.546530 0 +SPEAKER 02190 0 51.856000 10.759000 0 +SPEAKER 02190 0 66.383000 2.788000 0 +SPEAKER 02190 0 37.519000 1.106000 1 +SPEAKER 02190 0 47.080000 4.394000 1 +SPEAKER 02190 0 64.595000 1.712000 1 diff --git a/rttm/few/02215.rttm b/rttm/few/02215.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c17ee983fc22ec564459204ba2ecf5817c76186c --- /dev/null +++ b/rttm/few/02215.rttm @@ -0,0 +1,9 @@ +SPEAKER 02215 0 0.075000 6.950000 1 +SPEAKER 02215 0 7.309000 1.000000 1 +SPEAKER 02215 0 8.967000 0.599250 1 +SPEAKER 02215 0 10.068000 1.748250 1 +SPEAKER 02215 0 12.187000 6.587580 1 +SPEAKER 02215 0 19.312000 1.650080 1 +SPEAKER 02215 0 21.856000 3.130000 1 +SPEAKER 02215 0 7.912000 1.055000 0 +SPEAKER 02215 0 11.171000 0.611000 0 diff --git a/rttm/few/02218.rttm b/rttm/few/02218.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ecc31c46f20abc880d1a3e21cdbaf4070aff9d68 --- /dev/null +++ b/rttm/few/02218.rttm @@ -0,0 +1,17 @@ +SPEAKER 02218 0 0.044000 1.757000 1 +SPEAKER 02218 0 3.459000 2.647000 1 +SPEAKER 02218 0 9.957000 1.136000 1 +SPEAKER 02218 0 14.353000 0.800000 1 +SPEAKER 02218 0 17.393000 0.860000 1 +SPEAKER 02218 0 19.559000 0.556360 1 +SPEAKER 02218 0 20.374620 0.537040 1 +SPEAKER 02218 0 0.912000 0.832990 3 +SPEAKER 02218 0 2.393140 4.629630 3 +SPEAKER 02218 0 8.281000 0.846000 3 +SPEAKER 02218 0 18.781000 0.722000 3 +SPEAKER 02218 0 20.003000 0.806000 3 +SPEAKER 02218 0 2.293000 0.738000 2 +SPEAKER 02218 0 6.725000 3.861000 2 +SPEAKER 02218 0 10.920000 3.750000 2 +SPEAKER 02218 0 0.000000 0.541290 h0 +SPEAKER 02218 0 20.875000 0.549000 h0 diff --git a/rttm/few/02221.rttm b/rttm/few/02221.rttm new file mode 100644 index 0000000000000000000000000000000000000000..8ecfb84c15b7210349dacd178131eac851e68735 --- /dev/null +++ b/rttm/few/02221.rttm @@ -0,0 +1,14 @@ +SPEAKER 02221 0 0.000000 1.795420 1 +SPEAKER 02221 0 2.113000 3.369920 1 +SPEAKER 02221 0 8.319000 2.663920 1 +SPEAKER 02221 0 11.476000 1.944420 1 +SPEAKER 02221 0 17.486000 1.000000 1 +SPEAKER 02221 0 5.356000 1.963000 0 +SPEAKER 02221 0 10.931000 0.776950 0 +SPEAKER 02221 0 13.449000 1.367250 0 +SPEAKER 02221 0 15.098000 0.968250 0 +SPEAKER 02221 0 17.745000 1.759000 0 +SPEAKER 02221 0 20.412000 2.926000 0 +SPEAKER 02221 0 8.708000 1.000000 3 +SPEAKER 02221 0 15.634000 0.444000 3 +SPEAKER 02221 0 19.578000 1.000000 3 diff --git a/rttm/few/02227.rttm b/rttm/few/02227.rttm new file mode 100644 index 0000000000000000000000000000000000000000..bd1cc7b4458d05e5b8d1f4b8bb5f682e0868156f --- /dev/null +++ b/rttm/few/02227.rttm @@ -0,0 +1,14 @@ +SPEAKER 02227 0 0.048000 5.660000 0 +SPEAKER 02227 0 13.560000 1.592000 0 +SPEAKER 02227 0 20.856000 26.241000 0 +SPEAKER 02227 0 48.782000 0.444000 0 +SPEAKER 02227 0 49.949000 19.907000 0 +SPEAKER 02227 0 5.708000 15.532550 1 +SPEAKER 02227 0 22.503000 0.733480 1 +SPEAKER 02227 0 27.411660 0.463340 1 +SPEAKER 02227 0 30.282030 0.388970 1 +SPEAKER 02227 0 32.023000 0.463000 1 +SPEAKER 02227 0 38.671000 0.481000 1 +SPEAKER 02227 0 41.356100 1.629900 1 +SPEAKER 02227 0 46.504000 3.685000 1 +SPEAKER 02227 0 69.745000 0.574060 1 diff --git a/rttm/few/02238.rttm b/rttm/few/02238.rttm new file mode 100644 index 0000000000000000000000000000000000000000..8997df84753067e0e95b1ce9784be67405b738e4 --- /dev/null +++ b/rttm/few/02238.rttm @@ -0,0 +1,7 @@ +SPEAKER 02238 0 1.486000 7.537000 0 +SPEAKER 02238 0 13.041000 1.981770 0 +SPEAKER 02238 0 22.074000 0.689000 0 +SPEAKER 02238 0 23.319000 1.167000 0 +SPEAKER 02238 0 0.004000 1.463000 1 +SPEAKER 02238 0 10.078000 12.186000 1 +SPEAKER 02238 0 22.725000 0.688000 1 diff --git a/rttm/few/02241.rttm b/rttm/few/02241.rttm new file mode 100644 index 0000000000000000000000000000000000000000..391cab8f155f17a4b8fe43b4f3b0fcbcd8b3af84 --- /dev/null +++ b/rttm/few/02241.rttm @@ -0,0 +1,23 @@ +SPEAKER 02241 0 0.060000 6.241000 3 +SPEAKER 02241 0 6.819000 10.482000 3 +SPEAKER 02241 0 22.504000 0.334000 3 +SPEAKER 02241 0 27.208000 0.385000 3 +SPEAKER 02241 0 29.337580 0.259260 3 +SPEAKER 02241 0 30.004990 4.369630 3 +SPEAKER 02241 0 40.838000 0.425510 3 +SPEAKER 02241 0 43.430000 2.222000 3 +SPEAKER 02241 0 46.319000 5.592660 3 +SPEAKER 02241 0 53.430000 4.037210 3 +SPEAKER 02241 0 60.134000 1.574000 3 +SPEAKER 02241 0 15.708000 2.685140 0 +SPEAKER 02241 0 19.004000 3.482000 0 +SPEAKER 02241 0 22.838000 6.963000 0 +SPEAKER 02241 0 31.680000 2.046000 0 +SPEAKER 02241 0 34.338000 7.619000 0 +SPEAKER 02241 0 51.048000 3.327000 0 +SPEAKER 02241 0 54.986000 1.092320 0 +SPEAKER 02241 0 57.152000 0.760000 0 +SPEAKER 02241 0 58.301000 2.351000 0 +SPEAKER 02241 0 25.462000 1.376000 2 +SPEAKER 02241 0 42.208000 1.388840 2 +SPEAKER 02241 0 58.022770 1.574070 2 diff --git a/rttm/few/02249.rttm b/rttm/few/02249.rttm new file mode 100644 index 0000000000000000000000000000000000000000..68fee75c5e688807233747f8d39df76f6f8a25a1 --- /dev/null +++ b/rttm/few/02249.rttm @@ -0,0 +1,21 @@ +SPEAKER 02249 0 0.000000 0.413000 1 +SPEAKER 02249 0 0.961530 0.783460 1 +SPEAKER 02249 0 2.147000 0.690580 1 +SPEAKER 02249 0 3.156000 0.744300 1 +SPEAKER 02249 0 4.398000 3.273000 1 +SPEAKER 02249 0 8.034000 0.713240 1 +SPEAKER 02249 0 9.113660 1.754340 1 +SPEAKER 02249 0 11.747000 1.590580 1 +SPEAKER 02249 0 13.689000 0.500440 1 +SPEAKER 02249 0 14.747000 1.409790 1 +SPEAKER 02249 0 16.724770 4.186890 1 +SPEAKER 02249 0 21.306000 0.679730 1 +SPEAKER 02249 0 22.358110 1.022220 1 +SPEAKER 02249 0 24.158110 0.822220 1 +SPEAKER 02249 0 26.491440 3.012560 1 +SPEAKER 02249 0 7.623000 2.139000 0 +SPEAKER 02249 0 10.609000 0.941000 0 +SPEAKER 02249 0 18.928000 0.641220 2 +SPEAKER 02249 0 20.749000 0.475770 2 +SPEAKER 02249 0 25.237000 0.965550 2 +SPEAKER 02249 0 28.634000 0.312990 2 diff --git a/rttm/few/02252.rttm b/rttm/few/02252.rttm new file mode 100644 index 0000000000000000000000000000000000000000..fe07a3e1c6f149d3d78e8d4fc497eff1ee770557 --- /dev/null +++ b/rttm/few/02252.rttm @@ -0,0 +1,26 @@ +SPEAKER 02252 0 3.566000 0.626290 1 +SPEAKER 02252 0 6.543640 1.626360 1 +SPEAKER 02252 0 9.059000 0.972000 1 +SPEAKER 02252 0 12.894990 3.080010 1 +SPEAKER 02252 0 17.720000 2.269590 1 +SPEAKER 02252 0 23.462560 2.207440 1 +SPEAKER 02252 0 26.976000 0.460000 1 +SPEAKER 02252 0 28.281000 2.583000 1 +SPEAKER 02252 0 32.170000 0.750000 1 +SPEAKER 02252 0 42.752000 2.146000 1 +SPEAKER 02252 0 63.003000 1.118000 1 +SPEAKER 02252 0 0.003000 2.270370 0 +SPEAKER 02252 0 4.809000 1.531940 0 +SPEAKER 02252 0 12.197000 2.973000 0 +SPEAKER 02252 0 15.947000 3.278000 0 +SPEAKER 02252 0 19.920000 2.610130 0 +SPEAKER 02252 0 23.189000 1.175000 0 +SPEAKER 02252 0 25.541000 3.518000 0 +SPEAKER 02252 0 30.827430 1.547570 0 +SPEAKER 02252 0 32.854450 11.520550 0 +SPEAKER 02252 0 44.824000 10.421900 0 +SPEAKER 02252 0 55.594000 3.576920 0 +SPEAKER 02252 0 59.560000 4.386140 0 +SPEAKER 02252 0 16.808000 1.009560 h0 +SPEAKER 02252 0 42.815000 2.604000 h0 +SPEAKER 02252 0 63.189000 0.922000 h0 diff --git a/rttm/few/02262.rttm b/rttm/few/02262.rttm new file mode 100644 index 0000000000000000000000000000000000000000..6504e56c3e9aea13f9c8ccbab332e09c301674f6 --- /dev/null +++ b/rttm/few/02262.rttm @@ -0,0 +1,24 @@ +SPEAKER 02262 0 0.003000 3.168000 1 +SPEAKER 02262 0 10.412000 3.111000 1 +SPEAKER 02262 0 17.507000 5.016000 1 +SPEAKER 02262 0 27.393000 5.500000 1 +SPEAKER 02262 0 33.412000 0.972000 1 +SPEAKER 02262 0 0.032000 0.560000 3 +SPEAKER 02262 0 2.060000 2.389000 3 +SPEAKER 02262 0 6.266000 0.831000 3 +SPEAKER 02262 0 7.986000 0.574000 3 +SPEAKER 02262 0 8.875000 1.469000 3 +SPEAKER 02262 0 13.532000 3.083000 3 +SPEAKER 02262 0 18.912000 2.722000 3 +SPEAKER 02262 0 22.504000 3.722000 3 +SPEAKER 02262 0 26.801000 1.777000 3 +SPEAKER 02262 0 29.986000 1.889000 3 +SPEAKER 02262 0 4.763000 1.818290 2 +SPEAKER 02262 0 7.592000 1.000000 2 +SPEAKER 02262 0 9.689000 0.743000 2 +SPEAKER 02262 0 26.695000 1.000000 2 +SPEAKER 02262 0 28.024840 0.961160 2 +SPEAKER 02262 0 30.592000 1.097000 2 +SPEAKER 02262 0 6.824000 0.958000 0 +SPEAKER 02262 0 28.134000 1.037000 0 +SPEAKER 02262 0 30.158000 0.772000 0 diff --git a/rttm/few/02265.rttm b/rttm/few/02265.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ee94b8ced8ba699ab014413dd777755bb882ad7d --- /dev/null +++ b/rttm/few/02265.rttm @@ -0,0 +1,29 @@ +SPEAKER 02265 0 0.002000 5.298400 1 +SPEAKER 02265 0 6.549180 2.165820 1 +SPEAKER 02265 0 9.855610 0.992310 1 +SPEAKER 02265 0 14.909460 0.869230 1 +SPEAKER 02265 0 16.178690 9.455310 1 +SPEAKER 02265 0 26.163300 0.423080 1 +SPEAKER 02265 0 27.171000 4.555000 1 +SPEAKER 02265 0 32.563300 4.737700 1 +SPEAKER 02265 0 38.110000 2.722530 1 +SPEAKER 02265 0 53.415000 1.756000 1 +SPEAKER 02265 0 56.478690 0.598460 1 +SPEAKER 02265 0 60.766000 7.480000 1 +SPEAKER 02265 0 4.223600 0.401240 0 +SPEAKER 02265 0 5.609460 0.853840 0 +SPEAKER 02265 0 8.555610 4.510390 0 +SPEAKER 02265 0 13.563300 2.984620 0 +SPEAKER 02265 0 19.278690 0.461540 0 +SPEAKER 02265 0 21.363130 0.307870 0 +SPEAKER 02265 0 24.432530 0.767810 0 +SPEAKER 02265 0 26.424840 1.538460 0 +SPEAKER 02265 0 31.294070 1.923080 0 +SPEAKER 02265 0 35.049180 0.437200 0 +SPEAKER 02265 0 37.281740 0.828260 0 +SPEAKER 02265 0 41.832530 3.153470 0 +SPEAKER 02265 0 45.688720 0.704280 0 +SPEAKER 02265 0 46.871000 6.918000 0 +SPEAKER 02265 0 55.456160 4.047840 0 +SPEAKER 02265 0 60.759860 0.617290 0 +SPEAKER 02265 0 67.332530 0.766470 0 diff --git a/rttm/few/02271.rttm b/rttm/few/02271.rttm new file mode 100644 index 0000000000000000000000000000000000000000..8d7bc13724bb1b0c427c8a838ba313ed72ec9648 --- /dev/null +++ b/rttm/few/02271.rttm @@ -0,0 +1,9 @@ +SPEAKER 02271 0 2.391000 0.788000 0 +SPEAKER 02271 0 3.800000 0.724760 0 +SPEAKER 02271 0 7.597000 1.574000 0 +SPEAKER 02271 0 10.120000 0.946000 0 +SPEAKER 02271 0 11.725000 0.390000 0 +SPEAKER 02271 0 12.510000 13.467000 0 +SPEAKER 02271 0 30.981000 2.480000 0 +SPEAKER 02271 0 0.008000 2.920000 1 +SPEAKER 02271 0 27.430000 3.509760 1 diff --git a/rttm/few/02285.rttm b/rttm/few/02285.rttm new file mode 100644 index 0000000000000000000000000000000000000000..b384170492538c12f1f5617b5686d04e6c47f0ab --- /dev/null +++ b/rttm/few/02285.rttm @@ -0,0 +1,11 @@ +SPEAKER 02285 0 0.000000 4.155360 1 +SPEAKER 02285 0 4.727000 3.073550 1 +SPEAKER 02285 0 8.319000 2.648000 1 +SPEAKER 02285 0 11.590000 0.562000 1 +SPEAKER 02285 0 4.038000 0.784030 0 +SPEAKER 02285 0 11.023000 1.333000 0 +SPEAKER 02285 0 12.734000 1.642840 0 +SPEAKER 02285 0 14.726470 2.476530 0 +SPEAKER 02285 0 17.592000 6.615950 0 +SPEAKER 02285 0 24.560000 1.092400 0 +SPEAKER 02285 0 26.048000 18.827000 0 diff --git a/rttm/few/02293.rttm b/rttm/few/02293.rttm new file mode 100644 index 0000000000000000000000000000000000000000..f59d93f546caadeeb01cb1224928128cb43d2550 --- /dev/null +++ b/rttm/few/02293.rttm @@ -0,0 +1,14 @@ +SPEAKER 02293 0 0.000000 0.955000 0 +SPEAKER 02293 0 5.568200 4.839630 0 +SPEAKER 02293 0 10.967000 0.591770 0 +SPEAKER 02293 0 11.947000 2.349000 0 +SPEAKER 02293 0 15.708000 1.241250 0 +SPEAKER 02293 0 2.285180 0.981140 2 +SPEAKER 02293 0 3.983000 1.358790 2 +SPEAKER 02293 0 7.758000 0.604000 2 +SPEAKER 02293 0 9.360660 1.386790 2 +SPEAKER 02293 0 14.597000 0.596000 2 +SPEAKER 02293 0 15.917000 0.766290 2 +SPEAKER 02293 0 17.151000 0.904630 2 +SPEAKER 02293 0 18.916000 1.745000 2 +SPEAKER 02293 0 18.244990 0.651070 1 diff --git a/rttm/few/02295.rttm b/rttm/few/02295.rttm new file mode 100644 index 0000000000000000000000000000000000000000..9de1e4869fca40dde73e20b05e89d75187a0e1b2 --- /dev/null +++ b/rttm/few/02295.rttm @@ -0,0 +1,11 @@ +SPEAKER 02295 0 0.023000 10.259030 0 +SPEAKER 02295 0 11.393140 0.666860 0 +SPEAKER 02295 0 15.134000 7.722000 0 +SPEAKER 02295 0 27.486000 3.185000 0 +SPEAKER 02295 0 36.504250 3.833750 0 +SPEAKER 02295 0 41.596840 0.593160 0 +SPEAKER 02295 0 10.319000 7.019000 1 +SPEAKER 02295 0 21.467000 0.611000 1 +SPEAKER 02295 0 23.059810 4.388880 1 +SPEAKER 02295 0 30.707950 5.888890 1 +SPEAKER 02295 0 40.522770 1.444440 1 diff --git a/rttm/few/02301.rttm b/rttm/few/02301.rttm new file mode 100644 index 0000000000000000000000000000000000000000..2719c9c3793ce0a6b766b9b758665fdce628ea45 --- /dev/null +++ b/rttm/few/02301.rttm @@ -0,0 +1,28 @@ +SPEAKER 02301 0 0.000000 2.146990 2 +SPEAKER 02301 0 4.300000 2.735880 2 +SPEAKER 02301 0 7.403000 1.794250 2 +SPEAKER 02301 0 14.541000 3.938410 2 +SPEAKER 02301 0 19.930000 2.315640 2 +SPEAKER 02301 0 34.637000 5.169510 2 +SPEAKER 02301 0 40.610000 1.229000 2 +SPEAKER 02301 0 44.615000 2.333690 2 +SPEAKER 02301 0 49.392000 1.927060 2 +SPEAKER 02301 0 59.541000 1.843000 2 +SPEAKER 02301 0 4.088990 0.600010 3 +SPEAKER 02301 0 9.486000 5.481000 3 +SPEAKER 02301 0 15.421000 0.244000 3 +SPEAKER 02301 0 21.483000 1.605990 3 +SPEAKER 02301 0 25.078000 0.537000 3 +SPEAKER 02301 0 27.634000 5.269280 3 +SPEAKER 02301 0 40.762580 0.517240 3 +SPEAKER 02301 0 50.978000 6.468140 3 +SPEAKER 02301 0 58.089000 0.814280 3 +SPEAKER 02301 0 1.912000 2.295950 1 +SPEAKER 02301 0 6.967000 1.613330 1 +SPEAKER 02301 0 22.856000 2.247280 1 +SPEAKER 02301 0 32.975000 2.599710 1 +SPEAKER 02301 0 39.726000 4.157270 1 +SPEAKER 02301 0 45.932000 3.894280 1 +SPEAKER 02301 0 51.165000 1.000000 1 +SPEAKER 02301 0 58.665000 1.338280 1 +SPEAKER 02301 0 60.565000 0.819000 1 diff --git a/rttm/few/02305.rttm b/rttm/few/02305.rttm new file mode 100644 index 0000000000000000000000000000000000000000..db4dc65541fb26d829d0beebf057a799ebb9edb9 --- /dev/null +++ b/rttm/few/02305.rttm @@ -0,0 +1,17 @@ +SPEAKER 02305 0 0.012000 4.344000 1 +SPEAKER 02305 0 9.578000 0.593000 1 +SPEAKER 02305 0 11.912000 0.463000 1 +SPEAKER 02305 0 18.615000 0.463320 1 +SPEAKER 02305 0 21.134000 0.444320 1 +SPEAKER 02305 0 1.949000 0.370000 0 +SPEAKER 02305 0 4.615000 2.567080 0 +SPEAKER 02305 0 7.729000 2.003920 0 +SPEAKER 02305 0 10.204000 1.841420 0 +SPEAKER 02305 0 12.856000 4.126920 0 +SPEAKER 02305 0 17.585000 1.000000 0 +SPEAKER 02305 0 19.375000 0.524580 0 +SPEAKER 02305 0 20.252000 1.000000 0 +SPEAKER 02305 0 21.985730 0.537040 0 +SPEAKER 02305 0 22.977000 2.055780 0 +SPEAKER 02305 0 25.448690 4.056310 0 +SPEAKER 02305 0 29.977220 0.557780 0 diff --git a/rttm/few/02314.rttm b/rttm/few/02314.rttm new file mode 100644 index 0000000000000000000000000000000000000000..e185cf0cee79071d213079a5d35241f2b79d84bd --- /dev/null +++ b/rttm/few/02314.rttm @@ -0,0 +1,10 @@ +SPEAKER 02314 0 0.002000 32.378000 0 +SPEAKER 02314 0 33.713000 1.000000 0 +SPEAKER 02314 0 35.755000 0.489990 0 +SPEAKER 02314 0 39.288000 10.288000 0 +SPEAKER 02314 0 68.892000 0.722000 0 +SPEAKER 02314 0 80.738000 0.587000 0 +SPEAKER 02314 0 2.634990 0.581640 1 +SPEAKER 02314 0 28.588000 1.169440 1 +SPEAKER 02314 0 31.796000 7.500000 1 +SPEAKER 02314 0 49.526000 36.978000 1 diff --git a/rttm/few/02316.rttm b/rttm/few/02316.rttm new file mode 100644 index 0000000000000000000000000000000000000000..3df7377ae3dc8f38ddd6b3293edf98c1d09862c5 --- /dev/null +++ b/rttm/few/02316.rttm @@ -0,0 +1,13 @@ +SPEAKER 02316 0 0.406000 20.616770 1 +SPEAKER 02316 0 22.041000 10.445000 1 +SPEAKER 02316 0 33.615000 5.537000 1 +SPEAKER 02316 0 39.523000 16.518000 1 +SPEAKER 02316 0 58.224000 1.965000 1 +SPEAKER 02316 0 65.930000 18.574000 1 +SPEAKER 02316 0 87.726000 3.204000 1 +SPEAKER 02316 0 91.287000 2.921000 1 +SPEAKER 02316 0 20.912000 1.814000 0 +SPEAKER 02316 0 55.759860 2.559140 0 +SPEAKER 02316 0 58.817000 7.204860 0 +SPEAKER 02316 0 73.597000 0.667000 0 +SPEAKER 02316 0 84.004000 6.106090 0 diff --git a/rttm/few/02319.rttm b/rttm/few/02319.rttm new file mode 100644 index 0000000000000000000000000000000000000000..47df8c2c990f894515b463d68c7f2c632ce25db3 --- /dev/null +++ b/rttm/few/02319.rttm @@ -0,0 +1,7 @@ +SPEAKER 02319 0 1.592400 15.802220 2 +SPEAKER 02319 0 19.337580 0.851860 2 +SPEAKER 02319 0 10.208000 0.944400 1 +SPEAKER 02319 0 19.055000 0.801100 1 +SPEAKER 02319 0 22.856000 1.726000 1 +SPEAKER 02319 0 17.560000 1.296100 3 +SPEAKER 02319 0 19.430180 3.055550 3 diff --git a/rttm/few/02325.rttm b/rttm/few/02325.rttm new file mode 100644 index 0000000000000000000000000000000000000000..db5a808943d7c3039e816183c8040e562a88e003 --- /dev/null +++ b/rttm/few/02325.rttm @@ -0,0 +1,107 @@ +SPEAKER 02325 0 0.022770 0.370370 1 +SPEAKER 02325 0 0.772400 5.250600 1 +SPEAKER 02325 0 7.004000 5.852000 1 +SPEAKER 02325 0 19.301000 0.463000 1 +SPEAKER 02325 0 23.689000 0.556000 1 +SPEAKER 02325 0 27.018000 8.671000 1 +SPEAKER 02325 0 39.930000 3.889000 1 +SPEAKER 02325 0 44.301000 4.867920 1 +SPEAKER 02325 0 51.893000 0.463000 1 +SPEAKER 02325 0 60.597000 0.252600 1 +SPEAKER 02325 0 76.764000 0.296000 1 +SPEAKER 02325 0 77.782000 8.500000 1 +SPEAKER 02325 0 88.189000 1.000000 1 +SPEAKER 02325 0 90.301000 2.796000 1 +SPEAKER 02325 0 94.245000 0.444000 1 +SPEAKER 02325 0 95.504000 3.556000 1 +SPEAKER 02325 0 102.023000 0.463000 1 +SPEAKER 02325 0 112.282000 1.074000 1 +SPEAKER 02325 0 114.764000 5.055000 1 +SPEAKER 02325 0 120.652000 11.574000 1 +SPEAKER 02325 0 135.986000 1.574000 1 +SPEAKER 02325 0 143.819000 0.556000 1 +SPEAKER 02325 0 147.282000 0.519000 1 +SPEAKER 02325 0 154.782000 0.537000 1 +SPEAKER 02325 0 170.333000 1.177420 1 +SPEAKER 02325 0 177.708000 9.704000 1 +SPEAKER 02325 0 194.726000 0.817130 1 +SPEAKER 02325 0 196.134000 0.870000 1 +SPEAKER 02325 0 212.725370 0.275700 1 +SPEAKER 02325 0 216.921630 13.101370 1 +SPEAKER 02325 0 230.597000 11.796000 1 +SPEAKER 02325 0 244.977710 0.195860 1 +SPEAKER 02325 0 246.097000 8.074000 1 +SPEAKER 02325 0 254.819000 4.945000 1 +SPEAKER 02325 0 261.126690 1.062310 1 +SPEAKER 02325 0 266.447000 0.519000 1 +SPEAKER 02325 0 268.875000 2.851000 1 +SPEAKER 02325 0 272.689000 23.852000 1 +SPEAKER 02325 0 299.726000 2.963000 1 +SPEAKER 02325 0 7.022770 0.366060 2 +SPEAKER 02325 0 13.245000 8.333000 2 +SPEAKER 02325 0 22.078000 2.056000 2 +SPEAKER 02325 0 35.754000 0.750000 2 +SPEAKER 02325 0 40.782000 1.000000 2 +SPEAKER 02325 0 49.486000 20.981000 2 +SPEAKER 02325 0 70.801000 7.074000 2 +SPEAKER 02325 0 90.814000 0.508720 2 +SPEAKER 02325 0 92.846000 1.325000 2 +SPEAKER 02325 0 94.801000 1.370000 2 +SPEAKER 02325 0 99.698000 2.454000 2 +SPEAKER 02325 0 102.541000 8.815000 2 +SPEAKER 02325 0 112.282000 2.185000 2 +SPEAKER 02325 0 118.620340 0.380950 2 +SPEAKER 02325 0 119.906050 2.097950 2 +SPEAKER 02325 0 122.691000 1.665000 2 +SPEAKER 02325 0 126.395000 1.214000 2 +SPEAKER 02325 0 146.763200 0.369040 2 +SPEAKER 02325 0 147.614000 0.566000 2 +SPEAKER 02325 0 169.615000 1.056000 2 +SPEAKER 02325 0 178.068000 0.208770 2 +SPEAKER 02325 0 178.875000 0.817660 2 +SPEAKER 02325 0 194.763000 0.726390 2 +SPEAKER 02325 0 196.041000 17.304440 2 +SPEAKER 02325 0 213.654000 2.144570 2 +SPEAKER 02325 0 239.033000 0.318540 2 +SPEAKER 02325 0 241.689190 6.259810 2 +SPEAKER 02325 0 248.631000 1.503000 2 +SPEAKER 02325 0 263.671000 1.370000 2 +SPEAKER 02325 0 267.319000 0.741000 2 +SPEAKER 02325 0 269.745000 2.556000 2 +SPEAKER 02325 0 297.573000 1.505000 2 +SPEAKER 02325 0 35.754000 1.102420 0 +SPEAKER 02325 0 37.132000 2.911920 0 +SPEAKER 02325 0 41.912000 0.375200 0 +SPEAKER 02325 0 46.097000 0.242150 0 +SPEAKER 02325 0 65.983000 0.737000 0 +SPEAKER 02325 0 70.801000 0.611000 0 +SPEAKER 02325 0 84.171000 5.852000 0 +SPEAKER 02325 0 90.967000 1.574000 0 +SPEAKER 02325 0 93.037000 0.369050 0 +SPEAKER 02325 0 106.838000 0.532340 0 +SPEAKER 02325 0 112.253000 1.093530 0 +SPEAKER 02325 0 114.208000 0.407000 0 +SPEAKER 02325 0 123.097000 0.904290 0 +SPEAKER 02325 0 131.409860 4.983140 0 +SPEAKER 02325 0 137.014000 9.898000 0 +SPEAKER 02325 0 147.689000 21.704000 0 +SPEAKER 02325 0 170.319000 6.278000 0 +SPEAKER 02325 0 178.064000 0.203430 0 +SPEAKER 02325 0 185.671000 0.555000 0 +SPEAKER 02325 0 186.838000 6.882700 0 +SPEAKER 02325 0 195.745000 0.907000 0 +SPEAKER 02325 0 205.375000 0.574000 0 +SPEAKER 02325 0 209.393000 0.667000 0 +SPEAKER 02325 0 211.338000 0.532340 0 +SPEAKER 02325 0 212.251000 1.250290 0 +SPEAKER 02325 0 215.226000 0.219000 0 +SPEAKER 02325 0 216.172000 0.174870 0 +SPEAKER 02325 0 241.541000 1.695070 0 +SPEAKER 02325 0 248.560000 0.574000 0 +SPEAKER 02325 0 251.838000 2.314000 0 +SPEAKER 02325 0 257.430000 2.040440 0 +SPEAKER 02325 0 260.157940 0.812500 0 +SPEAKER 02325 0 261.409000 0.719000 0 +SPEAKER 02325 0 263.671000 9.580690 0 +SPEAKER 02325 0 293.134000 0.852070 0 +SPEAKER 02325 0 299.393000 1.556000 0 diff --git a/rttm/few/02340.rttm b/rttm/few/02340.rttm new file mode 100644 index 0000000000000000000000000000000000000000..a2f6ef635c7190d70bd153b84c0beb4120e7f937 --- /dev/null +++ b/rttm/few/02340.rttm @@ -0,0 +1,26 @@ +SPEAKER 02340 0 0.615360 4.004450 0 +SPEAKER 02340 0 7.541290 2.152590 0 +SPEAKER 02340 0 12.782030 1.981480 0 +SPEAKER 02340 0 16.505730 0.494270 0 +SPEAKER 02340 0 18.262030 1.057030 0 +SPEAKER 02340 0 20.391660 1.986340 0 +SPEAKER 02340 0 23.689440 4.240740 0 +SPEAKER 02340 0 28.430180 3.669630 0 +SPEAKER 02340 0 34.817580 0.569630 0 +SPEAKER 02340 0 36.820550 0.980450 0 +SPEAKER 02340 0 40.207950 2.040000 0 +SPEAKER 02340 0 43.170920 2.759080 0 +SPEAKER 02340 0 46.522770 2.351850 0 +SPEAKER 02340 0 49.282030 2.197970 0 +SPEAKER 02340 0 53.356100 1.740900 0 +SPEAKER 02340 0 1.615360 1.597040 1 +SPEAKER 02340 0 4.504250 8.151110 1 +SPEAKER 02340 0 14.871660 6.021480 1 +SPEAKER 02340 0 21.354620 5.779260 1 +SPEAKER 02340 0 27.414620 2.571110 1 +SPEAKER 02340 0 30.410180 0.686660 1 +SPEAKER 02340 0 32.652400 7.488890 1 +SPEAKER 02340 0 40.464000 1.000000 1 +SPEAKER 02340 0 41.746470 8.094530 1 +SPEAKER 02340 0 51.337580 2.743710 1 +SPEAKER 02340 0 54.521290 0.579710 1 diff --git a/rttm/few/02359.rttm b/rttm/few/02359.rttm new file mode 100644 index 0000000000000000000000000000000000000000..f399ef39cf6b40f2e6f704adc4f4c9dea6370f26 --- /dev/null +++ b/rttm/few/02359.rttm @@ -0,0 +1,10 @@ +SPEAKER 02359 0 0.000000 21.764000 0 +SPEAKER 02359 0 22.282000 0.519000 0 +SPEAKER 02359 0 33.893000 0.537000 0 +SPEAKER 02359 0 35.893140 2.277860 0 +SPEAKER 02359 0 5.430000 0.408000 1 +SPEAKER 02359 0 8.893000 0.389000 1 +SPEAKER 02359 0 20.449000 0.740440 1 +SPEAKER 02359 0 21.726470 0.944450 1 +SPEAKER 02359 0 23.393000 1.000000 1 +SPEAKER 02359 0 25.448690 10.074310 1 diff --git a/rttm/few/02364.rttm b/rttm/few/02364.rttm new file mode 100644 index 0000000000000000000000000000000000000000..a0284b69fc890d445af4c1c4ba8fc99cf0545142 --- /dev/null +++ b/rttm/few/02364.rttm @@ -0,0 +1,30 @@ +SPEAKER 02364 0 0.226000 3.889000 1 +SPEAKER 02364 0 4.554000 0.468000 1 +SPEAKER 02364 0 5.918000 0.586000 1 +SPEAKER 02364 0 7.251000 0.290500 1 +SPEAKER 02364 0 9.907000 0.394000 1 +SPEAKER 02364 0 11.745000 3.690360 1 +SPEAKER 02364 0 17.412000 0.333000 1 +SPEAKER 02364 0 31.930000 1.722400 1 +SPEAKER 02364 0 40.319000 1.092660 1 +SPEAKER 02364 0 46.485000 0.482000 1 +SPEAKER 02364 0 50.282000 13.808920 1 +SPEAKER 02364 0 67.117000 0.850210 1 +SPEAKER 02364 0 68.912000 4.462620 1 +SPEAKER 02364 0 81.319000 0.518000 1 +SPEAKER 02364 0 84.707950 0.407050 1 +SPEAKER 02364 0 85.668490 2.576510 1 +SPEAKER 02364 0 89.734000 0.511000 1 +SPEAKER 02364 0 4.547000 0.717000 0 +SPEAKER 02364 0 7.226000 4.556030 0 +SPEAKER 02364 0 13.542000 1.277000 0 +SPEAKER 02364 0 15.244990 14.185190 0 +SPEAKER 02364 0 29.689000 10.619690 0 +SPEAKER 02364 0 42.282030 7.906970 0 +SPEAKER 02364 0 63.948690 5.611120 0 +SPEAKER 02364 0 71.652400 0.462600 0 +SPEAKER 02364 0 72.449000 4.750060 0 +SPEAKER 02364 0 77.819060 7.944940 0 +SPEAKER 02364 0 88.523000 0.926000 0 +SPEAKER 02364 0 90.254000 0.380000 0 +SPEAKER 02364 0 91.245000 1.537000 0 diff --git a/rttm/few/02365.rttm b/rttm/few/02365.rttm new file mode 100644 index 0000000000000000000000000000000000000000..df47b19030c03d3bc37af68b4ba1c79af27db164 --- /dev/null +++ b/rttm/few/02365.rttm @@ -0,0 +1,18 @@ +SPEAKER 02365 0 1.330000 0.860000 2 +SPEAKER 02365 0 3.112000 0.910000 2 +SPEAKER 02365 0 4.360000 3.602000 2 +SPEAKER 02365 0 9.057000 5.975600 2 +SPEAKER 02365 0 15.544000 1.465000 2 +SPEAKER 02365 0 17.521000 2.282000 2 +SPEAKER 02365 0 25.665000 0.623000 2 +SPEAKER 02365 0 29.044000 3.405000 2 +SPEAKER 02365 0 1.375000 1.722000 1 +SPEAKER 02365 0 7.948000 1.732220 1 +SPEAKER 02365 0 24.963000 0.893840 1 +SPEAKER 02365 0 26.658000 1.171000 1 +SPEAKER 02365 0 11.351000 1.350000 0 +SPEAKER 02365 0 13.446000 1.577000 0 +SPEAKER 02365 0 16.424000 1.627000 0 +SPEAKER 02365 0 19.696000 5.023000 0 +SPEAKER 02365 0 24.970180 1.676820 0 +SPEAKER 02365 0 28.041000 0.840000 0 diff --git a/rttm/few/02370.rttm b/rttm/few/02370.rttm new file mode 100644 index 0000000000000000000000000000000000000000..7e444c837123d93d19ea9422ecef8c1d3804f5bb --- /dev/null +++ b/rttm/few/02370.rttm @@ -0,0 +1,13 @@ +SPEAKER 02370 0 0.776000 1.745030 0 +SPEAKER 02370 0 4.453000 2.773000 0 +SPEAKER 02370 0 11.015000 0.619000 0 +SPEAKER 02370 0 14.574240 0.927930 0 +SPEAKER 02370 0 19.436000 1.773000 0 +SPEAKER 02370 0 22.041000 1.037000 0 +SPEAKER 02370 0 2.690000 1.369000 1 +SPEAKER 02370 0 11.013000 7.158000 1 +SPEAKER 02370 0 18.678000 0.529950 1 +SPEAKER 02370 0 23.080000 1.054240 1 +SPEAKER 02370 0 3.142000 0.539410 h0 +SPEAKER 02370 0 9.151000 1.549280 h0 +SPEAKER 02370 0 12.219000 1.292600 h0 diff --git a/rttm/few/02373.rttm b/rttm/few/02373.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4af00aabf174a87e0e0c83e84738586b4942e8b1 --- /dev/null +++ b/rttm/few/02373.rttm @@ -0,0 +1,18 @@ +SPEAKER 02373 0 1.643970 2.076920 1 +SPEAKER 02373 0 4.567040 0.663960 1 +SPEAKER 02373 0 5.746000 1.282580 1 +SPEAKER 02373 0 11.464480 1.660520 1 +SPEAKER 02373 0 13.930000 1.862000 1 +SPEAKER 02373 0 17.817000 1.339790 1 +SPEAKER 02373 0 21.802000 0.445000 1 +SPEAKER 02373 0 27.874620 0.447380 1 +SPEAKER 02373 0 31.747000 0.409000 1 +SPEAKER 02373 0 1.471000 0.594000 0 +SPEAKER 02373 0 4.077000 1.700000 0 +SPEAKER 02373 0 7.044000 5.147000 0 +SPEAKER 02373 0 13.860000 0.437810 0 +SPEAKER 02373 0 15.691000 3.004250 0 +SPEAKER 02373 0 20.567000 1.000000 0 +SPEAKER 02373 0 22.900380 1.768840 0 +SPEAKER 02373 0 25.152400 2.161260 0 +SPEAKER 02373 0 28.513660 3.657340 0 diff --git a/rttm/few/02374.rttm b/rttm/few/02374.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ee6e155b77793d1003798d2170c021eacc369560 --- /dev/null +++ b/rttm/few/02374.rttm @@ -0,0 +1,4 @@ +SPEAKER 02374 0 0.208000 1.648000 1 +SPEAKER 02374 0 2.375000 8.574000 1 +SPEAKER 02374 0 11.319000 11.592660 1 +SPEAKER 02374 0 22.875000 4.166000 0 diff --git a/rttm/few/02377.rttm b/rttm/few/02377.rttm new file mode 100644 index 0000000000000000000000000000000000000000..8e33c1b9b86c7db5d3a8d7c77c2220c80663efb1 --- /dev/null +++ b/rttm/few/02377.rttm @@ -0,0 +1,22 @@ +SPEAKER 02377 0 0.033000 2.162230 1 +SPEAKER 02377 0 11.895000 1.079000 1 +SPEAKER 02377 0 15.863130 2.978870 1 +SPEAKER 02377 0 19.329000 1.250000 1 +SPEAKER 02377 0 21.105000 2.290000 1 +SPEAKER 02377 0 27.177000 0.279160 1 +SPEAKER 02377 0 28.132000 4.079000 1 +SPEAKER 02377 0 32.526000 1.869000 1 +SPEAKER 02377 0 34.653830 1.767440 1 +SPEAKER 02377 0 40.132000 0.289000 1 +SPEAKER 02377 0 2.184000 5.500000 0 +SPEAKER 02377 0 8.204000 0.849000 0 +SPEAKER 02377 0 9.474000 1.868000 0 +SPEAKER 02377 0 14.393140 1.948860 0 +SPEAKER 02377 0 26.815000 1.264000 0 +SPEAKER 02377 0 34.262000 0.973230 0 +SPEAKER 02377 0 36.236000 0.238000 0 +SPEAKER 02377 0 36.843000 3.078000 0 +SPEAKER 02377 0 12.816620 2.174420 h0 +SPEAKER 02377 0 19.156000 2.148990 h0 +SPEAKER 02377 0 24.301000 0.752000 h0 +SPEAKER 02377 0 25.435000 1.407000 h0 diff --git a/rttm/few/02380.rttm b/rttm/few/02380.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4ed18ec9a5fae6641c334802135e8d9876b2bdc2 --- /dev/null +++ b/rttm/few/02380.rttm @@ -0,0 +1,33 @@ +SPEAKER 02380 0 0.224000 1.595000 0 +SPEAKER 02380 0 3.890000 1.357000 0 +SPEAKER 02380 0 5.656000 0.378000 0 +SPEAKER 02380 0 6.344000 3.312000 0 +SPEAKER 02380 0 9.946000 3.965660 0 +SPEAKER 02380 0 14.716000 0.591000 0 +SPEAKER 02380 0 16.338000 1.679560 0 +SPEAKER 02380 0 21.004000 1.212000 0 +SPEAKER 02380 0 23.322000 2.485000 0 +SPEAKER 02380 0 27.413000 0.909000 0 +SPEAKER 02380 0 29.080000 4.106000 0 +SPEAKER 02380 0 35.322000 3.293000 0 +SPEAKER 02380 0 39.041000 3.827000 0 +SPEAKER 02380 0 44.338000 0.795880 0 +SPEAKER 02380 0 45.832000 4.021000 0 +SPEAKER 02380 0 52.186000 1.288000 0 +SPEAKER 02380 0 54.002000 1.411000 0 +SPEAKER 02380 0 55.943000 3.652000 0 +SPEAKER 02380 0 60.019000 1.773000 0 +SPEAKER 02380 0 62.080000 1.258000 0 +SPEAKER 02380 0 2.080000 1.424000 1 +SPEAKER 02380 0 14.059810 0.656190 1 +SPEAKER 02380 0 15.322000 1.182000 1 +SPEAKER 02380 0 19.671000 1.796210 1 +SPEAKER 02380 0 32.152000 0.443000 1 +SPEAKER 02380 0 32.962000 2.360000 1 +SPEAKER 02380 0 39.043000 1.201990 1 +SPEAKER 02380 0 42.393140 6.259260 1 +SPEAKER 02380 0 51.156000 1.303000 1 +SPEAKER 02380 0 53.110000 1.046000 1 +SPEAKER 02380 0 54.428000 1.849000 1 +SPEAKER 02380 0 56.909000 0.853000 1 +SPEAKER 02380 0 58.216000 1.773000 1 diff --git a/rttm/few/02383.rttm b/rttm/few/02383.rttm new file mode 100644 index 0000000000000000000000000000000000000000..6899e39dc406ec4236819892561d383fc343ada6 --- /dev/null +++ b/rttm/few/02383.rttm @@ -0,0 +1,13 @@ +SPEAKER 02383 0 0.003000 0.895830 2 +SPEAKER 02383 0 2.050000 7.184450 2 +SPEAKER 02383 0 9.988000 3.896590 2 +SPEAKER 02383 0 14.228000 0.720690 2 +SPEAKER 02383 0 15.693000 1.781170 2 +SPEAKER 02383 0 19.471000 1.523720 2 +SPEAKER 02383 0 22.084000 8.936000 2 +SPEAKER 02383 0 33.633000 5.257000 2 +SPEAKER 02383 0 0.001000 2.020000 0 +SPEAKER 02383 0 9.069000 0.638050 0 +SPEAKER 02383 0 17.059000 2.412000 0 +SPEAKER 02383 0 20.648000 1.000000 0 +SPEAKER 02383 0 9.057000 0.753000 1 diff --git a/rttm/few/02386.rttm b/rttm/few/02386.rttm new file mode 100644 index 0000000000000000000000000000000000000000..5060f4914c8e0186e4079f6875dc203fbdd62c47 --- /dev/null +++ b/rttm/few/02386.rttm @@ -0,0 +1,54 @@ +SPEAKER 02386 0 0.000000 4.004000 0 +SPEAKER 02386 0 4.354000 0.391000 0 +SPEAKER 02386 0 5.691000 5.354000 0 +SPEAKER 02386 0 16.232000 7.022000 0 +SPEAKER 02386 0 23.942000 0.437000 0 +SPEAKER 02386 0 26.689000 2.481000 0 +SPEAKER 02386 0 31.732920 1.167080 0 +SPEAKER 02386 0 38.825000 6.512000 0 +SPEAKER 02386 0 46.754000 0.604000 0 +SPEAKER 02386 0 47.648000 0.314000 0 +SPEAKER 02386 0 48.465000 4.893000 0 +SPEAKER 02386 0 53.858000 2.771000 0 +SPEAKER 02386 0 57.837000 0.292000 0 +SPEAKER 02386 0 60.313000 0.586000 0 +SPEAKER 02386 0 65.358000 1.896000 0 +SPEAKER 02386 0 67.784000 0.407000 0 +SPEAKER 02386 0 69.566000 2.229000 0 +SPEAKER 02386 0 72.245000 10.155000 0 +SPEAKER 02386 0 83.046000 1.854000 0 +SPEAKER 02386 0 87.191000 0.584000 0 +SPEAKER 02386 0 94.984000 0.624000 0 +SPEAKER 02386 0 103.441250 3.103750 0 +SPEAKER 02386 0 108.683000 3.154000 0 +SPEAKER 02386 0 112.548000 2.539000 0 +SPEAKER 02386 0 115.398000 7.314000 0 +SPEAKER 02386 0 123.283000 11.825000 0 +SPEAKER 02386 0 137.784000 0.574000 0 +SPEAKER 02386 0 140.899000 0.521000 0 +SPEAKER 02386 0 144.316000 1.000000 0 +SPEAKER 02386 0 146.962000 3.271000 0 +SPEAKER 02386 0 3.351000 0.778000 1 +SPEAKER 02386 0 4.806000 0.864000 1 +SPEAKER 02386 0 10.274000 4.188000 1 +SPEAKER 02386 0 15.608000 2.625000 1 +SPEAKER 02386 0 18.892000 0.383000 1 +SPEAKER 02386 0 21.004000 1.666000 1 +SPEAKER 02386 0 23.480000 3.045000 1 +SPEAKER 02386 0 29.634000 1.828000 1 +SPEAKER 02386 0 32.997000 5.840000 1 +SPEAKER 02386 0 45.374860 0.879140 1 +SPEAKER 02386 0 49.116000 0.409000 1 +SPEAKER 02386 0 52.309000 2.153000 1 +SPEAKER 02386 0 56.800000 2.579000 1 +SPEAKER 02386 0 59.958000 9.462000 1 +SPEAKER 02386 0 83.795000 11.487000 1 +SPEAKER 02386 0 95.840000 4.351000 1 +SPEAKER 02386 0 100.782000 1.638000 1 +SPEAKER 02386 0 106.793000 2.419000 1 +SPEAKER 02386 0 116.024000 1.000000 1 +SPEAKER 02386 0 123.337000 0.334000 1 +SPEAKER 02386 0 133.219000 1.748000 1 +SPEAKER 02386 0 135.295420 5.208580 1 +SPEAKER 02386 0 140.899580 6.083420 1 +SPEAKER 02386 0 147.316250 0.645830 1 diff --git a/rttm/few/02388.rttm b/rttm/few/02388.rttm new file mode 100644 index 0000000000000000000000000000000000000000..fd70381ed9529fccaa665796fe1b1dbd7f895bf3 --- /dev/null +++ b/rttm/few/02388.rttm @@ -0,0 +1,23 @@ +SPEAKER 02388 0 0.023000 6.555000 h0 +SPEAKER 02388 0 7.338000 0.685000 h0 +SPEAKER 02388 0 11.986000 0.481000 h0 +SPEAKER 02388 0 15.430000 0.759000 h0 +SPEAKER 02388 0 17.060000 0.907000 h0 +SPEAKER 02388 0 18.839000 2.961550 h0 +SPEAKER 02388 0 27.227000 1.443920 h0 +SPEAKER 02388 0 29.319000 0.667000 h0 +SPEAKER 02388 0 31.615000 0.723000 h0 +SPEAKER 02388 0 0.652000 0.445000 1 +SPEAKER 02388 0 6.279000 1.098260 1 +SPEAKER 02388 0 8.819000 0.482000 1 +SPEAKER 02388 0 15.835000 1.000000 1 +SPEAKER 02388 0 22.707950 1.222230 1 +SPEAKER 02388 0 27.940000 1.508690 1 +SPEAKER 02388 0 32.529000 0.434000 1 +SPEAKER 02388 0 6.912000 1.299000 0 +SPEAKER 02388 0 26.097000 1.296000 0 +SPEAKER 02388 0 8.106000 7.247000 2 +SPEAKER 02388 0 17.621000 1.199000 2 +SPEAKER 02388 0 20.398000 2.368000 2 +SPEAKER 02388 0 30.079000 1.555000 2 +SPEAKER 02388 0 32.335590 0.627410 2 diff --git a/rttm/few/02394.rttm b/rttm/few/02394.rttm new file mode 100644 index 0000000000000000000000000000000000000000..9f980a92ec2bcea1be290446188cf71a2b777edf --- /dev/null +++ b/rttm/few/02394.rttm @@ -0,0 +1,49 @@ +SPEAKER 02394 0 0.000000 3.134000 2 +SPEAKER 02394 0 3.726000 1.090250 2 +SPEAKER 02394 0 5.165000 1.880420 2 +SPEAKER 02394 0 7.467000 0.765920 2 +SPEAKER 02394 0 8.666000 1.775250 2 +SPEAKER 02394 0 10.767000 0.611750 2 +SPEAKER 02394 0 11.706000 0.422750 2 +SPEAKER 02394 0 12.509000 2.640580 2 +SPEAKER 02394 0 15.764000 4.843920 2 +SPEAKER 02394 0 20.901000 1.540250 2 +SPEAKER 02394 0 22.733000 3.687420 2 +SPEAKER 02394 0 27.486000 2.462690 2 +SPEAKER 02394 0 31.430000 4.219580 2 +SPEAKER 02394 0 35.962000 2.062580 2 +SPEAKER 02394 0 38.671000 0.870290 2 +SPEAKER 02394 0 49.338000 3.574000 2 +SPEAKER 02394 0 53.597000 0.501000 2 +SPEAKER 02394 0 56.967000 1.111000 2 +SPEAKER 02394 0 59.357920 2.375000 2 +SPEAKER 02394 0 62.164000 2.423080 2 +SPEAKER 02394 0 69.912000 0.648000 2 +SPEAKER 02394 0 73.226000 1.111080 2 +SPEAKER 02394 0 75.555000 1.448750 2 +SPEAKER 02394 0 82.449000 2.481000 2 +SPEAKER 02394 0 87.708000 3.796000 2 +SPEAKER 02394 0 92.688000 1.518000 2 +SPEAKER 02394 0 18.226000 1.924000 1 +SPEAKER 02394 0 26.245000 1.278000 1 +SPEAKER 02394 0 30.003750 1.926250 1 +SPEAKER 02394 0 39.467210 1.929870 1 +SPEAKER 02394 0 41.684000 5.257250 1 +SPEAKER 02394 0 47.337000 1.666750 1 +SPEAKER 02394 0 55.764000 0.481000 1 +SPEAKER 02394 0 57.597000 1.129000 1 +SPEAKER 02394 0 64.486000 1.592000 1 +SPEAKER 02394 0 78.930000 1.073750 1 +SPEAKER 02394 0 80.288000 0.486580 1 +SPEAKER 02394 0 87.697000 1.278000 1 +SPEAKER 02394 0 90.745000 1.383750 1 +SPEAKER 02394 0 27.967000 1.578420 0 +SPEAKER 02394 0 39.522770 0.543480 0 +SPEAKER 02394 0 47.115000 0.667000 0 +SPEAKER 02394 0 50.986000 1.426000 0 +SPEAKER 02394 0 55.245000 0.407000 0 +SPEAKER 02394 0 58.801000 0.619420 0 +SPEAKER 02394 0 59.793000 1.000000 0 +SPEAKER 02394 0 73.226470 0.555530 0 +SPEAKER 02394 0 89.046000 0.478580 0 +SPEAKER 02394 0 90.764000 0.648000 0 diff --git a/rttm/few/02405.rttm b/rttm/few/02405.rttm new file mode 100644 index 0000000000000000000000000000000000000000..528ee3ab361420ebd166646e0f26600ce14d95d6 --- /dev/null +++ b/rttm/few/02405.rttm @@ -0,0 +1,25 @@ +SPEAKER 02405 0 0.200000 1.489000 0 +SPEAKER 02405 0 3.393000 1.722360 0 +SPEAKER 02405 0 5.671000 0.574000 0 +SPEAKER 02405 0 6.822000 0.497060 0 +SPEAKER 02405 0 11.064000 1.422000 0 +SPEAKER 02405 0 12.838000 7.610000 0 +SPEAKER 02405 0 21.893000 5.630000 0 +SPEAKER 02405 0 28.189000 1.167000 0 +SPEAKER 02405 0 30.152000 0.500400 0 +SPEAKER 02405 0 36.134000 0.592000 0 +SPEAKER 02405 0 39.319000 1.685000 0 +SPEAKER 02405 0 42.005000 1.258510 0 +SPEAKER 02405 0 43.708000 1.537000 0 +SPEAKER 02405 0 45.634000 1.611000 0 +SPEAKER 02405 0 6.412000 0.573730 1 +SPEAKER 02405 0 9.041000 1.315000 1 +SPEAKER 02405 0 15.041290 0.499710 1 +SPEAKER 02405 0 19.226470 0.574080 1 +SPEAKER 02405 0 20.486000 1.407000 1 +SPEAKER 02405 0 22.337580 0.579420 1 +SPEAKER 02405 0 31.105000 1.399250 1 +SPEAKER 02405 0 33.522000 0.871000 1 +SPEAKER 02405 0 41.504250 0.629750 1 +SPEAKER 02405 0 42.875000 0.796000 1 +SPEAKER 02405 0 45.549000 0.585000 1 diff --git a/rttm/few/02412.rttm b/rttm/few/02412.rttm new file mode 100644 index 0000000000000000000000000000000000000000..741b7ee0f9d656933bf2dd2351c5d6be72145e25 --- /dev/null +++ b/rttm/few/02412.rttm @@ -0,0 +1,62 @@ +SPEAKER 02412 0 0.060000 0.944000 1 +SPEAKER 02412 0 2.519810 0.632590 1 +SPEAKER 02412 0 5.823090 2.180910 1 +SPEAKER 02412 0 8.486000 1.000000 1 +SPEAKER 02412 0 11.319000 1.000000 1 +SPEAKER 02412 0 13.097060 4.373020 1 +SPEAKER 02412 0 18.486000 1.092320 1 +SPEAKER 02412 0 23.171000 2.167000 1 +SPEAKER 02412 0 50.782000 1.926000 1 +SPEAKER 02412 0 54.412000 2.258920 1 +SPEAKER 02412 0 57.176420 4.055580 1 +SPEAKER 02412 0 62.430000 1.053000 1 +SPEAKER 02412 0 67.134000 1.767000 1 +SPEAKER 02412 0 69.986000 0.992000 1 +SPEAKER 02412 0 74.634000 3.241000 1 +SPEAKER 02412 0 79.078000 1.527000 1 +SPEAKER 02412 0 82.880000 1.290920 1 +SPEAKER 02412 0 93.914520 1.089730 1 +SPEAKER 02412 0 96.430000 0.865470 1 +SPEAKER 02412 0 98.949000 4.917900 1 +SPEAKER 02412 0 106.578000 1.685510 1 +SPEAKER 02412 0 113.486000 3.389000 1 +SPEAKER 02412 0 117.523000 3.055000 1 +SPEAKER 02412 0 120.858000 0.663000 1 +SPEAKER 02412 0 123.226000 1.032000 1 +SPEAKER 02412 0 125.212000 5.126000 1 +SPEAKER 02412 0 132.705000 4.059000 1 +SPEAKER 02412 0 137.497000 4.767000 1 +SPEAKER 02412 0 144.301000 0.444000 1 +SPEAKER 02412 0 147.875000 0.555000 1 +SPEAKER 02412 0 148.946270 2.372730 1 +SPEAKER 02412 0 154.393000 2.031000 1 +SPEAKER 02412 0 157.455000 1.327000 1 +SPEAKER 02412 0 159.449000 2.759000 1 +SPEAKER 02412 0 1.060000 3.611000 0 +SPEAKER 02412 0 8.467000 4.513000 0 +SPEAKER 02412 0 14.671000 0.611030 0 +SPEAKER 02412 0 15.802000 0.498550 0 +SPEAKER 02412 0 17.467000 0.816000 0 +SPEAKER 02412 0 20.004000 2.463000 0 +SPEAKER 02412 0 25.189000 5.871000 0 +SPEAKER 02412 0 31.930180 4.233820 0 +SPEAKER 02412 0 36.967000 13.111000 0 +SPEAKER 02412 0 52.949000 0.703400 0 +SPEAKER 02412 0 61.152000 1.037000 0 +SPEAKER 02412 0 71.115000 2.923000 0 +SPEAKER 02412 0 74.657000 19.403000 0 +SPEAKER 02412 0 95.486000 0.706000 0 +SPEAKER 02412 0 96.782030 2.316970 0 +SPEAKER 02412 0 107.787540 1.735460 0 +SPEAKER 02412 0 110.264000 1.500000 0 +SPEAKER 02412 0 120.449000 2.780000 0 +SPEAKER 02412 0 124.356000 1.241000 0 +SPEAKER 02412 0 129.689000 3.018950 0 +SPEAKER 02412 0 136.023000 1.092000 0 +SPEAKER 02412 0 141.017690 0.449310 0 +SPEAKER 02412 0 142.226000 2.158000 0 +SPEAKER 02412 0 145.171000 2.537000 0 +SPEAKER 02412 0 148.787540 0.827820 0 +SPEAKER 02412 0 151.505000 2.703000 0 +SPEAKER 02412 0 156.356000 1.630000 0 +SPEAKER 02412 0 158.764000 0.814320 0 diff --git a/rttm/few/02432.rttm b/rttm/few/02432.rttm new file mode 100644 index 0000000000000000000000000000000000000000..7fa3afc39615b6ff08a7a04f9769dcc8f0a69dda --- /dev/null +++ b/rttm/few/02432.rttm @@ -0,0 +1,2 @@ +SPEAKER 02432 0 0.000000 8.773090 1 +SPEAKER 02432 0 8.898090 13.550910 0 diff --git a/rttm/few/02433.rttm b/rttm/few/02433.rttm new file mode 100644 index 0000000000000000000000000000000000000000..8270aad00de49b6eb2540fc6e70e235ce141cf9c --- /dev/null +++ b/rttm/few/02433.rttm @@ -0,0 +1,22 @@ +SPEAKER 02433 0 0.424000 3.550000 0 +SPEAKER 02433 0 6.520000 3.038110 0 +SPEAKER 02433 0 9.836000 2.444330 0 +SPEAKER 02433 0 12.777000 3.875400 0 +SPEAKER 02433 0 17.750000 1.512000 0 +SPEAKER 02433 0 29.348000 0.758000 0 +SPEAKER 02433 0 46.065000 0.404220 0 +SPEAKER 02433 0 48.807000 1.416000 0 +SPEAKER 02433 0 51.246000 1.440000 0 +SPEAKER 02433 0 54.735000 10.574220 0 +SPEAKER 02433 0 66.247000 2.524440 0 +SPEAKER 02433 0 4.712000 1.257220 1 +SPEAKER 02433 0 19.951000 6.473770 1 +SPEAKER 02433 0 26.903000 1.777330 1 +SPEAKER 02433 0 29.701000 4.290440 1 +SPEAKER 02433 0 34.403000 0.732880 1 +SPEAKER 02433 0 35.974000 4.084110 1 +SPEAKER 02433 0 41.034000 5.046000 1 +SPEAKER 02433 0 46.496000 1.902000 1 +SPEAKER 02433 0 49.522770 0.537040 1 +SPEAKER 02433 0 52.731000 1.527110 1 +SPEAKER 02433 0 67.747000 1.606000 1 diff --git a/rttm/few/02448.rttm b/rttm/few/02448.rttm new file mode 100644 index 0000000000000000000000000000000000000000..3616e5478a2f3a43f1a917b2b0cea9547a08d63d --- /dev/null +++ b/rttm/few/02448.rttm @@ -0,0 +1,5 @@ +SPEAKER 02448 0 0.023000 0.796000 1 +SPEAKER 02448 0 1.245000 2.093000 1 +SPEAKER 02448 0 0.819000 0.426000 0 +SPEAKER 02448 0 3.504250 7.740750 0 +SPEAKER 02448 0 11.575000 10.466000 0 diff --git a/rttm/few/02451.rttm b/rttm/few/02451.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4586e540e1dfe22909bdfecd6245c22f024601c6 --- /dev/null +++ b/rttm/few/02451.rttm @@ -0,0 +1,11 @@ +SPEAKER 02451 0 0.364000 0.425680 0 +SPEAKER 02451 0 1.140740 1.223400 0 +SPEAKER 02451 0 2.862000 3.417040 0 +SPEAKER 02451 0 6.662000 1.063850 0 +SPEAKER 02451 0 8.576910 1.083510 0 +SPEAKER 02451 0 10.118000 1.449040 0 +SPEAKER 02451 0 19.660420 7.657140 0 +SPEAKER 02451 0 27.718000 4.499560 0 +SPEAKER 02451 0 5.718000 0.416000 1 +SPEAKER 02451 0 9.108000 0.490190 1 +SPEAKER 02451 0 11.875000 7.629000 1 diff --git a/rttm/few/02452.rttm b/rttm/few/02452.rttm new file mode 100644 index 0000000000000000000000000000000000000000..1491c049bc9d6edd69bd6186abcd1cda9b82cec4 --- /dev/null +++ b/rttm/few/02452.rttm @@ -0,0 +1,7 @@ +SPEAKER 02452 0 0.065000 3.705110 1 +SPEAKER 02452 0 4.375000 2.604410 1 +SPEAKER 02452 0 9.721000 0.828180 1 +SPEAKER 02452 0 19.398020 1.287980 1 +SPEAKER 02452 0 6.913000 2.391990 0 +SPEAKER 02452 0 11.341270 4.068380 0 +SPEAKER 02452 0 15.805000 4.023250 0 diff --git a/rttm/few/02457.rttm b/rttm/few/02457.rttm new file mode 100644 index 0000000000000000000000000000000000000000..fc9224aceaff3ff4b30e7de43b5ef04f563c0566 --- /dev/null +++ b/rttm/few/02457.rttm @@ -0,0 +1,27 @@ +SPEAKER 02457 0 0.023000 0.604260 0 +SPEAKER 02457 0 1.319000 0.683260 0 +SPEAKER 02457 0 3.960590 0.541670 0 +SPEAKER 02457 0 5.834000 0.543260 0 +SPEAKER 02457 0 7.393000 1.667000 0 +SPEAKER 02457 0 10.137000 0.812000 0 +SPEAKER 02457 0 15.093000 0.617590 0 +SPEAKER 02457 0 17.504000 0.760000 0 +SPEAKER 02457 0 19.148090 0.770830 0 +SPEAKER 02457 0 22.731000 1.725000 0 +SPEAKER 02457 0 25.668920 4.465080 0 +SPEAKER 02457 0 31.648090 1.895830 0 +SPEAKER 02457 0 34.918920 2.733080 0 +SPEAKER 02457 0 41.481420 0.694580 0 +SPEAKER 02457 0 1.710590 3.187500 1 +SPEAKER 02457 0 7.043920 1.349080 1 +SPEAKER 02457 0 11.127260 5.154740 1 +SPEAKER 02457 0 16.960590 0.416670 1 +SPEAKER 02457 0 18.467000 0.535260 1 +SPEAKER 02457 0 20.856000 0.766000 1 +SPEAKER 02457 0 24.773090 2.062500 1 +SPEAKER 02457 0 28.004000 0.831590 1 +SPEAKER 02457 0 30.835590 1.125000 1 +SPEAKER 02457 0 33.430000 0.685000 1 +SPEAKER 02457 0 34.627000 0.656000 1 +SPEAKER 02457 0 36.669000 1.236000 1 +SPEAKER 02457 0 38.460590 3.312500 1 diff --git a/rttm/few/02459.rttm b/rttm/few/02459.rttm new file mode 100644 index 0000000000000000000000000000000000000000..212d0fe6b1093487341f7712912774d8e20efb99 --- /dev/null +++ b/rttm/few/02459.rttm @@ -0,0 +1,25 @@ +SPEAKER 02459 0 0.000000 2.523000 1 +SPEAKER 02459 0 9.152000 0.797000 1 +SPEAKER 02459 0 10.664000 0.414000 1 +SPEAKER 02459 0 15.255000 1.000000 1 +SPEAKER 02459 0 19.220000 1.000000 1 +SPEAKER 02459 0 21.426000 0.671000 1 +SPEAKER 02459 0 23.973000 0.772000 1 +SPEAKER 02459 0 29.559810 0.741190 1 +SPEAKER 02459 0 3.411000 0.538000 0 +SPEAKER 02459 0 4.248000 4.645000 0 +SPEAKER 02459 0 9.479000 0.692000 0 +SPEAKER 02459 0 15.356100 0.740900 0 +SPEAKER 02459 0 19.227000 0.648000 0 +SPEAKER 02459 0 21.634000 0.667000 0 +SPEAKER 02459 0 23.930000 0.815000 0 +SPEAKER 02459 0 25.801000 0.240000 0 +SPEAKER 02459 0 30.078320 0.722680 0 +SPEAKER 02459 0 10.239000 2.968950 2 +SPEAKER 02459 0 13.555000 1.597000 2 +SPEAKER 02459 0 15.615000 3.500000 2 +SPEAKER 02459 0 20.264000 0.851360 2 +SPEAKER 02459 0 22.491000 1.000000 2 +SPEAKER 02459 0 25.134000 1.000000 2 +SPEAKER 02459 0 26.578000 1.185510 2 +SPEAKER 02459 0 28.116000 1.369730 2 diff --git a/rttm/few/02464.rttm b/rttm/few/02464.rttm new file mode 100644 index 0000000000000000000000000000000000000000..65c7cb3024b70995596b1e38020f7e998e7f9db0 --- /dev/null +++ b/rttm/few/02464.rttm @@ -0,0 +1,25 @@ +SPEAKER 02464 0 0.004000 2.111360 0 +SPEAKER 02464 0 4.707000 0.556510 0 +SPEAKER 02464 0 12.022770 0.710230 0 +SPEAKER 02464 0 13.660000 1.270000 0 +SPEAKER 02464 0 17.867000 1.266880 0 +SPEAKER 02464 0 22.828000 2.605000 0 +SPEAKER 02464 0 25.925000 1.508000 0 +SPEAKER 02464 0 28.181000 0.519000 0 +SPEAKER 02464 0 29.500000 0.733000 0 +SPEAKER 02464 0 30.744990 1.188010 0 +SPEAKER 02464 0 32.738000 0.495000 0 +SPEAKER 02464 0 36.622000 3.878000 0 +SPEAKER 02464 0 41.301000 1.000000 0 +SPEAKER 02464 0 44.567000 0.900000 0 +SPEAKER 02464 0 49.597000 1.211000 0 +SPEAKER 02464 0 3.989000 2.589320 1 +SPEAKER 02464 0 8.294000 1.000000 1 +SPEAKER 02464 0 13.170920 4.062080 1 +SPEAKER 02464 0 18.942000 0.858000 1 +SPEAKER 02464 0 36.119000 0.514000 1 +SPEAKER 02464 0 39.833000 3.245320 1 +SPEAKER 02464 0 43.500000 0.967000 1 +SPEAKER 02464 0 46.286000 1.000000 1 +SPEAKER 02464 0 48.282030 0.555550 1 +SPEAKER 02464 0 49.795000 1.000000 1 diff --git a/rttm/few/02465.rttm b/rttm/few/02465.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4f5d74db86b34c1c397acc3b96cc920c7d3d8c7e --- /dev/null +++ b/rttm/few/02465.rttm @@ -0,0 +1,13 @@ +SPEAKER 02465 0 6.208000 1.499950 1 +SPEAKER 02465 0 10.230000 1.237000 1 +SPEAKER 02465 0 11.906000 0.598250 1 +SPEAKER 02465 0 14.930000 2.814990 1 +SPEAKER 02465 0 18.060000 0.888690 1 +SPEAKER 02465 0 10.633880 0.852120 2 +SPEAKER 02465 0 20.874620 2.111110 2 +SPEAKER 02465 0 0.078000 1.629950 0 +SPEAKER 02465 0 17.461000 0.598810 0 +SPEAKER 02465 0 18.967000 0.352060 0 +SPEAKER 02465 0 19.726000 2.574550 0 +SPEAKER 02465 0 25.430000 0.833510 0 +SPEAKER 02465 0 28.301000 1.166210 0 diff --git a/rttm/few/02469.rttm b/rttm/few/02469.rttm new file mode 100644 index 0000000000000000000000000000000000000000..26534d4208ab4b3a0b22044a09d92db36f814091 --- /dev/null +++ b/rttm/few/02469.rttm @@ -0,0 +1,11 @@ +SPEAKER 02469 0 0.838000 0.406990 0 +SPEAKER 02469 0 3.689440 0.574070 0 +SPEAKER 02469 0 8.282030 0.796290 0 +SPEAKER 02469 0 15.226000 3.908000 0 +SPEAKER 02469 0 19.541290 0.795790 0 +SPEAKER 02469 0 20.624000 1.000000 0 +SPEAKER 02469 0 22.615000 0.342000 0 +SPEAKER 02469 0 0.017000 4.380080 1 +SPEAKER 02469 0 4.705000 4.048750 1 +SPEAKER 02469 0 9.230000 5.385360 1 +SPEAKER 02469 0 18.634000 0.518000 1 diff --git a/rttm/few/02470.rttm b/rttm/few/02470.rttm new file mode 100644 index 0000000000000000000000000000000000000000..8ee348ebc6789e606443602b52e16afc7ed70759 --- /dev/null +++ b/rttm/few/02470.rttm @@ -0,0 +1,411 @@ +SPEAKER 02470 0 0.022000 4.989180 1 +SPEAKER 02470 0 5.384000 0.518000 1 +SPEAKER 02470 0 6.465720 2.154280 1 +SPEAKER 02470 0 9.874810 0.990910 1 +SPEAKER 02470 0 11.493000 6.572720 1 +SPEAKER 02470 0 18.504000 28.780000 1 +SPEAKER 02470 0 48.246000 11.402000 1 +SPEAKER 02470 0 59.993000 2.618000 1 +SPEAKER 02470 0 63.020000 11.755000 1 +SPEAKER 02470 0 75.638000 6.010000 1 +SPEAKER 02470 0 82.120270 2.254730 1 +SPEAKER 02470 0 90.611180 0.781820 1 +SPEAKER 02470 0 93.256630 0.509370 1 +SPEAKER 02470 0 105.747540 0.318460 1 +SPEAKER 02470 0 107.511180 0.936820 1 +SPEAKER 02470 0 108.856630 4.400000 1 +SPEAKER 02470 0 120.766000 8.311640 1 +SPEAKER 02470 0 149.238010 0.424530 1 +SPEAKER 02470 0 166.827000 0.429880 1 +SPEAKER 02470 0 171.684000 1.488000 1 +SPEAKER 02470 0 173.683000 6.630000 1 +SPEAKER 02470 0 180.880000 5.037000 1 +SPEAKER 02470 0 186.398390 0.396610 1 +SPEAKER 02470 0 187.653000 3.736000 1 +SPEAKER 02470 0 192.049000 6.368000 1 +SPEAKER 02470 0 199.144000 5.292000 1 +SPEAKER 02470 0 207.932000 1.646000 1 +SPEAKER 02470 0 211.832000 0.346720 1 +SPEAKER 02470 0 217.766000 1.132000 1 +SPEAKER 02470 0 223.668920 0.635080 1 +SPEAKER 02470 0 235.933620 1.078430 1 +SPEAKER 02470 0 240.238000 0.330000 1 +SPEAKER 02470 0 249.031660 0.480390 1 +SPEAKER 02470 0 250.030000 0.560490 1 +SPEAKER 02470 0 251.423820 7.794120 1 +SPEAKER 02470 0 260.551270 0.695730 1 +SPEAKER 02470 0 263.097000 5.992000 1 +SPEAKER 02470 0 281.806170 0.450980 1 +SPEAKER 02470 0 283.535840 0.348760 1 +SPEAKER 02470 0 298.196860 0.618640 1 +SPEAKER 02470 0 300.246000 3.500000 1 +SPEAKER 02470 0 304.150000 10.768000 1 +SPEAKER 02470 0 319.760000 2.515000 1 +SPEAKER 02470 0 323.132000 9.857000 1 +SPEAKER 02470 0 335.218000 0.785280 1 +SPEAKER 02470 0 337.774710 0.485710 1 +SPEAKER 02470 0 340.660000 0.471850 1 +SPEAKER 02470 0 351.060000 0.358000 1 +SPEAKER 02470 0 360.117560 3.071440 1 +SPEAKER 02470 0 366.832000 19.557000 1 +SPEAKER 02470 0 386.723000 3.352000 1 +SPEAKER 02470 0 393.560420 0.914290 1 +SPEAKER 02470 0 404.129000 1.227100 1 +SPEAKER 02470 0 409.160000 0.643000 1 +SPEAKER 02470 0 411.973000 0.616000 1 +SPEAKER 02470 0 418.417560 1.814440 1 +SPEAKER 02470 0 422.860420 0.457140 1 +SPEAKER 02470 0 423.946140 0.757140 1 +SPEAKER 02470 0 426.189000 2.314000 1 +SPEAKER 02470 0 428.803000 1.757000 1 +SPEAKER 02470 0 434.299000 0.594140 1 +SPEAKER 02470 0 435.417000 4.683000 1 +SPEAKER 02470 0 442.454000 12.085000 1 +SPEAKER 02470 0 456.198000 2.207000 1 +SPEAKER 02470 0 458.795000 8.561000 1 +SPEAKER 02470 0 472.417560 0.485720 1 +SPEAKER 02470 0 480.858000 3.864000 1 +SPEAKER 02470 0 495.631850 1.712150 1 +SPEAKER 02470 0 502.625000 12.366000 1 +SPEAKER 02470 0 515.308000 9.487000 1 +SPEAKER 02470 0 527.881000 0.512000 1 +SPEAKER 02470 0 539.698000 2.341000 1 +SPEAKER 02470 0 545.614000 0.413000 1 +SPEAKER 02470 0 554.564000 4.402000 1 +SPEAKER 02470 0 559.405000 1.927000 1 +SPEAKER 02470 0 576.990600 0.451220 1 +SPEAKER 02470 0 584.856000 17.183000 1 +SPEAKER 02470 0 604.137000 0.890000 1 +SPEAKER 02470 0 605.405000 6.049000 1 +SPEAKER 02470 0 611.941820 9.280180 1 +SPEAKER 02470 0 621.698000 1.085000 1 +SPEAKER 02470 0 626.393040 0.401960 1 +SPEAKER 02470 0 627.230000 0.485000 1 +SPEAKER 02470 0 628.100000 0.842000 1 +SPEAKER 02470 0 636.307680 2.768290 1 +SPEAKER 02470 0 644.100000 1.134510 1 +SPEAKER 02470 0 651.771000 1.256000 1 +SPEAKER 02470 0 653.527000 8.281000 1 +SPEAKER 02470 0 664.819870 0.512200 1 +SPEAKER 02470 0 666.405240 0.450760 1 +SPEAKER 02470 0 668.003000 0.610000 1 +SPEAKER 02470 0 684.210120 4.060880 1 +SPEAKER 02470 0 692.247000 2.914000 1 +SPEAKER 02470 0 695.455000 4.414000 1 +SPEAKER 02470 0 700.454000 2.866000 1 +SPEAKER 02470 0 706.691000 0.556000 1 +SPEAKER 02470 0 709.380850 0.707150 1 +SPEAKER 02470 0 714.092690 0.666660 1 +SPEAKER 02470 0 719.222000 3.866000 1 +SPEAKER 02470 0 728.637000 1.683000 1 +SPEAKER 02470 0 730.698000 1.634000 1 +SPEAKER 02470 0 732.710000 1.817000 1 +SPEAKER 02470 0 744.698600 0.393450 1 +SPEAKER 02470 0 745.510000 1.664000 1 +SPEAKER 02470 0 754.259000 1.768000 1 +SPEAKER 02470 0 756.387560 1.676440 1 +SPEAKER 02470 0 758.405000 1.354000 1 +SPEAKER 02470 0 760.491000 0.732190 1 +SPEAKER 02470 0 762.783000 2.427000 1 +SPEAKER 02470 0 787.861920 0.470080 1 +SPEAKER 02470 0 797.823460 0.776540 1 +SPEAKER 02470 0 801.284990 0.576930 1 +SPEAKER 02470 0 803.938840 1.875160 1 +SPEAKER 02470 0 809.502940 4.166670 1 +SPEAKER 02470 0 814.656790 2.441210 1 +SPEAKER 02470 0 819.708070 0.615390 1 +SPEAKER 02470 0 829.733710 0.580290 1 +SPEAKER 02470 0 831.387560 0.818440 1 +SPEAKER 02470 0 854.611000 1.584250 1 +SPEAKER 02470 0 866.336280 3.282050 1 +SPEAKER 02470 0 870.181000 0.873220 1 +SPEAKER 02470 0 873.951660 0.673340 1 +SPEAKER 02470 0 875.436000 1.716000 1 +SPEAKER 02470 0 877.682430 5.023570 1 +SPEAKER 02470 0 886.895000 0.973000 1 +SPEAKER 02470 0 889.900380 3.872620 1 +SPEAKER 02470 0 894.733710 4.783290 1 +SPEAKER 02470 0 901.314000 1.612020 1 +SPEAKER 02470 0 903.683000 3.422510 1 +SPEAKER 02470 0 909.142000 1.593000 1 +SPEAKER 02470 0 915.490120 0.988880 1 +SPEAKER 02470 0 922.995000 2.973000 1 +SPEAKER 02470 0 931.618330 4.686670 1 +SPEAKER 02470 0 937.856100 0.717900 1 +SPEAKER 02470 0 938.898000 7.488000 1 +SPEAKER 02470 0 951.421000 0.500000 1 +SPEAKER 02470 0 960.528580 0.717950 1 +SPEAKER 02470 0 961.951660 0.961540 1 +SPEAKER 02470 0 966.592690 1.840310 1 +SPEAKER 02470 0 974.014000 1.512000 1 +SPEAKER 02470 0 979.349100 1.641900 1 +SPEAKER 02470 0 981.352000 1.255000 1 +SPEAKER 02470 0 982.991000 0.535000 1 +SPEAKER 02470 0 985.220890 0.910260 1 +SPEAKER 02470 0 989.143970 2.266030 1 +SPEAKER 02470 0 991.898000 1.442000 1 +SPEAKER 02470 0 994.689000 0.337000 1 +SPEAKER 02470 0 995.601000 4.820000 1 +SPEAKER 02470 0 1000.689000 4.174000 1 +SPEAKER 02470 0 1005.631000 4.790000 1 +SPEAKER 02470 0 1011.910000 1.023000 1 +SPEAKER 02470 0 1014.735000 6.784000 1 +SPEAKER 02470 0 1025.761000 0.788000 1 +SPEAKER 02470 0 1028.807000 1.818000 1 +SPEAKER 02470 0 1031.079000 1.182000 1 +SPEAKER 02470 0 1035.897000 1.076000 1 +SPEAKER 02470 0 1037.810000 0.662000 1 +SPEAKER 02470 0 1042.094000 1.470000 1 +SPEAKER 02470 0 1044.518000 1.698000 1 +SPEAKER 02470 0 1046.628000 1.042000 1 +SPEAKER 02470 0 1049.156790 1.256410 1 +SPEAKER 02470 0 1052.337000 2.651000 1 +SPEAKER 02470 0 1055.428000 6.232000 1 +SPEAKER 02470 0 1065.785000 2.498000 1 +SPEAKER 02470 0 1068.934000 10.630000 1 +SPEAKER 02470 0 1080.297810 2.102570 1 +SPEAKER 02470 0 1082.734000 1.679200 1 +SPEAKER 02470 0 1101.861920 0.494080 1 +SPEAKER 02470 0 1114.210000 0.908330 1 +SPEAKER 02470 0 1133.913200 16.577800 1 +SPEAKER 02470 0 1150.905000 0.732000 1 +SPEAKER 02470 0 1154.938840 6.613160 1 +SPEAKER 02470 0 1163.186000 0.512000 1 +SPEAKER 02470 0 1164.356000 1.367190 1 +SPEAKER 02470 0 1170.369000 1.402000 1 +SPEAKER 02470 0 1173.978000 0.598000 1 +SPEAKER 02470 0 1176.503000 6.280000 1 +SPEAKER 02470 0 1183.100000 15.330000 1 +SPEAKER 02470 0 1199.283000 3.732000 1 +SPEAKER 02470 0 1203.836280 6.739720 1 +SPEAKER 02470 0 1211.064000 3.341000 1 +SPEAKER 02470 0 1214.722000 0.513000 1 +SPEAKER 02470 0 1215.759000 3.102920 1 +SPEAKER 02470 0 1222.340000 1.175000 1 +SPEAKER 02470 0 1227.100000 2.854000 1 +SPEAKER 02470 0 1237.657000 1.565000 1 +SPEAKER 02470 0 1239.708000 5.074000 1 +SPEAKER 02470 0 1245.783000 1.891000 1 +SPEAKER 02470 0 1248.686000 1.902000 1 +SPEAKER 02470 0 1251.125000 0.683000 1 +SPEAKER 02470 0 1252.637000 2.024000 1 +SPEAKER 02470 0 1256.161000 2.086000 1 +SPEAKER 02470 0 1258.881000 1.268000 1 +SPEAKER 02470 0 1262.442000 1.073000 1 +SPEAKER 02470 0 1264.394000 0.500000 1 +SPEAKER 02470 0 1265.434000 4.215000 1 +SPEAKER 02470 0 1270.397000 2.370000 1 +SPEAKER 02470 0 1279.718000 0.941000 1 +SPEAKER 02470 0 1280.973000 2.117000 1 +SPEAKER 02470 0 1283.414000 4.853000 1 +SPEAKER 02470 0 1293.292000 0.348000 1 +SPEAKER 02470 0 1297.169000 3.951000 1 +SPEAKER 02470 0 1301.777000 5.382000 1 +SPEAKER 02470 0 1307.620000 5.431000 1 +SPEAKER 02470 0 1315.169000 0.461000 1 +SPEAKER 02470 0 4.557000 0.609000 0 +SPEAKER 02470 0 8.638450 2.527550 0 +SPEAKER 02470 0 20.829360 0.409090 0 +SPEAKER 02470 0 45.129360 0.501790 0 +SPEAKER 02470 0 59.402090 0.445450 0 +SPEAKER 02470 0 61.965720 0.772280 0 +SPEAKER 02470 0 80.283900 0.600000 0 +SPEAKER 02470 0 85.202090 4.199910 0 +SPEAKER 02470 0 91.283900 2.054100 0 +SPEAKER 02470 0 94.693000 13.954540 0 +SPEAKER 02470 0 110.920270 0.518180 0 +SPEAKER 02470 0 113.284000 3.181720 0 +SPEAKER 02470 0 116.875000 2.457350 0 +SPEAKER 02470 0 120.166000 0.527000 0 +SPEAKER 02470 0 129.483300 33.318700 0 +SPEAKER 02470 0 163.426690 8.221310 0 +SPEAKER 02470 0 179.945560 1.103770 0 +SPEAKER 02470 0 186.936130 0.867870 0 +SPEAKER 02470 0 191.323000 1.104000 0 +SPEAKER 02470 0 198.668920 0.833250 0 +SPEAKER 02470 0 201.757150 0.431370 0 +SPEAKER 02470 0 204.266960 2.235040 0 +SPEAKER 02470 0 210.200000 7.255000 0 +SPEAKER 02470 0 219.040000 4.953000 0 +SPEAKER 02470 0 224.295000 10.254000 0 +SPEAKER 02470 0 235.188520 4.992480 0 +SPEAKER 02470 0 240.649310 6.041690 0 +SPEAKER 02470 0 247.110090 2.740910 0 +SPEAKER 02470 0 250.404210 0.656860 0 +SPEAKER 02470 0 256.786560 0.555230 0 +SPEAKER 02470 0 257.681000 5.387000 0 +SPEAKER 02470 0 269.933620 30.269380 0 +SPEAKER 02470 0 301.620590 0.618640 0 +SPEAKER 02470 0 305.298560 0.245760 0 +SPEAKER 02470 0 311.052790 0.381360 0 +SPEAKER 02470 0 312.746140 0.414280 0 +SPEAKER 02470 0 316.346000 3.372000 0 +SPEAKER 02470 0 322.489000 0.886000 0 +SPEAKER 02470 0 324.046140 0.285860 0 +SPEAKER 02470 0 327.175000 0.514000 0 +SPEAKER 02470 0 333.103000 11.629000 0 +SPEAKER 02470 0 345.529000 11.060000 0 +SPEAKER 02470 0 356.961000 1.842000 0 +SPEAKER 02470 0 359.118000 1.842000 0 +SPEAKER 02470 0 363.304000 3.228000 0 +SPEAKER 02470 0 370.203000 0.428850 0 +SPEAKER 02470 0 381.903280 0.885720 0 +SPEAKER 02470 0 386.575000 2.542560 0 +SPEAKER 02470 0 390.903280 12.756720 0 +SPEAKER 02470 0 405.060000 6.886000 0 +SPEAKER 02470 0 413.703280 5.956720 0 +SPEAKER 02470 0 420.075000 2.228000 0 +SPEAKER 02470 0 422.832000 3.328000 0 +SPEAKER 02470 0 428.494000 0.452000 0 +SPEAKER 02470 0 431.217560 4.565440 0 +SPEAKER 02470 0 440.235000 1.670000 0 +SPEAKER 02470 0 447.888000 0.371000 0 +SPEAKER 02470 0 454.515000 1.549000 0 +SPEAKER 02470 0 458.356000 0.415000 0 +SPEAKER 02470 0 468.283000 15.000000 0 +SPEAKER 02470 0 485.167000 11.628000 0 +SPEAKER 02470 0 497.203280 5.372720 0 +SPEAKER 02470 0 511.913200 0.333330 0 +SPEAKER 02470 0 514.856000 0.467460 0 +SPEAKER 02470 0 524.759000 14.866000 0 +SPEAKER 02470 0 542.006000 12.570000 0 +SPEAKER 02470 0 556.428000 0.404000 0 +SPEAKER 02470 0 557.356000 1.415000 0 +SPEAKER 02470 0 559.052000 0.768000 0 +SPEAKER 02470 0 560.722000 24.086000 0 +SPEAKER 02470 0 585.880850 1.182920 0 +SPEAKER 02470 0 602.161000 4.330000 0 +SPEAKER 02470 0 615.783290 0.353660 0 +SPEAKER 02470 0 621.137000 0.560920 0 +SPEAKER 02470 0 623.027000 0.476000 0 +SPEAKER 02470 0 624.007000 1.935000 0 +SPEAKER 02470 0 628.966000 7.817000 0 +SPEAKER 02470 0 637.490600 0.756100 0 +SPEAKER 02470 0 639.292000 12.942510 0 +SPEAKER 02470 0 661.893000 2.951000 0 +SPEAKER 02470 0 665.490600 0.561400 0 +SPEAKER 02470 0 667.223190 0.706440 0 +SPEAKER 02470 0 669.514990 13.110010 0 +SPEAKER 02470 0 682.917000 1.708000 0 +SPEAKER 02470 0 686.783290 0.939020 0 +SPEAKER 02470 0 688.477000 3.770000 0 +SPEAKER 02470 0 694.100360 1.268640 0 +SPEAKER 02470 0 695.722000 0.853970 0 +SPEAKER 02470 0 697.746700 0.697800 0 +SPEAKER 02470 0 699.869000 0.743550 0 +SPEAKER 02470 0 703.348000 15.655000 0 +SPEAKER 02470 0 723.210000 5.408330 0 +SPEAKER 02470 0 730.347000 0.558000 0 +SPEAKER 02470 0 731.451660 1.705130 0 +SPEAKER 02470 0 734.669610 0.230770 0 +SPEAKER 02470 0 735.186000 4.207000 0 +SPEAKER 02470 0 739.926020 4.710980 0 +SPEAKER 02470 0 745.309000 1.291000 0 +SPEAKER 02470 0 747.310630 7.082370 0 +SPEAKER 02470 0 755.913200 0.282050 0 +SPEAKER 02470 0 759.930000 0.518000 0 +SPEAKER 02470 0 762.637000 0.549000 0 +SPEAKER 02470 0 763.930000 0.419100 0 +SPEAKER 02470 0 765.951660 6.319340 0 +SPEAKER 02470 0 772.966000 0.524120 0 +SPEAKER 02470 0 774.208070 15.794930 0 +SPEAKER 02470 0 790.405000 2.195000 0 +SPEAKER 02470 0 792.978000 5.000000 0 +SPEAKER 02470 0 798.708070 5.551930 0 +SPEAKER 02470 0 805.682430 5.166670 0 +SPEAKER 02470 0 812.079000 0.357000 0 +SPEAKER 02470 0 813.849100 0.705120 0 +SPEAKER 02470 0 817.156790 14.699210 0 +SPEAKER 02470 0 832.272170 23.474360 0 +SPEAKER 02470 0 856.368000 3.243000 0 +SPEAKER 02470 0 860.169610 6.061780 0 +SPEAKER 02470 0 869.618330 5.708670 0 +SPEAKER 02470 0 876.463000 0.337000 0 +SPEAKER 02470 0 877.349100 0.383900 0 +SPEAKER 02470 0 882.746000 6.936430 0 +SPEAKER 02470 0 893.784990 1.069010 0 +SPEAKER 02470 0 900.071000 1.310000 0 +SPEAKER 02470 0 902.491000 1.198000 0 +SPEAKER 02470 0 905.131150 0.417850 0 +SPEAKER 02470 0 908.096000 1.186000 0 +SPEAKER 02470 0 911.913200 4.089800 0 +SPEAKER 02470 0 916.293000 7.440710 0 +SPEAKER 02470 0 926.195250 6.167750 0 +SPEAKER 02470 0 933.317000 0.500000 0 +SPEAKER 02470 0 936.105510 2.978490 0 +SPEAKER 02470 0 944.861920 0.589740 0 +SPEAKER 02470 0 946.503000 2.139000 0 +SPEAKER 02470 0 948.991000 18.372000 0 +SPEAKER 02470 0 968.596000 2.872000 0 +SPEAKER 02470 0 971.861920 2.152080 0 +SPEAKER 02470 0 975.765000 4.749000 0 +SPEAKER 02470 0 980.817000 0.407000 0 +SPEAKER 02470 0 981.817000 1.058000 0 +SPEAKER 02470 0 983.131000 6.141170 0 +SPEAKER 02470 0 990.195250 2.115380 0 +SPEAKER 02470 0 993.538000 1.604000 0 +SPEAKER 02470 0 997.338000 0.420000 0 +SPEAKER 02470 0 1000.224000 0.453000 0 +SPEAKER 02470 0 1004.784990 0.555010 0 +SPEAKER 02470 0 1008.631150 0.564100 0 +SPEAKER 02470 0 1010.682430 0.769230 0 +SPEAKER 02470 0 1012.991000 2.314000 0 +SPEAKER 02470 0 1020.478000 8.374000 0 +SPEAKER 02470 0 1030.776000 0.424000 0 +SPEAKER 02470 0 1032.337000 4.333000 0 +SPEAKER 02470 0 1037.079000 1.576000 0 +SPEAKER 02470 0 1039.170000 3.258000 0 +SPEAKER 02470 0 1043.175000 1.359000 0 +SPEAKER 02470 0 1046.336280 2.820510 0 +SPEAKER 02470 0 1050.592690 2.214310 0 +SPEAKER 02470 0 1054.594000 0.864000 0 +SPEAKER 02470 0 1061.689000 1.286000 0 +SPEAKER 02470 0 1063.318000 2.392000 0 +SPEAKER 02470 0 1079.284990 0.846160 0 +SPEAKER 02470 0 1082.426020 1.027980 0 +SPEAKER 02470 0 1085.186000 1.463000 0 +SPEAKER 02470 0 1089.308000 45.220580 0 +SPEAKER 02470 0 1146.567040 0.630960 0 +SPEAKER 02470 0 1150.669610 0.833390 0 +SPEAKER 02470 0 1152.259350 1.596650 0 +SPEAKER 02470 0 1154.138000 0.736620 0 +SPEAKER 02470 0 1161.801000 1.080000 0 +SPEAKER 02470 0 1166.747000 3.573000 0 +SPEAKER 02470 0 1171.911000 2.055000 0 +SPEAKER 02470 0 1174.417000 0.598760 0 +SPEAKER 02470 0 1175.515000 0.590510 0 +SPEAKER 02470 0 1180.435000 0.458000 0 +SPEAKER 02470 0 1182.393000 0.951000 0 +SPEAKER 02470 0 1185.477300 0.317700 0 +SPEAKER 02470 0 1191.759000 0.402000 0 +SPEAKER 02470 0 1198.784990 0.510010 0 +SPEAKER 02470 0 1199.795000 0.342000 0 +SPEAKER 02470 0 1201.349100 2.531900 0 +SPEAKER 02470 0 1213.991000 0.487000 0 +SPEAKER 02470 0 1215.431000 0.340000 0 +SPEAKER 02470 0 1216.722000 0.293000 0 +SPEAKER 02470 0 1223.554220 1.205130 0 +SPEAKER 02470 0 1225.567040 0.564110 0 +SPEAKER 02470 0 1230.137000 1.268000 0 +SPEAKER 02470 0 1231.900380 5.769230 0 +SPEAKER 02470 0 1243.605510 2.263490 0 +SPEAKER 02470 0 1247.771000 0.390000 0 +SPEAKER 02470 0 1250.710000 0.366000 0 +SPEAKER 02470 0 1252.116000 0.762930 0 +SPEAKER 02470 0 1253.413200 3.540800 0 +SPEAKER 02470 0 1258.308000 0.536000 0 +SPEAKER 02470 0 1262.349100 1.948710 0 +SPEAKER 02470 0 1267.590000 0.412000 0 +SPEAKER 02470 0 1269.551000 0.589000 0 +SPEAKER 02470 0 1272.992000 0.498120 0 +SPEAKER 02470 0 1274.208070 1.597930 0 +SPEAKER 02470 0 1276.296000 1.294000 0 +SPEAKER 02470 0 1278.100000 1.304000 0 +SPEAKER 02470 0 1279.767000 1.520000 0 +SPEAKER 02470 0 1282.306000 1.147000 0 +SPEAKER 02470 0 1287.964480 9.684520 0 +SPEAKER 02470 0 1301.140000 0.644990 0 +SPEAKER 02470 0 1305.826000 2.343000 0 +SPEAKER 02470 0 1311.065000 1.000000 0 +SPEAKER 02470 0 1312.983000 1.931000 0 +SPEAKER 02470 0 1315.759350 2.370650 0 diff --git a/rttm/few/02508.rttm b/rttm/few/02508.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ebe3b87dd5fce4fcaedc44063647f6795a29ef7b --- /dev/null +++ b/rttm/few/02508.rttm @@ -0,0 +1,282 @@ +SPEAKER 02508 0 1.060000 1.087920 1 +SPEAKER 02508 0 2.425000 3.703750 1 +SPEAKER 02508 0 6.461000 1.060000 1 +SPEAKER 02508 0 7.814000 3.229750 1 +SPEAKER 02508 0 11.504000 1.228920 1 +SPEAKER 02508 0 15.152000 0.643420 1 +SPEAKER 02508 0 16.078000 2.675750 1 +SPEAKER 02508 0 19.021000 1.937750 1 +SPEAKER 02508 0 21.689000 1.223000 1 +SPEAKER 02508 0 24.096840 0.925930 1 +SPEAKER 02508 0 25.745000 0.972000 1 +SPEAKER 02508 0 28.467000 2.515920 1 +SPEAKER 02508 0 31.476000 1.090250 1 +SPEAKER 02508 0 33.059810 1.693940 1 +SPEAKER 02508 0 35.634000 3.807250 1 +SPEAKER 02508 0 39.795000 1.000000 1 +SPEAKER 02508 0 41.200000 1.574580 1 +SPEAKER 02508 0 43.041290 1.545790 1 +SPEAKER 02508 0 44.926000 3.948620 1 +SPEAKER 02508 0 54.023000 2.610880 1 +SPEAKER 02508 0 58.393000 0.902420 1 +SPEAKER 02508 0 59.606000 0.509360 1 +SPEAKER 02508 0 61.541000 1.025250 1 +SPEAKER 02508 0 64.522000 0.919250 1 +SPEAKER 02508 0 68.875000 1.444060 1 +SPEAKER 02508 0 71.295000 0.562920 1 +SPEAKER 02508 0 72.211000 0.700660 1 +SPEAKER 02508 0 73.673000 0.494920 1 +SPEAKER 02508 0 75.596840 0.888890 1 +SPEAKER 02508 0 79.243000 1.739920 1 +SPEAKER 02508 0 81.342000 1.199290 1 +SPEAKER 02508 0 84.448690 3.680060 1 +SPEAKER 02508 0 89.356000 1.522750 1 +SPEAKER 02508 0 91.633880 1.349040 1 +SPEAKER 02508 0 94.301000 1.888000 1 +SPEAKER 02508 0 97.763510 0.407410 1 +SPEAKER 02508 0 101.207950 1.852050 1 +SPEAKER 02508 0 105.300550 1.890700 1 +SPEAKER 02508 0 112.170920 0.633080 1 +SPEAKER 02508 0 115.912000 0.814000 1 +SPEAKER 02508 0 121.338000 1.312000 1 +SPEAKER 02508 0 125.133880 1.369870 1 +SPEAKER 02508 0 127.212000 1.583000 1 +SPEAKER 02508 0 132.150000 1.298690 1 +SPEAKER 02508 0 138.986000 1.705250 1 +SPEAKER 02508 0 141.300550 2.307370 1 +SPEAKER 02508 0 148.096840 4.333340 1 +SPEAKER 02508 0 152.764000 5.980990 1 +SPEAKER 02508 0 162.191250 1.034750 1 +SPEAKER 02508 0 164.782030 1.555970 1 +SPEAKER 02508 0 172.022770 0.444230 1 +SPEAKER 02508 0 175.795420 1.458330 1 +SPEAKER 02508 0 179.411660 0.779340 1 +SPEAKER 02508 0 180.764000 1.552250 1 +SPEAKER 02508 0 184.597000 0.870000 1 +SPEAKER 02508 0 189.615000 0.870730 1 +SPEAKER 02508 0 197.170420 1.166660 1 +SPEAKER 02508 0 198.948690 2.138390 1 +SPEAKER 02508 0 201.442000 1.000000 1 +SPEAKER 02508 0 204.022770 2.962960 1 +SPEAKER 02508 0 208.107920 4.979160 1 +SPEAKER 02508 0 213.800550 1.611110 1 +SPEAKER 02508 0 215.682000 2.342580 1 +SPEAKER 02508 0 219.504250 0.520750 1 +SPEAKER 02508 0 221.633880 2.407120 1 +SPEAKER 02508 0 225.462000 0.708920 1 +SPEAKER 02508 0 228.295420 0.634760 1 +SPEAKER 02508 0 229.436000 1.171920 1 +SPEAKER 02508 0 231.147000 0.752580 1 +SPEAKER 02508 0 233.874620 0.545800 1 +SPEAKER 02508 0 236.295420 3.666660 1 +SPEAKER 02508 0 240.911660 0.962960 1 +SPEAKER 02508 0 245.419000 0.622290 1 +SPEAKER 02508 0 248.874620 1.462960 1 +SPEAKER 02508 0 251.462000 0.560770 1 +SPEAKER 02508 0 253.041290 1.545790 1 +SPEAKER 02508 0 255.234000 2.186420 1 +SPEAKER 02508 0 257.777000 2.101750 1 +SPEAKER 02508 0 261.060000 0.741000 1 +SPEAKER 02508 0 264.449000 3.992250 1 +SPEAKER 02508 0 269.293000 1.502420 1 +SPEAKER 02508 0 271.819000 1.463000 1 +SPEAKER 02508 0 275.597000 2.833000 1 +SPEAKER 02508 0 279.152000 0.556000 1 +SPEAKER 02508 0 281.782030 2.388890 1 +SPEAKER 02508 0 285.115000 1.138750 1 +SPEAKER 02508 0 287.930000 0.615420 1 +SPEAKER 02508 0 288.865000 0.676290 1 +SPEAKER 02508 0 292.685000 0.652580 1 +SPEAKER 02508 0 295.819000 0.601420 1 +SPEAKER 02508 0 296.912000 3.314470 1 +SPEAKER 02508 0 302.115000 1.500000 1 +SPEAKER 02508 0 304.407000 1.450920 1 +SPEAKER 02508 0 309.149440 2.479310 1 +SPEAKER 02508 0 312.121000 1.000000 1 +SPEAKER 02508 0 314.363000 1.733840 1 +SPEAKER 02508 0 316.740000 2.449440 1 +SPEAKER 02508 0 322.504250 1.907410 1 +SPEAKER 02508 0 325.786000 3.488580 1 +SPEAKER 02508 0 330.374620 0.462380 1 +SPEAKER 02508 0 331.335000 2.204000 1 +SPEAKER 02508 0 336.875000 1.314440 1 +SPEAKER 02508 0 340.985730 0.592270 1 +SPEAKER 02508 0 343.726470 1.351850 1 +SPEAKER 02508 0 345.707950 1.000050 1 +SPEAKER 02508 0 350.726470 2.568950 1 +SPEAKER 02508 0 353.709000 1.294750 1 +SPEAKER 02508 0 357.967210 1.932370 1 +SPEAKER 02508 0 367.482920 1.169480 1 +SPEAKER 02508 0 369.282030 0.925920 1 +SPEAKER 02508 0 373.913000 2.799000 1 +SPEAKER 02508 0 379.016000 1.654920 1 +SPEAKER 02508 0 382.282030 0.972060 1 +SPEAKER 02508 0 385.345000 1.000000 1 +SPEAKER 02508 0 386.949000 3.740440 1 +SPEAKER 02508 0 391.284000 2.423950 1 +SPEAKER 02508 0 394.442000 0.728920 1 +SPEAKER 02508 0 395.912000 2.221880 1 +SPEAKER 02508 0 399.652400 0.685180 1 +SPEAKER 02508 0 404.893000 1.277920 1 +SPEAKER 02508 0 409.115000 0.556000 1 +SPEAKER 02508 0 412.004000 2.907660 1 +SPEAKER 02508 0 415.224000 3.621000 1 +SPEAKER 02508 0 420.782000 1.965000 1 +SPEAKER 02508 0 425.078320 2.907680 1 +SPEAKER 02508 0 429.861000 1.921030 1 +SPEAKER 02508 0 432.263510 1.103490 1 +SPEAKER 02508 0 435.095000 1.502000 1 +SPEAKER 02508 0 443.615000 1.231000 1 +SPEAKER 02508 0 446.004000 1.386450 1 +SPEAKER 02508 0 447.768000 0.625140 1 +SPEAKER 02508 0 454.596840 1.465160 1 +SPEAKER 02508 0 457.578320 2.203680 1 +SPEAKER 02508 0 460.986000 1.555290 1 +SPEAKER 02508 0 463.448000 0.834000 1 +SPEAKER 02508 0 469.237000 5.267000 1 +SPEAKER 02508 0 475.384000 3.286920 1 +SPEAKER 02508 0 481.467210 0.814820 1 +SPEAKER 02508 0 483.364000 1.730000 1 +SPEAKER 02508 0 485.596840 2.277780 1 +SPEAKER 02508 0 490.685910 1.227270 1 +SPEAKER 02508 0 492.380000 1.976100 1 +SPEAKER 02508 0 495.115000 0.963000 1 +SPEAKER 02508 0 501.740000 0.616100 1 +SPEAKER 02508 0 506.254090 0.545460 1 +SPEAKER 02508 0 507.282030 0.611110 1 +SPEAKER 02508 0 513.731000 3.662140 1 +SPEAKER 02508 0 518.170920 1.000000 1 +SPEAKER 02508 0 519.970000 2.534250 1 +SPEAKER 02508 0 525.231360 3.125640 1 +SPEAKER 02508 0 529.522770 3.458590 1 +SPEAKER 02508 0 533.294000 1.000000 1 +SPEAKER 02508 0 534.728000 7.350320 1 +SPEAKER 02508 0 546.979000 2.593000 1 +SPEAKER 02508 0 550.068000 1.269580 1 +SPEAKER 02508 0 551.691000 0.767640 1 +SPEAKER 02508 0 552.798000 8.183360 1 +SPEAKER 02508 0 561.423000 0.672000 1 +SPEAKER 02508 0 562.452000 1.324820 1 +SPEAKER 02508 0 12.253750 3.972720 0 +SPEAKER 02508 0 21.707950 0.944450 0 +SPEAKER 02508 0 25.819000 3.241000 0 +SPEAKER 02508 0 34.578000 1.222550 0 +SPEAKER 02508 0 36.948690 1.185190 0 +SPEAKER 02508 0 48.245000 4.029580 0 +SPEAKER 02508 0 52.577000 1.323000 0 +SPEAKER 02508 0 55.613000 1.911580 0 +SPEAKER 02508 0 60.983000 0.484210 0 +SPEAKER 02508 0 62.930000 0.889060 0 +SPEAKER 02508 0 64.486000 1.573810 0 +SPEAKER 02508 0 66.318000 0.760320 0 +SPEAKER 02508 0 70.097000 1.536880 0 +SPEAKER 02508 0 76.689000 1.833770 0 +SPEAKER 02508 0 81.226470 3.296300 0 +SPEAKER 02508 0 85.189440 0.481560 0 +SPEAKER 02508 0 88.171000 1.314730 0 +SPEAKER 02508 0 90.358000 1.999920 0 +SPEAKER 02508 0 93.568000 0.727000 0 +SPEAKER 02508 0 96.208000 1.649920 0 +SPEAKER 02508 0 98.942000 1.926000 0 +SPEAKER 02508 0 105.963000 0.615320 0 +SPEAKER 02508 0 109.189000 1.523080 0 +SPEAKER 02508 0 115.115000 0.963000 0 +SPEAKER 02508 0 117.875000 2.129250 0 +SPEAKER 02508 0 122.921000 0.666000 0 +SPEAKER 02508 0 124.948690 0.925930 0 +SPEAKER 02508 0 129.356100 0.870370 0 +SPEAKER 02508 0 136.107920 0.951890 0 +SPEAKER 02508 0 138.893000 0.650000 0 +SPEAKER 02508 0 140.559810 0.943940 0 +SPEAKER 02508 0 143.485730 1.538850 0 +SPEAKER 02508 0 146.096840 1.000000 0 +SPEAKER 02508 0 147.379000 0.499750 0 +SPEAKER 02508 0 154.537000 1.652440 0 +SPEAKER 02508 0 158.837080 1.114920 0 +SPEAKER 02508 0 161.753750 0.713460 0 +SPEAKER 02508 0 164.374620 0.574070 0 +SPEAKER 02508 0 166.819060 2.101360 0 +SPEAKER 02508 0 169.800550 0.629630 0 +SPEAKER 02508 0 170.927000 0.680920 0 +SPEAKER 02508 0 172.985730 1.481480 0 +SPEAKER 02508 0 177.134000 0.703080 0 +SPEAKER 02508 0 185.578000 0.922000 0 +SPEAKER 02508 0 190.002000 0.428000 0 +SPEAKER 02508 0 195.420420 1.028580 0 +SPEAKER 02508 0 198.374620 0.851850 0 +SPEAKER 02508 0 202.378750 1.625000 0 +SPEAKER 02508 0 206.652000 1.000400 0 +SPEAKER 02508 0 213.377000 0.516140 0 +SPEAKER 02508 0 218.152400 1.163600 0 +SPEAKER 02508 0 220.133000 1.000000 0 +SPEAKER 02508 0 230.524580 1.257420 0 +SPEAKER 02508 0 233.829000 1.591420 0 +SPEAKER 02508 0 242.041000 1.055840 0 +SPEAKER 02508 0 245.375000 1.055180 0 +SPEAKER 02508 0 246.941250 0.985750 0 +SPEAKER 02508 0 251.356100 2.240740 0 +SPEAKER 02508 0 255.170920 0.852080 0 +SPEAKER 02508 0 259.065420 1.128580 0 +SPEAKER 02508 0 261.171000 1.296210 0 +SPEAKER 02508 0 264.338000 0.880000 0 +SPEAKER 02508 0 270.208000 1.337420 0 +SPEAKER 02508 0 273.986000 1.518000 0 +SPEAKER 02508 0 285.764000 2.170000 0 +SPEAKER 02508 0 290.819000 1.830580 0 +SPEAKER 02508 0 293.176000 1.286080 0 +SPEAKER 02508 0 300.560000 2.148000 0 +SPEAKER 02508 0 303.486000 1.277510 0 +SPEAKER 02508 0 306.726470 1.713530 0 +SPEAKER 02508 0 313.133880 1.370370 0 +SPEAKER 02508 0 315.986000 0.999730 0 +SPEAKER 02508 0 318.744990 1.203700 0 +SPEAKER 02508 0 321.245000 1.279580 0 +SPEAKER 02508 0 329.078000 1.509080 0 +SPEAKER 02508 0 333.819000 1.425990 0 +SPEAKER 02508 0 338.189440 0.647640 0 +SPEAKER 02508 0 339.504000 1.553000 0 +SPEAKER 02508 0 341.469000 1.743080 0 +SPEAKER 02508 0 344.467210 1.073790 0 +SPEAKER 02508 0 348.504000 2.291420 0 +SPEAKER 02508 0 354.649580 1.873420 0 +SPEAKER 02508 0 359.962080 0.652920 0 +SPEAKER 02508 0 361.282000 0.703730 0 +SPEAKER 02508 0 364.441000 0.711400 0 +SPEAKER 02508 0 366.800550 1.057370 0 +SPEAKER 02508 0 370.652000 2.611510 0 +SPEAKER 02508 0 376.745000 1.999990 0 +SPEAKER 02508 0 383.875000 0.631000 0 +SPEAKER 02508 0 386.356100 0.518520 0 +SPEAKER 02508 0 393.819000 3.018580 0 +SPEAKER 02508 0 398.615360 4.161460 0 +SPEAKER 02508 0 403.705000 1.000000 0 +SPEAKER 02508 0 406.226000 1.278090 0 +SPEAKER 02508 0 408.155000 1.164060 0 +SPEAKER 02508 0 410.449000 1.600550 0 +SPEAKER 02508 0 417.967000 1.592810 0 +SPEAKER 02508 0 435.208000 0.593000 0 +SPEAKER 02508 0 437.041290 0.703700 0 +SPEAKER 02508 0 444.646000 1.017180 0 +SPEAKER 02508 0 450.337580 3.314820 0 +SPEAKER 02508 0 459.245000 2.241000 0 +SPEAKER 02508 0 467.152400 4.222220 0 +SPEAKER 02508 0 474.277000 0.856880 0 +SPEAKER 02508 0 479.671000 3.196730 0 +SPEAKER 02508 0 483.625000 0.470000 0 +SPEAKER 02508 0 486.856000 1.761730 0 +SPEAKER 02508 0 493.708000 0.870320 0 +SPEAKER 02508 0 495.930180 1.259260 0 +SPEAKER 02508 0 504.541290 1.000000 0 +SPEAKER 02508 0 511.134000 0.642820 0 +SPEAKER 02508 0 512.115000 1.000000 0 +SPEAKER 02508 0 520.140000 1.023180 0 +SPEAKER 02508 0 521.486000 0.535000 0 +SPEAKER 02508 0 523.004000 0.926180 0 +SPEAKER 02508 0 524.631000 1.214000 0 +SPEAKER 02508 0 527.685910 2.227270 0 +SPEAKER 02508 0 535.631000 0.703000 0 +SPEAKER 02508 0 538.049000 1.000000 0 +SPEAKER 02508 0 541.949000 5.926000 0 +SPEAKER 02508 0 551.689000 0.815090 0 +SPEAKER 02508 0 557.458640 1.045450 0 +SPEAKER 02508 0 560.967210 2.981790 0 diff --git a/rttm/few/02509.rttm b/rttm/few/02509.rttm new file mode 100644 index 0000000000000000000000000000000000000000..72b36310f17c8ce1f35ae74072c71f6ff75be370 --- /dev/null +++ b/rttm/few/02509.rttm @@ -0,0 +1,7 @@ +SPEAKER 02509 0 0.041000 4.037320 1 +SPEAKER 02509 0 4.689000 6.293920 1 +SPEAKER 02509 0 11.275000 1.437080 1 +SPEAKER 02509 0 12.993000 9.635750 1 +SPEAKER 02509 0 22.875000 0.706000 0 +SPEAKER 02509 0 22.912000 0.648000 h0 +SPEAKER 02509 0 22.893000 0.688000 h1 diff --git a/rttm/few/02513.rttm b/rttm/few/02513.rttm new file mode 100644 index 0000000000000000000000000000000000000000..a04c3489864e98fa9e5a6bd4c772de64014a01ed --- /dev/null +++ b/rttm/few/02513.rttm @@ -0,0 +1,17 @@ +SPEAKER 02513 0 0.009000 1.320000 1 +SPEAKER 02513 0 1.681290 20.066710 1 +SPEAKER 02513 0 22.115000 9.741000 1 +SPEAKER 02513 0 33.097000 1.555000 1 +SPEAKER 02513 0 36.023000 2.543000 1 +SPEAKER 02513 0 42.319000 1.889000 1 +SPEAKER 02513 0 44.708000 3.286000 1 +SPEAKER 02513 0 48.986000 2.390000 1 +SPEAKER 02513 0 6.338000 0.611000 0 +SPEAKER 02513 0 7.420000 0.677000 0 +SPEAKER 02513 0 18.875000 0.514000 0 +SPEAKER 02513 0 32.171000 0.852000 0 +SPEAKER 02513 0 34.745000 1.222000 0 +SPEAKER 02513 0 38.226000 3.241000 0 +SPEAKER 02513 0 45.152000 0.449000 0 +SPEAKER 02513 0 48.301000 0.611000 0 +SPEAKER 02513 0 51.399000 1.439000 0 diff --git a/rttm/few/02515.rttm b/rttm/few/02515.rttm new file mode 100644 index 0000000000000000000000000000000000000000..529279848a4befec96854b4d246c595c737d6096 --- /dev/null +++ b/rttm/few/02515.rttm @@ -0,0 +1,23 @@ +SPEAKER 02515 0 0.000000 1.004000 0 +SPEAKER 02515 0 7.893000 0.426000 0 +SPEAKER 02515 0 10.245000 1.579990 0 +SPEAKER 02515 0 17.593000 1.445450 0 +SPEAKER 02515 0 19.893000 2.481810 0 +SPEAKER 02515 0 22.724000 0.428000 0 +SPEAKER 02515 0 23.949000 2.333090 0 +SPEAKER 02515 0 26.929000 9.310000 0 +SPEAKER 02515 0 38.402090 0.714910 0 +SPEAKER 02515 0 39.738450 4.543550 0 +SPEAKER 02515 0 45.762000 3.724000 0 +SPEAKER 02515 0 50.912000 3.685000 0 +SPEAKER 02515 0 1.056630 9.855370 1 +SPEAKER 02515 0 11.800000 3.204000 1 +SPEAKER 02515 0 15.309360 2.287640 1 +SPEAKER 02515 0 18.984000 0.949000 1 +SPEAKER 02515 0 22.148000 1.245000 1 +SPEAKER 02515 0 23.838450 0.509090 1 +SPEAKER 02515 0 25.819000 2.019450 1 +SPEAKER 02515 0 35.056630 3.151370 1 +SPEAKER 02515 0 39.049360 1.251640 1 +SPEAKER 02515 0 44.222000 1.771000 1 +SPEAKER 02515 0 50.154810 0.738190 1 diff --git a/rttm/few/02532.rttm b/rttm/few/02532.rttm new file mode 100644 index 0000000000000000000000000000000000000000..acf0d9a9bd02b05cb91ddd4c1a9b8c69e6da8a20 --- /dev/null +++ b/rttm/few/02532.rttm @@ -0,0 +1,15 @@ +SPEAKER 02532 0 0.004000 5.666920 0 +SPEAKER 02532 0 9.189440 1.333330 0 +SPEAKER 02532 0 12.742000 1.428920 0 +SPEAKER 02532 0 14.930000 1.222400 0 +SPEAKER 02532 0 19.133880 7.851850 0 +SPEAKER 02532 0 28.949000 3.055250 0 +SPEAKER 02532 0 14.257440 0.709770 1 +SPEAKER 02532 0 16.206000 1.131580 1 +SPEAKER 02532 0 17.874620 1.870370 1 +SPEAKER 02532 0 21.023000 0.981250 1 +SPEAKER 02532 0 22.448690 0.962970 1 +SPEAKER 02532 0 25.189440 0.518510 1 +SPEAKER 02532 0 26.800550 0.851850 1 +SPEAKER 02532 0 29.541000 0.723000 1 +SPEAKER 02532 0 31.819000 0.571000 1 diff --git a/rttm/few/02535.rttm b/rttm/few/02535.rttm new file mode 100644 index 0000000000000000000000000000000000000000..bf51efc457ec027a1e71c237fee8001dab73f1a7 --- /dev/null +++ b/rttm/few/02535.rttm @@ -0,0 +1,132 @@ +SPEAKER 02535 0 0.707950 0.833340 0 +SPEAKER 02535 0 2.981000 1.980000 0 +SPEAKER 02535 0 6.558000 1.944000 0 +SPEAKER 02535 0 9.854000 1.150250 0 +SPEAKER 02535 0 13.836000 0.812000 0 +SPEAKER 02535 0 15.099000 1.820000 0 +SPEAKER 02535 0 17.235000 0.621000 0 +SPEAKER 02535 0 18.630000 2.622000 0 +SPEAKER 02535 0 22.141000 3.090000 0 +SPEAKER 02535 0 25.955000 1.854000 0 +SPEAKER 02535 0 28.463000 2.096000 0 +SPEAKER 02535 0 31.937000 0.760000 0 +SPEAKER 02535 0 37.609000 0.672000 0 +SPEAKER 02535 0 39.115360 1.943640 0 +SPEAKER 02535 0 41.826000 1.000000 0 +SPEAKER 02535 0 43.253000 1.139000 0 +SPEAKER 02535 0 44.781000 0.680000 0 +SPEAKER 02535 0 45.908000 1.657000 0 +SPEAKER 02535 0 48.641000 3.153000 0 +SPEAKER 02535 0 53.586000 1.979000 0 +SPEAKER 02535 0 57.336000 0.501580 0 +SPEAKER 02535 0 58.610000 1.000000 0 +SPEAKER 02535 0 60.528000 1.150000 0 +SPEAKER 02535 0 63.014000 1.562000 0 +SPEAKER 02535 0 65.309000 3.442000 0 +SPEAKER 02535 0 71.039000 0.650000 0 +SPEAKER 02535 0 80.222000 4.171000 0 +SPEAKER 02535 0 90.463000 0.430140 0 +SPEAKER 02535 0 92.339000 6.513000 0 +SPEAKER 02535 0 100.780000 1.322000 0 +SPEAKER 02535 0 106.384000 1.874000 0 +SPEAKER 02535 0 109.142000 0.560000 0 +SPEAKER 02535 0 110.528000 0.974000 0 +SPEAKER 02535 0 111.921000 0.953000 0 +SPEAKER 02535 0 113.472000 0.612000 0 +SPEAKER 02535 0 115.314000 0.430990 0 +SPEAKER 02535 0 117.469000 0.459000 0 +SPEAKER 02535 0 122.105000 0.292000 0 +SPEAKER 02535 0 122.956000 2.751950 0 +SPEAKER 02535 0 126.298000 0.312000 0 +SPEAKER 02535 0 127.991000 1.073000 0 +SPEAKER 02535 0 129.709000 2.000000 0 +SPEAKER 02535 0 133.720000 0.698000 0 +SPEAKER 02535 0 134.866000 1.675290 0 +SPEAKER 02535 0 136.917000 0.920580 0 +SPEAKER 02535 0 139.073000 0.333000 0 +SPEAKER 02535 0 145.204000 0.571000 0 +SPEAKER 02535 0 152.918000 2.289950 0 +SPEAKER 02535 0 163.180000 1.143000 0 +SPEAKER 02535 0 165.404000 0.597000 0 +SPEAKER 02535 0 166.608000 0.465000 0 +SPEAKER 02535 0 174.341000 4.997000 0 +SPEAKER 02535 0 181.251000 0.369000 0 +SPEAKER 02535 0 185.689440 0.252560 0 +SPEAKER 02535 0 186.837580 0.333340 0 +SPEAKER 02535 0 197.861000 0.547000 0 +SPEAKER 02535 0 204.698000 0.344000 0 +SPEAKER 02535 0 232.475000 1.120000 0 +SPEAKER 02535 0 234.689000 0.968000 0 +SPEAKER 02535 0 1.898000 1.000000 1 +SPEAKER 02535 0 3.974000 2.070000 1 +SPEAKER 02535 0 11.002000 1.229000 1 +SPEAKER 02535 0 13.898000 1.104000 1 +SPEAKER 02535 0 15.711000 0.562000 1 +SPEAKER 02535 0 17.408000 0.511000 1 +SPEAKER 02535 0 25.879000 0.433000 1 +SPEAKER 02535 0 28.338000 0.777360 1 +SPEAKER 02535 0 29.430180 0.961820 1 +SPEAKER 02535 0 32.094000 3.528000 1 +SPEAKER 02535 0 41.241000 1.040000 1 +SPEAKER 02535 0 43.336000 0.584000 1 +SPEAKER 02535 0 45.287000 1.000000 1 +SPEAKER 02535 0 46.781000 0.240000 1 +SPEAKER 02535 0 52.606000 0.875000 1 +SPEAKER 02535 0 55.190000 0.771000 1 +SPEAKER 02535 0 59.543000 0.910000 1 +SPEAKER 02535 0 61.678000 0.875000 1 +SPEAKER 02535 0 64.782030 0.618970 1 +SPEAKER 02535 0 69.214000 2.575000 1 +SPEAKER 02535 0 72.282000 18.666690 1 +SPEAKER 02535 0 93.015000 0.503000 1 +SPEAKER 02535 0 99.038000 0.814000 1 +SPEAKER 02535 0 102.488000 1.697000 1 +SPEAKER 02535 0 104.992000 0.960000 1 +SPEAKER 02535 0 107.707950 0.394050 1 +SPEAKER 02535 0 108.800000 0.472000 1 +SPEAKER 02535 0 109.761000 0.657000 1 +SPEAKER 02535 0 111.235000 0.600000 1 +SPEAKER 02535 0 112.293000 0.677000 1 +SPEAKER 02535 0 114.626000 0.552000 1 +SPEAKER 02535 0 116.566000 0.612000 1 +SPEAKER 02535 0 118.712000 1.199660 1 +SPEAKER 02535 0 127.314000 0.812000 1 +SPEAKER 02535 0 128.709000 1.980000 1 +SPEAKER 02535 0 131.178000 0.813000 1 +SPEAKER 02535 0 133.723000 0.997000 1 +SPEAKER 02535 0 138.918000 0.440000 1 +SPEAKER 02535 0 139.835000 2.391470 1 +SPEAKER 02535 0 143.144000 1.167000 1 +SPEAKER 02535 0 145.878000 5.107730 1 +SPEAKER 02535 0 151.375000 1.067000 1 +SPEAKER 02535 0 156.557000 1.000000 1 +SPEAKER 02535 0 159.049000 0.619000 1 +SPEAKER 02535 0 164.609000 0.686000 1 +SPEAKER 02535 0 165.724000 0.587000 1 +SPEAKER 02535 0 166.930000 1.512000 1 +SPEAKER 02535 0 169.097000 1.154000 1 +SPEAKER 02535 0 171.287000 0.643000 1 +SPEAKER 02535 0 172.827000 0.793000 1 +SPEAKER 02535 0 175.441000 0.357000 1 +SPEAKER 02535 0 179.525000 1.572000 1 +SPEAKER 02535 0 181.620000 1.550920 1 +SPEAKER 02535 0 183.799000 1.190000 1 +SPEAKER 02535 0 185.739000 0.703000 1 +SPEAKER 02535 0 186.912000 2.555210 1 +SPEAKER 02535 0 190.125000 1.000000 1 +SPEAKER 02535 0 191.830000 1.137210 1 +SPEAKER 02535 0 193.455000 1.297000 1 +SPEAKER 02535 0 195.442000 2.153000 1 +SPEAKER 02535 0 198.560000 2.270000 1 +SPEAKER 02535 0 202.760000 1.522030 1 +SPEAKER 02535 0 205.220000 2.782000 1 +SPEAKER 02535 0 208.589000 0.975000 1 +SPEAKER 02535 0 210.088000 2.632000 1 +SPEAKER 02535 0 213.361000 0.891000 1 +SPEAKER 02535 0 215.299000 1.000000 1 +SPEAKER 02535 0 217.033000 4.211990 1 +SPEAKER 02535 0 221.936000 3.488000 1 +SPEAKER 02535 0 226.158000 0.469000 1 +SPEAKER 02535 0 227.314000 2.393950 1 +SPEAKER 02535 0 230.084000 2.216550 1 +SPEAKER 02535 0 232.861000 0.460000 1 diff --git a/rttm/few/02536.rttm b/rttm/few/02536.rttm new file mode 100644 index 0000000000000000000000000000000000000000..08510ac7cb5d0bf4fcb8a9741976d10feeda6a7c --- /dev/null +++ b/rttm/few/02536.rttm @@ -0,0 +1,15 @@ +SPEAKER 02536 0 0.711000 1.530000 0 +SPEAKER 02536 0 4.986000 1.055000 0 +SPEAKER 02536 0 7.169000 1.877000 0 +SPEAKER 02536 0 11.044000 0.775000 0 +SPEAKER 02536 0 15.208000 0.661000 0 +SPEAKER 02536 0 29.782000 0.491000 0 +SPEAKER 02536 0 31.152000 0.612000 0 +SPEAKER 02536 0 2.616840 2.739260 1 +SPEAKER 02536 0 5.726470 1.351850 1 +SPEAKER 02536 0 8.133880 2.262220 1 +SPEAKER 02536 0 10.782030 9.629630 1 +SPEAKER 02536 0 20.948690 1.703710 1 +SPEAKER 02536 0 23.096840 6.388890 1 +SPEAKER 02536 0 29.820550 1.350370 1 +SPEAKER 02536 0 32.149000 1.358000 1 diff --git a/rttm/few/02544.rttm b/rttm/few/02544.rttm new file mode 100644 index 0000000000000000000000000000000000000000..adbb9cf6b83db414efd1e004ee9dd2606679ca0d --- /dev/null +++ b/rttm/few/02544.rttm @@ -0,0 +1,20 @@ +SPEAKER 02544 0 0.047000 0.532000 1 +SPEAKER 02544 0 2.316000 1.318000 1 +SPEAKER 02544 0 4.060000 0.611000 1 +SPEAKER 02544 0 11.152000 0.889000 1 +SPEAKER 02544 0 15.421000 3.447000 1 +SPEAKER 02544 0 21.414000 1.375000 1 +SPEAKER 02544 0 25.711000 2.684000 1 +SPEAKER 02544 0 35.115000 2.007000 1 +SPEAKER 02544 0 6.079000 5.388000 2 +SPEAKER 02544 0 12.115000 3.667000 2 +SPEAKER 02544 0 19.447000 1.527000 2 +SPEAKER 02544 0 22.947000 2.685000 2 +SPEAKER 02544 0 29.763000 3.526000 2 +SPEAKER 02544 0 35.004000 0.981730 2 +SPEAKER 02544 0 4.541000 1.426210 0 +SPEAKER 02544 0 6.684000 0.857290 0 +SPEAKER 02544 0 13.079000 1.000000 0 +SPEAKER 02544 0 17.026000 2.316000 0 +SPEAKER 02544 0 21.079000 1.334000 0 +SPEAKER 02544 0 33.341000 1.396000 0 diff --git a/rttm/few/02564.rttm b/rttm/few/02564.rttm new file mode 100644 index 0000000000000000000000000000000000000000..3cbad550da1f994b523634a2997b8d678b239039 --- /dev/null +++ b/rttm/few/02564.rttm @@ -0,0 +1,17 @@ +SPEAKER 02564 0 0.023000 5.259030 1 +SPEAKER 02564 0 5.744990 2.962960 1 +SPEAKER 02564 0 12.689000 1.315000 1 +SPEAKER 02564 0 16.635000 4.498880 1 +SPEAKER 02564 0 21.726470 0.759260 1 +SPEAKER 02564 0 23.689000 0.981920 1 +SPEAKER 02564 0 25.541000 6.093000 1 +SPEAKER 02564 0 32.523000 4.536810 1 +SPEAKER 02564 0 37.330000 0.840920 1 +SPEAKER 02564 0 42.115360 4.351850 1 +SPEAKER 02564 0 8.486000 4.185000 0 +SPEAKER 02564 0 14.115000 2.500000 0 +SPEAKER 02564 0 20.875000 0.518000 0 +SPEAKER 02564 0 22.245000 1.259000 0 +SPEAKER 02564 0 31.097000 1.389000 0 +SPEAKER 02564 0 37.393000 5.796000 0 +SPEAKER 02564 0 46.356000 4.056000 0 diff --git a/rttm/few/02567.rttm b/rttm/few/02567.rttm new file mode 100644 index 0000000000000000000000000000000000000000..0509f0609d1bf25191950002138e3df583d429f4 --- /dev/null +++ b/rttm/few/02567.rttm @@ -0,0 +1,15 @@ +SPEAKER 02567 0 2.393000 3.574210 1 +SPEAKER 02567 0 6.338000 2.499580 1 +SPEAKER 02567 0 9.707950 4.222230 1 +SPEAKER 02567 0 17.578000 0.963000 1 +SPEAKER 02567 0 21.938000 1.658840 1 +SPEAKER 02567 0 24.208000 1.389000 1 +SPEAKER 02567 0 26.077000 3.612440 1 +SPEAKER 02567 0 30.449000 2.036730 1 +SPEAKER 02567 0 35.504000 2.349000 1 +SPEAKER 02567 0 14.096840 2.611160 0 +SPEAKER 02567 0 18.541000 3.056000 0 +SPEAKER 02567 0 27.342000 0.440030 0 +SPEAKER 02567 0 29.856100 0.981900 0 +SPEAKER 02567 0 33.597000 1.166510 0 +SPEAKER 02567 0 35.615000 0.944810 0 diff --git a/rttm/few/02589.rttm b/rttm/few/02589.rttm new file mode 100644 index 0000000000000000000000000000000000000000..dac9b7428a963ab5c8be3fde091d76e0f62be613 --- /dev/null +++ b/rttm/few/02589.rttm @@ -0,0 +1,20 @@ +SPEAKER 02589 0 0.689000 1.593000 1 +SPEAKER 02589 0 5.587000 1.195000 1 +SPEAKER 02589 0 7.553000 0.907000 1 +SPEAKER 02589 0 11.010000 1.255000 1 +SPEAKER 02589 0 18.621000 4.822000 1 +SPEAKER 02589 0 28.612000 4.280000 1 +SPEAKER 02589 0 34.205000 2.585000 1 +SPEAKER 02589 0 38.341000 0.390000 1 +SPEAKER 02589 0 41.968000 1.441000 1 +SPEAKER 02589 0 54.163000 2.686000 1 +SPEAKER 02589 0 57.443000 2.661000 1 +SPEAKER 02589 0 0.000000 0.344260 0 +SPEAKER 02589 0 3.349000 0.916000 0 +SPEAKER 02589 0 12.528000 0.600580 0 +SPEAKER 02589 0 13.400000 4.602000 0 +SPEAKER 02589 0 24.850000 1.694000 0 +SPEAKER 02589 0 37.408000 0.857000 0 +SPEAKER 02589 0 39.510000 1.348000 0 +SPEAKER 02589 0 44.341000 0.898000 0 +SPEAKER 02589 0 48.442000 5.109580 0 diff --git a/rttm/few/02590.rttm b/rttm/few/02590.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c1b9c789eda5f1f426d7c0aba672b2212d472458 --- /dev/null +++ b/rttm/few/02590.rttm @@ -0,0 +1,30 @@ +SPEAKER 02590 0 1.282000 1.056000 0 +SPEAKER 02590 0 2.633000 0.741620 0 +SPEAKER 02590 0 48.560000 1.129440 0 +SPEAKER 02590 0 0.004000 1.000000 2 +SPEAKER 02590 0 1.587080 1.104170 2 +SPEAKER 02590 0 3.087080 1.708340 2 +SPEAKER 02590 0 5.115000 2.284580 2 +SPEAKER 02590 0 7.716000 1.891920 2 +SPEAKER 02590 0 10.060000 4.985420 2 +SPEAKER 02590 0 15.496000 3.278580 2 +SPEAKER 02590 0 19.186000 1.000000 2 +SPEAKER 02590 0 20.733000 2.562420 2 +SPEAKER 02590 0 23.669000 1.293080 2 +SPEAKER 02590 0 25.320000 3.871250 2 +SPEAKER 02590 0 30.486000 4.934420 2 +SPEAKER 02590 0 35.689440 0.835140 2 +SPEAKER 02590 0 37.379000 2.032660 2 +SPEAKER 02590 0 39.716000 0.537750 2 +SPEAKER 02590 0 40.766000 0.737750 2 +SPEAKER 02590 0 41.947000 4.205400 2 +SPEAKER 02590 0 46.526000 2.040250 2 +SPEAKER 02590 0 51.967000 1.891000 2 +SPEAKER 02590 0 54.356000 2.203810 2 +SPEAKER 02590 0 56.856100 2.855980 2 +SPEAKER 02590 0 60.096000 0.574420 2 +SPEAKER 02590 0 61.245000 5.508750 2 +SPEAKER 02590 0 67.170420 0.400580 2 +SPEAKER 02590 0 48.560000 0.574000 3 +SPEAKER 02590 0 49.560000 2.547920 3 +SPEAKER 02590 0 52.523000 1.796000 3 diff --git a/rttm/few/02595.rttm b/rttm/few/02595.rttm new file mode 100644 index 0000000000000000000000000000000000000000..022df8f9c65f143ae52363b70a1a07ea660e07ee --- /dev/null +++ b/rttm/few/02595.rttm @@ -0,0 +1,12 @@ +SPEAKER 02595 0 0.018000 3.484000 0 +SPEAKER 02595 0 4.586000 6.770100 0 +SPEAKER 02595 0 16.631000 1.432000 0 +SPEAKER 02595 0 3.544000 0.960000 1 +SPEAKER 02595 0 6.531000 0.455000 1 +SPEAKER 02595 0 8.726000 0.593000 1 +SPEAKER 02595 0 11.364000 2.167000 1 +SPEAKER 02595 0 16.986000 1.907140 1 +SPEAKER 02595 0 11.356000 0.660000 2 +SPEAKER 02595 0 12.782000 0.408000 2 +SPEAKER 02595 0 13.596840 3.280160 2 +SPEAKER 02595 0 18.431000 9.821000 2 diff --git a/rttm/few/02596.rttm b/rttm/few/02596.rttm new file mode 100644 index 0000000000000000000000000000000000000000..822b2b3d7527df88b2107466f20d7cc18e5873f2 --- /dev/null +++ b/rttm/few/02596.rttm @@ -0,0 +1,14 @@ +SPEAKER 02596 0 0.481000 1.504730 0 +SPEAKER 02596 0 5.020000 1.076840 0 +SPEAKER 02596 0 13.838000 0.869000 0 +SPEAKER 02596 0 20.282000 1.000000 0 +SPEAKER 02596 0 22.203510 0.482960 0 +SPEAKER 02596 0 23.282030 1.669630 0 +SPEAKER 02596 0 25.266470 0.657530 0 +SPEAKER 02596 0 2.707950 7.778050 1 +SPEAKER 02596 0 11.000000 2.766000 1 +SPEAKER 02596 0 14.390000 5.947580 1 +SPEAKER 02596 0 22.206000 3.427880 1 +SPEAKER 02596 0 10.282000 0.667000 2 +SPEAKER 02596 0 20.856000 1.696000 2 +SPEAKER 02596 0 23.282000 1.969000 2 diff --git a/rttm/few/02605.rttm b/rttm/few/02605.rttm new file mode 100644 index 0000000000000000000000000000000000000000..b54c514f70788f83e4df7913f719134b4b6c7792 --- /dev/null +++ b/rttm/few/02605.rttm @@ -0,0 +1,33 @@ +SPEAKER 02605 0 1.745000 1.944000 2 +SPEAKER 02605 0 5.689000 1.334000 2 +SPEAKER 02605 0 7.541000 1.297000 2 +SPEAKER 02605 0 12.189000 2.204000 2 +SPEAKER 02605 0 14.708000 3.593000 2 +SPEAKER 02605 0 25.115000 2.852000 2 +SPEAKER 02605 0 28.523000 0.629000 2 +SPEAKER 02605 0 34.642550 1.232450 2 +SPEAKER 02605 0 40.560000 1.092000 2 +SPEAKER 02605 0 46.893000 2.019000 2 +SPEAKER 02605 0 49.486000 1.155000 2 +SPEAKER 02605 0 3.764000 1.592000 1 +SPEAKER 02605 0 7.523000 1.129000 1 +SPEAKER 02605 0 21.486000 0.444000 1 +SPEAKER 02605 0 29.285000 1.361990 1 +SPEAKER 02605 0 30.986000 1.703440 1 +SPEAKER 02605 0 36.652000 1.519000 1 +SPEAKER 02605 0 39.702550 0.337780 1 +SPEAKER 02605 0 41.912000 3.990550 1 +SPEAKER 02605 0 47.245000 0.779770 1 +SPEAKER 02605 0 0.000000 2.813660 0 +SPEAKER 02605 0 8.541000 3.894880 0 +SPEAKER 02605 0 12.967000 0.648000 0 +SPEAKER 02605 0 13.930000 1.259000 0 +SPEAKER 02605 0 19.560000 1.722000 0 +SPEAKER 02605 0 21.835000 4.243000 0 +SPEAKER 02605 0 26.893000 0.409000 0 +SPEAKER 02605 0 28.634000 1.073950 0 +SPEAKER 02605 0 31.393000 0.704000 0 +SPEAKER 02605 0 32.708000 1.241000 0 +SPEAKER 02605 0 36.856000 0.333000 0 +SPEAKER 02605 0 38.301000 2.981000 0 +SPEAKER 02605 0 48.708000 1.204000 0 diff --git a/rttm/few/02606.rttm b/rttm/few/02606.rttm new file mode 100644 index 0000000000000000000000000000000000000000..d705355d87e0c5e7beaffa3ea71ab33a18f307b6 --- /dev/null +++ b/rttm/few/02606.rttm @@ -0,0 +1,20 @@ +SPEAKER 02606 0 0.014000 2.971730 1 +SPEAKER 02606 0 3.379000 2.032660 1 +SPEAKER 02606 0 5.689000 2.080000 1 +SPEAKER 02606 0 8.400000 4.398000 1 +SPEAKER 02606 0 13.125000 9.490360 1 +SPEAKER 02606 0 23.040000 3.392000 1 +SPEAKER 02606 0 26.926000 1.769000 1 +SPEAKER 02606 0 29.058000 3.372180 1 +SPEAKER 02606 0 32.768000 4.064000 1 +SPEAKER 02606 0 37.268000 4.916000 1 +SPEAKER 02606 0 42.556000 4.106000 1 +SPEAKER 02606 0 47.066000 1.309000 1 +SPEAKER 02606 0 48.715000 1.256000 1 +SPEAKER 02606 0 12.411000 0.795000 0 +SPEAKER 02606 0 24.208000 0.795000 0 +SPEAKER 02606 0 28.948000 1.000000 0 +SPEAKER 02606 0 39.356000 0.870470 0 +SPEAKER 02606 0 50.449000 2.131000 0 +SPEAKER 02606 0 53.283000 0.314000 0 +SPEAKER 02606 0 53.875000 5.147770 0 diff --git a/rttm/few/02611.rttm b/rttm/few/02611.rttm new file mode 100644 index 0000000000000000000000000000000000000000..53714eb38181789e4e950511fb63e43e44d45abc --- /dev/null +++ b/rttm/few/02611.rttm @@ -0,0 +1,17 @@ +SPEAKER 02611 0 0.101000 7.194420 1 +SPEAKER 02611 0 7.635000 10.493750 1 +SPEAKER 02611 0 18.552000 1.870000 1 +SPEAKER 02611 0 23.395000 0.406000 1 +SPEAKER 02611 0 34.674000 0.313000 1 +SPEAKER 02611 0 41.146000 0.712000 1 +SPEAKER 02611 0 20.356100 7.112900 0 +SPEAKER 02611 0 27.757000 2.231000 0 +SPEAKER 02611 0 30.634000 3.957000 0 +SPEAKER 02611 0 35.075000 1.738000 0 +SPEAKER 02611 0 37.205000 3.786000 0 +SPEAKER 02611 0 41.377000 1.722000 0 +SPEAKER 02611 0 43.825000 2.178750 0 +SPEAKER 02611 0 46.284000 1.000000 0 +SPEAKER 02611 0 47.597000 1.865080 0 +SPEAKER 02611 0 49.801000 1.252000 0 +SPEAKER 02611 0 51.416000 3.010000 0 diff --git a/rttm/few/02619.rttm b/rttm/few/02619.rttm new file mode 100644 index 0000000000000000000000000000000000000000..9bfb0bec1055f1d248124241af41abbfd55192ee --- /dev/null +++ b/rttm/few/02619.rttm @@ -0,0 +1,25 @@ +SPEAKER 02619 0 0.000000 3.731000 0 +SPEAKER 02619 0 4.534000 2.470000 0 +SPEAKER 02619 0 7.375000 2.110730 0 +SPEAKER 02619 0 11.580000 0.442770 0 +SPEAKER 02619 0 14.319060 3.851860 0 +SPEAKER 02619 0 18.838000 1.740000 0 +SPEAKER 02619 0 21.292000 2.952990 0 +SPEAKER 02619 0 25.681000 0.697000 0 +SPEAKER 02619 0 26.985730 0.370370 0 +SPEAKER 02619 0 28.262000 0.333000 0 +SPEAKER 02619 0 29.467210 0.592600 0 +SPEAKER 02619 0 32.874620 1.523380 0 +SPEAKER 02619 0 35.307000 0.440000 0 +SPEAKER 02619 0 37.141000 1.233620 0 +SPEAKER 02619 0 41.838000 0.454000 0 +SPEAKER 02619 0 10.136000 3.812690 1 +SPEAKER 02619 0 17.930180 2.481480 1 +SPEAKER 02619 0 24.726470 0.759260 1 +SPEAKER 02619 0 25.886000 2.270000 1 +SPEAKER 02619 0 28.523000 0.729000 1 +SPEAKER 02619 0 29.738000 1.803290 1 +SPEAKER 02619 0 33.596840 0.998160 1 +SPEAKER 02619 0 35.948690 0.925930 1 +SPEAKER 02619 0 38.448690 0.352310 1 +SPEAKER 02619 0 39.207950 0.833340 1 diff --git a/rttm/few/02621.rttm b/rttm/few/02621.rttm new file mode 100644 index 0000000000000000000000000000000000000000..b8880f34affb6418d852bd244c41a98530b32737 --- /dev/null +++ b/rttm/few/02621.rttm @@ -0,0 +1,61 @@ +SPEAKER 02621 0 0.412000 1.463000 0 +SPEAKER 02621 0 2.875000 0.592000 0 +SPEAKER 02621 0 4.449000 1.117250 0 +SPEAKER 02621 0 5.856100 1.096900 0 +SPEAKER 02621 0 8.560000 3.464580 0 +SPEAKER 02621 0 12.448690 1.099310 0 +SPEAKER 02621 0 13.837580 2.562000 0 +SPEAKER 02621 0 16.652400 1.643020 0 +SPEAKER 02621 0 40.245000 2.389000 0 +SPEAKER 02621 0 54.527000 0.445000 0 +SPEAKER 02621 0 57.670920 1.000080 0 +SPEAKER 02621 0 64.189440 0.985560 0 +SPEAKER 02621 0 66.467000 3.265920 0 +SPEAKER 02621 0 70.133880 1.224040 0 +SPEAKER 02621 0 72.233000 4.833250 0 +SPEAKER 02621 0 89.874620 4.370380 0 +SPEAKER 02621 0 108.356000 0.426000 0 +SPEAKER 02621 0 113.171000 1.963000 0 +SPEAKER 02621 0 117.837000 0.482000 0 +SPEAKER 02621 0 119.745000 2.111000 0 +SPEAKER 02621 0 136.023000 5.001580 0 +SPEAKER 02621 0 142.467210 0.555560 0 +SPEAKER 02621 0 143.523000 0.518000 0 +SPEAKER 02621 0 144.838000 2.106000 0 +SPEAKER 02621 0 2.078000 0.630000 1 +SPEAKER 02621 0 3.634000 0.555000 1 +SPEAKER 02621 0 7.282030 0.992550 1 +SPEAKER 02621 0 18.430000 5.511250 1 +SPEAKER 02621 0 24.609000 1.582250 1 +SPEAKER 02621 0 26.706000 2.089420 1 +SPEAKER 02621 0 29.294000 1.647250 1 +SPEAKER 02621 0 31.296000 2.686920 1 +SPEAKER 02621 0 34.644000 0.838920 1 +SPEAKER 02621 0 35.856000 4.092690 1 +SPEAKER 02621 0 43.245000 1.467080 1 +SPEAKER 02621 0 45.117000 0.850210 1 +SPEAKER 02621 0 46.777000 2.976750 1 +SPEAKER 02621 0 50.184000 1.653080 1 +SPEAKER 02621 0 52.207950 4.858300 1 +SPEAKER 02621 0 57.782030 2.950890 1 +SPEAKER 02621 0 61.096000 2.595250 1 +SPEAKER 02621 0 65.211000 2.901000 1 +SPEAKER 02621 0 70.134000 2.037000 1 +SPEAKER 02621 0 77.212000 0.791750 1 +SPEAKER 02621 0 78.332000 3.421750 1 +SPEAKER 02621 0 82.100000 7.570920 1 +SPEAKER 02621 0 94.920420 7.687500 1 +SPEAKER 02621 0 103.135000 4.931250 1 +SPEAKER 02621 0 108.588000 1.000000 1 +SPEAKER 02621 0 110.410000 2.686840 1 +SPEAKER 02621 0 113.525000 1.000000 1 +SPEAKER 02621 0 116.189000 0.939750 1 +SPEAKER 02621 0 118.006000 1.535290 1 +SPEAKER 02621 0 120.087000 0.437580 1 +SPEAKER 02621 0 121.226470 1.964780 1 +SPEAKER 02621 0 123.591000 0.641920 1 +SPEAKER 02621 0 124.610000 8.831250 1 +SPEAKER 02621 0 133.866000 1.866920 1 +SPEAKER 02621 0 141.301000 0.931920 1 +SPEAKER 02621 0 142.637000 0.741750 1 +SPEAKER 02621 0 143.782030 0.742550 1 diff --git a/rttm/few/02622.rttm b/rttm/few/02622.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c01c2314aa39ff88af6f4a0cccf54007a4d7641d --- /dev/null +++ b/rttm/few/02622.rttm @@ -0,0 +1,7 @@ +SPEAKER 02622 0 0.004000 6.408000 0 +SPEAKER 02622 0 6.764000 9.351360 0 +SPEAKER 02622 0 19.744990 1.981480 0 +SPEAKER 02622 0 1.604000 1.066920 1 +SPEAKER 02622 0 6.412000 0.758920 1 +SPEAKER 02622 0 12.560000 0.611000 1 +SPEAKER 02622 0 15.986000 6.055000 1 diff --git a/rttm/few/02624.rttm b/rttm/few/02624.rttm new file mode 100644 index 0000000000000000000000000000000000000000..bdd4aa51ced1f01f8c844d418b31989e3173c0a7 --- /dev/null +++ b/rttm/few/02624.rttm @@ -0,0 +1,22 @@ +SPEAKER 02624 0 0.004000 2.397530 1 +SPEAKER 02624 0 6.652000 1.569530 1 +SPEAKER 02624 0 8.708000 1.000000 1 +SPEAKER 02624 0 10.449000 1.765860 1 +SPEAKER 02624 0 0.020000 0.294860 2 +SPEAKER 02624 0 1.450000 0.524860 2 +SPEAKER 02624 0 2.474860 1.220000 2 +SPEAKER 02624 0 3.962000 1.671880 2 +SPEAKER 02624 0 7.467210 3.254320 2 +SPEAKER 02624 0 12.741000 0.441820 2 +SPEAKER 02624 0 13.456000 4.808660 2 +SPEAKER 02624 0 18.900250 1.415250 2 +SPEAKER 02624 0 21.182000 1.008410 2 +SPEAKER 02624 0 23.049000 1.349390 2 +SPEAKER 02624 0 24.729000 0.310900 2 +SPEAKER 02624 0 26.386000 1.613000 2 +SPEAKER 02624 0 5.934860 2.346670 0 +SPEAKER 02624 0 19.629000 1.504030 0 +SPEAKER 02624 0 21.909000 0.934000 0 +SPEAKER 02624 0 11.528200 0.673330 3 +SPEAKER 02624 0 18.408720 0.669600 3 +SPEAKER 02624 0 24.681410 2.056600 3 diff --git a/rttm/few/02629.rttm b/rttm/few/02629.rttm new file mode 100644 index 0000000000000000000000000000000000000000..645653efffe0bd77850039268ed3bde1c7bf2a90 --- /dev/null +++ b/rttm/few/02629.rttm @@ -0,0 +1,17 @@ +SPEAKER 02629 0 0.004000 0.204000 3 +SPEAKER 02629 0 0.574000 3.622000 3 +SPEAKER 02629 0 4.655000 1.511000 3 +SPEAKER 02629 0 6.635000 0.520000 3 +SPEAKER 02629 0 10.037000 0.610020 3 +SPEAKER 02629 0 11.001450 1.405070 3 +SPEAKER 02629 0 21.941000 0.500000 3 +SPEAKER 02629 0 0.142000 0.491880 1 +SPEAKER 02629 0 12.411000 1.236020 1 +SPEAKER 02629 0 21.900000 0.357000 1 +SPEAKER 02629 0 22.788000 1.204000 1 +SPEAKER 02629 0 6.206000 0.611910 2 +SPEAKER 02629 0 7.210310 2.791140 2 +SPEAKER 02629 0 13.666000 1.736000 2 +SPEAKER 02629 0 15.995120 3.455700 2 +SPEAKER 02629 0 19.921000 1.847000 2 +SPEAKER 02629 0 22.370000 0.563000 2 diff --git a/rttm/few/02631.rttm b/rttm/few/02631.rttm new file mode 100644 index 0000000000000000000000000000000000000000..14abbc9eae8c9b0cff7501eb5545eb7c76dcc723 --- /dev/null +++ b/rttm/few/02631.rttm @@ -0,0 +1,145 @@ +SPEAKER 02631 0 0.004000 1.278030 2 +SPEAKER 02631 0 1.745000 1.407000 2 +SPEAKER 02631 0 8.538450 3.463640 2 +SPEAKER 02631 0 12.502000 5.520750 2 +SPEAKER 02631 0 21.104380 6.163270 2 +SPEAKER 02631 0 27.584000 4.087000 2 +SPEAKER 02631 0 32.713000 13.328000 2 +SPEAKER 02631 0 49.712000 3.200000 2 +SPEAKER 02631 0 55.615000 8.736960 2 +SPEAKER 02631 0 67.626000 3.952320 2 +SPEAKER 02631 0 73.519000 10.707000 2 +SPEAKER 02631 0 84.548930 4.177540 2 +SPEAKER 02631 0 89.356100 6.185190 2 +SPEAKER 02631 0 98.325000 3.438510 2 +SPEAKER 02631 0 103.986000 0.746830 2 +SPEAKER 02631 0 105.314000 1.000000 2 +SPEAKER 02631 0 106.911660 0.921340 2 +SPEAKER 02631 0 108.096000 1.000000 2 +SPEAKER 02631 0 112.930000 5.333510 2 +SPEAKER 02631 0 120.111210 13.798440 2 +SPEAKER 02631 0 134.258000 3.151650 2 +SPEAKER 02631 0 138.188000 1.151880 2 +SPEAKER 02631 0 142.115000 1.667000 2 +SPEAKER 02631 0 146.227000 0.740780 2 +SPEAKER 02631 0 149.068000 0.862180 2 +SPEAKER 02631 0 153.357000 7.610210 2 +SPEAKER 02631 0 162.755000 2.620000 2 +SPEAKER 02631 0 166.909650 1.927930 2 +SPEAKER 02631 0 169.696000 2.308000 2 +SPEAKER 02631 0 172.948690 2.170260 2 +SPEAKER 02631 0 177.723600 3.391400 2 +SPEAKER 02631 0 185.502670 6.834910 2 +SPEAKER 02631 0 193.049000 8.686230 2 +SPEAKER 02631 0 203.118950 4.367050 2 +SPEAKER 02631 0 214.352000 6.430030 2 +SPEAKER 02631 0 225.101000 7.366780 2 +SPEAKER 02631 0 233.102000 1.568920 2 +SPEAKER 02631 0 235.304990 10.569630 2 +SPEAKER 02631 0 247.281740 6.452770 2 +SPEAKER 02631 0 254.210000 4.183140 2 +SPEAKER 02631 0 260.923000 1.452000 2 +SPEAKER 02631 0 263.007000 1.589840 2 +SPEAKER 02631 0 265.942000 1.654840 2 +SPEAKER 02631 0 268.341000 1.737000 2 +SPEAKER 02631 0 272.143000 0.842730 2 +SPEAKER 02631 0 275.044000 0.830620 2 +SPEAKER 02631 0 278.112000 5.817630 2 +SPEAKER 02631 0 285.685730 10.865850 2 +SPEAKER 02631 0 299.947000 0.836290 2 +SPEAKER 02631 0 302.950000 6.199140 2 +SPEAKER 02631 0 310.048000 17.835270 2 +SPEAKER 02631 0 328.418000 3.534230 2 +SPEAKER 02631 0 333.401000 0.825470 2 +SPEAKER 02631 0 334.900510 2.406000 2 +SPEAKER 02631 0 338.110000 8.995510 2 +SPEAKER 02631 0 350.610000 4.174990 2 +SPEAKER 02631 0 355.567040 6.782060 2 +SPEAKER 02631 0 363.037000 7.376200 2 +SPEAKER 02631 0 372.451660 2.071110 2 +SPEAKER 02631 0 376.169610 1.102560 2 +SPEAKER 02631 0 381.200000 2.915000 2 +SPEAKER 02631 0 3.684000 0.881720 1 +SPEAKER 02631 0 4.875000 1.166000 1 +SPEAKER 02631 0 17.884000 1.639000 1 +SPEAKER 02631 0 26.615000 1.327870 1 +SPEAKER 02631 0 29.096840 1.259260 1 +SPEAKER 02631 0 40.849000 1.785000 1 +SPEAKER 02631 0 66.801000 0.747000 1 +SPEAKER 02631 0 95.926000 3.226400 1 +SPEAKER 02631 0 101.523000 2.036810 1 +SPEAKER 02631 0 118.415000 2.848510 1 +SPEAKER 02631 0 123.354450 1.112760 1 +SPEAKER 02631 0 136.584060 2.069770 1 +SPEAKER 02631 0 139.281740 2.325580 1 +SPEAKER 02631 0 144.096840 5.222220 1 +SPEAKER 02631 0 150.152000 3.229000 1 +SPEAKER 02631 0 155.041000 1.682600 1 +SPEAKER 02631 0 160.281740 2.313950 1 +SPEAKER 02631 0 171.913000 0.752460 1 +SPEAKER 02631 0 183.804990 2.755010 1 +SPEAKER 02631 0 194.163000 1.072230 1 +SPEAKER 02631 0 204.014000 0.895650 1 +SPEAKER 02631 0 206.793370 2.348830 1 +SPEAKER 02631 0 210.351510 5.732550 1 +SPEAKER 02631 0 232.502670 0.539330 1 +SPEAKER 02631 0 233.886000 1.465510 1 +SPEAKER 02631 0 246.648000 1.000000 1 +SPEAKER 02631 0 258.948690 1.315310 1 +SPEAKER 02631 0 275.962000 2.699340 1 +SPEAKER 02631 0 282.173530 0.923310 1 +SPEAKER 02631 0 299.588160 4.146350 1 +SPEAKER 02631 0 306.874620 0.652570 1 +SPEAKER 02631 0 330.340000 0.931000 1 +SPEAKER 02631 0 333.485730 1.388890 1 +SPEAKER 02631 0 348.984000 1.647150 1 +SPEAKER 02631 0 352.907000 0.558000 1 +SPEAKER 02631 0 354.652400 0.897600 1 +SPEAKER 02631 0 362.373000 1.168290 1 +SPEAKER 02631 0 370.411660 1.537030 1 +SPEAKER 02631 0 377.323460 0.525640 1 +SPEAKER 02631 0 378.724000 0.577000 1 +SPEAKER 02631 0 383.096840 0.537040 1 +SPEAKER 02631 0 7.529360 0.727270 0 +SPEAKER 02631 0 12.189000 0.531270 0 +SPEAKER 02631 0 17.633880 3.643970 0 +SPEAKER 02631 0 28.207950 1.574050 0 +SPEAKER 02631 0 30.782000 2.982000 0 +SPEAKER 02631 0 40.898000 1.000000 0 +SPEAKER 02631 0 46.185300 5.485700 0 +SPEAKER 02631 0 52.949000 2.703400 0 +SPEAKER 02631 0 64.301660 3.406340 0 +SPEAKER 02631 0 69.764000 4.259000 0 +SPEAKER 02631 0 80.041290 0.772710 0 +SPEAKER 02631 0 88.454000 1.000000 0 +SPEAKER 02631 0 104.652400 0.779600 0 +SPEAKER 02631 0 106.298000 0.434830 0 +SPEAKER 02631 0 109.949000 3.055250 0 +SPEAKER 02631 0 122.894990 0.554060 0 +SPEAKER 02631 0 140.226000 1.975740 0 +SPEAKER 02631 0 161.758000 0.907460 0 +SPEAKER 02631 0 164.340000 0.639410 0 +SPEAKER 02631 0 165.560810 4.848840 0 +SPEAKER 02631 0 175.444530 2.837500 0 +SPEAKER 02631 0 180.735230 4.102350 0 +SPEAKER 02631 0 191.536000 1.827130 0 +SPEAKER 02631 0 197.170920 0.537030 0 +SPEAKER 02631 0 200.653830 2.627910 0 +SPEAKER 02631 0 209.133000 1.718510 0 +SPEAKER 02631 0 213.652000 0.519000 0 +SPEAKER 02631 0 215.522770 1.555230 0 +SPEAKER 02631 0 220.618950 4.872090 0 +SPEAKER 02631 0 246.041290 0.833330 0 +SPEAKER 02631 0 257.015000 0.414630 0 +SPEAKER 02631 0 258.172000 1.221040 0 +SPEAKER 02631 0 262.902000 1.000000 0 +SPEAKER 02631 0 275.076000 0.975580 0 +SPEAKER 02631 0 279.349000 0.812340 0 +SPEAKER 02631 0 283.332070 2.468480 0 +SPEAKER 02631 0 295.805000 4.273000 0 +SPEAKER 02631 0 308.078320 2.416680 0 +SPEAKER 02631 0 314.896000 0.904550 0 +SPEAKER 02631 0 326.023000 2.462730 0 +SPEAKER 02631 0 331.895000 1.942580 0 +SPEAKER 02631 0 346.721000 2.922970 0 +SPEAKER 02631 0 374.297810 1.706440 0 diff --git a/rttm/few/02641.rttm b/rttm/few/02641.rttm new file mode 100644 index 0000000000000000000000000000000000000000..f58157d170a48383ecc735634d0844a98b89ee81 --- /dev/null +++ b/rttm/few/02641.rttm @@ -0,0 +1,10 @@ +SPEAKER 02641 0 0.338000 10.472150 0 +SPEAKER 02641 0 11.149000 1.080510 0 +SPEAKER 02641 0 12.617000 3.918960 0 +SPEAKER 02641 0 20.467000 0.371000 0 +SPEAKER 02641 0 0.000000 0.530130 1 +SPEAKER 02641 0 3.227000 0.555000 1 +SPEAKER 02641 0 10.060000 0.500000 1 +SPEAKER 02641 0 15.540000 5.758000 1 +SPEAKER 02641 0 8.592690 0.411310 h0 +SPEAKER 02641 0 12.342000 0.339120 h0 diff --git a/rttm/few/02650.rttm b/rttm/few/02650.rttm new file mode 100644 index 0000000000000000000000000000000000000000..cdf26f38d7088e640f248c1e6c941435c285e360 --- /dev/null +++ b/rttm/few/02650.rttm @@ -0,0 +1,10 @@ +SPEAKER 02650 0 0.018560 2.626440 2 +SPEAKER 02650 0 3.805920 2.183900 2 +SPEAKER 02650 0 6.645000 0.333330 2 +SPEAKER 02650 0 8.765690 4.080460 2 +SPEAKER 02650 0 18.189000 4.555990 2 +SPEAKER 02650 0 7.282000 1.495180 1 +SPEAKER 02650 0 9.284000 2.249780 1 +SPEAKER 02650 0 13.794420 2.709060 1 +SPEAKER 02650 0 2.652000 1.165410 0 +SPEAKER 02650 0 14.764000 2.777550 0 diff --git a/rttm/few/02662.rttm b/rttm/few/02662.rttm new file mode 100644 index 0000000000000000000000000000000000000000..2167981034d65da8bd40eeaac5ed68d3d5d1e865 --- /dev/null +++ b/rttm/few/02662.rttm @@ -0,0 +1,46 @@ +SPEAKER 02662 0 0.426000 1.856000 0 +SPEAKER 02662 0 3.096000 1.575000 0 +SPEAKER 02662 0 5.023000 0.703000 0 +SPEAKER 02662 0 6.041000 1.723000 0 +SPEAKER 02662 0 34.170420 0.583330 0 +SPEAKER 02662 0 36.171000 2.832750 0 +SPEAKER 02662 0 39.449000 0.533920 0 +SPEAKER 02662 0 40.273000 1.418250 0 +SPEAKER 02662 0 42.058000 0.695750 0 +SPEAKER 02662 0 43.022000 0.797000 0 +SPEAKER 02662 0 44.578000 0.488250 0 +SPEAKER 02662 0 45.427000 0.743420 0 +SPEAKER 02662 0 46.479000 1.378920 0 +SPEAKER 02662 0 48.247000 2.442000 0 +SPEAKER 02662 0 61.282000 0.352000 0 +SPEAKER 02662 0 66.782000 0.407000 0 +SPEAKER 02662 0 70.671000 2.186920 0 +SPEAKER 02662 0 73.504000 2.445000 0 +SPEAKER 02662 0 76.282000 0.534250 0 +SPEAKER 02662 0 77.086000 1.314000 0 +SPEAKER 02662 0 78.756000 0.914420 0 +SPEAKER 02662 0 80.046000 2.020250 0 +SPEAKER 02662 0 82.343000 0.785750 0 +SPEAKER 02662 0 8.060000 0.815000 1 +SPEAKER 02662 0 9.337000 2.645920 1 +SPEAKER 02662 0 12.578000 3.134080 1 +SPEAKER 02662 0 16.087080 1.125000 1 +SPEAKER 02662 0 17.570000 2.496250 1 +SPEAKER 02662 0 20.803000 0.804920 1 +SPEAKER 02662 0 21.919000 0.459750 1 +SPEAKER 02662 0 23.129000 0.437250 1 +SPEAKER 02662 0 23.892000 2.757580 1 +SPEAKER 02662 0 27.652000 2.782000 1 +SPEAKER 02662 0 31.393000 0.423250 1 +SPEAKER 02662 0 32.267000 1.528420 1 +SPEAKER 02662 0 34.708000 1.316580 1 +SPEAKER 02662 0 44.023000 0.555000 1 +SPEAKER 02662 0 50.875000 0.574000 1 +SPEAKER 02662 0 51.930000 4.556000 1 +SPEAKER 02662 0 57.041000 6.037000 1 +SPEAKER 02662 0 63.837080 2.592920 1 +SPEAKER 02662 0 67.301000 0.611000 1 +SPEAKER 02662 0 69.560000 1.111000 1 +SPEAKER 02662 0 76.412000 0.407000 1 +SPEAKER 02662 0 83.097000 0.969250 1 +SPEAKER 02662 0 84.519000 4.874140 1 diff --git a/rttm/few/02663.rttm b/rttm/few/02663.rttm new file mode 100644 index 0000000000000000000000000000000000000000..61da083ac307004e78840b3f90bd646c5346bc37 --- /dev/null +++ b/rttm/few/02663.rttm @@ -0,0 +1,6 @@ +SPEAKER 02663 0 0.039000 1.205990 2 +SPEAKER 02663 0 1.670920 22.870370 2 +SPEAKER 02663 0 24.837580 0.982420 2 +SPEAKER 02663 0 0.800550 1.259450 3 +SPEAKER 02663 0 7.374000 0.519140 3 +SPEAKER 02663 0 23.856100 1.907900 3 diff --git a/rttm/few/02677.rttm b/rttm/few/02677.rttm new file mode 100644 index 0000000000000000000000000000000000000000..39f576ca7f0dffdb52836d93f524549befd9106e --- /dev/null +++ b/rttm/few/02677.rttm @@ -0,0 +1,54 @@ +SPEAKER 02677 0 0.009000 2.180000 1 +SPEAKER 02677 0 5.617150 1.407690 1 +SPEAKER 02677 0 7.930000 4.630000 1 +SPEAKER 02677 0 13.467000 1.634770 1 +SPEAKER 02677 0 17.840230 1.737770 1 +SPEAKER 02677 0 22.504000 1.075000 1 +SPEAKER 02677 0 25.245000 1.064460 1 +SPEAKER 02677 0 29.504000 2.871000 1 +SPEAKER 02677 0 33.924840 1.326160 1 +SPEAKER 02677 0 38.226000 2.198840 1 +SPEAKER 02677 0 42.264000 0.399300 1 +SPEAKER 02677 0 44.893000 0.408770 1 +SPEAKER 02677 0 46.541000 0.337690 1 +SPEAKER 02677 0 50.226470 0.685530 1 +SPEAKER 02677 0 51.523000 1.796000 1 +SPEAKER 02677 0 59.917150 1.105850 1 +SPEAKER 02677 0 61.724840 0.953850 1 +SPEAKER 02677 0 2.856000 1.184230 0 +SPEAKER 02677 0 6.949000 0.529690 0 +SPEAKER 02677 0 13.115000 3.593000 0 +SPEAKER 02677 0 19.597000 2.735530 0 +SPEAKER 02677 0 35.143000 2.874150 0 +SPEAKER 02677 0 40.986000 1.000000 0 +SPEAKER 02677 0 42.689000 2.260000 0 +SPEAKER 02677 0 45.440000 0.477150 0 +SPEAKER 02677 0 47.467210 0.851790 0 +SPEAKER 02677 0 50.839000 0.616610 0 +SPEAKER 02677 0 55.338000 3.994530 0 +SPEAKER 02677 0 62.878690 0.477310 0 +SPEAKER 02677 0 2.351000 0.896920 2 +SPEAKER 02677 0 3.986000 1.259000 2 +SPEAKER 02677 0 16.417150 0.938850 2 +SPEAKER 02677 0 21.686380 1.521620 2 +SPEAKER 02677 0 23.949000 1.652770 2 +SPEAKER 02677 0 41.986000 0.761920 2 +SPEAKER 02677 0 43.449000 0.907000 2 +SPEAKER 02677 0 45.338000 1.314000 2 +SPEAKER 02677 0 47.486000 0.926000 2 +SPEAKER 02677 0 49.115000 1.000000 2 +SPEAKER 02677 0 53.563300 2.533700 2 +SPEAKER 02677 0 59.096840 1.648160 2 +SPEAKER 02677 0 61.105000 0.510000 2 +SPEAKER 02677 0 11.301770 0.507690 h0 +SPEAKER 02677 0 15.393000 2.462610 h0 +SPEAKER 02677 0 26.782000 2.648000 h0 +SPEAKER 02677 0 29.838000 0.502230 h0 +SPEAKER 02677 0 31.371000 3.115000 h0 +SPEAKER 02677 0 35.871000 0.855000 h0 +SPEAKER 02677 0 42.856000 0.322690 h0 +SPEAKER 02677 0 46.356100 1.611110 h0 +SPEAKER 02677 0 48.838000 1.379150 h0 +SPEAKER 02677 0 50.856000 0.438070 h0 +SPEAKER 02677 0 53.819000 1.722000 h0 +SPEAKER 02677 0 61.486000 1.223460 h0 diff --git a/rttm/few/02678.rttm b/rttm/few/02678.rttm new file mode 100644 index 0000000000000000000000000000000000000000..25b9e3cc68661cfe18e6f6891720237071b78b6e --- /dev/null +++ b/rttm/few/02678.rttm @@ -0,0 +1,168 @@ +SPEAKER 02678 0 0.078320 1.500000 3 +SPEAKER 02678 0 5.044000 36.961000 3 +SPEAKER 02678 0 45.005000 2.776740 3 +SPEAKER 02678 0 49.171000 11.084000 3 +SPEAKER 02678 0 62.755000 0.900000 3 +SPEAKER 02678 0 146.914000 11.985000 3 +SPEAKER 02678 0 160.477000 0.392000 3 +SPEAKER 02678 0 177.639000 0.717000 3 +SPEAKER 02678 0 185.255000 18.252000 3 +SPEAKER 02678 0 209.440980 0.833340 3 +SPEAKER 02678 0 218.578000 0.703000 3 +SPEAKER 02678 0 226.892000 0.861000 3 +SPEAKER 02678 0 238.754000 0.448000 3 +SPEAKER 02678 0 258.628000 1.000000 3 +SPEAKER 02678 0 293.230000 0.863000 3 +SPEAKER 02678 0 304.447000 3.167000 3 +SPEAKER 02678 0 329.697000 41.608000 3 +SPEAKER 02678 0 373.655000 23.929060 3 +SPEAKER 02678 0 398.316000 1.187000 3 +SPEAKER 02678 0 402.123860 1.161140 3 +SPEAKER 02678 0 407.285000 1.312000 3 +SPEAKER 02678 0 414.464000 10.541000 3 +SPEAKER 02678 0 463.507000 57.398000 3 +SPEAKER 02678 0 574.131000 18.447320 3 +SPEAKER 02678 0 595.647000 10.075000 3 +SPEAKER 02678 0 619.689440 1.106560 3 +SPEAKER 02678 0 622.597000 1.296000 3 +SPEAKER 02678 0 629.347000 2.531000 3 +SPEAKER 02678 0 633.128000 0.707000 3 +SPEAKER 02678 0 635.628000 2.344000 3 +SPEAKER 02678 0 639.003000 2.094000 3 +SPEAKER 02678 0 644.566000 3.652000 3 +SPEAKER 02678 0 665.005000 3.750000 3 +SPEAKER 02678 0 670.805000 1.000000 3 +SPEAKER 02678 0 674.555000 8.450000 3 +SPEAKER 02678 0 690.455000 0.666000 3 +SPEAKER 02678 0 694.819000 0.517000 3 +SPEAKER 02678 0 707.409000 20.010520 3 +SPEAKER 02678 0 728.402000 2.335700 3 +SPEAKER 02678 0 732.874070 0.783930 3 +SPEAKER 02678 0 1.963000 2.227000 0 +SPEAKER 02678 0 40.987000 8.059000 0 +SPEAKER 02678 0 58.115000 0.990000 0 +SPEAKER 02678 0 72.755000 1.000000 0 +SPEAKER 02678 0 79.560000 0.710110 0 +SPEAKER 02678 0 117.130000 1.000000 0 +SPEAKER 02678 0 129.713000 1.365000 0 +SPEAKER 02678 0 139.757000 1.198000 0 +SPEAKER 02678 0 142.468000 0.833000 0 +SPEAKER 02678 0 146.055000 1.142000 0 +SPEAKER 02678 0 185.858000 0.776000 0 +SPEAKER 02678 0 214.864000 0.667000 0 +SPEAKER 02678 0 215.836000 0.983000 0 +SPEAKER 02678 0 236.439000 1.610180 0 +SPEAKER 02678 0 243.418000 35.651000 0 +SPEAKER 02678 0 280.025000 0.727000 0 +SPEAKER 02678 0 286.502000 0.864000 0 +SPEAKER 02678 0 288.071000 0.591000 0 +SPEAKER 02678 0 289.707000 4.273000 0 +SPEAKER 02678 0 294.934000 1.000000 0 +SPEAKER 02678 0 298.707000 10.546000 0 +SPEAKER 02678 0 319.963000 3.125000 0 +SPEAKER 02678 0 325.328000 0.675000 0 +SPEAKER 02678 0 335.912000 0.686000 0 +SPEAKER 02678 0 344.115000 0.760000 0 +SPEAKER 02678 0 366.790000 0.928000 0 +SPEAKER 02678 0 371.346080 1.558920 0 +SPEAKER 02678 0 400.160000 1.625000 0 +SPEAKER 02678 0 425.405000 35.039000 0 +SPEAKER 02678 0 463.319000 1.000000 0 +SPEAKER 02678 0 466.319000 1.375000 0 +SPEAKER 02678 0 478.253000 2.228000 0 +SPEAKER 02678 0 486.504000 0.667000 0 +SPEAKER 02678 0 501.588000 0.542580 0 +SPEAKER 02678 0 585.097000 1.000000 0 +SPEAKER 02678 0 592.624000 5.633000 0 +SPEAKER 02678 0 603.986000 20.169000 0 +SPEAKER 02678 0 634.133000 1.464000 0 +SPEAKER 02678 0 638.097000 1.015000 0 +SPEAKER 02678 0 644.845000 1.301800 0 +SPEAKER 02678 0 666.605000 1.000000 0 +SPEAKER 02678 0 679.510430 1.363640 0 +SPEAKER 02678 0 731.692250 1.392750 0 +SPEAKER 02678 0 2.065000 1.771000 2 +SPEAKER 02678 0 60.505000 2.550000 2 +SPEAKER 02678 0 63.855000 39.316000 2 +SPEAKER 02678 0 106.624210 41.330790 2 +SPEAKER 02678 0 158.943000 25.571300 2 +SPEAKER 02678 0 187.505000 0.708000 2 +SPEAKER 02678 0 210.197000 0.654510 2 +SPEAKER 02678 0 223.753000 18.565000 2 +SPEAKER 02678 0 258.911000 1.000000 2 +SPEAKER 02678 0 268.296000 1.000000 2 +SPEAKER 02678 0 279.002000 0.773000 2 +SPEAKER 02678 0 290.252000 0.728000 2 +SPEAKER 02678 0 295.252000 3.273000 2 +SPEAKER 02678 0 309.004000 1.321000 2 +SPEAKER 02678 0 319.430000 3.200000 2 +SPEAKER 02678 0 329.725000 1.000000 2 +SPEAKER 02678 0 359.897000 1.000000 2 +SPEAKER 02678 0 371.349000 3.356000 2 +SPEAKER 02678 0 392.753000 0.586880 2 +SPEAKER 02678 0 397.956160 16.569760 2 +SPEAKER 02678 0 424.708000 0.797000 2 +SPEAKER 02678 0 439.382000 0.937000 2 +SPEAKER 02678 0 457.069000 1.861000 2 +SPEAKER 02678 0 460.726000 0.630000 2 +SPEAKER 02678 0 463.507000 2.984040 2 +SPEAKER 02678 0 478.194000 0.975000 2 +SPEAKER 02678 0 568.860000 1.000000 2 +SPEAKER 02678 0 584.412000 2.032000 2 +SPEAKER 02678 0 591.930180 8.180820 2 +SPEAKER 02678 0 603.785000 1.000000 2 +SPEAKER 02678 0 622.541000 8.814000 2 +SPEAKER 02678 0 633.878000 1.688000 2 +SPEAKER 02678 0 638.097000 7.063000 2 +SPEAKER 02678 0 666.055000 12.700000 2 +SPEAKER 02678 0 682.355000 25.148000 2 +SPEAKER 02678 0 726.475000 1.000000 2 +SPEAKER 02678 0 729.836000 2.401700 2 +SPEAKER 02678 0 3.607000 2.008360 1 +SPEAKER 02678 0 43.171000 1.042000 1 +SPEAKER 02678 0 46.588000 0.879780 1 +SPEAKER 02678 0 60.705000 0.900000 1 +SPEAKER 02678 0 102.171000 4.667000 1 +SPEAKER 02678 0 110.797000 0.504000 1 +SPEAKER 02678 0 116.339000 2.416000 1 +SPEAKER 02678 0 146.039000 1.000000 1 +SPEAKER 02678 0 167.544000 0.729000 1 +SPEAKER 02678 0 200.975000 0.504000 1 +SPEAKER 02678 0 204.188720 20.476740 1 +SPEAKER 02678 0 230.245000 0.730000 1 +SPEAKER 02678 0 240.302000 0.500000 1 +SPEAKER 02678 0 242.468000 0.976530 1 +SPEAKER 02678 0 250.634000 0.333780 1 +SPEAKER 02678 0 266.046000 1.000000 1 +SPEAKER 02678 0 272.689000 0.686000 1 +SPEAKER 02678 0 277.632000 13.530000 1 +SPEAKER 02678 0 292.707000 2.227000 1 +SPEAKER 02678 0 298.343000 2.114000 1 +SPEAKER 02678 0 306.059000 23.861000 1 +SPEAKER 02678 0 336.134000 0.526000 1 +SPEAKER 02678 0 341.035000 1.812000 1 +SPEAKER 02678 0 354.227000 1.166000 1 +SPEAKER 02678 0 374.505000 0.900000 1 +SPEAKER 02678 0 402.251000 1.315000 1 +SPEAKER 02678 0 434.467000 0.834000 1 +SPEAKER 02678 0 440.169000 0.595000 1 +SPEAKER 02678 0 452.694000 2.413320 1 +SPEAKER 02678 0 459.838000 6.856000 1 +SPEAKER 02678 0 479.430000 1.260000 1 +SPEAKER 02678 0 495.378000 0.719000 1 +SPEAKER 02678 0 498.878000 0.782000 1 +SPEAKER 02678 0 502.659000 1.000000 1 +SPEAKER 02678 0 507.296000 0.578760 1 +SPEAKER 02678 0 521.023000 53.234000 1 +SPEAKER 02678 0 577.631000 4.133000 1 +SPEAKER 02678 0 592.694000 6.875000 1 +SPEAKER 02678 0 622.659250 2.382040 1 +SPEAKER 02678 0 631.205000 0.558510 1 +SPEAKER 02678 0 632.707950 2.483050 1 +SPEAKER 02678 0 639.129000 1.000000 1 +SPEAKER 02678 0 643.504000 0.777000 1 +SPEAKER 02678 0 648.325000 19.105180 1 +SPEAKER 02678 0 669.155000 1.000000 1 +SPEAKER 02678 0 697.004000 0.566880 1 +SPEAKER 02678 0 707.503000 1.881600 1 +SPEAKER 02678 0 732.531000 1.083000 1 diff --git a/rttm/few/02680.rttm b/rttm/few/02680.rttm new file mode 100644 index 0000000000000000000000000000000000000000..f96bc51d93d4cbd45a8b04d5e40525009cf380ab --- /dev/null +++ b/rttm/few/02680.rttm @@ -0,0 +1,6 @@ +SPEAKER 02680 0 0.160000 10.863000 0 +SPEAKER 02680 0 11.874620 24.574380 0 +SPEAKER 02680 0 60.189440 27.129560 0 +SPEAKER 02680 0 11.078000 0.722550 1 +SPEAKER 02680 0 36.455000 23.771470 1 +SPEAKER 02680 0 67.522000 0.408000 1 diff --git a/rttm/few/02683.rttm b/rttm/few/02683.rttm new file mode 100644 index 0000000000000000000000000000000000000000..600f0d23168f1b7f044226c56f47e1b8c3271757 --- /dev/null +++ b/rttm/few/02683.rttm @@ -0,0 +1,16 @@ +SPEAKER 02683 0 6.023000 3.184950 0 +SPEAKER 02683 0 10.019000 1.911060 0 +SPEAKER 02683 0 12.671000 1.005810 0 +SPEAKER 02683 0 14.597000 4.826570 0 +SPEAKER 02683 0 19.793700 1.961040 0 +SPEAKER 02683 0 22.319670 1.577920 0 +SPEAKER 02683 0 0.019000 2.243530 1 +SPEAKER 02683 0 2.747000 2.651000 1 +SPEAKER 02683 0 7.110000 2.412770 1 +SPEAKER 02683 0 11.345650 2.870130 1 +SPEAKER 02683 0 20.822000 1.426240 1 +SPEAKER 02683 0 0.363980 0.584710 2 +SPEAKER 02683 0 2.319000 1.534000 2 +SPEAKER 02683 0 5.368000 0.914030 2 +SPEAKER 02683 0 7.319000 2.814880 2 +SPEAKER 02683 0 6.263000 2.648660 3 diff --git a/rttm/few/02692.rttm b/rttm/few/02692.rttm new file mode 100644 index 0000000000000000000000000000000000000000..2d1fd33a74c4daa75abccc243a4b4c5e8f3179ea --- /dev/null +++ b/rttm/few/02692.rttm @@ -0,0 +1,13 @@ +SPEAKER 02692 0 0.088000 0.453000 0 +SPEAKER 02692 0 2.301000 1.184730 0 +SPEAKER 02692 0 4.782000 3.537060 0 +SPEAKER 02692 0 9.003000 0.464210 0 +SPEAKER 02692 0 9.912000 2.703360 0 +SPEAKER 02692 0 13.430000 1.796470 0 +SPEAKER 02692 0 17.782000 1.722000 0 +SPEAKER 02692 0 20.226000 1.093060 0 +SPEAKER 02692 0 22.652000 4.407810 0 +SPEAKER 02692 0 0.016000 1.784550 1 +SPEAKER 02692 0 2.690000 2.110550 1 +SPEAKER 02692 0 15.300000 1.241290 1 +SPEAKER 02692 0 19.768000 1.402920 1 diff --git a/rttm/few/02693.rttm b/rttm/few/02693.rttm new file mode 100644 index 0000000000000000000000000000000000000000..717e55ad136f56871648f54e8d4f184ecb2f4292 --- /dev/null +++ b/rttm/few/02693.rttm @@ -0,0 +1,15 @@ +SPEAKER 02693 0 0.015000 3.619000 1 +SPEAKER 02693 0 4.708000 1.055000 1 +SPEAKER 02693 0 6.319000 8.000000 1 +SPEAKER 02693 0 15.764000 0.574000 1 +SPEAKER 02693 0 17.449000 2.721920 1 +SPEAKER 02693 0 20.801000 20.481000 1 +SPEAKER 02693 0 45.578320 3.685680 1 +SPEAKER 02693 0 5.819000 1.556000 0 +SPEAKER 02693 0 10.060000 1.333000 0 +SPEAKER 02693 0 14.967000 3.204000 0 +SPEAKER 02693 0 20.001000 1.688440 0 +SPEAKER 02693 0 29.893000 0.630000 0 +SPEAKER 02693 0 36.912000 0.758920 0 +SPEAKER 02693 0 40.875000 4.647770 0 +SPEAKER 02693 0 48.893000 1.000000 0 diff --git a/rttm/few/02722.rttm b/rttm/few/02722.rttm new file mode 100644 index 0000000000000000000000000000000000000000..e789f57f49ec13259e63351da2fcd9194eb0f91a --- /dev/null +++ b/rttm/few/02722.rttm @@ -0,0 +1,498 @@ +SPEAKER 02722 0 0.201000 5.015000 0 +SPEAKER 02722 0 5.657000 3.589700 0 +SPEAKER 02722 0 10.747000 1.742000 0 +SPEAKER 02722 0 13.402000 1.356900 0 +SPEAKER 02722 0 15.600000 5.045000 0 +SPEAKER 02722 0 20.903000 1.286440 0 +SPEAKER 02722 0 22.466210 1.719790 0 +SPEAKER 02722 0 24.522000 3.944210 0 +SPEAKER 02722 0 30.193000 0.492730 0 +SPEAKER 02722 0 31.053000 9.620530 0 +SPEAKER 02722 0 41.013000 2.491250 0 +SPEAKER 02722 0 45.383000 1.639770 0 +SPEAKER 02722 0 52.295480 0.463420 0 +SPEAKER 02722 0 55.610000 0.597950 0 +SPEAKER 02722 0 58.701000 0.972530 0 +SPEAKER 02722 0 60.530000 2.621000 0 +SPEAKER 02722 0 64.206000 1.212000 0 +SPEAKER 02722 0 66.459000 1.214530 0 +SPEAKER 02722 0 68.906000 4.568000 0 +SPEAKER 02722 0 76.004000 0.389040 0 +SPEAKER 02722 0 76.777000 3.177020 0 +SPEAKER 02722 0 84.721000 1.637000 0 +SPEAKER 02722 0 86.661000 1.181000 0 +SPEAKER 02722 0 88.270000 1.350000 0 +SPEAKER 02722 0 89.948000 2.697000 0 +SPEAKER 02722 0 93.605000 4.202680 0 +SPEAKER 02722 0 99.251000 0.324970 0 +SPEAKER 02722 0 100.710120 1.697880 0 +SPEAKER 02722 0 103.509000 2.273000 0 +SPEAKER 02722 0 106.130000 1.824020 0 +SPEAKER 02722 0 108.231000 3.491310 0 +SPEAKER 02722 0 112.131000 2.368000 0 +SPEAKER 02722 0 115.292000 1.971510 0 +SPEAKER 02722 0 118.247000 0.609460 0 +SPEAKER 02722 0 119.398000 1.167000 0 +SPEAKER 02722 0 124.474000 0.321480 0 +SPEAKER 02722 0 125.301000 2.221770 0 +SPEAKER 02722 0 139.262000 2.515000 0 +SPEAKER 02722 0 142.150000 2.773000 0 +SPEAKER 02722 0 145.438000 1.089190 0 +SPEAKER 02722 0 146.954020 5.619510 0 +SPEAKER 02722 0 153.479000 1.601000 0 +SPEAKER 02722 0 155.338000 0.396510 0 +SPEAKER 02722 0 156.402000 5.939000 0 +SPEAKER 02722 0 162.768000 4.503090 0 +SPEAKER 02722 0 167.573000 1.052000 0 +SPEAKER 02722 0 168.883000 2.485000 0 +SPEAKER 02722 0 196.701000 0.423790 0 +SPEAKER 02722 0 207.879890 1.494730 0 +SPEAKER 02722 0 219.079870 0.410250 0 +SPEAKER 02722 0 233.579870 0.364130 0 +SPEAKER 02722 0 246.610000 1.197000 0 +SPEAKER 02722 0 248.211000 1.491000 0 +SPEAKER 02722 0 250.618330 1.825670 0 +SPEAKER 02722 0 252.874000 2.418000 0 +SPEAKER 02722 0 255.638000 1.568000 0 +SPEAKER 02722 0 257.701000 0.378870 0 +SPEAKER 02722 0 258.490120 0.564100 0 +SPEAKER 02722 0 259.618330 2.976670 0 +SPEAKER 02722 0 263.054220 1.061140 0 +SPEAKER 02722 0 265.235000 1.216660 0 +SPEAKER 02722 0 270.251000 1.285000 0 +SPEAKER 02722 0 272.994000 1.060000 0 +SPEAKER 02722 0 274.451000 1.192970 0 +SPEAKER 02722 0 276.010000 0.813460 0 +SPEAKER 02722 0 278.051000 4.483360 0 +SPEAKER 02722 0 282.903000 1.343000 0 +SPEAKER 02722 0 284.556000 3.669850 0 +SPEAKER 02722 0 289.162020 2.993980 0 +SPEAKER 02722 0 292.502440 5.294560 0 +SPEAKER 02722 0 298.195000 1.716660 0 +SPEAKER 02722 0 300.894000 4.833000 0 +SPEAKER 02722 0 306.449250 0.827750 0 +SPEAKER 02722 0 307.581000 2.006550 0 +SPEAKER 02722 0 318.630000 1.798000 0 +SPEAKER 02722 0 321.459000 2.515000 0 +SPEAKER 02722 0 328.069000 1.170000 0 +SPEAKER 02722 0 336.062000 0.378000 0 +SPEAKER 02722 0 347.236480 6.030520 0 +SPEAKER 02722 0 353.651000 0.848000 0 +SPEAKER 02722 0 355.095000 2.909000 0 +SPEAKER 02722 0 358.503000 0.829230 0 +SPEAKER 02722 0 359.662000 0.787250 0 +SPEAKER 02722 0 362.151000 1.727000 0 +SPEAKER 02722 0 370.744990 0.418010 0 +SPEAKER 02722 0 371.948000 1.137000 0 +SPEAKER 02722 0 373.449250 2.100750 0 +SPEAKER 02722 0 377.267000 0.831190 0 +SPEAKER 02722 0 379.342870 3.659470 0 +SPEAKER 02722 0 383.411000 2.725950 0 +SPEAKER 02722 0 386.591000 3.024000 0 +SPEAKER 02722 0 389.932000 1.076000 0 +SPEAKER 02722 0 391.624000 4.317820 0 +SPEAKER 02722 0 398.509000 0.833000 0 +SPEAKER 02722 0 400.807680 7.711320 0 +SPEAKER 02722 0 409.721000 7.793990 0 +SPEAKER 02722 0 426.990000 0.420510 0 +SPEAKER 02722 0 438.715000 1.511830 0 +SPEAKER 02722 0 440.686000 0.530630 0 +SPEAKER 02722 0 441.665000 1.876290 0 +SPEAKER 02722 0 443.939000 6.349060 0 +SPEAKER 02722 0 450.941120 1.759880 0 +SPEAKER 02722 0 453.002340 1.295660 0 +SPEAKER 02722 0 454.696220 3.019780 0 +SPEAKER 02722 0 458.053360 0.672640 0 +SPEAKER 02722 0 459.339080 1.482920 0 +SPEAKER 02722 0 462.777850 3.438780 0 +SPEAKER 02722 0 467.009000 0.452000 0 +SPEAKER 02722 0 467.839080 2.922920 0 +SPEAKER 02722 0 471.154000 1.491000 0 +SPEAKER 02722 0 473.979000 0.645790 0 +SPEAKER 02722 0 475.342000 3.652000 0 +SPEAKER 02722 0 479.480000 0.501930 0 +SPEAKER 02722 0 480.430910 4.081640 0 +SPEAKER 02722 0 485.134990 3.948980 0 +SPEAKER 02722 0 490.119000 0.394000 0 +SPEAKER 02722 0 493.776000 0.369200 0 +SPEAKER 02722 0 513.356000 0.389000 0 +SPEAKER 02722 0 516.797000 1.424000 0 +SPEAKER 02722 0 518.530000 4.914000 0 +SPEAKER 02722 0 523.863000 1.900510 0 +SPEAKER 02722 0 531.348000 0.392000 0 +SPEAKER 02722 0 534.031850 4.770150 0 +SPEAKER 02722 0 539.368000 3.848000 0 +SPEAKER 02722 0 543.702000 7.031710 0 +SPEAKER 02722 0 551.050000 1.178000 0 +SPEAKER 02722 0 552.625000 4.842000 0 +SPEAKER 02722 0 557.920000 2.725000 0 +SPEAKER 02722 0 561.176000 1.439000 0 +SPEAKER 02722 0 563.169000 3.497000 0 +SPEAKER 02722 0 571.004000 4.515000 0 +SPEAKER 02722 0 575.893000 2.091000 0 +SPEAKER 02722 0 578.479000 3.523550 0 +SPEAKER 02722 0 582.292000 2.288330 0 +SPEAKER 02722 0 586.312000 2.667000 0 +SPEAKER 02722 0 589.322000 5.212000 0 +SPEAKER 02722 0 594.858000 1.644800 0 +SPEAKER 02722 0 596.886000 3.885090 0 +SPEAKER 02722 0 601.105000 2.580730 0 +SPEAKER 02722 0 608.782000 1.915920 0 +SPEAKER 02722 0 620.419000 0.705750 0 +SPEAKER 02722 0 623.046000 1.005580 0 +SPEAKER 02722 0 625.804000 0.589040 0 +SPEAKER 02722 0 627.267000 2.674820 0 +SPEAKER 02722 0 630.403000 0.961000 0 +SPEAKER 02722 0 631.873000 1.742000 0 +SPEAKER 02722 0 633.938000 2.650160 0 +SPEAKER 02722 0 637.403000 1.985000 0 +SPEAKER 02722 0 639.848000 2.161000 0 +SPEAKER 02722 0 642.388000 1.621000 0 +SPEAKER 02722 0 644.262000 1.576000 0 +SPEAKER 02722 0 649.035000 0.919020 0 +SPEAKER 02722 0 650.842000 1.794950 0 +SPEAKER 02722 0 656.393140 0.353560 0 +SPEAKER 02722 0 658.787000 0.862140 0 +SPEAKER 02722 0 665.277000 0.335550 0 +SPEAKER 02722 0 666.338000 4.383000 0 +SPEAKER 02722 0 671.948000 2.455000 0 +SPEAKER 02722 0 675.941820 1.017180 0 +SPEAKER 02722 0 677.459000 2.808650 0 +SPEAKER 02722 0 680.616000 1.580220 0 +SPEAKER 02722 0 682.522770 0.265290 0 +SPEAKER 02722 0 683.104380 8.339620 0 +SPEAKER 02722 0 691.812000 18.127190 0 +SPEAKER 02722 0 710.388000 3.099570 0 +SPEAKER 02722 0 714.189440 1.000000 0 +SPEAKER 02722 0 717.973000 7.330280 0 +SPEAKER 02722 0 725.803280 4.285710 0 +SPEAKER 02722 0 733.578000 0.368140 0 +SPEAKER 02722 0 737.989000 3.788000 0 +SPEAKER 02722 0 742.115000 1.416850 0 +SPEAKER 02722 0 743.959000 2.485000 0 +SPEAKER 02722 0 747.681000 1.242060 0 +SPEAKER 02722 0 749.181120 5.817880 0 +SPEAKER 02722 0 755.353000 0.792000 0 +SPEAKER 02722 0 756.580000 0.891440 0 +SPEAKER 02722 0 759.009000 4.930190 0 +SPEAKER 02722 0 765.332000 0.454000 0 +SPEAKER 02722 0 766.701000 2.673670 0 +SPEAKER 02722 0 770.135000 4.424000 0 +SPEAKER 02722 0 774.886000 1.149960 0 +SPEAKER 02722 0 777.327000 0.552000 0 +SPEAKER 02722 0 783.145000 0.745800 0 +SPEAKER 02722 0 784.368000 0.621000 0 +SPEAKER 02722 0 789.613000 0.634000 0 +SPEAKER 02722 0 795.229510 3.225800 0 +SPEAKER 02722 0 798.832000 2.510410 0 +SPEAKER 02722 0 803.156000 0.557380 0 +SPEAKER 02722 0 804.428000 3.713000 0 +SPEAKER 02722 0 808.499000 5.079320 0 +SPEAKER 02722 0 815.077000 1.154000 0 +SPEAKER 02722 0 817.412000 2.156220 0 +SPEAKER 02722 0 822.277000 2.871860 0 +SPEAKER 02722 0 825.713380 3.838710 0 +SPEAKER 02722 0 829.835000 1.624000 0 +SPEAKER 02722 0 831.898000 0.849000 0 +SPEAKER 02722 0 833.914000 1.802000 0 +SPEAKER 02722 0 836.095000 5.909000 0 +SPEAKER 02722 0 842.388000 2.708840 0 +SPEAKER 02722 0 846.418000 3.758000 0 +SPEAKER 02722 0 850.479000 2.718250 0 +SPEAKER 02722 0 855.671000 0.461730 0 +SPEAKER 02722 0 858.428000 5.285380 0 +SPEAKER 02722 0 865.648860 1.001140 0 +SPEAKER 02722 0 866.913000 2.035690 0 +SPEAKER 02722 0 869.473000 2.234950 0 +SPEAKER 02722 0 872.326280 1.192720 0 +SPEAKER 02722 0 873.826280 2.859720 0 +SPEAKER 02722 0 877.156000 2.454000 0 +SPEAKER 02722 0 880.552090 2.845910 0 +SPEAKER 02722 0 887.160000 0.803000 0 +SPEAKER 02722 0 893.038000 0.736710 0 +SPEAKER 02722 0 894.190000 1.622000 0 +SPEAKER 02722 0 896.191000 2.136000 0 +SPEAKER 02722 0 898.774710 4.433240 0 +SPEAKER 02722 0 903.735000 2.015000 0 +SPEAKER 02722 0 909.479000 0.889650 0 +SPEAKER 02722 0 912.676000 0.981000 0 +SPEAKER 02722 0 914.172000 1.306410 0 +SPEAKER 02722 0 916.699000 1.108680 0 +SPEAKER 02722 0 918.614000 1.409000 0 +SPEAKER 02722 0 921.741000 2.588000 0 +SPEAKER 02722 0 925.853000 1.545000 0 +SPEAKER 02722 0 927.716000 1.274600 0 +SPEAKER 02722 0 929.519000 2.591000 0 +SPEAKER 02722 0 932.740000 4.079060 0 +SPEAKER 02722 0 937.478000 1.026000 0 +SPEAKER 02722 0 939.004000 0.515000 0 +SPEAKER 02722 0 940.149000 2.724000 0 +SPEAKER 02722 0 945.130000 2.424000 0 +SPEAKER 02722 0 947.999000 1.561000 0 +SPEAKER 02722 0 949.819870 1.060980 0 +SPEAKER 02722 0 951.517000 2.048000 0 +SPEAKER 02722 0 953.928000 1.440000 0 +SPEAKER 02722 0 955.923000 2.591000 0 +SPEAKER 02722 0 958.822000 2.017080 0 +SPEAKER 02722 0 961.196000 5.506000 0 +SPEAKER 02722 0 967.809000 2.407000 0 +SPEAKER 02722 0 970.522750 0.981250 0 +SPEAKER 02722 0 985.964000 1.075000 0 +SPEAKER 02722 0 996.762000 1.826160 0 +SPEAKER 02722 0 1008.617000 0.349210 0 +SPEAKER 02722 0 1025.671000 2.091000 0 +SPEAKER 02722 0 1028.125000 1.313610 0 +SPEAKER 02722 0 1030.294000 2.727000 0 +SPEAKER 02722 0 1033.478410 6.865850 0 +SPEAKER 02722 0 1040.673000 2.316000 0 +SPEAKER 02722 0 1043.338000 4.500000 0 +SPEAKER 02722 0 1048.913000 11.048530 0 +SPEAKER 02722 0 1060.421000 2.623000 0 +SPEAKER 02722 0 1063.361000 2.628000 0 +SPEAKER 02722 0 1066.672000 2.067000 0 +SPEAKER 02722 0 1069.277850 1.166150 0 +SPEAKER 02722 0 1070.810000 6.116690 0 +SPEAKER 02722 0 1077.389000 0.915050 0 +SPEAKER 02722 0 1078.738000 0.386810 0 +SPEAKER 02722 0 1079.455000 4.716980 0 +SPEAKER 02722 0 1084.522000 1.119000 0 +SPEAKER 02722 0 1085.980000 5.448000 0 +SPEAKER 02722 0 1091.761000 1.712860 0 +SPEAKER 02722 0 1093.838000 1.500000 0 +SPEAKER 02722 0 1095.625000 2.381000 0 +SPEAKER 02722 0 1098.292000 3.436580 0 +SPEAKER 02722 0 1102.004000 0.535900 0 +SPEAKER 02722 0 1102.946000 4.310880 0 +SPEAKER 02722 0 1107.549000 1.160710 0 +SPEAKER 02722 0 1108.999000 4.229580 0 +SPEAKER 02722 0 1116.392000 1.063000 0 +SPEAKER 02722 0 1119.143670 0.345330 0 +SPEAKER 02722 0 1119.868000 0.894000 0 +SPEAKER 02722 0 1122.620000 0.495370 0 +SPEAKER 02722 0 8.838000 1.909000 1 +SPEAKER 02722 0 11.710120 2.536580 1 +SPEAKER 02722 0 14.763000 0.650000 1 +SPEAKER 02722 0 20.696000 0.326770 1 +SPEAKER 02722 0 28.597000 1.271650 1 +SPEAKER 02722 0 30.186000 0.560700 1 +SPEAKER 02722 0 39.024000 1.072840 1 +SPEAKER 02722 0 41.534000 1.213000 1 +SPEAKER 02722 0 43.241000 5.086000 1 +SPEAKER 02722 0 48.578320 3.863500 1 +SPEAKER 02722 0 52.974000 4.175140 1 +SPEAKER 02722 0 57.914000 1.308310 1 +SPEAKER 02722 0 60.109000 0.765620 1 +SPEAKER 02722 0 63.176000 0.717140 1 +SPEAKER 02722 0 67.800550 0.888890 1 +SPEAKER 02722 0 73.569000 3.616730 1 +SPEAKER 02722 0 79.797000 2.757000 1 +SPEAKER 02722 0 82.865000 1.957000 1 +SPEAKER 02722 0 85.519000 1.191120 1 +SPEAKER 02722 0 97.605000 3.271000 1 +SPEAKER 02722 0 102.014000 1.778000 1 +SPEAKER 02722 0 104.652000 0.887380 1 +SPEAKER 02722 0 110.344260 0.523740 1 +SPEAKER 02722 0 111.247000 1.097260 1 +SPEAKER 02722 0 114.466210 0.593600 1 +SPEAKER 02722 0 117.295480 0.560620 1 +SPEAKER 02722 0 120.820000 3.670600 1 +SPEAKER 02722 0 128.054000 2.704900 1 +SPEAKER 02722 0 131.551580 5.255420 1 +SPEAKER 02722 0 137.161000 2.287000 1 +SPEAKER 02722 0 139.966210 0.886790 1 +SPEAKER 02722 0 144.322000 2.894000 1 +SPEAKER 02722 0 152.565000 3.605920 1 +SPEAKER 02722 0 161.781000 2.534000 1 +SPEAKER 02722 0 166.126000 0.388990 1 +SPEAKER 02722 0 171.550000 3.166000 1 +SPEAKER 02722 0 175.034000 6.998950 1 +SPEAKER 02722 0 182.318000 1.663930 1 +SPEAKER 02722 0 184.288000 1.000000 1 +SPEAKER 02722 0 185.721000 0.374000 1 +SPEAKER 02722 0 186.838000 2.424000 1 +SPEAKER 02722 0 189.573770 0.560230 1 +SPEAKER 02722 0 190.757440 1.571430 1 +SPEAKER 02722 0 193.298260 0.816740 1 +SPEAKER 02722 0 194.696220 1.550780 1 +SPEAKER 02722 0 197.231000 2.379000 1 +SPEAKER 02722 0 200.034000 9.692830 1 +SPEAKER 02722 0 209.999000 1.494000 1 +SPEAKER 02722 0 211.911000 3.489380 1 +SPEAKER 02722 0 215.708000 2.564170 1 +SPEAKER 02722 0 218.644000 2.923040 1 +SPEAKER 02722 0 222.077000 0.611000 1 +SPEAKER 02722 0 223.276000 3.432070 1 +SPEAKER 02722 0 227.105510 3.230770 1 +SPEAKER 02722 0 230.759350 2.925650 1 +SPEAKER 02722 0 234.323460 1.014120 1 +SPEAKER 02722 0 235.746530 8.769230 1 +SPEAKER 02722 0 244.864000 1.703040 1 +SPEAKER 02722 0 252.448690 0.656820 1 +SPEAKER 02722 0 263.336280 5.192300 1 +SPEAKER 02722 0 268.959000 1.749070 1 +SPEAKER 02722 0 271.403000 1.409000 1 +SPEAKER 02722 0 277.263000 0.637380 1 +SPEAKER 02722 0 281.774000 0.419930 1 +SPEAKER 02722 0 288.743000 2.344550 1 +SPEAKER 02722 0 291.364000 0.936550 1 +SPEAKER 02722 0 300.302000 0.425000 1 +SPEAKER 02722 0 305.715000 0.776800 1 +SPEAKER 02722 0 309.851000 5.885480 1 +SPEAKER 02722 0 316.045000 2.925530 1 +SPEAKER 02722 0 319.898000 2.121000 1 +SPEAKER 02722 0 322.307000 1.515000 1 +SPEAKER 02722 0 324.095000 3.500000 1 +SPEAKER 02722 0 327.898000 5.306570 1 +SPEAKER 02722 0 333.503000 2.733480 1 +SPEAKER 02722 0 336.577000 7.723310 1 +SPEAKER 02722 0 344.568000 4.759000 1 +SPEAKER 02722 0 350.204570 1.223400 1 +SPEAKER 02722 0 354.338000 1.757000 1 +SPEAKER 02722 0 359.292000 3.409000 1 +SPEAKER 02722 0 364.256000 4.046000 1 +SPEAKER 02722 0 369.391000 1.292290 1 +SPEAKER 02722 0 371.236480 0.707520 1 +SPEAKER 02722 0 376.172650 0.744690 1 +SPEAKER 02722 0 377.300000 1.915210 1 +SPEAKER 02722 0 391.014000 0.574160 1 +SPEAKER 02722 0 395.595000 5.493160 1 +SPEAKER 02722 0 401.896000 0.486000 1 +SPEAKER 02722 0 402.951000 1.515210 1 +SPEAKER 02722 0 406.634000 3.271240 1 +SPEAKER 02722 0 416.504000 0.425630 1 +SPEAKER 02722 0 417.338000 9.215360 1 +SPEAKER 02722 0 426.853000 1.496280 1 +SPEAKER 02722 0 428.726830 8.914170 1 +SPEAKER 02722 0 437.923000 0.783420 1 +SPEAKER 02722 0 440.217000 0.499630 1 +SPEAKER 02722 0 441.364000 0.566180 1 +SPEAKER 02722 0 448.951000 1.265630 1 +SPEAKER 02722 0 461.165610 2.672390 1 +SPEAKER 02722 0 465.405000 2.673320 1 +SPEAKER 02722 0 471.989000 1.652000 1 +SPEAKER 02722 0 474.288000 1.510260 1 +SPEAKER 02722 0 484.504000 0.498340 1 +SPEAKER 02722 0 490.080000 11.146830 1 +SPEAKER 02722 0 501.582000 1.427000 1 +SPEAKER 02722 0 503.352000 0.334000 1 +SPEAKER 02722 0 504.085000 9.222000 1 +SPEAKER 02722 0 513.604000 4.582020 1 +SPEAKER 02722 0 520.389000 0.399060 1 +SPEAKER 02722 0 523.292000 1.349000 1 +SPEAKER 02722 0 525.933000 1.712000 1 +SPEAKER 02722 0 527.991040 7.012240 1 +SPEAKER 02722 0 538.853000 1.757000 1 +SPEAKER 02722 0 556.310000 0.474990 1 +SPEAKER 02722 0 557.726470 0.353400 1 +SPEAKER 02722 0 566.327000 3.419000 1 +SPEAKER 02722 0 570.143970 1.320510 1 +SPEAKER 02722 0 579.216000 0.714180 1 +SPEAKER 02722 0 585.267000 1.045000 1 +SPEAKER 02722 0 588.959000 0.354660 1 +SPEAKER 02722 0 596.312000 2.654210 1 +SPEAKER 02722 0 601.898000 0.348700 1 +SPEAKER 02722 0 603.732000 4.827810 1 +SPEAKER 02722 0 608.999000 14.211120 1 +SPEAKER 02722 0 624.058000 0.432600 1 +SPEAKER 02722 0 627.133880 1.417700 1 +SPEAKER 02722 0 628.844000 1.073430 1 +SPEAKER 02722 0 631.231000 1.591000 1 +SPEAKER 02722 0 634.246700 0.731710 1 +SPEAKER 02722 0 636.565000 1.657310 1 +SPEAKER 02722 0 642.856000 0.829730 1 +SPEAKER 02722 0 644.258900 0.819420 1 +SPEAKER 02722 0 645.902000 2.856900 1 +SPEAKER 02722 0 649.009000 2.201120 1 +SPEAKER 02722 0 652.258900 2.836100 1 +SPEAKER 02722 0 655.504000 2.950020 1 +SPEAKER 02722 0 659.462000 2.955430 1 +SPEAKER 02722 0 662.908000 3.606990 1 +SPEAKER 02722 0 672.227000 1.105000 1 +SPEAKER 02722 0 674.542000 3.521770 1 +SPEAKER 02722 0 691.571000 0.635420 1 +SPEAKER 02722 0 706.261000 0.623590 1 +SPEAKER 02722 0 713.390800 4.806450 1 +SPEAKER 02722 0 718.732000 0.998750 1 +SPEAKER 02722 0 729.236000 9.167280 1 +SPEAKER 02722 0 739.712000 0.491280 1 +SPEAKER 02722 0 743.385000 0.501000 1 +SPEAKER 02722 0 746.550000 1.538990 1 +SPEAKER 02722 0 754.953000 4.179730 1 +SPEAKER 02722 0 763.837000 3.569930 1 +SPEAKER 02722 0 767.963000 2.427800 1 +SPEAKER 02722 0 772.892000 0.627830 1 +SPEAKER 02722 0 774.285000 0.541280 1 +SPEAKER 02722 0 775.773000 5.843600 1 +SPEAKER 02722 0 782.342000 3.682000 1 +SPEAKER 02722 0 786.378000 3.004000 1 +SPEAKER 02722 0 790.294020 4.815980 1 +SPEAKER 02722 0 796.338000 0.561000 1 +SPEAKER 02722 0 797.812000 2.394000 1 +SPEAKER 02722 0 801.148860 3.225850 1 +SPEAKER 02722 0 812.590000 2.510480 1 +SPEAKER 02722 0 815.534000 1.864000 1 +SPEAKER 02722 0 819.508000 2.511830 1 +SPEAKER 02722 0 822.731000 0.643670 1 +SPEAKER 02722 0 828.810150 1.129040 1 +SPEAKER 02722 0 833.565000 0.438700 1 +SPEAKER 02722 0 837.488000 0.515700 1 +SPEAKER 02722 0 841.320000 1.512350 1 +SPEAKER 02722 0 853.141000 6.120770 1 +SPEAKER 02722 0 859.756000 1.941250 1 +SPEAKER 02722 0 862.106000 0.526730 1 +SPEAKER 02722 0 863.656000 1.670280 1 +SPEAKER 02722 0 865.853000 1.473280 1 +SPEAKER 02722 0 874.865000 0.429020 1 +SPEAKER 02722 0 876.625000 0.523860 1 +SPEAKER 02722 0 879.811000 0.547540 1 +SPEAKER 02722 0 883.226000 5.738480 1 +SPEAKER 02722 0 889.285000 3.532560 1 +SPEAKER 02722 0 893.118000 1.656710 1 +SPEAKER 02722 0 899.368000 2.606000 1 +SPEAKER 02722 0 905.792000 2.773000 1 +SPEAKER 02722 0 910.413000 1.591000 1 +SPEAKER 02722 0 929.191000 0.417000 1 +SPEAKER 02722 0 939.075000 1.243000 1 +SPEAKER 02722 0 942.903000 2.441260 1 +SPEAKER 02722 0 949.625000 0.463160 1 +SPEAKER 02722 0 958.034000 1.955000 1 +SPEAKER 02722 0 966.742000 1.879000 1 +SPEAKER 02722 0 969.675810 1.071430 1 +SPEAKER 02722 0 971.472000 3.381000 1 +SPEAKER 02722 0 975.226000 3.167000 1 +SPEAKER 02722 0 978.777850 1.756150 1 +SPEAKER 02722 0 980.961000 2.972000 1 +SPEAKER 02722 0 984.266320 0.912460 1 +SPEAKER 02722 0 985.550920 1.262990 1 +SPEAKER 02722 0 987.085000 1.701890 1 +SPEAKER 02722 0 989.152000 5.580400 1 +SPEAKER 02722 0 995.140000 1.801820 1 +SPEAKER 02722 0 998.323000 2.052000 1 +SPEAKER 02722 0 1000.795480 7.602520 1 +SPEAKER 02722 0 1008.948000 3.396260 1 +SPEAKER 02722 0 1012.625000 5.196590 1 +SPEAKER 02722 0 1018.130000 1.255420 1 +SPEAKER 02722 0 1019.989000 1.333000 1 +SPEAKER 02722 0 1021.697000 4.612000 1 +SPEAKER 02722 0 1032.917000 0.372680 1 +SPEAKER 02722 0 1035.112550 0.414640 1 +SPEAKER 02722 0 1038.807000 0.537260 1 +SPEAKER 02722 0 1040.383000 0.375900 1 +SPEAKER 02722 0 1047.146000 2.303000 1 +SPEAKER 02722 0 1054.383000 0.303020 1 +SPEAKER 02722 0 1059.308460 0.438780 1 +SPEAKER 02722 0 1067.305000 0.952440 1 +SPEAKER 02722 0 1073.994000 1.387000 1 +SPEAKER 02722 0 1078.767000 0.378000 1 +SPEAKER 02722 0 1085.463000 0.727840 1 +SPEAKER 02722 0 1088.290000 0.655560 1 +SPEAKER 02722 0 1091.443000 0.445960 1 +SPEAKER 02722 0 1093.156000 0.770690 1 +SPEAKER 02722 0 1098.726470 0.804000 1 +SPEAKER 02722 0 1101.738000 0.426000 1 +SPEAKER 02722 0 1109.858000 1.151000 1 +SPEAKER 02722 0 1112.519000 4.637000 1 +SPEAKER 02722 0 1117.610000 3.014810 1 +SPEAKER 02722 0 1121.006000 0.469000 1 +SPEAKER 02722 0 1121.777000 0.659130 1 +SPEAKER 02722 0 1123.134240 0.642760 1 diff --git a/rttm/few/02731.rttm b/rttm/few/02731.rttm new file mode 100644 index 0000000000000000000000000000000000000000..aeb864a5ec3f786b39a129b6301cde5fdaafb0ce --- /dev/null +++ b/rttm/few/02731.rttm @@ -0,0 +1,36 @@ +SPEAKER 02731 0 3.476070 2.157930 1 +SPEAKER 02731 0 8.004000 0.877480 1 +SPEAKER 02731 0 11.152000 1.463000 1 +SPEAKER 02731 0 13.598000 0.405100 1 +SPEAKER 02731 0 14.422020 5.337840 1 +SPEAKER 02731 0 20.967000 0.371000 1 +SPEAKER 02731 0 28.912000 2.370000 1 +SPEAKER 02731 0 34.257000 2.538000 1 +SPEAKER 02731 0 42.249000 0.916260 1 +SPEAKER 02731 0 43.467000 1.537000 1 +SPEAKER 02731 0 50.335000 1.695130 1 +SPEAKER 02731 0 52.355000 2.053510 1 +SPEAKER 02731 0 4.689000 1.516800 0 +SPEAKER 02731 0 9.088000 2.239430 0 +SPEAKER 02731 0 12.615000 1.000000 0 +SPEAKER 02731 0 31.339000 2.815000 0 +SPEAKER 02731 0 37.191000 3.111000 0 +SPEAKER 02731 0 45.004000 3.907660 0 +SPEAKER 02731 0 55.430000 2.371000 2 +SPEAKER 02731 0 59.226000 0.763590 2 +SPEAKER 02731 0 60.395000 3.756750 2 +SPEAKER 02731 0 67.245000 1.630000 2 +SPEAKER 02731 0 71.003100 1.662160 2 +SPEAKER 02731 0 73.354000 2.500450 2 +SPEAKER 02731 0 76.652000 0.426000 2 +SPEAKER 02731 0 78.327430 2.594590 2 +SPEAKER 02731 0 83.678780 2.566220 2 +SPEAKER 02731 0 86.800400 3.283780 2 +SPEAKER 02731 0 92.179000 1.661940 2 +SPEAKER 02731 0 94.192000 2.148940 2 +SPEAKER 02731 0 97.809000 1.510000 2 +SPEAKER 02731 0 100.219320 0.537680 2 +SPEAKER 02731 0 58.116000 0.914130 3 +SPEAKER 02731 0 81.454000 2.095000 3 +SPEAKER 02731 0 90.767000 1.405000 3 +SPEAKER 02731 0 96.525000 1.086210 3 diff --git a/rttm/few/02735.rttm b/rttm/few/02735.rttm new file mode 100644 index 0000000000000000000000000000000000000000..a480bd654a7dac202a430fa2cdd5c9ac4a276a0f --- /dev/null +++ b/rttm/few/02735.rttm @@ -0,0 +1,7 @@ +SPEAKER 02735 0 0.078000 5.371000 1 +SPEAKER 02735 0 21.575000 1.000000 1 +SPEAKER 02735 0 3.097000 1.203550 2 +SPEAKER 02735 0 5.152000 17.296690 2 +SPEAKER 02735 0 22.912000 1.963000 2 +SPEAKER 02735 0 16.227000 0.518000 3 +SPEAKER 02735 0 20.412000 3.462620 3 diff --git a/rttm/few/02736.rttm b/rttm/few/02736.rttm new file mode 100644 index 0000000000000000000000000000000000000000..eec1a2e56c39da200e4512d009af001becee8e1e --- /dev/null +++ b/rttm/few/02736.rttm @@ -0,0 +1,11 @@ +SPEAKER 02736 0 0.000000 3.856000 3 +SPEAKER 02736 0 6.652000 0.426000 3 +SPEAKER 02736 0 7.986000 2.195120 3 +SPEAKER 02736 0 10.671000 0.389000 3 +SPEAKER 02736 0 12.597000 0.796000 3 +SPEAKER 02736 0 15.600480 1.290320 3 +SPEAKER 02736 0 4.671000 1.106900 2 +SPEAKER 02736 0 5.986000 2.195120 1 +SPEAKER 02736 0 10.041290 3.055710 1 +SPEAKER 02736 0 13.541000 1.994960 1 +SPEAKER 02736 0 16.681120 3.433880 1 diff --git a/rttm/few/02743.rttm b/rttm/few/02743.rttm new file mode 100644 index 0000000000000000000000000000000000000000..64bec21f3108725f33d797b9fc1ff37ab0043c34 --- /dev/null +++ b/rttm/few/02743.rttm @@ -0,0 +1,8 @@ +SPEAKER 02743 0 0.060000 17.852000 1 +SPEAKER 02743 0 18.449000 13.092290 1 +SPEAKER 02743 0 31.800550 7.740450 1 +SPEAKER 02743 0 16.542000 2.610000 0 +SPEAKER 02743 0 20.060000 1.222030 0 +SPEAKER 02743 0 31.782000 1.292000 0 +SPEAKER 02743 0 37.356000 0.556000 0 +SPEAKER 02743 0 39.930000 0.384000 0 diff --git a/rttm/few/02749.rttm b/rttm/few/02749.rttm new file mode 100644 index 0000000000000000000000000000000000000000..2695ecd3b3f50746b6f2409832239f0d1b092b71 --- /dev/null +++ b/rttm/few/02749.rttm @@ -0,0 +1,12 @@ +SPEAKER 02749 0 0.073000 1.278510 0 +SPEAKER 02749 0 1.735230 2.848670 0 +SPEAKER 02749 0 5.029000 0.645810 0 +SPEAKER 02749 0 6.328000 0.418850 0 +SPEAKER 02749 0 9.106000 1.587000 0 +SPEAKER 02749 0 11.011000 4.291090 0 +SPEAKER 02749 0 15.620000 3.054810 0 +SPEAKER 02749 0 18.974000 1.246270 0 +SPEAKER 02749 0 20.538000 0.732000 0 +SPEAKER 02749 0 4.815000 0.750000 1 +SPEAKER 02749 0 6.398020 3.244180 1 +SPEAKER 02749 0 15.415000 0.441630 1 diff --git a/rttm/few/02751.rttm b/rttm/few/02751.rttm new file mode 100644 index 0000000000000000000000000000000000000000..8152a0dd0fb114009a6d7bfdb5ac3b9e918d5e6e --- /dev/null +++ b/rttm/few/02751.rttm @@ -0,0 +1,13 @@ +SPEAKER 02751 0 0.000000 6.022770 1 +SPEAKER 02751 0 12.319000 2.611000 1 +SPEAKER 02751 0 16.689000 0.334000 1 +SPEAKER 02751 0 20.486000 4.889000 1 +SPEAKER 02751 0 26.226470 2.555530 1 +SPEAKER 02751 0 30.708000 0.648100 1 +SPEAKER 02751 0 33.338000 3.259000 1 +SPEAKER 02751 0 0.430000 0.852000 0 +SPEAKER 02751 0 5.893000 6.463000 0 +SPEAKER 02751 0 14.874620 5.611380 0 +SPEAKER 02751 0 25.375000 0.889000 0 +SPEAKER 02751 0 28.856000 4.537000 0 +SPEAKER 02751 0 36.634000 0.552000 0 diff --git a/rttm/few/02753.rttm b/rttm/few/02753.rttm new file mode 100644 index 0000000000000000000000000000000000000000..f8c0c06a79c055d161c6eba5b53043e50ceaba21 --- /dev/null +++ b/rttm/few/02753.rttm @@ -0,0 +1,23 @@ +SPEAKER 02753 0 0.000000 0.304050 1 +SPEAKER 02753 0 8.449000 1.222000 1 +SPEAKER 02753 0 18.883270 1.647200 1 +SPEAKER 02753 0 23.523000 3.611000 1 +SPEAKER 02753 0 0.200000 0.397000 0 +SPEAKER 02753 0 1.427000 1.556300 0 +SPEAKER 02753 0 3.675000 1.959000 0 +SPEAKER 02753 0 9.447540 2.704460 0 +SPEAKER 02753 0 17.864000 1.622000 0 +SPEAKER 02753 0 19.930000 1.556000 0 +SPEAKER 02753 0 24.152000 1.297000 0 +SPEAKER 02753 0 1.726000 0.832770 h0 +SPEAKER 02753 0 3.329000 0.897000 h0 +SPEAKER 02753 0 7.189000 3.494900 h0 +SPEAKER 02753 0 11.084000 6.496680 h0 +SPEAKER 02753 0 18.226000 0.556030 h0 +SPEAKER 02753 0 25.140000 0.656370 h0 +SPEAKER 02753 0 0.893000 0.411050 2 +SPEAKER 02753 0 2.087070 2.169810 2 +SPEAKER 02753 0 4.870000 2.207640 2 +SPEAKER 02753 0 14.152000 0.536520 2 +SPEAKER 02753 0 21.537000 2.727000 2 +SPEAKER 02753 0 25.094000 0.457270 2 diff --git a/rttm/few/02759.rttm b/rttm/few/02759.rttm new file mode 100644 index 0000000000000000000000000000000000000000..04273d01e31c9936c833c270c45a81a11414c8d3 --- /dev/null +++ b/rttm/few/02759.rttm @@ -0,0 +1,23 @@ +SPEAKER 02759 0 0.000000 1.521860 0 +SPEAKER 02759 0 1.967000 8.681000 0 +SPEAKER 02759 0 10.963000 11.513070 0 +SPEAKER 02759 0 23.413000 0.591000 0 +SPEAKER 02759 0 29.236000 0.535000 0 +SPEAKER 02759 0 33.771460 0.704540 0 +SPEAKER 02759 0 38.079000 1.045400 0 +SPEAKER 02759 0 43.397000 1.273000 0 +SPEAKER 02759 0 46.918510 0.676480 0 +SPEAKER 02759 0 61.206000 0.460000 0 +SPEAKER 02759 0 66.444590 4.250660 0 +SPEAKER 02759 0 72.028580 10.679490 0 +SPEAKER 02759 0 83.342000 0.228210 0 +SPEAKER 02759 0 1.423820 0.696080 1 +SPEAKER 02759 0 21.381480 0.548520 1 +SPEAKER 02759 0 22.245000 28.744590 1 +SPEAKER 02759 0 51.422000 7.121640 1 +SPEAKER 02759 0 58.956000 7.675150 1 +SPEAKER 02759 0 69.620000 2.690630 1 +SPEAKER 02759 0 79.987000 1.431000 1 +SPEAKER 02759 0 82.504000 0.909200 1 +SPEAKER 02759 0 83.848000 11.831000 1 +SPEAKER 02759 0 96.004000 1.923720 1 diff --git a/rttm/few/02766.rttm b/rttm/few/02766.rttm new file mode 100644 index 0000000000000000000000000000000000000000..e11e71e01f05fe841bcc7bf32db3afa10fdd0410 --- /dev/null +++ b/rttm/few/02766.rttm @@ -0,0 +1,12 @@ +SPEAKER 02766 0 1.115000 6.871000 0 +SPEAKER 02766 0 9.390000 0.741000 0 +SPEAKER 02766 0 12.060000 1.500000 0 +SPEAKER 02766 0 14.858000 1.000000 0 +SPEAKER 02766 0 18.004000 3.037000 0 +SPEAKER 02766 0 21.763510 2.370370 0 +SPEAKER 02766 0 26.412000 2.874000 0 +SPEAKER 02766 0 2.726000 0.815000 1 +SPEAKER 02766 0 7.930000 1.630000 1 +SPEAKER 02766 0 10.023000 8.166440 1 +SPEAKER 02766 0 20.375000 2.332950 1 +SPEAKER 02766 0 24.430000 1.630000 1 diff --git a/rttm/few/02768.rttm b/rttm/few/02768.rttm new file mode 100644 index 0000000000000000000000000000000000000000..a7d0b99914bc382c3be3d6fd3db82f0930e69fef --- /dev/null +++ b/rttm/few/02768.rttm @@ -0,0 +1,63 @@ +SPEAKER 02768 0 0.022770 3.292230 1 +SPEAKER 02768 0 7.134000 1.314690 1 +SPEAKER 02768 0 14.911000 1.389550 1 +SPEAKER 02768 0 26.893140 1.333330 1 +SPEAKER 02768 0 31.097000 1.000000 1 +SPEAKER 02768 0 33.319000 1.629690 1 +SPEAKER 02768 0 36.375000 0.888510 1 +SPEAKER 02768 0 37.952000 1.830030 1 +SPEAKER 02768 0 40.691000 0.942880 1 +SPEAKER 02768 0 43.412000 1.944000 1 +SPEAKER 02768 0 46.319000 1.000000 1 +SPEAKER 02768 0 48.449000 2.184880 1 +SPEAKER 02768 0 52.393000 0.740880 1 +SPEAKER 02768 0 55.763000 0.537550 1 +SPEAKER 02768 0 62.708000 1.092550 1 +SPEAKER 02768 0 64.782030 1.647970 1 +SPEAKER 02768 0 72.337000 0.649000 1 +SPEAKER 02768 0 78.634000 1.555000 1 +SPEAKER 02768 0 84.215000 0.937400 1 +SPEAKER 02768 0 89.652000 3.574000 1 +SPEAKER 02768 0 1.983000 0.836060 0 +SPEAKER 02768 0 3.559810 3.462960 0 +SPEAKER 02768 0 8.319000 1.000000 0 +SPEAKER 02768 0 10.152000 2.585580 0 +SPEAKER 02768 0 13.296000 4.356400 0 +SPEAKER 02768 0 18.752000 0.900000 0 +SPEAKER 02768 0 29.652400 2.240740 0 +SPEAKER 02768 0 36.504000 1.037290 0 +SPEAKER 02768 0 40.004250 0.592590 0 +SPEAKER 02768 0 41.875000 1.592000 0 +SPEAKER 02768 0 47.282000 1.185000 0 +SPEAKER 02768 0 48.800550 0.462960 0 +SPEAKER 02768 0 52.671000 0.722140 0 +SPEAKER 02768 0 54.948000 0.445140 0 +SPEAKER 02768 0 57.541000 1.166950 0 +SPEAKER 02768 0 59.041290 1.899960 0 +SPEAKER 02768 0 62.226000 2.204180 0 +SPEAKER 02768 0 67.041000 3.541770 0 +SPEAKER 02768 0 71.189440 0.611110 0 +SPEAKER 02768 0 73.078320 0.592600 0 +SPEAKER 02768 0 74.301000 3.555000 0 +SPEAKER 02768 0 79.689000 1.000000 0 +SPEAKER 02768 0 83.375000 1.777000 0 +SPEAKER 02768 0 87.941250 1.803740 0 +SPEAKER 02768 0 91.115360 1.814640 0 +SPEAKER 02768 0 6.043000 1.313100 2 +SPEAKER 02768 0 8.179000 2.510000 2 +SPEAKER 02768 0 15.356100 11.000000 2 +SPEAKER 02768 0 28.541290 2.222220 2 +SPEAKER 02768 0 32.311000 1.317750 2 +SPEAKER 02768 0 35.096840 1.425930 2 +SPEAKER 02768 0 37.792000 0.768000 2 +SPEAKER 02768 0 40.819000 2.778000 2 +SPEAKER 02768 0 47.763510 0.907410 2 +SPEAKER 02768 0 50.300550 2.092450 2 +SPEAKER 02768 0 54.207950 1.481490 2 +SPEAKER 02768 0 59.430000 4.865420 2 +SPEAKER 02768 0 67.646000 4.840000 2 +SPEAKER 02768 0 73.004000 2.074320 2 +SPEAKER 02768 0 80.763510 1.552740 2 +SPEAKER 02768 0 82.819060 1.393020 2 +SPEAKER 02768 0 85.856000 1.204000 2 +SPEAKER 02768 0 91.078320 2.240680 2 diff --git a/rttm/few/02773.rttm b/rttm/few/02773.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ac7537eed92230e03b4bdedf88c61b135b350795 --- /dev/null +++ b/rttm/few/02773.rttm @@ -0,0 +1,25 @@ +SPEAKER 02773 0 0.017000 1.200000 1 +SPEAKER 02773 0 1.800550 1.962960 1 +SPEAKER 02773 0 7.300550 1.782450 1 +SPEAKER 02773 0 10.250000 2.300000 1 +SPEAKER 02773 0 13.283000 1.934000 1 +SPEAKER 02773 0 16.767000 2.755770 1 +SPEAKER 02773 0 20.483000 1.567000 1 +SPEAKER 02773 0 23.667000 0.433000 1 +SPEAKER 02773 0 26.983000 1.934000 1 +SPEAKER 02773 0 29.450000 2.900000 1 +SPEAKER 02773 0 33.096840 3.670160 1 +SPEAKER 02773 0 37.100000 2.117000 1 +SPEAKER 02773 0 0.983000 0.784000 0 +SPEAKER 02773 0 2.567000 0.650000 0 +SPEAKER 02773 0 3.893140 3.223860 0 +SPEAKER 02773 0 7.948000 0.630000 0 +SPEAKER 02773 0 9.189000 3.389000 0 +SPEAKER 02773 0 13.283000 4.600000 0 +SPEAKER 02773 0 19.559810 1.473190 0 +SPEAKER 02773 0 21.950000 1.317000 0 +SPEAKER 02773 0 24.417000 0.983000 0 +SPEAKER 02773 0 26.150000 0.800000 0 +SPEAKER 02773 0 28.917000 0.533000 0 +SPEAKER 02773 0 32.400000 0.683000 0 +SPEAKER 02773 0 36.567000 0.697000 0 diff --git a/rttm/few/02778.rttm b/rttm/few/02778.rttm new file mode 100644 index 0000000000000000000000000000000000000000..b111383a6839b59179205a78d430b35bd15b4464 --- /dev/null +++ b/rttm/few/02778.rttm @@ -0,0 +1,9 @@ +SPEAKER 02778 0 3.134000 0.384630 2 +SPEAKER 02778 0 4.637000 2.896780 2 +SPEAKER 02778 0 10.886000 1.000000 2 +SPEAKER 02778 0 13.215000 0.364230 2 +SPEAKER 02778 0 0.167000 2.133000 0 +SPEAKER 02778 0 12.640000 0.408930 0 +SPEAKER 02778 0 13.761050 1.938950 0 +SPEAKER 02778 0 21.700000 3.333000 0 +SPEAKER 02778 0 9.000000 0.776200 1 diff --git a/rttm/few/02785.rttm b/rttm/few/02785.rttm new file mode 100644 index 0000000000000000000000000000000000000000..886750fb254341b321aa23d27c62f2fbd8de5244 --- /dev/null +++ b/rttm/few/02785.rttm @@ -0,0 +1,37 @@ +SPEAKER 02785 0 0.285000 0.497000 0 +SPEAKER 02785 0 1.917560 1.871430 0 +SPEAKER 02785 0 4.071850 3.487960 0 +SPEAKER 02785 0 8.944000 3.412000 0 +SPEAKER 02785 0 12.708990 4.279700 0 +SPEAKER 02785 0 18.031850 5.768700 0 +SPEAKER 02785 0 24.189000 0.895250 0 +SPEAKER 02785 0 26.375000 0.688000 0 +SPEAKER 02785 0 27.967000 0.679000 0 +SPEAKER 02785 0 30.819000 1.000000 0 +SPEAKER 02785 0 34.671000 0.961000 0 +SPEAKER 02785 0 38.703280 2.228570 0 +SPEAKER 02785 0 41.426140 1.635150 0 +SPEAKER 02785 0 45.060420 4.925580 0 +SPEAKER 02785 0 0.801000 1.074000 3 +SPEAKER 02785 0 5.288000 0.574000 3 +SPEAKER 02785 0 8.131000 0.762000 3 +SPEAKER 02785 0 9.595000 0.579000 3 +SPEAKER 02785 0 30.837000 2.112000 3 +SPEAKER 02785 0 35.929000 1.260000 3 +SPEAKER 02785 0 44.288990 0.728570 3 +SPEAKER 02785 0 50.698000 0.922000 3 +SPEAKER 02785 0 2.862000 0.815000 1 +SPEAKER 02785 0 21.468000 0.796000 1 +SPEAKER 02785 0 23.115000 0.778000 1 +SPEAKER 02785 0 27.560000 0.651000 1 +SPEAKER 02785 0 34.819000 0.796000 1 +SPEAKER 02785 0 36.893000 1.259400 1 +SPEAKER 02785 0 43.134000 1.912000 1 +SPEAKER 02785 0 50.245000 0.690000 1 +SPEAKER 02785 0 51.531850 0.892150 1 +SPEAKER 02785 0 24.671000 0.800000 2 +SPEAKER 02785 0 27.517560 0.485720 2 +SPEAKER 02785 0 28.355000 3.672000 2 +SPEAKER 02785 0 33.026140 1.662860 2 +SPEAKER 02785 0 35.642000 0.589000 2 +SPEAKER 02785 0 43.651000 0.587000 2 diff --git a/rttm/few/02802.rttm b/rttm/few/02802.rttm new file mode 100644 index 0000000000000000000000000000000000000000..e8277bf376c554ab6d435df5c13d3d954b7160a4 --- /dev/null +++ b/rttm/few/02802.rttm @@ -0,0 +1,117 @@ +SPEAKER 02802 0 0.000000 1.822030 0 +SPEAKER 02802 0 2.180270 0.933730 0 +SPEAKER 02802 0 3.634000 1.504450 0 +SPEAKER 02802 0 5.838000 0.888470 0 +SPEAKER 02802 0 7.319000 3.333000 0 +SPEAKER 02802 0 15.244990 1.074010 0 +SPEAKER 02802 0 17.244990 0.800740 0 +SPEAKER 02802 0 18.618000 2.664030 0 +SPEAKER 02802 0 21.708000 2.185140 0 +SPEAKER 02802 0 24.241000 1.429920 0 +SPEAKER 02802 0 25.967000 0.839470 0 +SPEAKER 02802 0 27.138000 1.761060 0 +SPEAKER 02802 0 30.301000 2.726210 0 +SPEAKER 02802 0 34.763510 1.202210 0 +SPEAKER 02802 0 38.096840 1.074080 0 +SPEAKER 02802 0 40.836000 0.947900 0 +SPEAKER 02802 0 44.047540 4.419670 0 +SPEAKER 02802 0 48.877000 2.775400 0 +SPEAKER 02802 0 52.893000 1.611000 0 +SPEAKER 02802 0 56.346000 2.519720 0 +SPEAKER 02802 0 60.722000 2.070400 0 +SPEAKER 02802 0 63.510000 0.254990 0 +SPEAKER 02802 0 66.504250 0.572590 0 +SPEAKER 02802 0 67.856000 1.609720 0 +SPEAKER 02802 0 71.079000 0.981000 0 +SPEAKER 02802 0 73.635000 2.054000 0 +SPEAKER 02802 0 79.613880 1.444570 0 +SPEAKER 02802 0 82.319000 3.055620 0 +SPEAKER 02802 0 86.023000 1.378000 0 +SPEAKER 02802 0 89.638450 3.287270 0 +SPEAKER 02802 0 93.282000 1.729180 0 +SPEAKER 02802 0 95.636630 0.775370 0 +SPEAKER 02802 0 99.430000 0.963000 0 +SPEAKER 02802 0 100.838000 0.888000 0 +SPEAKER 02802 0 103.893000 1.240880 0 +SPEAKER 02802 0 105.578320 0.259260 0 +SPEAKER 02802 0 107.880000 1.267540 0 +SPEAKER 02802 0 111.430000 2.759440 0 +SPEAKER 02802 0 115.430000 2.889000 0 +SPEAKER 02802 0 120.041000 1.574360 0 +SPEAKER 02802 0 123.264000 1.938090 0 +SPEAKER 02802 0 126.430000 2.000000 0 +SPEAKER 02802 0 130.152000 2.000000 0 +SPEAKER 02802 0 134.801000 2.364720 0 +SPEAKER 02802 0 139.682090 0.418180 0 +SPEAKER 02802 0 141.097000 0.518360 0 +SPEAKER 02802 0 141.975000 1.700360 0 +SPEAKER 02802 0 144.008000 3.792550 0 +SPEAKER 02802 0 151.597000 0.370000 0 +SPEAKER 02802 0 163.720270 0.518180 0 +SPEAKER 02802 0 168.004000 29.963210 0 +SPEAKER 02802 0 11.945730 2.262220 1 +SPEAKER 02802 0 23.967210 0.360740 1 +SPEAKER 02802 0 29.492000 0.255540 1 +SPEAKER 02802 0 32.865720 1.823280 1 +SPEAKER 02802 0 35.986000 1.777510 1 +SPEAKER 02802 0 39.245000 0.685000 1 +SPEAKER 02802 0 40.393000 2.592730 1 +SPEAKER 02802 0 45.199000 0.508950 1 +SPEAKER 02802 0 47.652000 2.078920 1 +SPEAKER 02802 0 51.619000 0.979320 1 +SPEAKER 02802 0 59.732000 2.242810 1 +SPEAKER 02802 0 69.837580 1.500870 1 +SPEAKER 02802 0 79.782000 1.574000 1 +SPEAKER 02802 0 87.134000 1.659000 1 +SPEAKER 02802 0 96.793000 1.326810 1 +SPEAKER 02802 0 106.208000 1.518470 1 +SPEAKER 02802 0 118.541000 0.723000 1 +SPEAKER 02802 0 127.560000 0.796000 1 +SPEAKER 02802 0 132.226000 1.686000 1 +SPEAKER 02802 0 136.959000 4.842000 1 +SPEAKER 02802 0 142.486000 2.507000 1 +SPEAKER 02802 0 145.465720 0.345460 1 +SPEAKER 02802 0 148.318450 3.148550 1 +SPEAKER 02802 0 151.912000 0.728270 1 +SPEAKER 02802 0 154.967000 4.871000 1 +SPEAKER 02802 0 160.226000 0.630000 1 +SPEAKER 02802 0 161.875000 3.203320 1 +SPEAKER 02802 0 187.417000 0.735400 1 +SPEAKER 02802 0 197.347540 3.156710 1 +SPEAKER 02802 0 30.229360 0.886000 2 +SPEAKER 02802 0 33.850180 0.841000 2 +SPEAKER 02802 0 39.985730 0.490900 2 +SPEAKER 02802 0 43.102090 1.185860 2 +SPEAKER 02802 0 76.523000 0.835000 2 +SPEAKER 02802 0 78.181000 0.804730 2 +SPEAKER 02802 0 82.375000 0.814440 2 +SPEAKER 02802 0 87.115000 1.268900 2 +SPEAKER 02802 0 125.266000 1.100000 2 +SPEAKER 02802 0 129.311180 0.536360 2 +SPEAKER 02802 0 132.226000 1.946000 2 +SPEAKER 02802 0 139.126000 1.030630 2 +SPEAKER 02802 0 148.422000 2.471000 2 +SPEAKER 02802 0 151.912000 3.314470 2 +SPEAKER 02802 0 166.829360 1.119640 2 +SPEAKER 02802 0 200.449000 1.489450 2 +SPEAKER 02802 0 7.277000 1.486510 h0 +SPEAKER 02802 0 44.693000 0.590900 h0 +SPEAKER 02802 0 59.282030 0.336290 h0 +SPEAKER 02802 0 63.745000 1.351840 h0 +SPEAKER 02802 0 65.752000 0.659660 h0 +SPEAKER 02802 0 67.453000 0.273470 h0 +SPEAKER 02802 0 76.949000 0.889000 h0 +SPEAKER 02802 0 78.374810 0.890910 h0 +SPEAKER 02802 0 103.060000 0.666000 h0 +SPEAKER 02802 0 108.208000 1.675900 h0 +SPEAKER 02802 0 110.504000 0.889140 h0 +SPEAKER 02802 0 121.400000 0.693000 h0 +SPEAKER 02802 0 124.056630 0.299470 h0 +SPEAKER 02802 0 125.520270 0.581820 h0 +SPEAKER 02802 0 127.158450 0.358180 h0 +SPEAKER 02802 0 129.836000 1.393360 h0 +SPEAKER 02802 0 157.038450 2.873550 h0 +SPEAKER 02802 0 160.611180 1.485820 h0 +SPEAKER 02802 0 162.558000 0.724000 h0 +SPEAKER 02802 0 164.634000 3.185060 h0 +SPEAKER 02802 0 202.134000 0.490000 h0 diff --git a/rttm/few/02817.rttm b/rttm/few/02817.rttm new file mode 100644 index 0000000000000000000000000000000000000000..397afdeb57a23835c87ac8971ac08ff0cd4ed568 --- /dev/null +++ b/rttm/few/02817.rttm @@ -0,0 +1,7 @@ +SPEAKER 02817 0 0.022000 3.260030 0 +SPEAKER 02817 0 5.708000 0.463000 0 +SPEAKER 02817 0 7.430000 1.019000 0 +SPEAKER 02817 0 14.393000 1.148000 0 +SPEAKER 02817 0 22.244990 0.759010 0 +SPEAKER 02817 0 1.876000 14.110000 1 +SPEAKER 02817 0 16.504000 8.018770 1 diff --git a/rttm/few/02823.rttm b/rttm/few/02823.rttm new file mode 100644 index 0000000000000000000000000000000000000000..a634c520a871a972f7615a80090855bd31dbc59c --- /dev/null +++ b/rttm/few/02823.rttm @@ -0,0 +1,20 @@ +SPEAKER 02823 0 0.030000 2.567000 0 +SPEAKER 02823 0 3.119000 0.793000 0 +SPEAKER 02823 0 8.435000 1.939620 0 +SPEAKER 02823 0 12.502000 2.396000 0 +SPEAKER 02823 0 15.419000 4.562000 0 +SPEAKER 02823 0 20.981000 0.646000 0 +SPEAKER 02823 0 22.357000 6.202000 0 +SPEAKER 02823 0 31.191000 1.844000 0 +SPEAKER 02823 0 36.856100 9.962960 0 +SPEAKER 02823 0 47.189000 5.185620 0 +SPEAKER 02823 0 54.319060 10.062940 0 +SPEAKER 02823 0 3.207950 5.857050 1 +SPEAKER 02823 0 10.002000 3.813000 1 +SPEAKER 02823 0 14.273000 1.146000 1 +SPEAKER 02823 0 19.744990 2.799010 1 +SPEAKER 02823 0 24.634000 0.704000 1 +SPEAKER 02823 0 27.947000 8.525000 1 +SPEAKER 02823 0 41.838000 2.083000 1 +SPEAKER 02823 0 51.546000 3.347140 1 +SPEAKER 02823 0 58.257000 0.932440 1 diff --git a/rttm/few/02828.rttm b/rttm/few/02828.rttm new file mode 100644 index 0000000000000000000000000000000000000000..bcbfe049c36e440657e5e5282b6a8c08cc2633d0 --- /dev/null +++ b/rttm/few/02828.rttm @@ -0,0 +1,13 @@ +SPEAKER 02828 0 0.046000 2.717000 0 +SPEAKER 02828 0 4.283000 2.358000 0 +SPEAKER 02828 0 8.689440 2.259250 0 +SPEAKER 02828 0 14.356100 2.185190 0 +SPEAKER 02828 0 17.115000 0.655000 0 +SPEAKER 02828 0 20.788000 2.533000 0 +SPEAKER 02828 0 24.093000 1.296000 0 +SPEAKER 02828 0 10.281000 0.585000 1 +SPEAKER 02828 0 11.596000 0.600000 1 +SPEAKER 02828 0 12.652400 4.500000 1 +SPEAKER 02828 0 17.652400 1.370370 1 +SPEAKER 02828 0 19.855000 2.379000 1 +SPEAKER 02828 0 24.819060 0.629940 1 diff --git a/rttm/few/02830.rttm b/rttm/few/02830.rttm new file mode 100644 index 0000000000000000000000000000000000000000..adb5b869ee2d835fdb83aefaeb1bb8ce9b6a7003 --- /dev/null +++ b/rttm/few/02830.rttm @@ -0,0 +1,20 @@ +SPEAKER 02830 0 0.022770 10.808890 0 +SPEAKER 02830 0 11.170920 2.074070 0 +SPEAKER 02830 0 13.670920 8.685180 0 +SPEAKER 02830 0 24.782000 0.631000 0 +SPEAKER 02830 0 35.135360 0.505640 0 +SPEAKER 02830 0 43.134000 2.759140 0 +SPEAKER 02830 0 46.212400 4.411110 0 +SPEAKER 02830 0 50.950180 6.220740 0 +SPEAKER 02830 0 57.631000 8.336210 0 +SPEAKER 02830 0 66.266470 2.441480 0 +SPEAKER 02830 0 69.152400 5.612590 0 +SPEAKER 02830 0 75.170920 1.051110 0 +SPEAKER 02830 0 76.902000 0.792000 0 +SPEAKER 02830 0 21.303510 0.558490 1 +SPEAKER 02830 0 22.356100 2.422960 1 +SPEAKER 02830 0 25.207950 9.666670 1 +SPEAKER 02830 0 35.299060 7.649630 1 +SPEAKER 02830 0 67.465730 0.669630 1 +SPEAKER 02830 0 74.912000 0.407000 1 +SPEAKER 02830 0 76.858000 0.477880 1 diff --git a/rttm/few/02832.rttm b/rttm/few/02832.rttm new file mode 100644 index 0000000000000000000000000000000000000000..a98e1b140ec6838cd8b013d02ac2adba1c172a5b --- /dev/null +++ b/rttm/few/02832.rttm @@ -0,0 +1,24 @@ +SPEAKER 02832 0 0.003000 2.563250 1 +SPEAKER 02832 0 3.109000 0.769750 1 +SPEAKER 02832 0 4.875000 4.857920 1 +SPEAKER 02832 0 15.208000 0.630000 1 +SPEAKER 02832 0 25.523000 0.463000 1 +SPEAKER 02832 0 26.356000 5.907510 1 +SPEAKER 02832 0 33.244990 9.696260 1 +SPEAKER 02832 0 43.259000 2.578080 1 +SPEAKER 02832 0 53.615000 0.741100 1 +SPEAKER 02832 0 56.875000 1.982920 1 +SPEAKER 02832 0 60.226000 1.278000 1 +SPEAKER 02832 0 2.597000 0.518000 0 +SPEAKER 02832 0 3.912000 1.407000 0 +SPEAKER 02832 0 6.986000 0.611000 0 +SPEAKER 02832 0 9.597000 17.031750 0 +SPEAKER 02832 0 28.578000 0.445000 0 +SPEAKER 02832 0 31.912000 1.466750 0 +SPEAKER 02832 0 35.671000 0.521000 0 +SPEAKER 02832 0 39.782000 0.519000 0 +SPEAKER 02832 0 40.838000 0.592000 0 +SPEAKER 02832 0 45.578000 4.738250 0 +SPEAKER 02832 0 50.672000 2.685920 0 +SPEAKER 02832 0 54.282000 3.722250 0 +SPEAKER 02832 0 58.652000 1.435080 0 diff --git a/rttm/few/02837.rttm b/rttm/few/02837.rttm new file mode 100644 index 0000000000000000000000000000000000000000..3b282709d37583ea7f734e6398830e3c90b56b56 --- /dev/null +++ b/rttm/few/02837.rttm @@ -0,0 +1,31 @@ +SPEAKER 02837 0 0.000000 2.732920 2 +SPEAKER 02837 0 5.782000 0.741000 2 +SPEAKER 02837 0 9.189000 1.000000 2 +SPEAKER 02837 0 12.060000 6.500000 2 +SPEAKER 02837 0 19.820550 1.164450 2 +SPEAKER 02837 0 22.926000 1.708000 2 +SPEAKER 02837 0 25.004000 2.426180 2 +SPEAKER 02837 0 29.189000 2.204140 2 +SPEAKER 02837 0 0.023000 1.709920 1 +SPEAKER 02837 0 2.856000 1.370470 1 +SPEAKER 02837 0 27.671000 1.352000 1 +SPEAKER 02837 0 30.060000 0.685000 1 +SPEAKER 02837 0 31.634000 0.907000 1 +SPEAKER 02837 0 3.486000 1.537000 0 +SPEAKER 02837 0 7.097000 1.518000 0 +SPEAKER 02837 0 10.462000 1.505000 0 +SPEAKER 02837 0 19.531000 0.528810 0 +SPEAKER 02837 0 20.726000 1.611080 0 +SPEAKER 02837 0 26.430000 1.481660 0 +SPEAKER 02837 0 29.473000 0.660880 0 +SPEAKER 02837 0 31.430000 0.537000 0 +SPEAKER 02837 0 2.611000 2.413580 h0 +SPEAKER 02837 0 5.337000 1.000000 h0 +SPEAKER 02837 0 8.615000 2.037000 h0 +SPEAKER 02837 0 11.282000 1.370400 h0 +SPEAKER 02837 0 18.671000 0.907000 h0 +SPEAKER 02837 0 21.708000 1.426000 h0 +SPEAKER 02837 0 24.589000 2.560580 h0 +SPEAKER 02837 0 29.004000 0.500000 h0 +SPEAKER 02837 0 30.986000 0.666400 h0 +SPEAKER 02837 0 32.462080 3.375000 h0 diff --git a/rttm/few/02848.rttm b/rttm/few/02848.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c567dea800374af8e1831e84bee75f9134a79dba --- /dev/null +++ b/rttm/few/02848.rttm @@ -0,0 +1,48 @@ +SPEAKER 02848 0 0.000000 0.819000 0 +SPEAKER 02848 0 1.760000 1.000000 0 +SPEAKER 02848 0 3.698000 1.232000 0 +SPEAKER 02848 0 5.979000 0.766000 0 +SPEAKER 02848 0 7.171000 1.796000 0 +SPEAKER 02848 0 11.627000 1.000000 0 +SPEAKER 02848 0 15.004250 0.736750 0 +SPEAKER 02848 0 21.447000 1.076000 0 +SPEAKER 02848 0 24.152000 1.130030 0 +SPEAKER 02848 0 36.697000 2.584000 0 +SPEAKER 02848 0 40.670920 0.611110 0 +SPEAKER 02848 0 42.838000 2.018000 0 +SPEAKER 02848 0 45.559810 0.500000 0 +SPEAKER 02848 0 52.152400 0.592590 0 +SPEAKER 02848 0 1.486000 1.333000 1 +SPEAKER 02848 0 4.671000 0.667000 1 +SPEAKER 02848 0 5.670000 1.056000 1 +SPEAKER 02848 0 9.382000 0.900000 1 +SPEAKER 02848 0 13.134000 1.139000 1 +SPEAKER 02848 0 17.504000 1.908000 1 +SPEAKER 02848 0 23.930000 0.963000 1 +SPEAKER 02848 0 25.356000 1.104000 1 +SPEAKER 02848 0 27.967000 0.639000 1 +SPEAKER 02848 0 31.967000 1.169000 1 +SPEAKER 02848 0 34.824000 1.000000 1 +SPEAKER 02848 0 37.041290 0.574070 1 +SPEAKER 02848 0 37.967000 3.278000 1 +SPEAKER 02848 0 45.203000 0.875000 1 +SPEAKER 02848 0 46.676000 1.050000 1 +SPEAKER 02848 0 50.301000 1.444000 1 +SPEAKER 02848 0 52.041000 1.255000 1 +SPEAKER 02848 0 0.004000 2.241000 2 +SPEAKER 02848 0 4.171000 0.962880 2 +SPEAKER 02848 0 6.541000 1.000000 2 +SPEAKER 02848 0 8.807000 1.000000 2 +SPEAKER 02848 0 10.730000 1.000000 2 +SPEAKER 02848 0 14.541290 1.129710 2 +SPEAKER 02848 0 16.467210 0.768790 2 +SPEAKER 02848 0 17.734000 1.000000 2 +SPEAKER 02848 0 20.681000 4.138060 2 +SPEAKER 02848 0 26.520000 1.262030 2 +SPEAKER 02848 0 29.900000 1.493000 2 +SPEAKER 02848 0 33.652000 1.236000 2 +SPEAKER 02848 0 39.652000 1.130000 2 +SPEAKER 02848 0 41.330000 1.000000 2 +SPEAKER 02848 0 43.800550 2.425920 2 +SPEAKER 02848 0 47.300550 3.407400 2 +SPEAKER 02848 0 51.319000 2.000000 2 diff --git a/rttm/few/02852.rttm b/rttm/few/02852.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4dedc535029450c719d77644d5140dc373e21b7d --- /dev/null +++ b/rttm/few/02852.rttm @@ -0,0 +1,10 @@ +SPEAKER 02852 0 0.763000 1.315320 0 +SPEAKER 02852 0 2.523000 0.759030 0 +SPEAKER 02852 0 20.523000 1.333000 0 +SPEAKER 02852 0 3.789000 3.030060 1 +SPEAKER 02852 0 7.245000 3.481470 1 +SPEAKER 02852 0 11.131000 1.688060 1 +SPEAKER 02852 0 13.375000 0.499620 1 +SPEAKER 02852 0 14.914000 5.608000 1 +SPEAKER 02852 0 8.189440 0.462960 2 +SPEAKER 02852 0 16.116000 0.610470 2 diff --git a/rttm/few/02856.rttm b/rttm/few/02856.rttm new file mode 100644 index 0000000000000000000000000000000000000000..d469e2b89f0f36a36c8377dd9d0f0f69ebde6d90 --- /dev/null +++ b/rttm/few/02856.rttm @@ -0,0 +1,19 @@ +SPEAKER 02856 0 0.000000 8.504250 0 +SPEAKER 02856 0 8.893140 4.814810 0 +SPEAKER 02856 0 14.866000 2.138000 0 +SPEAKER 02856 0 19.065000 4.924000 0 +SPEAKER 02856 0 25.141000 0.484000 0 +SPEAKER 02856 0 27.782030 4.873970 0 +SPEAKER 02856 0 33.200000 2.322770 0 +SPEAKER 02856 0 37.185000 0.486000 0 +SPEAKER 02856 0 47.728000 0.534000 0 +SPEAKER 02856 0 48.972000 3.199000 0 +SPEAKER 02856 0 53.773000 0.671000 0 +SPEAKER 02856 0 55.004000 0.894000 0 +SPEAKER 02856 0 3.294000 0.413000 1 +SPEAKER 02856 0 5.670920 0.444440 1 +SPEAKER 02856 0 16.822000 2.349000 1 +SPEAKER 02856 0 21.362000 0.476000 1 +SPEAKER 02856 0 23.671000 4.167000 1 +SPEAKER 02856 0 35.625000 13.379000 1 +SPEAKER 02856 0 52.554000 4.238000 1 diff --git a/rttm/few/02864.rttm b/rttm/few/02864.rttm new file mode 100644 index 0000000000000000000000000000000000000000..74f51c6ac269d975d93365a7d527c9ad8c45ad00 --- /dev/null +++ b/rttm/few/02864.rttm @@ -0,0 +1,42 @@ +SPEAKER 02864 0 2.948690 1.154080 0 +SPEAKER 02864 0 4.837000 1.111690 0 +SPEAKER 02864 0 6.475000 4.732950 0 +SPEAKER 02864 0 12.314000 1.000000 0 +SPEAKER 02864 0 13.967000 1.871000 0 +SPEAKER 02864 0 16.356100 0.499900 0 +SPEAKER 02864 0 18.475000 0.807000 0 +SPEAKER 02864 0 19.563000 1.256000 0 +SPEAKER 02864 0 21.411660 3.000340 0 +SPEAKER 02864 0 24.837580 3.481420 0 +SPEAKER 02864 0 28.704000 4.652000 0 +SPEAKER 02864 0 33.645000 9.748000 0 +SPEAKER 02864 0 43.784000 0.868000 0 +SPEAKER 02864 0 45.264000 1.703000 0 +SPEAKER 02864 0 47.270000 2.086000 0 +SPEAKER 02864 0 49.856000 4.778000 0 +SPEAKER 02864 0 55.430000 0.463000 0 +SPEAKER 02864 0 57.925000 0.949000 0 +SPEAKER 02864 0 60.393140 2.184860 0 +SPEAKER 02864 0 62.912000 0.629000 0 +SPEAKER 02864 0 63.893000 0.611000 0 +SPEAKER 02864 0 64.838000 0.444000 0 +SPEAKER 02864 0 0.059810 2.888880 1 +SPEAKER 02864 0 9.362000 0.333000 1 +SPEAKER 02864 0 10.115360 0.500000 1 +SPEAKER 02864 0 12.856100 1.703710 1 +SPEAKER 02864 0 15.923000 3.007000 1 +SPEAKER 02864 0 20.578000 0.666990 1 +SPEAKER 02864 0 28.386000 0.303440 1 +SPEAKER 02864 0 31.411660 0.444340 1 +SPEAKER 02864 0 33.874620 2.487380 1 +SPEAKER 02864 0 37.596840 0.537160 1 +SPEAKER 02864 0 44.693000 0.608000 1 +SPEAKER 02864 0 47.226000 0.556030 1 +SPEAKER 02864 0 49.449000 0.388580 1 +SPEAKER 02864 0 53.469000 0.517000 1 +SPEAKER 02864 0 54.619000 0.756000 1 +SPEAKER 02864 0 56.319060 0.721940 1 +SPEAKER 02864 0 57.319060 0.333340 1 +SPEAKER 02864 0 58.726000 1.167140 1 +SPEAKER 02864 0 61.064000 0.811000 1 +SPEAKER 02864 0 62.597000 1.815000 1 diff --git a/rttm/few/02866.rttm b/rttm/few/02866.rttm new file mode 100644 index 0000000000000000000000000000000000000000..7a6b6665849116bd682ad738b3f29d180df13a6a --- /dev/null +++ b/rttm/few/02866.rttm @@ -0,0 +1,5 @@ +SPEAKER 02866 0 0.004000 4.260000 1 +SPEAKER 02866 0 4.648000 7.337730 1 +SPEAKER 02866 0 17.219000 1.158000 1 +SPEAKER 02866 0 3.752000 1.696690 0 +SPEAKER 02866 0 12.044000 4.682470 0 diff --git a/rttm/few/02867.rttm b/rttm/few/02867.rttm new file mode 100644 index 0000000000000000000000000000000000000000..d42b455d6f22c616edfb9b0a98d36fcb4300b755 --- /dev/null +++ b/rttm/few/02867.rttm @@ -0,0 +1,15 @@ +SPEAKER 02867 0 0.060000 3.462770 0 +SPEAKER 02867 0 4.061000 4.851000 0 +SPEAKER 02867 0 15.504250 1.592750 0 +SPEAKER 02867 0 18.189440 2.796560 0 +SPEAKER 02867 0 21.837580 0.754420 0 +SPEAKER 02867 0 24.467000 1.926000 0 +SPEAKER 02867 0 30.041290 0.480710 0 +SPEAKER 02867 0 1.986000 1.815000 3 +SPEAKER 02867 0 17.041290 1.364710 3 +SPEAKER 02867 0 22.448690 0.296300 3 +SPEAKER 02867 0 26.560000 3.151000 3 +SPEAKER 02867 0 30.282000 3.074000 3 +SPEAKER 02867 0 8.819060 6.610940 2 +SPEAKER 02867 0 17.615360 0.407410 2 +SPEAKER 02867 0 22.801000 3.136000 2 diff --git a/rttm/few/02869.rttm b/rttm/few/02869.rttm new file mode 100644 index 0000000000000000000000000000000000000000..dc622fb8365d3c39bdca38e3b4f3e1a40cea10a5 --- /dev/null +++ b/rttm/few/02869.rttm @@ -0,0 +1,5 @@ +SPEAKER 02869 0 0.000000 4.041000 1 +SPEAKER 02869 0 9.153000 10.832730 1 +SPEAKER 02869 0 20.282030 0.523970 1 +SPEAKER 02869 0 4.098320 4.868890 0 +SPEAKER 02869 0 20.319060 0.462970 0 diff --git a/rttm/few/02881.rttm b/rttm/few/02881.rttm new file mode 100644 index 0000000000000000000000000000000000000000..469b9f12985d7ed6ce256d3357621b5b4a662262 --- /dev/null +++ b/rttm/few/02881.rttm @@ -0,0 +1,17 @@ +SPEAKER 02881 0 17.115000 1.297000 0 +SPEAKER 02881 0 18.949000 0.592000 0 +SPEAKER 02881 0 20.418000 3.697000 0 +SPEAKER 02881 0 34.189000 1.537000 0 +SPEAKER 02881 0 1.412000 1.981000 1 +SPEAKER 02881 0 17.264000 2.055000 1 +SPEAKER 02881 0 24.430000 2.648000 1 +SPEAKER 02881 0 28.023000 4.564080 1 +SPEAKER 02881 0 32.996000 6.403580 1 +SPEAKER 02881 0 7.486000 4.536920 2 +SPEAKER 02881 0 0.000000 1.295420 3 +SPEAKER 02881 0 1.758000 4.391580 3 +SPEAKER 02881 0 6.447000 1.910920 3 +SPEAKER 02881 0 12.220000 4.637920 3 +SPEAKER 02881 0 19.616000 1.685000 3 +SPEAKER 02881 0 27.419000 1.270440 3 +SPEAKER 02881 0 36.191000 2.461000 3 diff --git a/rttm/few/02883.rttm b/rttm/few/02883.rttm new file mode 100644 index 0000000000000000000000000000000000000000..45ee6a04448400e0d96eda5dc5126c7f54510413 --- /dev/null +++ b/rttm/few/02883.rttm @@ -0,0 +1,20 @@ +SPEAKER 02883 0 0.078000 1.741000 0 +SPEAKER 02883 0 4.930000 0.796470 0 +SPEAKER 02883 0 7.578320 1.092600 0 +SPEAKER 02883 0 13.967000 0.611320 0 +SPEAKER 02883 0 19.875000 1.166290 0 +SPEAKER 02883 0 23.097000 2.889000 0 +SPEAKER 02883 0 2.559810 2.852190 2 +SPEAKER 02883 0 7.060000 0.481000 2 +SPEAKER 02883 0 9.504250 1.296300 2 +SPEAKER 02883 0 12.782000 0.962990 2 +SPEAKER 02883 0 21.782000 0.926000 2 +SPEAKER 02883 0 23.319000 2.333000 2 +SPEAKER 02883 0 26.375000 1.814440 2 +SPEAKER 02883 0 29.393000 1.148290 2 +SPEAKER 02883 0 4.115000 4.185550 1 +SPEAKER 02883 0 11.393000 2.648000 1 +SPEAKER 02883 0 15.226470 1.796300 1 +SPEAKER 02883 0 26.356000 0.963060 1 +SPEAKER 02883 0 28.633880 0.555120 1 +SPEAKER 02883 0 30.893000 2.241000 1 diff --git a/rttm/few/02885.rttm b/rttm/few/02885.rttm new file mode 100644 index 0000000000000000000000000000000000000000..bf786a892e0e6a177583e4a7a8aa909986271541 --- /dev/null +++ b/rttm/few/02885.rttm @@ -0,0 +1,24 @@ +SPEAKER 02885 0 0.448000 0.336000 0 +SPEAKER 02885 0 15.002000 0.691000 0 +SPEAKER 02885 0 16.048000 2.511810 0 +SPEAKER 02885 0 19.772000 0.603000 0 +SPEAKER 02885 0 22.848000 0.767360 0 +SPEAKER 02885 0 24.776000 0.450000 0 +SPEAKER 02885 0 1.457000 2.463000 2 +SPEAKER 02885 0 8.301000 2.847000 2 +SPEAKER 02885 0 11.466000 2.593810 2 +SPEAKER 02885 0 19.411000 1.515000 2 +SPEAKER 02885 0 21.842000 0.458550 2 +SPEAKER 02885 0 23.048000 0.509000 2 +SPEAKER 02885 0 24.878000 0.626250 2 +SPEAKER 02885 0 26.752000 0.596000 2 +SPEAKER 02885 0 28.448000 1.900000 2 +SPEAKER 02885 0 0.689440 0.481560 1 +SPEAKER 02885 0 4.557000 1.492000 1 +SPEAKER 02885 0 6.638000 0.873000 1 +SPEAKER 02885 0 14.211000 1.293000 1 +SPEAKER 02885 0 20.464000 0.559000 1 +SPEAKER 02885 0 21.763510 0.543490 1 +SPEAKER 02885 0 22.764000 1.758770 1 +SPEAKER 02885 0 25.784000 1.891000 1 +SPEAKER 02885 0 30.202000 0.436000 1 diff --git a/rttm/few/02891.rttm b/rttm/few/02891.rttm new file mode 100644 index 0000000000000000000000000000000000000000..b4e682a52973342382503ee6181fce104a0adf23 --- /dev/null +++ b/rttm/few/02891.rttm @@ -0,0 +1,13 @@ +SPEAKER 02891 0 0.000000 0.430180 h0 +SPEAKER 02891 0 1.874000 1.000000 h0 +SPEAKER 02891 0 2.745000 6.835330 0 +SPEAKER 02891 0 9.930180 1.007980 0 +SPEAKER 02891 0 11.400000 6.449400 0 +SPEAKER 02891 0 18.485000 1.372880 0 +SPEAKER 02891 0 20.129000 1.067860 0 +SPEAKER 02891 0 21.621000 0.541960 0 +SPEAKER 02891 0 22.707950 0.488910 0 +SPEAKER 02891 0 0.210000 2.053510 1 +SPEAKER 02891 0 10.337000 0.664450 1 +SPEAKER 02891 0 16.162960 0.433880 1 +SPEAKER 02891 0 19.958000 0.453660 1 diff --git a/rttm/few/02897.rttm b/rttm/few/02897.rttm new file mode 100644 index 0000000000000000000000000000000000000000..6b2e88960633ca38487434a9b799657c1361f2b2 --- /dev/null +++ b/rttm/few/02897.rttm @@ -0,0 +1,51 @@ +SPEAKER 02897 0 0.002000 1.465000 0 +SPEAKER 02897 0 1.817000 0.779840 0 +SPEAKER 02897 0 12.981000 1.375000 0 +SPEAKER 02897 0 14.981000 3.476000 0 +SPEAKER 02897 0 19.252000 0.637000 0 +SPEAKER 02897 0 29.420000 1.000000 0 +SPEAKER 02897 0 33.305000 1.588140 0 +SPEAKER 02897 0 47.244990 1.111110 0 +SPEAKER 02897 0 49.226000 0.759730 0 +SPEAKER 02897 0 50.726470 3.037040 0 +SPEAKER 02897 0 54.596840 1.666670 0 +SPEAKER 02897 0 56.837580 5.259260 0 +SPEAKER 02897 0 63.092000 1.000000 0 +SPEAKER 02897 0 69.979000 0.821550 0 +SPEAKER 02897 0 73.926000 1.263440 0 +SPEAKER 02897 0 1.648000 3.979000 1 +SPEAKER 02897 0 6.648000 0.583000 1 +SPEAKER 02897 0 7.856000 4.459000 1 +SPEAKER 02897 0 13.722000 1.021000 1 +SPEAKER 02897 0 15.711000 0.437000 1 +SPEAKER 02897 0 16.606000 1.167000 1 +SPEAKER 02897 0 18.523000 1.083000 1 +SPEAKER 02897 0 20.856000 0.542000 1 +SPEAKER 02897 0 23.398000 5.945000 1 +SPEAKER 02897 0 30.320000 0.684250 1 +SPEAKER 02897 0 31.785000 1.562000 1 +SPEAKER 02897 0 35.078000 2.296620 1 +SPEAKER 02897 0 38.263510 8.740740 1 +SPEAKER 02897 0 47.713000 1.000000 1 +SPEAKER 02897 0 50.546000 0.834000 1 +SPEAKER 02897 0 53.689000 2.130000 1 +SPEAKER 02897 0 61.726000 7.741210 1 +SPEAKER 02897 0 70.430180 3.722220 1 +SPEAKER 02897 0 75.074000 1.059880 1 +SPEAKER 02897 0 77.596840 4.481480 1 +SPEAKER 02897 0 2.405000 1.950000 2 +SPEAKER 02897 0 5.875000 2.018140 2 +SPEAKER 02897 0 19.226000 3.722690 2 +SPEAKER 02897 0 29.300550 2.554450 2 +SPEAKER 02897 0 36.596840 3.055560 2 +SPEAKER 02897 0 43.985730 2.296300 2 +SPEAKER 02897 0 50.205000 0.947400 2 +SPEAKER 02897 0 56.671000 0.749000 2 +SPEAKER 02897 0 58.726000 0.839000 2 +SPEAKER 02897 0 60.578000 1.616000 2 +SPEAKER 02897 0 65.319000 0.750000 2 +SPEAKER 02897 0 70.296000 2.171210 2 +SPEAKER 02897 0 73.327000 0.621690 2 +SPEAKER 02897 0 75.448690 2.018520 2 +SPEAKER 02897 0 79.505000 1.314060 2 +SPEAKER 02897 0 81.380000 1.291000 2 diff --git a/rttm/few/02899.rttm b/rttm/few/02899.rttm new file mode 100644 index 0000000000000000000000000000000000000000..83e59a1cbbfbb60fdb0b71c00dd1537c37738769 --- /dev/null +++ b/rttm/few/02899.rttm @@ -0,0 +1,10 @@ +SPEAKER 02899 0 0.004000 1.926180 1 +SPEAKER 02899 0 2.282000 0.796320 1 +SPEAKER 02899 0 3.430000 1.889060 1 +SPEAKER 02899 0 5.689000 2.518950 1 +SPEAKER 02899 0 8.486000 1.944180 0 +SPEAKER 02899 0 10.782000 3.577060 0 +SPEAKER 02899 0 14.875000 0.684810 0 +SPEAKER 02899 0 15.912000 0.672250 0 +SPEAKER 02899 0 17.245000 4.925920 0 +SPEAKER 02899 0 22.553880 0.457120 0 diff --git a/rttm/few/02901.rttm b/rttm/few/02901.rttm new file mode 100644 index 0000000000000000000000000000000000000000..e2321077c179241661ca1c980a8d1794f4f5caeb --- /dev/null +++ b/rttm/few/02901.rttm @@ -0,0 +1,24 @@ +SPEAKER 02901 0 0.040000 2.279060 1 +SPEAKER 02901 0 8.862000 1.619000 1 +SPEAKER 02901 0 12.430180 0.388880 1 +SPEAKER 02901 0 15.979000 1.324510 1 +SPEAKER 02901 0 28.189440 3.750560 1 +SPEAKER 02901 0 32.964250 3.829750 1 +SPEAKER 02901 0 39.362000 1.605210 1 +SPEAKER 02901 0 0.075000 0.484810 0 +SPEAKER 02901 0 2.287000 2.760000 0 +SPEAKER 02901 0 5.570000 1.932000 0 +SPEAKER 02901 0 9.131000 1.780660 0 +SPEAKER 02901 0 11.771000 1.011030 0 +SPEAKER 02901 0 13.115000 1.741100 0 +SPEAKER 02901 0 15.208000 0.592550 0 +SPEAKER 02901 0 17.522770 10.518520 0 +SPEAKER 02901 0 32.319000 0.741000 0 +SPEAKER 02901 0 36.838000 3.522550 0 +SPEAKER 02901 0 40.763510 1.238490 0 +SPEAKER 02901 0 4.967000 0.518730 h0 +SPEAKER 02901 0 6.004000 0.722470 h0 +SPEAKER 02901 0 7.334000 1.281360 h0 +SPEAKER 02901 0 10.875000 1.037000 h0 +SPEAKER 02901 0 12.440000 0.508690 h0 +SPEAKER 02901 0 16.022000 1.000000 h0 diff --git a/rttm/few/02905.rttm b/rttm/few/02905.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ba5d9e3656077b2ee517ee22a2ff8a1b1b561a2c --- /dev/null +++ b/rttm/few/02905.rttm @@ -0,0 +1,10 @@ +SPEAKER 02905 0 0.205000 1.068000 0 +SPEAKER 02905 0 3.240000 0.635000 0 +SPEAKER 02905 0 4.522770 0.500000 0 +SPEAKER 02905 0 6.059810 0.772190 0 +SPEAKER 02905 0 9.832000 8.967000 0 +SPEAKER 02905 0 1.917000 0.494660 1 +SPEAKER 02905 0 3.262000 5.231000 1 +SPEAKER 02905 0 8.871000 0.919000 1 +SPEAKER 02905 0 13.615360 0.722220 1 +SPEAKER 02905 0 19.061000 1.144000 1 diff --git a/rttm/few/02906.rttm b/rttm/few/02906.rttm new file mode 100644 index 0000000000000000000000000000000000000000..a2fe30e9e9a39a11d56ef3cdf53a328e2534d684 --- /dev/null +++ b/rttm/few/02906.rttm @@ -0,0 +1,4 @@ +SPEAKER 02906 0 0.033000 20.230510 2 +SPEAKER 02906 0 1.377000 0.867990 1 +SPEAKER 02906 0 11.504250 0.664750 1 +SPEAKER 02906 0 20.023000 1.708000 0 diff --git a/rttm/few/02925.rttm b/rttm/few/02925.rttm new file mode 100644 index 0000000000000000000000000000000000000000..07c88bec02c73c42dadc268233f435c6a5f05976 --- /dev/null +++ b/rttm/few/02925.rttm @@ -0,0 +1,12 @@ +SPEAKER 02925 0 0.186000 0.318000 1 +SPEAKER 02925 0 0.807000 5.271320 1 +SPEAKER 02925 0 13.961000 1.058000 1 +SPEAKER 02925 0 16.127000 0.877000 1 +SPEAKER 02925 0 19.201000 2.229180 1 +SPEAKER 02925 0 27.156000 0.863000 1 +SPEAKER 02925 0 6.467000 1.593000 0 +SPEAKER 02925 0 8.523000 1.499770 0 +SPEAKER 02925 0 10.550000 3.181000 0 +SPEAKER 02925 0 14.262000 1.909000 0 +SPEAKER 02925 0 16.883000 1.091000 0 +SPEAKER 02925 0 22.307000 4.660210 0 diff --git a/rttm/few/02934.rttm b/rttm/few/02934.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c046844a79cdebfc6c4578d299a2a83e6f21f804 --- /dev/null +++ b/rttm/few/02934.rttm @@ -0,0 +1,19 @@ +SPEAKER 02934 0 0.080000 2.027920 1 +SPEAKER 02934 0 3.580000 1.382080 1 +SPEAKER 02934 0 5.430180 3.344400 1 +SPEAKER 02934 0 9.096840 1.981480 1 +SPEAKER 02934 0 11.344000 0.540000 1 +SPEAKER 02934 0 12.171000 3.130000 1 +SPEAKER 02934 0 16.045000 1.000000 1 +SPEAKER 02934 0 17.433000 4.779080 1 +SPEAKER 02934 0 22.687000 1.000000 1 +SPEAKER 02934 0 24.096840 0.552740 1 +SPEAKER 02934 0 24.948690 6.263390 1 +SPEAKER 02934 0 31.670000 1.792080 1 +SPEAKER 02934 0 33.860000 1.831000 1 +SPEAKER 02934 0 37.338000 1.691000 1 +SPEAKER 02934 0 4.489000 1.237470 2 +SPEAKER 02934 0 15.125000 0.682000 2 +SPEAKER 02934 0 22.368000 1.939000 2 +SPEAKER 02934 0 33.398000 1.394000 2 +SPEAKER 02934 0 9.686000 1.091000 0 diff --git a/rttm/few/02942.rttm b/rttm/few/02942.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ace899f38c25002595ab7ce4272630b7040fc4cd --- /dev/null +++ b/rttm/few/02942.rttm @@ -0,0 +1,10 @@ +SPEAKER 02942 0 2.152000 0.481880 0 +SPEAKER 02942 0 4.449000 13.018210 0 +SPEAKER 02942 0 18.282030 7.666660 0 +SPEAKER 02942 0 26.467000 14.185400 0 +SPEAKER 02942 0 0.004000 3.537290 1 +SPEAKER 02942 0 8.579000 0.462290 1 +SPEAKER 02942 0 13.652000 1.055950 1 +SPEAKER 02942 0 33.356100 0.518900 1 +SPEAKER 02942 0 39.101000 0.625470 1 +SPEAKER 02942 0 40.097000 0.592000 1 diff --git a/rttm/few/02944.rttm b/rttm/few/02944.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c6a1a794ac88c13185f6b325513655b48927534a --- /dev/null +++ b/rttm/few/02944.rttm @@ -0,0 +1,10 @@ +SPEAKER 02944 0 0.023000 6.018290 0 +SPEAKER 02944 0 6.671000 2.166580 0 +SPEAKER 02944 0 9.523000 0.629400 0 +SPEAKER 02944 0 15.338000 0.536620 0 +SPEAKER 02944 0 19.282000 0.887000 0 +SPEAKER 02944 0 5.059810 3.481190 2 +SPEAKER 02944 0 9.763510 9.722220 2 +SPEAKER 02944 0 7.745000 2.093000 1 +SPEAKER 02944 0 13.726000 1.296770 1 +SPEAKER 02944 0 19.152000 1.000000 1 diff --git a/rttm/few/02960.rttm b/rttm/few/02960.rttm new file mode 100644 index 0000000000000000000000000000000000000000..1c34750d3302800ee598cd1fda4060cad8ef803c --- /dev/null +++ b/rttm/few/02960.rttm @@ -0,0 +1,33 @@ +SPEAKER 02960 0 0.594000 2.800000 1 +SPEAKER 02960 0 7.385000 1.255000 1 +SPEAKER 02960 0 9.081000 2.451000 1 +SPEAKER 02960 0 11.904000 1.296000 1 +SPEAKER 02960 0 14.421000 0.884000 1 +SPEAKER 02960 0 16.805000 2.084100 1 +SPEAKER 02960 0 22.061000 1.058000 1 +SPEAKER 02960 0 25.933000 1.864810 1 +SPEAKER 02960 0 28.398000 2.558000 1 +SPEAKER 02960 0 31.282000 1.325000 1 +SPEAKER 02960 0 32.933000 4.174000 1 +SPEAKER 02960 0 37.631000 1.604000 1 +SPEAKER 02960 0 39.771000 2.924250 1 +SPEAKER 02960 0 43.181000 2.019000 1 +SPEAKER 02960 0 45.758000 0.698000 1 +SPEAKER 02960 0 46.821000 0.926000 1 +SPEAKER 02960 0 49.352000 1.569000 1 +SPEAKER 02960 0 51.421000 1.489000 1 +SPEAKER 02960 0 53.677000 1.105000 1 +SPEAKER 02960 0 55.805000 3.198000 1 +SPEAKER 02960 0 59.439000 7.761000 1 +SPEAKER 02960 0 67.840000 0.442000 1 +SPEAKER 02960 0 68.758000 1.477000 1 +SPEAKER 02960 0 70.900000 1.300000 1 +SPEAKER 02960 0 72.654000 1.872000 1 +SPEAKER 02960 0 75.173000 2.317120 1 +SPEAKER 02960 0 77.805000 0.992810 1 +SPEAKER 02960 0 79.384000 2.388170 1 +SPEAKER 02960 0 82.154000 3.913040 1 +SPEAKER 02960 0 86.398000 2.698000 1 +SPEAKER 02960 0 20.433000 0.390460 0 +SPEAKER 02960 0 23.724000 0.740480 0 +SPEAKER 02960 0 70.445000 0.441000 0 diff --git a/rttm/few/02967.rttm b/rttm/few/02967.rttm new file mode 100644 index 0000000000000000000000000000000000000000..2db0396a623fe247f70ea52c176ccf23871e9e1a --- /dev/null +++ b/rttm/few/02967.rttm @@ -0,0 +1,27 @@ +SPEAKER 02967 0 0.067000 2.700000 1 +SPEAKER 02967 0 4.083000 1.467000 1 +SPEAKER 02967 0 6.560000 0.523000 1 +SPEAKER 02967 0 9.263000 2.254000 1 +SPEAKER 02967 0 12.486000 0.648000 1 +SPEAKER 02967 0 13.578320 2.038680 1 +SPEAKER 02967 0 16.300000 2.574620 1 +SPEAKER 02967 0 19.320000 6.165730 1 +SPEAKER 02967 0 26.096840 6.352160 1 +SPEAKER 02967 0 32.967000 0.866000 1 +SPEAKER 02967 0 37.033000 2.045320 1 +SPEAKER 02967 0 39.427000 0.632810 1 +SPEAKER 02967 0 40.560000 2.204000 1 +SPEAKER 02967 0 43.467000 5.883000 1 +SPEAKER 02967 0 51.733000 0.550000 1 +SPEAKER 02967 0 53.950000 4.000000 1 +SPEAKER 02967 0 0.433000 0.478660 0 +SPEAKER 02967 0 1.227000 0.888360 0 +SPEAKER 02967 0 2.596840 3.704160 0 +SPEAKER 02967 0 7.800000 1.067000 0 +SPEAKER 02967 0 11.033000 1.284000 0 +SPEAKER 02967 0 15.617000 0.683000 0 +SPEAKER 02967 0 34.267000 1.416000 0 +SPEAKER 02967 0 36.433000 0.900000 0 +SPEAKER 02967 0 48.837580 0.925930 0 +SPEAKER 02967 0 50.115360 1.617640 0 +SPEAKER 02967 0 52.317000 1.633000 0 diff --git a/rttm/few/02971.rttm b/rttm/few/02971.rttm new file mode 100644 index 0000000000000000000000000000000000000000..692201ad209464c610f3d6680868ecff46b193f8 --- /dev/null +++ b/rttm/few/02971.rttm @@ -0,0 +1,52 @@ +SPEAKER 02971 0 0.003000 1.149400 0 +SPEAKER 02971 0 1.514000 0.811000 0 +SPEAKER 02971 0 5.580000 1.000000 0 +SPEAKER 02971 0 7.981000 1.004730 0 +SPEAKER 02971 0 12.854000 1.076180 0 +SPEAKER 02971 0 15.124000 2.740000 0 +SPEAKER 02971 0 18.226000 0.681000 0 +SPEAKER 02971 0 19.290000 2.184620 0 +SPEAKER 02971 0 26.561000 1.350730 0 +SPEAKER 02971 0 30.088000 0.468000 0 +SPEAKER 02971 0 31.322000 0.755000 0 +SPEAKER 02971 0 33.043160 0.810840 0 +SPEAKER 02971 0 38.034000 2.958000 0 +SPEAKER 02971 0 44.936000 3.679360 0 +SPEAKER 02971 0 52.939000 4.175590 0 +SPEAKER 02971 0 59.992000 0.936000 0 +SPEAKER 02971 0 62.237440 0.509390 0 +SPEAKER 02971 0 63.591000 1.241000 0 +SPEAKER 02971 0 66.992000 1.561000 0 +SPEAKER 02971 0 70.173000 1.587300 0 +SPEAKER 02971 0 74.180000 1.210100 0 +SPEAKER 02971 0 76.396000 1.543000 0 +SPEAKER 02971 0 90.247000 1.538000 0 +SPEAKER 02971 0 92.098000 0.517000 0 +SPEAKER 02971 0 95.163000 0.956000 0 +SPEAKER 02971 0 2.729000 0.571000 1 +SPEAKER 02971 0 4.014000 0.366000 1 +SPEAKER 02971 0 5.647000 1.033000 1 +SPEAKER 02971 0 18.088000 0.349000 1 +SPEAKER 02971 0 21.592000 1.917000 1 +SPEAKER 02971 0 24.566000 0.830000 1 +SPEAKER 02971 0 27.206420 0.853390 1 +SPEAKER 02971 0 31.474000 0.380000 1 +SPEAKER 02971 0 32.354000 0.380000 1 +SPEAKER 02971 0 34.300000 0.788000 1 +SPEAKER 02971 0 40.747240 3.510760 1 +SPEAKER 02971 0 48.460000 2.128000 1 +SPEAKER 02971 0 52.152400 0.849600 1 +SPEAKER 02971 0 57.534000 0.702000 1 +SPEAKER 02971 0 58.917000 0.910000 1 +SPEAKER 02971 0 60.633000 2.391000 1 +SPEAKER 02971 0 63.481000 2.410000 1 +SPEAKER 02971 0 68.733000 1.403000 1 +SPEAKER 02971 0 70.502000 0.236260 1 +SPEAKER 02971 0 77.992000 0.330000 1 +SPEAKER 02971 0 78.589000 0.360000 1 +SPEAKER 02971 0 85.034000 0.958000 1 +SPEAKER 02971 0 87.324000 1.272840 1 +SPEAKER 02971 0 91.920710 1.680580 1 +SPEAKER 02971 0 94.131000 0.418000 1 +SPEAKER 02971 0 96.172000 1.755000 1 +SPEAKER 02971 0 98.296000 0.761000 1 diff --git a/rttm/few/02972.rttm b/rttm/few/02972.rttm new file mode 100644 index 0000000000000000000000000000000000000000..be7afb3e8c4c10e1ab5d1b2b693b0df1ef965afe --- /dev/null +++ b/rttm/few/02972.rttm @@ -0,0 +1,20 @@ +SPEAKER 02972 0 0.229000 3.191270 2 +SPEAKER 02972 0 28.097000 0.914180 2 +SPEAKER 02972 0 29.575000 1.818000 2 +SPEAKER 02972 0 32.457000 0.554180 2 +SPEAKER 02972 0 37.066000 1.917900 2 +SPEAKER 02972 0 3.383900 2.390910 0 +SPEAKER 02972 0 13.774810 1.359070 0 +SPEAKER 02972 0 22.247540 5.800000 0 +SPEAKER 02972 0 1.681000 0.712140 1 +SPEAKER 02972 0 6.967540 3.015460 1 +SPEAKER 02972 0 11.782000 1.801900 1 +SPEAKER 02972 0 14.874810 2.172730 1 +SPEAKER 02972 0 18.023000 0.570000 1 +SPEAKER 02972 0 19.193000 2.436360 1 +SPEAKER 02972 0 26.827000 1.284180 1 +SPEAKER 02972 0 28.884000 1.000000 1 +SPEAKER 02972 0 34.875000 2.555000 1 +SPEAKER 02972 0 39.134000 1.049900 1 +SPEAKER 02972 0 42.041290 0.569890 1 +SPEAKER 02972 0 42.948690 0.500000 1 diff --git a/rttm/few/02974.rttm b/rttm/few/02974.rttm new file mode 100644 index 0000000000000000000000000000000000000000..912be4c4f9410cf7a761b5783464dfb86ebc3ba8 --- /dev/null +++ b/rttm/few/02974.rttm @@ -0,0 +1,13 @@ +SPEAKER 02974 0 0.032000 4.769000 0 +SPEAKER 02974 0 6.504000 2.611000 0 +SPEAKER 02974 0 10.170420 5.204580 0 +SPEAKER 02974 0 17.412000 0.592000 0 +SPEAKER 02974 0 19.381000 0.830000 0 +SPEAKER 02974 0 0.840000 0.479000 1 +SPEAKER 02974 0 4.560000 2.499810 1 +SPEAKER 02974 0 15.189000 2.085580 1 +SPEAKER 02974 0 17.763000 1.199080 1 +SPEAKER 02974 0 6.115360 2.362560 2 +SPEAKER 02974 0 8.754000 1.666420 2 +SPEAKER 02974 0 14.671000 0.389000 2 +SPEAKER 02974 0 18.171000 1.898000 2 diff --git a/rttm/few/02976.rttm b/rttm/few/02976.rttm new file mode 100644 index 0000000000000000000000000000000000000000..15c1417dd1bf013b4320a7d1652926416437d9e2 --- /dev/null +++ b/rttm/few/02976.rttm @@ -0,0 +1,37 @@ +SPEAKER 02976 0 18.620000 1.453880 3 +SPEAKER 02976 0 43.623000 0.436810 3 +SPEAKER 02976 0 44.596840 0.370160 3 +SPEAKER 02976 0 45.485730 1.759260 3 +SPEAKER 02976 0 56.433000 1.234000 3 +SPEAKER 02976 0 59.950000 1.961660 3 +SPEAKER 02976 0 65.133880 1.759260 3 +SPEAKER 02976 0 77.161000 0.324730 3 +SPEAKER 02976 0 0.689000 1.667100 0 +SPEAKER 02976 0 2.893000 1.873470 0 +SPEAKER 02976 0 5.282000 4.314840 0 +SPEAKER 02976 0 10.041000 0.407690 0 +SPEAKER 02976 0 11.116000 6.758620 0 +SPEAKER 02976 0 19.078320 5.222230 0 +SPEAKER 02976 0 24.689000 4.537470 0 +SPEAKER 02976 0 29.726000 5.759730 0 +SPEAKER 02976 0 35.838000 6.277360 0 +SPEAKER 02976 0 44.015000 0.785550 0 +SPEAKER 02976 0 57.264000 1.000000 0 +SPEAKER 02976 0 64.833000 2.760000 0 +SPEAKER 02976 0 82.533000 1.400000 0 +SPEAKER 02976 0 47.504250 0.388890 2 +SPEAKER 02976 0 48.375000 1.407030 2 +SPEAKER 02976 0 50.523000 0.407180 2 +SPEAKER 02976 0 51.449000 3.888580 2 +SPEAKER 02976 0 57.334000 0.633000 2 +SPEAKER 02976 0 58.801000 1.000000 2 +SPEAKER 02976 0 60.152400 0.425920 2 +SPEAKER 02976 0 61.766000 2.710840 2 +SPEAKER 02976 0 67.689000 0.593030 2 +SPEAKER 02976 0 68.709000 0.798210 2 +SPEAKER 02976 0 69.800000 0.764250 2 +SPEAKER 02976 0 70.949000 2.295990 2 +SPEAKER 02976 0 73.801000 3.314360 2 +SPEAKER 02976 0 77.708000 3.425880 2 +SPEAKER 02976 0 81.449000 1.000000 2 +SPEAKER 02976 0 57.933000 1.349030 1 diff --git a/rttm/few/02978.rttm b/rttm/few/02978.rttm new file mode 100644 index 0000000000000000000000000000000000000000..2316ef2acfcbd63ceddca2ec443ecd7d196b9faf --- /dev/null +++ b/rttm/few/02978.rttm @@ -0,0 +1,31 @@ +SPEAKER 02978 0 2.017000 2.741900 2 +SPEAKER 02978 0 5.533000 0.564000 2 +SPEAKER 02978 0 6.441820 1.525180 2 +SPEAKER 02978 0 8.350000 1.311340 2 +SPEAKER 02978 0 11.380000 0.809000 2 +SPEAKER 02978 0 15.009000 1.477000 2 +SPEAKER 02978 0 17.124750 1.527650 2 +SPEAKER 02978 0 23.502800 2.337200 2 +SPEAKER 02978 0 31.136950 1.695120 2 +SPEAKER 02978 0 33.637000 5.311690 2 +SPEAKER 02978 0 40.262000 2.496900 2 +SPEAKER 02978 0 1.963000 0.893000 3 +SPEAKER 02978 0 8.173000 1.488340 3 +SPEAKER 02978 0 10.312000 1.000000 3 +SPEAKER 02978 0 19.408000 2.133000 3 +SPEAKER 02978 0 26.096840 3.685160 3 +SPEAKER 02978 0 5.165000 0.543000 0 +SPEAKER 02978 0 6.180000 1.000000 0 +SPEAKER 02978 0 12.056000 0.849240 0 +SPEAKER 02978 0 22.978410 1.081400 0 +SPEAKER 02978 0 31.442000 3.694950 0 +SPEAKER 02978 0 35.685730 2.364270 0 +SPEAKER 02978 0 38.758900 1.764100 0 +SPEAKER 02978 0 42.171000 0.619000 0 +SPEAKER 02978 0 9.510000 0.968410 1 +SPEAKER 02978 0 13.280000 0.613000 1 +SPEAKER 02978 0 29.697920 4.066080 1 +SPEAKER 02978 0 34.758900 1.134140 1 +SPEAKER 02978 0 36.764000 0.925000 1 +SPEAKER 02978 0 38.244000 0.649140 1 +SPEAKER 02978 0 41.539380 1.250620 1 diff --git a/rttm/few/02984.rttm b/rttm/few/02984.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c5b3b0e12edf5b77959907c7c60a8c5a5499e84e --- /dev/null +++ b/rttm/few/02984.rttm @@ -0,0 +1,10 @@ +SPEAKER 02984 0 0.078320 16.819680 0 +SPEAKER 02984 0 17.652400 2.592590 0 +SPEAKER 02984 0 22.425000 1.822000 0 +SPEAKER 02984 0 1.444000 0.409000 1 +SPEAKER 02984 0 15.633880 0.611110 1 +SPEAKER 02984 0 16.640000 1.122000 1 +SPEAKER 02984 0 18.501000 0.730000 1 +SPEAKER 02984 0 19.764000 0.777290 1 +SPEAKER 02984 0 21.338000 1.621000 1 +SPEAKER 02984 0 23.930180 0.325820 1 diff --git a/rttm/few/02985.rttm b/rttm/few/02985.rttm new file mode 100644 index 0000000000000000000000000000000000000000..09248ba99401771ff81c691e3aad15efd6f8a14d --- /dev/null +++ b/rttm/few/02985.rttm @@ -0,0 +1,11 @@ +SPEAKER 02985 0 0.004000 6.463210 1 +SPEAKER 02985 0 7.446000 0.613000 1 +SPEAKER 02985 0 13.726000 12.371000 1 +SPEAKER 02985 0 26.615000 1.945000 1 +SPEAKER 02985 0 1.956630 1.251370 0 +SPEAKER 02985 0 4.171000 10.296000 0 +SPEAKER 02985 0 21.634000 0.870000 0 +SPEAKER 02985 0 23.301000 0.481000 0 +SPEAKER 02985 0 25.097000 2.592000 0 +SPEAKER 02985 0 28.134000 0.450000 0 +SPEAKER 02985 0 8.837580 0.463420 h0 diff --git a/rttm/few/02991.rttm b/rttm/few/02991.rttm new file mode 100644 index 0000000000000000000000000000000000000000..2bd70c76948ebbd4c9d154b00a92768b27dfcbe4 --- /dev/null +++ b/rttm/few/02991.rttm @@ -0,0 +1,46 @@ +SPEAKER 02991 0 0.295480 2.024390 0 +SPEAKER 02991 0 2.856000 2.939480 0 +SPEAKER 02991 0 6.347000 1.253360 0 +SPEAKER 02991 0 8.169000 3.650870 0 +SPEAKER 02991 0 13.449000 2.017210 0 +SPEAKER 02991 0 16.267000 1.951000 0 +SPEAKER 02991 0 21.648860 1.365440 0 +SPEAKER 02991 0 24.584350 2.225800 0 +SPEAKER 02991 0 27.986000 1.743510 0 +SPEAKER 02991 0 33.615000 4.148510 0 +SPEAKER 02991 0 38.079000 4.697200 0 +SPEAKER 02991 0 43.701000 0.666110 0 +SPEAKER 02991 0 45.560000 4.263460 0 +SPEAKER 02991 0 50.106000 0.820020 0 +SPEAKER 02991 0 53.983000 3.712250 0 +SPEAKER 02991 0 61.502940 3.423080 0 +SPEAKER 02991 0 66.746530 4.089750 0 +SPEAKER 02991 0 73.394000 1.062160 0 +SPEAKER 02991 0 74.842000 0.917350 0 +SPEAKER 02991 0 76.182000 2.526070 0 +SPEAKER 02991 0 79.073000 2.917120 0 +SPEAKER 02991 0 82.279000 3.711120 0 +SPEAKER 02991 0 86.541000 1.051690 0 +SPEAKER 02991 0 89.716000 0.737000 0 +SPEAKER 02991 0 92.307000 0.760040 0 +SPEAKER 02991 0 95.390800 2.580640 0 +SPEAKER 02991 0 98.521000 2.385930 0 +SPEAKER 02991 0 101.633000 4.983600 0 +SPEAKER 02991 0 107.004000 1.580350 0 +SPEAKER 02991 0 108.972000 1.096220 0 +SPEAKER 02991 0 111.471440 3.596780 0 +SPEAKER 02991 0 115.826000 1.097060 0 +SPEAKER 02991 0 117.423000 0.612960 0 +SPEAKER 02991 0 120.632730 3.019270 0 +SPEAKER 02991 0 18.783000 0.488000 1 +SPEAKER 02991 0 20.454020 4.388390 1 +SPEAKER 02991 0 25.246000 1.709310 1 +SPEAKER 02991 0 28.858540 4.709680 1 +SPEAKER 02991 0 43.766000 1.273000 1 +SPEAKER 02991 0 51.169610 1.692310 1 +SPEAKER 02991 0 64.656790 1.512820 1 +SPEAKER 02991 0 71.432000 1.904280 1 +SPEAKER 02991 0 87.682430 1.576920 1 +SPEAKER 02991 0 90.618000 0.743920 1 +SPEAKER 02991 0 101.189000 1.149000 1 +SPEAKER 02991 0 118.568220 1.193550 1 diff --git a/rttm/few/02994.rttm b/rttm/few/02994.rttm new file mode 100644 index 0000000000000000000000000000000000000000..b1a635967e68edf42b2f434331f38f04ee5959e0 --- /dev/null +++ b/rttm/few/02994.rttm @@ -0,0 +1,21 @@ +SPEAKER 02994 0 0.060000 6.462770 1 +SPEAKER 02994 0 7.728000 1.438470 1 +SPEAKER 02994 0 17.041290 3.111110 1 +SPEAKER 02994 0 20.486000 3.833060 1 +SPEAKER 02994 0 24.764000 4.073580 1 +SPEAKER 02994 0 31.467000 3.852000 1 +SPEAKER 02994 0 36.129000 0.356730 1 +SPEAKER 02994 0 36.807000 2.475000 1 +SPEAKER 02994 0 40.041000 2.537320 1 +SPEAKER 02994 0 43.301000 3.610660 1 +SPEAKER 02994 0 47.338000 0.832920 1 +SPEAKER 02994 0 2.478000 0.583000 0 +SPEAKER 02994 0 4.726000 0.833810 0 +SPEAKER 02994 0 6.597000 0.685030 0 +SPEAKER 02994 0 9.144000 8.378770 0 +SPEAKER 02994 0 24.300550 0.537030 0 +SPEAKER 02994 0 27.652000 3.796690 0 +SPEAKER 02994 0 35.131000 1.707000 0 +SPEAKER 02994 0 39.304000 0.459510 0 +SPEAKER 02994 0 42.557000 0.484000 0 +SPEAKER 02994 0 48.782000 0.677000 0 diff --git a/rttm/few/02995.rttm b/rttm/few/02995.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ded5f19161d096da152a689df605643d8a0e4702 --- /dev/null +++ b/rttm/few/02995.rttm @@ -0,0 +1,38 @@ +SPEAKER 02995 0 0.023000 3.259030 0 +SPEAKER 02995 0 4.134000 0.518000 0 +SPEAKER 02995 0 5.467210 0.592600 0 +SPEAKER 02995 0 7.226000 0.463000 0 +SPEAKER 02995 0 8.234000 0.492000 0 +SPEAKER 02995 0 16.412000 2.494000 0 +SPEAKER 02995 0 19.671000 1.129550 0 +SPEAKER 02995 0 38.690000 0.407000 0 +SPEAKER 02995 0 39.745000 0.407000 0 +SPEAKER 02995 0 47.782000 0.556000 0 +SPEAKER 02995 0 50.264000 1.573580 0 +SPEAKER 02995 0 54.800000 3.259810 0 +SPEAKER 02995 0 61.337580 1.444420 0 +SPEAKER 02995 0 63.171000 2.666580 0 +SPEAKER 02995 0 66.652000 6.074470 0 +SPEAKER 02995 0 73.449000 5.981000 0 +SPEAKER 02995 0 81.097000 0.574000 0 +SPEAKER 02995 0 3.411660 2.462960 1 +SPEAKER 02995 0 6.448690 0.648310 1 +SPEAKER 02995 0 10.541290 2.500000 1 +SPEAKER 02995 0 14.430180 2.481480 1 +SPEAKER 02995 0 17.671000 1.036950 1 +SPEAKER 02995 0 20.819060 6.981490 1 +SPEAKER 02995 0 29.338000 3.222000 1 +SPEAKER 02995 0 33.560000 0.778000 1 +SPEAKER 02995 0 35.671000 2.852000 1 +SPEAKER 02995 0 39.097000 1.463000 1 +SPEAKER 02995 0 43.597000 0.777620 1 +SPEAKER 02995 0 45.449000 5.092290 1 +SPEAKER 02995 0 51.375000 4.166290 1 +SPEAKER 02995 0 57.189440 3.037030 1 +SPEAKER 02995 0 62.560000 1.110920 1 +SPEAKER 02995 0 70.850000 0.561000 1 +SPEAKER 02995 0 72.226000 1.204000 1 +SPEAKER 02995 0 79.541000 1.630000 1 +SPEAKER 02995 0 28.004000 0.834000 h0 +SPEAKER 02995 0 60.097000 1.481000 h0 +SPEAKER 02995 0 65.726470 0.462970 h0 diff --git a/rttm/few/03014.rttm b/rttm/few/03014.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ee37c3cc2f4c80e1c3523433583f6a1412e8ec66 --- /dev/null +++ b/rttm/few/03014.rttm @@ -0,0 +1,13 @@ +SPEAKER 03014 0 0.000000 1.440000 1 +SPEAKER 03014 0 1.848000 3.653000 1 +SPEAKER 03014 0 6.119000 2.839000 1 +SPEAKER 03014 0 16.096840 0.685190 1 +SPEAKER 03014 0 1.150000 0.963000 4 +SPEAKER 03014 0 6.884000 0.735000 4 +SPEAKER 03014 0 14.422000 0.778280 4 +SPEAKER 03014 0 17.967000 1.021000 4 +SPEAKER 03014 0 9.186000 3.933000 3 +SPEAKER 03014 0 15.249000 0.975000 3 +SPEAKER 03014 0 16.911660 1.021340 0 +SPEAKER 03014 0 18.981000 0.767000 0 +SPEAKER 03014 0 20.077000 1.610000 0 diff --git a/rttm/few/03022.rttm b/rttm/few/03022.rttm new file mode 100644 index 0000000000000000000000000000000000000000..2bdf608469337073dd18d1eeb4aa7e24a64a7cbc --- /dev/null +++ b/rttm/few/03022.rttm @@ -0,0 +1,17 @@ +SPEAKER 03022 0 0.283000 3.067000 1 +SPEAKER 03022 0 4.183000 6.850000 1 +SPEAKER 03022 0 11.383000 0.950000 1 +SPEAKER 03022 0 13.200000 0.733000 1 +SPEAKER 03022 0 14.650000 0.633000 1 +SPEAKER 03022 0 20.200000 2.949310 1 +SPEAKER 03022 0 23.683000 1.034000 1 +SPEAKER 03022 0 0.283000 1.734000 0 +SPEAKER 03022 0 3.267000 1.000000 0 +SPEAKER 03022 0 6.250000 1.350000 0 +SPEAKER 03022 0 14.443430 3.156570 0 +SPEAKER 03022 0 17.950000 2.367000 0 +SPEAKER 03022 0 22.950000 0.767000 0 +SPEAKER 03022 0 8.737540 3.088240 2 +SPEAKER 03022 0 12.355190 1.911770 2 +SPEAKER 03022 0 17.550000 0.450000 2 +SPEAKER 03022 0 20.100000 2.233000 2 diff --git a/rttm/few/03028.rttm b/rttm/few/03028.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c9b173fdd715773372ef639f9d8d182dcd6e775d --- /dev/null +++ b/rttm/few/03028.rttm @@ -0,0 +1,24 @@ +SPEAKER 03028 0 0.792000 2.786000 0 +SPEAKER 03028 0 7.580000 1.121000 0 +SPEAKER 03028 0 10.412000 0.713000 0 +SPEAKER 03028 0 14.643000 2.879770 0 +SPEAKER 03028 0 20.648000 1.000000 0 +SPEAKER 03028 0 22.044000 3.664000 0 +SPEAKER 03028 0 26.058000 0.705000 0 +SPEAKER 03028 0 28.726470 0.388890 0 +SPEAKER 03028 0 30.634000 0.667000 0 +SPEAKER 03028 0 31.821000 1.164730 0 +SPEAKER 03028 0 34.097000 0.796000 0 +SPEAKER 03028 0 36.934000 1.626000 0 +SPEAKER 03028 0 40.753000 1.957000 0 +SPEAKER 03028 0 43.564000 1.903000 0 +SPEAKER 03028 0 46.634000 0.290000 0 +SPEAKER 03028 0 12.077000 1.224000 1 +SPEAKER 03028 0 13.581000 3.145470 1 +SPEAKER 03028 0 18.042000 0.592000 1 +SPEAKER 03028 0 19.480000 1.931660 1 +SPEAKER 03028 0 12.211000 1.916260 2 +SPEAKER 03028 0 17.801000 2.740000 2 +SPEAKER 03028 0 26.863000 1.438000 2 +SPEAKER 03028 0 29.355000 0.612000 2 +SPEAKER 03028 0 0.015000 0.341100 h0 diff --git a/rttm/few/03043.rttm b/rttm/few/03043.rttm new file mode 100644 index 0000000000000000000000000000000000000000..d81372034bd4ee0e978cf00dbf2a57a46d9eb88f --- /dev/null +++ b/rttm/few/03043.rttm @@ -0,0 +1,14 @@ +SPEAKER 03043 0 0.000000 1.838000 0 +SPEAKER 03043 0 2.652000 2.463000 0 +SPEAKER 03043 0 6.764000 3.222000 0 +SPEAKER 03043 0 11.979000 2.210000 0 +SPEAKER 03043 0 15.819000 9.759000 0 +SPEAKER 03043 0 0.023000 0.629000 1 +SPEAKER 03043 0 1.893000 1.000000 1 +SPEAKER 03043 0 4.930000 2.060600 1 +SPEAKER 03043 0 8.578000 2.019000 1 +SPEAKER 03043 0 11.171000 0.795210 1 +SPEAKER 03043 0 12.449000 1.240000 1 +SPEAKER 03043 0 14.319000 1.833000 1 +SPEAKER 03043 0 25.597000 1.111000 1 +SPEAKER 03043 0 16.819000 1.476480 2 diff --git a/rttm/few/03049.rttm b/rttm/few/03049.rttm new file mode 100644 index 0000000000000000000000000000000000000000..8205fabd85eb54eb5c377fe83a8024032b85da6a --- /dev/null +++ b/rttm/few/03049.rttm @@ -0,0 +1,20 @@ +SPEAKER 03049 0 0.004000 0.302010 1 +SPEAKER 03049 0 2.101770 0.638460 1 +SPEAKER 03049 0 3.094070 0.539930 1 +SPEAKER 03049 0 8.041000 2.724000 1 +SPEAKER 03049 0 11.226000 0.656610 1 +SPEAKER 03049 0 12.203210 4.837020 1 +SPEAKER 03049 0 17.455610 0.969230 1 +SPEAKER 03049 0 20.097000 2.889790 1 +SPEAKER 03049 0 23.606000 0.530040 1 +SPEAKER 03049 0 25.654000 0.263240 1 +SPEAKER 03049 0 0.298760 1.405800 2 +SPEAKER 03049 0 6.461370 1.120000 2 +SPEAKER 03049 0 10.640230 0.269230 2 +SPEAKER 03049 0 17.046000 0.261680 2 +SPEAKER 03049 0 18.576340 0.910040 2 +SPEAKER 03049 0 20.271000 0.666150 2 +SPEAKER 03049 0 22.385000 0.295820 2 +SPEAKER 03049 0 24.006000 2.736000 2 +SPEAKER 03049 0 4.660000 1.862770 3 +SPEAKER 03049 0 19.238430 0.591640 3 diff --git a/rttm/few/03054.rttm b/rttm/few/03054.rttm new file mode 100644 index 0000000000000000000000000000000000000000..572b74ed73ade52db4554e960fb161251dcda616 --- /dev/null +++ b/rttm/few/03054.rttm @@ -0,0 +1,8 @@ +SPEAKER 03054 0 0.011000 2.973000 1 +SPEAKER 03054 0 3.476000 4.263000 1 +SPEAKER 03054 0 8.037000 2.337620 1 +SPEAKER 03054 0 10.634000 1.536920 1 +SPEAKER 03054 0 12.678000 3.596000 1 +SPEAKER 03054 0 16.633000 0.544000 1 +SPEAKER 03054 0 17.500000 2.462770 1 +SPEAKER 03054 0 19.327000 1.288360 0 diff --git a/rttm/few/03055.rttm b/rttm/few/03055.rttm new file mode 100644 index 0000000000000000000000000000000000000000..cc1fbd13a83fc190ed504cfbc86e6372ffbde987 --- /dev/null +++ b/rttm/few/03055.rttm @@ -0,0 +1,32 @@ +SPEAKER 03055 0 0.000000 4.634000 1 +SPEAKER 03055 0 4.986000 1.870000 1 +SPEAKER 03055 0 7.504000 1.000000 1 +SPEAKER 03055 0 11.009760 1.550240 1 +SPEAKER 03055 0 13.356000 1.204000 1 +SPEAKER 03055 0 15.422460 5.600540 1 +SPEAKER 03055 0 21.301000 3.851000 1 +SPEAKER 03055 0 28.906580 0.629520 1 +SPEAKER 03055 0 32.356000 0.685000 1 +SPEAKER 03055 0 35.189000 0.780760 1 +SPEAKER 03055 0 36.676420 8.235580 1 +SPEAKER 03055 0 50.795470 4.264530 1 +SPEAKER 03055 0 58.469760 1.608240 1 +SPEAKER 03055 0 60.946000 2.021000 1 +SPEAKER 03055 0 1.727540 0.610460 2 +SPEAKER 03055 0 4.541000 0.556000 2 +SPEAKER 03055 0 7.763000 3.630000 2 +SPEAKER 03055 0 12.809000 0.658000 2 +SPEAKER 03055 0 21.023000 0.629000 2 +SPEAKER 03055 0 25.282000 5.203000 2 +SPEAKER 03055 0 32.525630 2.403370 2 +SPEAKER 03055 0 36.168490 1.246030 2 +SPEAKER 03055 0 38.747850 0.935150 2 +SPEAKER 03055 0 42.525630 1.460370 2 +SPEAKER 03055 0 47.541000 3.343000 2 +SPEAKER 03055 0 54.912000 4.370000 2 +SPEAKER 03055 0 60.078000 0.908000 2 +SPEAKER 03055 0 12.560000 2.500000 0 +SPEAKER 03055 0 25.501820 3.280180 0 +SPEAKER 03055 0 30.319000 4.037000 0 +SPEAKER 03055 0 35.541500 0.544500 0 +SPEAKER 03055 0 44.275150 3.344850 0 diff --git a/rttm/few/03062.rttm b/rttm/few/03062.rttm new file mode 100644 index 0000000000000000000000000000000000000000..03c6ca3477a2080d7c2b6613291cde733c73d3bd --- /dev/null +++ b/rttm/few/03062.rttm @@ -0,0 +1,26 @@ +SPEAKER 03062 0 0.201000 3.989000 1 +SPEAKER 03062 0 5.002000 1.000000 1 +SPEAKER 03062 0 7.211000 3.395000 1 +SPEAKER 03062 0 11.919000 1.570590 1 +SPEAKER 03062 0 13.760000 1.837700 1 +SPEAKER 03062 0 21.097000 3.365560 1 +SPEAKER 03062 0 25.597000 3.184000 1 +SPEAKER 03062 0 29.309000 1.000000 1 +SPEAKER 03062 0 32.031000 2.323450 1 +SPEAKER 03062 0 36.005000 2.833000 1 +SPEAKER 03062 0 39.570670 2.059330 1 +SPEAKER 03062 0 44.605000 0.641340 1 +SPEAKER 03062 0 52.105000 0.584000 1 +SPEAKER 03062 0 56.926000 0.597000 1 +SPEAKER 03062 0 58.375000 16.988000 1 +SPEAKER 03062 0 4.440000 3.896000 0 +SPEAKER 03062 0 9.281000 2.513000 0 +SPEAKER 03062 0 13.346000 0.751000 0 +SPEAKER 03062 0 15.644000 5.400000 0 +SPEAKER 03062 0 24.788000 2.298000 0 +SPEAKER 03062 0 27.753000 4.528000 0 +SPEAKER 03062 0 34.797000 1.000000 0 +SPEAKER 03062 0 37.713000 1.875000 0 +SPEAKER 03062 0 41.766000 16.998000 0 +SPEAKER 03062 0 67.089000 1.724910 0 +SPEAKER 03062 0 75.134000 0.630000 0 diff --git a/rttm/few/03064.rttm b/rttm/few/03064.rttm new file mode 100644 index 0000000000000000000000000000000000000000..f60aa016e19202e9136f0aac6669c799bd865fa3 --- /dev/null +++ b/rttm/few/03064.rttm @@ -0,0 +1,28 @@ +SPEAKER 03064 0 0.002000 2.222000 0 +SPEAKER 03064 0 3.081000 1.524000 0 +SPEAKER 03064 0 6.295000 0.699000 0 +SPEAKER 03064 0 7.422000 0.580000 0 +SPEAKER 03064 0 8.319060 1.079940 0 +SPEAKER 03064 0 10.835000 0.465550 0 +SPEAKER 03064 0 15.827000 2.167000 0 +SPEAKER 03064 0 20.121000 0.508000 0 +SPEAKER 03064 0 21.422000 2.151000 0 +SPEAKER 03064 0 26.153000 1.031000 0 +SPEAKER 03064 0 28.669000 1.579000 0 +SPEAKER 03064 0 30.708000 1.056000 0 +SPEAKER 03064 0 32.383000 1.016000 0 +SPEAKER 03064 0 38.240000 1.794000 0 +SPEAKER 03064 0 2.393140 0.536860 1 +SPEAKER 03064 0 7.145000 0.507400 1 +SPEAKER 03064 0 9.494000 2.008000 1 +SPEAKER 03064 0 12.295000 1.342000 1 +SPEAKER 03064 0 14.319060 1.007940 1 +SPEAKER 03064 0 16.782000 0.545000 1 +SPEAKER 03064 0 18.091000 1.744000 1 +SPEAKER 03064 0 20.597000 1.635000 1 +SPEAKER 03064 0 23.724000 2.349000 1 +SPEAKER 03064 0 27.661000 1.642000 1 +SPEAKER 03064 0 32.168000 7.056000 1 +SPEAKER 03064 0 5.448690 0.553310 2 +SPEAKER 03064 0 13.843000 1.000000 2 +SPEAKER 03064 0 15.478000 0.992000 2 diff --git a/rttm/few/03070.rttm b/rttm/few/03070.rttm new file mode 100644 index 0000000000000000000000000000000000000000..5e6ef2bb1ac3e67fd26ef7b734d1a7759e733867 --- /dev/null +++ b/rttm/few/03070.rttm @@ -0,0 +1,9 @@ +SPEAKER 03070 0 0.009000 1.979000 1 +SPEAKER 03070 0 5.447210 0.560790 1 +SPEAKER 03070 0 6.522000 4.020000 1 +SPEAKER 03070 0 14.988000 0.794030 1 +SPEAKER 03070 0 17.531000 1.000000 1 +SPEAKER 03070 0 19.184000 3.864000 1 +SPEAKER 03070 0 23.689440 0.413560 1 +SPEAKER 03070 0 2.203000 4.865000 0 +SPEAKER 03070 0 11.264000 6.574000 0 diff --git a/rttm/few/03075.rttm b/rttm/few/03075.rttm new file mode 100644 index 0000000000000000000000000000000000000000..9979a2dc4efc9c891a6828084191e929deaea086 --- /dev/null +++ b/rttm/few/03075.rttm @@ -0,0 +1,16 @@ +SPEAKER 03075 0 0.041000 2.908000 1 +SPEAKER 03075 0 3.726000 12.519000 1 +SPEAKER 03075 0 17.523000 17.888660 1 +SPEAKER 03075 0 35.986000 8.870100 1 +SPEAKER 03075 0 47.726000 0.889360 1 +SPEAKER 03075 0 51.430000 0.593000 1 +SPEAKER 03075 0 57.689000 2.370810 1 +SPEAKER 03075 0 60.985730 1.456270 1 +SPEAKER 03075 0 68.412000 2.314000 1 +SPEAKER 03075 0 37.375000 0.944000 0 +SPEAKER 03075 0 44.893000 6.333470 0 +SPEAKER 03075 0 52.004000 1.518770 0 +SPEAKER 03075 0 54.449000 3.666360 0 +SPEAKER 03075 0 58.552000 2.452250 0 +SPEAKER 03075 0 61.838000 7.869950 0 +SPEAKER 03075 0 70.207950 0.544050 0 diff --git a/rttm/few/03078.rttm b/rttm/few/03078.rttm new file mode 100644 index 0000000000000000000000000000000000000000..0e09efaefb9b9d45862c8533fff7f12d3a2ca92a --- /dev/null +++ b/rttm/few/03078.rttm @@ -0,0 +1,17 @@ +SPEAKER 03078 0 0.189000 0.889000 2 +SPEAKER 03078 0 10.134000 1.241000 2 +SPEAKER 03078 0 11.985730 0.814270 2 +SPEAKER 03078 0 13.523000 1.259000 2 +SPEAKER 03078 0 20.056000 0.818620 2 +SPEAKER 03078 0 34.560000 0.944000 2 +SPEAKER 03078 0 1.522770 6.463230 1 +SPEAKER 03078 0 9.041000 0.741000 1 +SPEAKER 03078 0 14.670920 3.351850 1 +SPEAKER 03078 0 20.060000 7.592400 1 +SPEAKER 03078 0 30.374620 3.777380 1 +SPEAKER 03078 0 35.023000 2.129400 1 +SPEAKER 03078 0 37.652000 5.649000 1 +SPEAKER 03078 0 9.263000 2.796000 0 +SPEAKER 03078 0 18.226000 1.112000 0 +SPEAKER 03078 0 26.838000 3.426000 0 +SPEAKER 03078 0 36.560000 2.629000 0 diff --git a/rttm/few/03129.rttm b/rttm/few/03129.rttm new file mode 100644 index 0000000000000000000000000000000000000000..a83fbb6413836838b4b56ef3dc4976bb842655f2 --- /dev/null +++ b/rttm/few/03129.rttm @@ -0,0 +1,11 @@ +SPEAKER 03129 0 0.551580 1.378420 h0 +SPEAKER 03129 0 2.208000 3.306990 h0 +SPEAKER 03129 0 10.226000 2.797000 h0 +SPEAKER 03129 0 14.196000 0.605000 h0 +SPEAKER 03129 0 17.856000 2.455000 h0 +SPEAKER 03129 0 1.560000 0.454990 0 +SPEAKER 03129 0 15.615000 3.408000 0 +SPEAKER 03129 0 5.245000 4.379750 1 +SPEAKER 03129 0 12.615000 1.537000 1 +SPEAKER 03129 0 14.726000 1.908000 1 +SPEAKER 03129 0 9.430000 0.926460 2 diff --git a/rttm/few/03135.rttm b/rttm/few/03135.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ef41419f25f156c976262433d4b8b15381321029 --- /dev/null +++ b/rttm/few/03135.rttm @@ -0,0 +1,20 @@ +SPEAKER 03135 0 0.004000 4.740990 0 +SPEAKER 03135 0 5.484000 0.876420 0 +SPEAKER 03135 0 7.633000 1.000000 0 +SPEAKER 03135 0 10.134000 2.074000 0 +SPEAKER 03135 0 13.715000 0.863320 0 +SPEAKER 03135 0 16.399000 1.345990 0 +SPEAKER 03135 0 18.259350 4.397440 0 +SPEAKER 03135 0 23.053000 2.321620 0 +SPEAKER 03135 0 44.367970 2.377030 0 +SPEAKER 03135 0 47.893000 0.389000 0 +SPEAKER 03135 0 48.801000 0.379000 0 +SPEAKER 03135 0 4.819000 0.407470 1 +SPEAKER 03135 0 6.041400 1.944330 1 +SPEAKER 03135 0 8.837580 1.485880 1 +SPEAKER 03135 0 12.143000 4.731620 1 +SPEAKER 03135 0 22.118330 0.700730 1 +SPEAKER 03135 0 24.310630 10.693330 1 +SPEAKER 03135 0 35.438000 5.134920 1 +SPEAKER 03135 0 40.883000 3.565690 1 +SPEAKER 03135 0 46.678780 2.473220 1 diff --git a/rttm/few/03138.rttm b/rttm/few/03138.rttm new file mode 100644 index 0000000000000000000000000000000000000000..85f455fa5f874d7cbb00a0eecc6be651f7134714 --- /dev/null +++ b/rttm/few/03138.rttm @@ -0,0 +1,5 @@ +SPEAKER 03138 0 0.183000 5.152350 0 +SPEAKER 03138 0 6.819000 1.175000 0 +SPEAKER 03138 0 8.520000 2.558000 0 +SPEAKER 03138 0 5.504000 1.102220 1 +SPEAKER 03138 0 11.134000 10.340000 1 diff --git a/rttm/many/00004.rttm b/rttm/many/00004.rttm new file mode 100644 index 0000000000000000000000000000000000000000..5eae82ccec192cd2ee0aaa10f60df0bf35256bf2 --- /dev/null +++ b/rttm/many/00004.rttm @@ -0,0 +1,15 @@ +SPEAKER 00004 0 0.041000 2.752370 1 +SPEAKER 00004 0 3.893000 1.722360 1 +SPEAKER 00004 0 6.281740 3.941860 1 +SPEAKER 00004 0 11.449000 6.277000 1 +SPEAKER 00004 0 3.097000 0.940550 6 +SPEAKER 00004 0 5.282000 0.999740 6 +SPEAKER 00004 0 17.785000 1.904440 6 +SPEAKER 00004 0 20.040000 3.223510 6 +SPEAKER 00004 0 24.479410 0.546510 6 +SPEAKER 00004 0 13.615000 0.408000 0 +SPEAKER 00004 0 16.819000 1.037000 0 +SPEAKER 00004 0 22.605000 0.804650 3 +SPEAKER 00004 0 23.965000 1.261000 5 +SPEAKER 00004 0 25.723600 1.614400 5 +SPEAKER 00004 0 9.758000 4.360950 2 diff --git a/rttm/many/00008.rttm b/rttm/many/00008.rttm new file mode 100644 index 0000000000000000000000000000000000000000..129cf0202081712dd49a89ffcf243c05d49ec207 --- /dev/null +++ b/rttm/many/00008.rttm @@ -0,0 +1,20 @@ +SPEAKER 00008 0 0.467000 4.593000 1 +SPEAKER 00008 0 5.449000 1.592000 1 +SPEAKER 00008 0 13.346990 0.435010 1 +SPEAKER 00008 0 1.375000 3.685000 0 +SPEAKER 00008 0 7.115000 2.574440 0 +SPEAKER 00008 0 10.170920 1.021080 0 +SPEAKER 00008 0 12.115000 0.611000 0 +SPEAKER 00008 0 1.375000 3.703000 7 +SPEAKER 00008 0 12.856000 0.852000 7 +SPEAKER 00008 0 17.634000 1.000000 7 +SPEAKER 00008 0 1.375000 3.703000 8 +SPEAKER 00008 0 16.949000 1.000000 8 +SPEAKER 00008 0 1.375000 3.722000 6 +SPEAKER 00008 0 18.430000 1.061440 6 +SPEAKER 00008 0 1.375000 3.666000 2 +SPEAKER 00008 0 20.191440 1.572560 2 +SPEAKER 00008 0 1.375000 3.685000 5 +SPEAKER 00008 0 27.435880 1.411110 5 +SPEAKER 00008 0 1.375000 3.611000 3 +SPEAKER 00008 0 1.375000 3.666000 4 diff --git a/rttm/many/00025.rttm b/rttm/many/00025.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ec7295baf638bc994de3002f0d9eb8f2f976262b --- /dev/null +++ b/rttm/many/00025.rttm @@ -0,0 +1,12 @@ +SPEAKER 00025 0 0.000000 1.819060 0 +SPEAKER 00025 0 5.856000 1.145710 0 +SPEAKER 00025 0 9.307680 12.722320 0 +SPEAKER 00025 0 0.023000 1.150350 4 +SPEAKER 00025 0 10.596840 11.439160 4 +SPEAKER 00025 0 2.004100 1.169250 1 +SPEAKER 00025 0 7.001710 1.335820 1 +SPEAKER 00025 0 10.165890 11.857110 1 +SPEAKER 00025 0 9.315150 12.691850 3 +SPEAKER 00025 0 5.171000 0.412970 h0 +SPEAKER 00025 0 12.485730 9.540270 h0 +SPEAKER 00025 0 4.285290 1.283590 2 diff --git a/rttm/many/00055.rttm b/rttm/many/00055.rttm new file mode 100644 index 0000000000000000000000000000000000000000..5161361351aad9be4e5cd29c3328d9b204ad33c2 --- /dev/null +++ b/rttm/many/00055.rttm @@ -0,0 +1,23 @@ +SPEAKER 00055 0 0.001000 5.773810 2 +SPEAKER 00055 0 7.782030 2.796290 2 +SPEAKER 00055 0 2.574810 1.681820 1 +SPEAKER 00055 0 5.965720 2.309090 1 +SPEAKER 00055 0 11.620590 8.134850 1 +SPEAKER 00055 0 20.225590 2.402990 1 +SPEAKER 00055 0 3.171000 1.749270 7 +SPEAKER 00055 0 6.438450 0.872730 7 +SPEAKER 00055 0 9.059810 0.944440 7 +SPEAKER 00055 0 19.210670 0.960250 7 +SPEAKER 00055 0 1.856630 0.950370 0 +SPEAKER 00055 0 8.129360 0.736360 0 +SPEAKER 00055 0 22.106190 0.511810 0 +SPEAKER 00055 0 5.930000 0.648320 6 +SPEAKER 00055 0 7.983900 0.557390 6 +SPEAKER 00055 0 9.976000 1.324550 6 +SPEAKER 00055 0 1.207950 1.039590 5 +SPEAKER 00055 0 11.300550 1.209870 5 +SPEAKER 00055 0 14.022770 1.185180 5 +SPEAKER 00055 0 18.837580 1.979420 5 +SPEAKER 00055 0 15.423000 0.790380 3 +SPEAKER 00055 0 19.777900 0.870960 3 +SPEAKER 00055 0 21.116600 0.838710 4 diff --git a/rttm/many/00059.rttm b/rttm/many/00059.rttm new file mode 100644 index 0000000000000000000000000000000000000000..3ad21b76434c47bf3fd2e6cd9c39678aa44f82f0 --- /dev/null +++ b/rttm/many/00059.rttm @@ -0,0 +1,21 @@ +SPEAKER 00059 0 3.724270 2.131730 1 +SPEAKER 00059 0 7.700180 4.560240 1 +SPEAKER 00059 0 28.995360 1.434640 1 +SPEAKER 00059 0 0.245000 0.519000 0 +SPEAKER 00059 0 15.380900 0.403620 0 +SPEAKER 00059 0 6.495360 2.601640 4 +SPEAKER 00059 0 10.097770 1.319280 4 +SPEAKER 00059 0 12.181530 3.507470 4 +SPEAKER 00059 0 18.171000 2.259000 4 +SPEAKER 00059 0 21.412000 1.629000 4 +SPEAKER 00059 0 23.953190 1.268340 4 +SPEAKER 00059 0 26.081530 0.904470 4 +SPEAKER 00059 0 1.892950 0.746990 3 +SPEAKER 00059 0 23.893000 1.656580 3 +SPEAKER 00059 0 2.278490 0.740960 2 +SPEAKER 00059 0 6.001380 0.984620 2 +SPEAKER 00059 0 9.782000 0.630000 2 +SPEAKER 00059 0 15.821530 3.179850 2 +SPEAKER 00059 0 19.808610 0.590360 2 +SPEAKER 00059 0 24.245000 1.130000 2 +SPEAKER 00059 0 31.441140 1.975910 2 diff --git a/rttm/many/00070.rttm b/rttm/many/00070.rttm new file mode 100644 index 0000000000000000000000000000000000000000..5ba46a84da7d61ae0781681ea56b4dc27839dca6 --- /dev/null +++ b/rttm/many/00070.rttm @@ -0,0 +1,16 @@ +SPEAKER 00070 0 1.411180 0.723630 3 +SPEAKER 00070 0 3.160000 2.060270 3 +SPEAKER 00070 0 7.447540 3.409090 3 +SPEAKER 00070 0 16.020270 1.145450 3 +SPEAKER 00070 0 0.000000 0.338450 1 +SPEAKER 00070 0 0.711000 0.836540 1 +SPEAKER 00070 0 6.218000 1.283000 1 +SPEAKER 00070 0 11.094070 9.385930 1 +SPEAKER 00070 0 9.172000 0.448000 0 +SPEAKER 00070 0 18.554810 1.092730 0 +SPEAKER 00070 0 0.050000 0.343000 6 +SPEAKER 00070 0 0.683900 0.881820 6 +SPEAKER 00070 0 5.651000 0.361050 6 +SPEAKER 00070 0 1.711180 1.094990 4 +SPEAKER 00070 0 17.136630 1.336210 4 +SPEAKER 00070 0 19.855610 0.897390 4 diff --git a/rttm/many/00077.rttm b/rttm/many/00077.rttm new file mode 100644 index 0000000000000000000000000000000000000000..f0db73b1ac0daeab4152840be26e7ec33099636a --- /dev/null +++ b/rttm/many/00077.rttm @@ -0,0 +1,35 @@ +SPEAKER 00077 0 0.412000 5.768820 3 +SPEAKER 00077 0 6.557160 8.148640 3 +SPEAKER 00077 0 15.111210 11.808410 3 +SPEAKER 00077 0 35.882270 1.788730 3 +SPEAKER 00077 0 38.121120 0.988420 3 +SPEAKER 00077 0 46.882310 1.014930 3 +SPEAKER 00077 0 4.606190 0.731810 0 +SPEAKER 00077 0 5.827380 0.614630 0 +SPEAKER 00077 0 15.064080 0.515150 0 +SPEAKER 00077 0 19.139840 0.515150 0 +SPEAKER 00077 0 20.226000 1.201720 0 +SPEAKER 00077 0 24.441120 0.581630 0 +SPEAKER 00077 0 25.349280 0.617720 0 +SPEAKER 00077 0 49.078000 0.970930 0 +SPEAKER 00077 0 9.097000 0.664050 4 +SPEAKER 00077 0 14.715600 0.378790 4 +SPEAKER 00077 0 18.321660 0.787880 4 +SPEAKER 00077 0 20.001710 1.319950 4 +SPEAKER 00077 0 25.949000 1.722000 4 +SPEAKER 00077 0 28.134000 4.293720 4 +SPEAKER 00077 0 33.210670 3.050380 4 +SPEAKER 00077 0 36.930000 1.064250 4 +SPEAKER 00077 0 38.755440 0.489560 4 +SPEAKER 00077 0 39.836810 7.223190 4 +SPEAKER 00077 0 47.755440 1.174560 4 +SPEAKER 00077 0 14.499000 0.573000 1 +SPEAKER 00077 0 25.949000 3.090380 1 +SPEAKER 00077 0 34.023000 0.753200 1 +SPEAKER 00077 0 45.930000 1.445000 1 +SPEAKER 00077 0 48.893000 1.489270 1 +SPEAKER 00077 0 19.818670 2.111330 2 +SPEAKER 00077 0 31.615000 1.364320 2 +SPEAKER 00077 0 34.494250 2.238810 2 +SPEAKER 00077 0 37.245000 0.593000 2 +SPEAKER 00077 0 49.152000 1.502990 2 diff --git a/rttm/many/00128.rttm b/rttm/many/00128.rttm new file mode 100644 index 0000000000000000000000000000000000000000..eaac4df8e523468092f03229e24b0b4273824644 --- /dev/null +++ b/rttm/many/00128.rttm @@ -0,0 +1,27 @@ +SPEAKER 00128 0 11.822000 1.122000 0 +SPEAKER 00128 0 29.832530 0.914470 0 +SPEAKER 00128 0 2.201000 0.637000 3 +SPEAKER 00128 0 3.792000 0.561000 3 +SPEAKER 00128 0 5.858400 1.403600 3 +SPEAKER 00128 0 17.747920 0.500000 3 +SPEAKER 00128 0 18.594070 4.084620 3 +SPEAKER 00128 0 29.463300 0.434700 3 +SPEAKER 00128 0 5.550000 0.833000 4 +SPEAKER 00128 0 11.694000 0.780000 4 +SPEAKER 00128 0 15.762000 1.091000 4 +SPEAKER 00128 0 19.701770 1.228230 4 +SPEAKER 00128 0 25.959000 0.788000 4 +SPEAKER 00128 0 0.034000 0.834000 2 +SPEAKER 00128 0 8.201000 0.394000 2 +SPEAKER 00128 0 13.034000 0.607000 2 +SPEAKER 00128 0 14.413000 0.758000 2 +SPEAKER 00128 0 16.901770 0.530760 2 +SPEAKER 00128 0 26.701770 2.284610 2 +SPEAKER 00128 0 31.061700 1.116990 2 +SPEAKER 00128 0 3.292000 0.258000 1 +SPEAKER 00128 0 4.383000 1.118260 1 +SPEAKER 00128 0 7.595000 4.061000 1 +SPEAKER 00128 0 17.455610 0.400000 1 +SPEAKER 00128 0 20.383000 0.530000 1 +SPEAKER 00128 0 22.686000 3.182000 1 +SPEAKER 00128 0 26.902360 0.844640 1 diff --git a/rttm/many/00131.rttm b/rttm/many/00131.rttm new file mode 100644 index 0000000000000000000000000000000000000000..86a40c7ffc8feae4bc7b804f74b476f413843860 --- /dev/null +++ b/rttm/many/00131.rttm @@ -0,0 +1,15 @@ +SPEAKER 00131 0 0.004000 3.970810 2 +SPEAKER 00131 0 5.514990 3.541640 2 +SPEAKER 00131 0 9.593000 0.454540 2 +SPEAKER 00131 0 14.344000 0.412950 2 +SPEAKER 00131 0 4.402090 1.972910 1 +SPEAKER 00131 0 13.306000 2.605180 3 +SPEAKER 00131 0 16.611180 3.872720 3 +SPEAKER 00131 0 21.156630 0.838370 3 +SPEAKER 00131 0 4.277000 1.000000 4 +SPEAKER 00131 0 8.451180 0.379820 4 +SPEAKER 00131 0 10.913000 1.861810 4 +SPEAKER 00131 0 14.329360 0.490910 4 +SPEAKER 00131 0 19.220270 2.700000 4 +SPEAKER 00131 0 12.807680 1.218320 0 +SPEAKER 00131 0 18.720270 3.654730 0 diff --git a/rttm/many/00162.rttm b/rttm/many/00162.rttm new file mode 100644 index 0000000000000000000000000000000000000000..77805f645fc9e7b4b9208753f0f20215bfb4f36b --- /dev/null +++ b/rttm/many/00162.rttm @@ -0,0 +1,19 @@ +SPEAKER 00162 0 4.793920 0.937500 1 +SPEAKER 00162 0 6.877260 1.793740 1 +SPEAKER 00162 0 18.168920 0.875000 1 +SPEAKER 00162 0 7.345000 2.122000 2 +SPEAKER 00162 0 12.281000 0.408000 2 +SPEAKER 00162 0 21.004000 0.990000 2 +SPEAKER 00162 0 10.041000 1.648760 7 +SPEAKER 00162 0 19.564760 2.604160 7 +SPEAKER 00162 0 0.060000 3.838090 6 +SPEAKER 00162 0 4.859000 0.558000 6 +SPEAKER 00162 0 7.206000 1.130000 6 +SPEAKER 00162 0 9.615000 0.778000 6 +SPEAKER 00162 0 11.615000 4.241000 6 +SPEAKER 00162 0 16.375000 1.918920 6 +SPEAKER 00162 0 19.376000 5.251260 6 +SPEAKER 00162 0 15.002260 0.791660 4 +SPEAKER 00162 0 22.469000 0.407000 3 +SPEAKER 00162 0 0.060000 5.233920 0 +SPEAKER 00162 0 17.598000 1.779260 0 diff --git a/rttm/many/00170.rttm b/rttm/many/00170.rttm new file mode 100644 index 0000000000000000000000000000000000000000..39477cd41ab4222ae70edb6b916f381f024c7ab8 --- /dev/null +++ b/rttm/many/00170.rttm @@ -0,0 +1,38 @@ +SPEAKER 00170 0 0.264000 7.740000 0 +SPEAKER 00170 0 9.435880 0.383180 0 +SPEAKER 00170 0 15.615000 2.087550 0 +SPEAKER 00170 0 21.152000 1.217220 0 +SPEAKER 00170 0 25.393000 0.537180 0 +SPEAKER 00170 0 26.734000 1.270250 0 +SPEAKER 00170 0 34.097000 0.294440 0 +SPEAKER 00170 0 36.875000 0.796000 0 +SPEAKER 00170 0 38.189000 1.513090 0 +SPEAKER 00170 0 43.967000 0.335090 0 +SPEAKER 00170 0 8.004000 5.087440 3 +SPEAKER 00170 0 15.335000 0.391470 3 +SPEAKER 00170 0 16.076000 0.447000 3 +SPEAKER 00170 0 19.282000 1.798330 3 +SPEAKER 00170 0 25.375000 3.963000 3 +SPEAKER 00170 0 30.980330 1.433330 3 +SPEAKER 00170 0 32.856000 1.313220 3 +SPEAKER 00170 0 40.875000 0.481100 3 +SPEAKER 00170 0 42.447000 1.928000 3 +SPEAKER 00170 0 4.109000 0.599000 1 +SPEAKER 00170 0 13.838000 0.314400 1 +SPEAKER 00170 0 14.523000 0.352000 1 +SPEAKER 00170 0 15.273000 0.360880 1 +SPEAKER 00170 0 15.967000 0.556000 1 +SPEAKER 00170 0 18.707950 0.472380 1 +SPEAKER 00170 0 20.134000 0.624110 1 +SPEAKER 00170 0 25.393000 0.703840 1 +SPEAKER 00170 0 27.376000 1.000000 1 +SPEAKER 00170 0 28.948690 0.870310 1 +SPEAKER 00170 0 32.541000 0.317110 1 +SPEAKER 00170 0 34.430000 2.371000 1 +SPEAKER 00170 0 37.200000 1.952400 1 +SPEAKER 00170 0 43.245000 0.815000 1 +SPEAKER 00170 0 17.226000 0.537510 2 +SPEAKER 00170 0 18.133880 1.000000 2 +SPEAKER 00170 0 22.652000 2.686000 2 +SPEAKER 00170 0 37.838000 2.129000 2 +SPEAKER 00170 0 39.726000 0.557900 h0 diff --git a/rttm/many/00179.rttm b/rttm/many/00179.rttm new file mode 100644 index 0000000000000000000000000000000000000000..f2e8e229e1547d01ef0e857fd12e5afd6f085bd3 --- /dev/null +++ b/rttm/many/00179.rttm @@ -0,0 +1,19 @@ +SPEAKER 00179 0 0.065000 1.655270 4 +SPEAKER 00179 0 8.309360 2.951640 4 +SPEAKER 00179 0 5.329360 0.871640 0 +SPEAKER 00179 0 16.045720 1.331280 0 +SPEAKER 00179 0 22.629360 1.893640 0 +SPEAKER 00179 0 8.007540 1.105010 1 +SPEAKER 00179 0 10.374810 6.790910 1 +SPEAKER 00179 0 0.037000 8.274180 5 +SPEAKER 00179 0 14.820270 1.718180 5 +SPEAKER 00179 0 22.348000 0.431000 5 +SPEAKER 00179 0 3.202090 0.527270 2 +SPEAKER 00179 0 18.383900 5.755100 2 +SPEAKER 00179 0 24.574810 0.574190 2 +SPEAKER 00179 0 9.245720 0.292730 6 +SPEAKER 00179 0 15.247540 1.572730 6 +SPEAKER 00179 0 17.102090 2.372720 6 +SPEAKER 00179 0 5.393000 1.768340 3 +SPEAKER 00179 0 23.383900 0.451100 3 +SPEAKER 00179 0 24.347540 1.765460 3 diff --git a/rttm/many/00206.rttm b/rttm/many/00206.rttm new file mode 100644 index 0000000000000000000000000000000000000000..d2cbce5c81279541457f47fb42f8eb76cc3a7868 --- /dev/null +++ b/rttm/many/00206.rttm @@ -0,0 +1,116 @@ +SPEAKER 00206 0 5.262530 12.369570 2 +SPEAKER 00206 0 20.320500 2.609500 2 +SPEAKER 00206 0 215.611150 18.800850 2 +SPEAKER 00206 0 234.841920 6.383540 2 +SPEAKER 00206 0 256.115000 0.496960 2 +SPEAKER 00206 0 583.995770 22.675820 2 +SPEAKER 00206 0 618.462800 0.412200 2 +SPEAKER 00206 0 944.952850 0.403150 2 +SPEAKER 00206 0 945.802310 15.016690 2 +SPEAKER 00206 0 961.208000 6.907000 2 +SPEAKER 00206 0 24.393000 14.152290 0 +SPEAKER 00206 0 181.726000 29.482220 0 +SPEAKER 00206 0 244.006760 0.757240 0 +SPEAKER 00206 0 245.460110 20.377890 0 +SPEAKER 00206 0 266.189000 4.889000 0 +SPEAKER 00206 0 271.484080 27.098250 0 +SPEAKER 00206 0 614.634000 8.609020 0 +SPEAKER 00206 0 624.462800 21.893200 0 +SPEAKER 00206 0 646.745000 28.556000 0 +SPEAKER 00206 0 675.841920 8.051790 0 +SPEAKER 00206 0 969.449000 1.880190 0 +SPEAKER 00206 0 972.301000 3.777000 0 +SPEAKER 00206 0 977.199060 16.193940 0 +SPEAKER 00206 0 993.912000 3.121490 0 +SPEAKER 00206 0 1079.085000 1.000000 0 +SPEAKER 00206 0 1081.210910 2.997090 0 +SPEAKER 00206 0 1088.006760 8.571240 0 +SPEAKER 00206 0 41.356410 18.944590 5 +SPEAKER 00206 0 60.819000 8.126290 5 +SPEAKER 00206 0 451.111000 24.115000 5 +SPEAKER 00206 0 685.338000 50.092000 5 +SPEAKER 00206 0 772.160600 0.357140 5 +SPEAKER 00206 0 776.506000 1.000000 5 +SPEAKER 00206 0 778.949000 0.708150 5 +SPEAKER 00206 0 999.404000 4.026000 5 +SPEAKER 00206 0 1006.208000 4.556000 5 +SPEAKER 00206 0 1011.189000 28.911160 5 +SPEAKER 00206 0 72.154860 14.275140 6 +SPEAKER 00206 0 87.294860 1.024510 6 +SPEAKER 00206 0 477.115000 1.241000 6 +SPEAKER 00206 0 478.995770 1.780220 6 +SPEAKER 00206 0 481.825440 1.178560 6 +SPEAKER 00206 0 484.001260 4.762740 6 +SPEAKER 00206 0 489.597000 8.907000 6 +SPEAKER 00206 0 499.078000 6.019150 6 +SPEAKER 00206 0 505.913350 2.738650 6 +SPEAKER 00206 0 509.363900 7.003620 6 +SPEAKER 00206 0 517.358400 4.901100 6 +SPEAKER 00206 0 522.912000 7.855650 6 +SPEAKER 00206 0 531.538000 7.525570 6 +SPEAKER 00206 0 540.152000 17.593000 6 +SPEAKER 00206 0 558.375000 15.554830 6 +SPEAKER 00206 0 574.418840 3.890110 6 +SPEAKER 00206 0 870.033000 4.805000 6 +SPEAKER 00206 0 875.745000 9.648000 6 +SPEAKER 00206 0 886.226000 0.463000 6 +SPEAKER 00206 0 887.245000 1.500000 6 +SPEAKER 00206 0 889.949000 8.143630 6 +SPEAKER 00206 0 899.023000 16.704040 6 +SPEAKER 00206 0 916.449000 0.481000 6 +SPEAKER 00206 0 917.504000 10.482000 6 +SPEAKER 00206 0 929.504000 12.244550 6 +SPEAKER 00206 0 1044.627630 1.201560 6 +SPEAKER 00206 0 1047.896870 3.996130 6 +SPEAKER 00206 0 1052.504000 3.167000 6 +SPEAKER 00206 0 1056.430000 20.141130 6 +SPEAKER 00206 0 90.330480 19.451520 4 +SPEAKER 00206 0 110.495570 11.082430 4 +SPEAKER 00206 0 122.726000 11.204000 4 +SPEAKER 00206 0 300.817000 11.987550 4 +SPEAKER 00206 0 313.819000 20.392960 4 +SPEAKER 00206 0 334.856000 19.678180 4 +SPEAKER 00206 0 448.770490 0.351650 4 +SPEAKER 00206 0 737.424340 8.024660 4 +SPEAKER 00206 0 746.634000 2.778000 4 +SPEAKER 00206 0 750.743020 8.871980 4 +SPEAKER 00206 0 760.523000 12.389000 4 +SPEAKER 00206 0 773.430000 5.871000 4 +SPEAKER 00206 0 779.949000 1.596220 4 +SPEAKER 00206 0 782.615000 2.101290 4 +SPEAKER 00206 0 785.495770 2.879230 4 +SPEAKER 00206 0 790.545220 3.273780 4 +SPEAKER 00206 0 808.856000 0.452950 4 +SPEAKER 00206 0 811.986000 0.487790 4 +SPEAKER 00206 0 864.245000 0.500000 4 +SPEAKER 00206 0 1163.301000 7.222000 4 +SPEAKER 00206 0 1171.451810 1.886190 4 +SPEAKER 00206 0 1174.226000 4.957700 4 +SPEAKER 00206 0 1179.648410 20.354870 4 +SPEAKER 00206 0 135.363390 20.137460 3 +SPEAKER 00206 0 156.264000 4.988700 3 +SPEAKER 00206 0 161.989820 19.436790 3 +SPEAKER 00206 0 262.639000 0.367760 3 +SPEAKER 00206 0 357.449000 3.057760 3 +SPEAKER 00206 0 361.041000 0.445000 3 +SPEAKER 00206 0 362.869390 4.846270 3 +SPEAKER 00206 0 368.319000 0.482000 3 +SPEAKER 00206 0 369.781480 17.482520 3 +SPEAKER 00206 0 387.838000 1.624800 3 +SPEAKER 00206 0 390.208000 6.630000 3 +SPEAKER 00206 0 397.486000 1.985220 3 +SPEAKER 00206 0 400.160600 1.955060 3 +SPEAKER 00206 0 402.946320 2.872680 3 +SPEAKER 00206 0 406.264000 13.296000 3 +SPEAKER 00206 0 420.301000 22.500000 3 +SPEAKER 00206 0 443.338000 5.296000 3 +SPEAKER 00206 0 795.512250 6.639750 3 +SPEAKER 00206 0 802.924340 13.301660 3 +SPEAKER 00206 0 817.134000 3.778000 3 +SPEAKER 00206 0 821.885880 17.396120 3 +SPEAKER 00206 0 840.375000 0.648000 3 +SPEAKER 00206 0 841.838000 27.218210 3 +SPEAKER 00206 0 1096.893000 28.148000 3 +SPEAKER 00206 0 1125.412000 5.481000 3 +SPEAKER 00206 0 1132.078000 16.591450 3 +SPEAKER 00206 0 1149.782000 12.444540 3 diff --git a/rttm/many/00248.rttm b/rttm/many/00248.rttm new file mode 100644 index 0000000000000000000000000000000000000000..1d3e5e9e39524508d601962378bb5cb773058514 --- /dev/null +++ b/rttm/many/00248.rttm @@ -0,0 +1,21 @@ +SPEAKER 00248 0 0.041000 0.556000 2 +SPEAKER 00248 0 15.896060 0.434940 2 +SPEAKER 00248 0 17.044990 0.882980 2 +SPEAKER 00248 0 19.257760 1.457450 2 +SPEAKER 00248 0 25.002440 4.819150 2 +SPEAKER 00248 0 1.302550 2.266670 1 +SPEAKER 00248 0 12.747120 0.978880 1 +SPEAKER 00248 0 22.853510 1.138290 1 +SPEAKER 00248 0 30.048000 3.624650 1 +SPEAKER 00248 0 6.193930 1.287230 h0 +SPEAKER 00248 0 1.235880 0.455560 4 +SPEAKER 00248 0 7.385420 0.785580 4 +SPEAKER 00248 0 8.757760 7.208240 4 +SPEAKER 00248 0 16.309000 1.500000 4 +SPEAKER 00248 0 23.534360 2.606380 4 +SPEAKER 00248 0 29.268400 1.063830 4 +SPEAKER 00248 0 33.744000 0.625000 4 +SPEAKER 00248 0 8.055630 1.617020 3 +SPEAKER 00248 0 15.301590 0.690210 3 +SPEAKER 00248 0 32.215210 1.787230 3 +SPEAKER 00248 0 16.172650 8.629350 0 diff --git a/rttm/many/00254.rttm b/rttm/many/00254.rttm new file mode 100644 index 0000000000000000000000000000000000000000..62bf569eccda5ad040c8dd3db634bab7e19c2916 --- /dev/null +++ b/rttm/many/00254.rttm @@ -0,0 +1,17 @@ +SPEAKER 00254 0 0.032000 3.024370 5 +SPEAKER 00254 0 3.895000 1.894240 5 +SPEAKER 00254 0 15.926230 4.568490 5 +SPEAKER 00254 0 0.502000 2.485870 4 +SPEAKER 00254 0 5.837190 4.909810 4 +SPEAKER 00254 0 12.830340 1.931660 4 +SPEAKER 00254 0 0.520000 2.481570 1 +SPEAKER 00254 0 6.357740 0.981450 1 +SPEAKER 00254 0 0.519000 2.338740 3 +SPEAKER 00254 0 9.919000 1.131000 3 +SPEAKER 00254 0 0.520000 2.481570 0 +SPEAKER 00254 0 14.179000 1.000000 0 +SPEAKER 00254 0 0.535000 2.473420 6 +SPEAKER 00254 0 14.994720 1.029280 6 +SPEAKER 00254 0 0.519000 2.503120 7 +SPEAKER 00254 0 9.931000 1.000000 7 +SPEAKER 00254 0 0.549000 2.445720 2 diff --git a/rttm/many/00269.rttm b/rttm/many/00269.rttm new file mode 100644 index 0000000000000000000000000000000000000000..a51e1373f4500ab6e1fe75905d476e49e31679ff --- /dev/null +++ b/rttm/many/00269.rttm @@ -0,0 +1,23 @@ +SPEAKER 00269 0 0.008000 2.265110 6 +SPEAKER 00269 0 6.134240 0.721760 6 +SPEAKER 00269 0 7.475000 0.508300 6 +SPEAKER 00269 0 9.578000 0.852000 6 +SPEAKER 00269 0 11.809000 2.370150 6 +SPEAKER 00269 0 21.425180 0.922650 6 +SPEAKER 00269 0 23.992000 0.547900 6 +SPEAKER 00269 0 26.370090 1.245280 6 +SPEAKER 00269 0 28.226000 1.398810 6 +SPEAKER 00269 0 2.338000 3.926000 0 +SPEAKER 00269 0 6.986000 2.592000 0 +SPEAKER 00269 0 10.348000 0.568000 0 +SPEAKER 00269 0 12.977240 8.508490 0 +SPEAKER 00269 0 28.788990 1.342860 0 +SPEAKER 00269 0 9.648000 0.496250 3 +SPEAKER 00269 0 10.875000 2.198250 3 +SPEAKER 00269 0 16.700230 1.579370 3 +SPEAKER 00269 0 20.537000 0.911690 3 +SPEAKER 00269 0 22.299000 0.816360 3 +SPEAKER 00269 0 23.313000 3.471590 5 +SPEAKER 00269 0 27.484590 0.580000 5 +SPEAKER 00269 0 6.745000 3.018510 7 +SPEAKER 00269 0 30.245000 1.308040 7 diff --git a/rttm/many/00340.rttm b/rttm/many/00340.rttm new file mode 100644 index 0000000000000000000000000000000000000000..0ccf59afc47fe7c62dd99dcecd42b873d195f5cd --- /dev/null +++ b/rttm/many/00340.rttm @@ -0,0 +1,25 @@ +SPEAKER 00340 0 0.017000 0.533000 1 +SPEAKER 00340 0 4.764000 1.000000 1 +SPEAKER 00340 0 6.115360 1.979640 1 +SPEAKER 00340 0 15.767000 0.700000 1 +SPEAKER 00340 0 17.379520 12.415100 1 +SPEAKER 00340 0 31.104000 1.252100 1 +SPEAKER 00340 0 34.074000 1.000000 1 +SPEAKER 00340 0 40.000000 9.433000 1 +SPEAKER 00340 0 0.550000 5.200000 2 +SPEAKER 00340 0 8.950000 5.033300 2 +SPEAKER 00340 0 15.100000 0.800000 2 +SPEAKER 00340 0 16.238010 0.452830 2 +SPEAKER 00340 0 29.317000 0.687250 2 +SPEAKER 00340 0 32.300000 1.315000 2 +SPEAKER 00340 0 34.436130 1.207540 2 +SPEAKER 00340 0 46.350000 0.967000 2 +SPEAKER 00340 0 8.183000 0.413500 0 +SPEAKER 00340 0 16.383000 0.734000 0 +SPEAKER 00340 0 17.822000 0.626000 0 +SPEAKER 00340 0 19.227000 0.981000 0 +SPEAKER 00340 0 23.100000 1.000000 0 +SPEAKER 00340 0 27.867000 0.850000 0 +SPEAKER 00340 0 39.307000 0.939000 0 +SPEAKER 00340 0 43.667000 0.589880 0 +SPEAKER 00340 0 35.817000 2.185170 4 diff --git a/rttm/many/00392.rttm b/rttm/many/00392.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c5c3e4d7fa5aac4843276edce8b385669370cb85 --- /dev/null +++ b/rttm/many/00392.rttm @@ -0,0 +1,21 @@ +SPEAKER 00392 0 0.505170 2.516800 1 +SPEAKER 00392 0 3.578000 7.792730 1 +SPEAKER 00392 0 11.780570 5.603330 1 +SPEAKER 00392 0 17.720270 10.736360 1 +SPEAKER 00392 0 28.838450 0.972730 1 +SPEAKER 00392 0 49.762000 0.573550 1 +SPEAKER 00392 0 72.356000 0.644900 1 +SPEAKER 00392 0 1.796370 1.166660 4 +SPEAKER 00392 0 47.430000 9.056000 4 +SPEAKER 00392 0 56.930000 8.963000 4 +SPEAKER 00392 0 1.803490 1.163860 0 +SPEAKER 00392 0 19.282000 0.630000 0 +SPEAKER 00392 0 29.874810 6.519790 0 +SPEAKER 00392 0 36.829360 10.658970 0 +SPEAKER 00392 0 56.578000 0.371000 0 +SPEAKER 00392 0 57.745000 0.593000 0 +SPEAKER 00392 0 1.799280 1.167720 3 +SPEAKER 00392 0 66.356000 5.900810 3 +SPEAKER 00392 0 73.245000 4.889000 3 +SPEAKER 00392 0 1.796370 1.152630 2 +SPEAKER 00392 0 78.745000 5.574000 2 diff --git a/rttm/many/00398.rttm b/rttm/many/00398.rttm new file mode 100644 index 0000000000000000000000000000000000000000..5608a876c9d937612fac7fa8a2bf6561d1897740 --- /dev/null +++ b/rttm/many/00398.rttm @@ -0,0 +1,22 @@ +SPEAKER 00398 0 0.549440 3.894560 5 +SPEAKER 00398 0 5.196220 5.733780 5 +SPEAKER 00398 0 23.541000 4.241000 5 +SPEAKER 00398 0 1.227000 3.139000 6 +SPEAKER 00398 0 24.671000 3.111000 6 +SPEAKER 00398 0 1.227000 3.179000 3 +SPEAKER 00398 0 10.957000 2.658000 3 +SPEAKER 00398 0 24.671000 3.093000 3 +SPEAKER 00398 0 1.301000 3.047000 7 +SPEAKER 00398 0 14.208000 4.352000 7 +SPEAKER 00398 0 24.541000 3.278000 7 +SPEAKER 00398 0 1.331000 3.073000 8 +SPEAKER 00398 0 18.689000 2.260000 8 +SPEAKER 00398 0 24.541000 3.260000 8 +SPEAKER 00398 0 1.264000 3.164000 0 +SPEAKER 00398 0 24.597000 3.259000 0 +SPEAKER 00398 0 1.264000 3.162000 2 +SPEAKER 00398 0 24.634000 3.185000 2 +SPEAKER 00398 0 1.282000 3.103000 4 +SPEAKER 00398 0 24.634000 3.204000 4 +SPEAKER 00398 0 1.301000 3.125000 1 +SPEAKER 00398 0 24.486000 3.278000 1 diff --git a/rttm/many/00401.rttm b/rttm/many/00401.rttm new file mode 100644 index 0000000000000000000000000000000000000000..b438a15731ed51d509d96edff62657e708fddd1e --- /dev/null +++ b/rttm/many/00401.rttm @@ -0,0 +1,11 @@ +SPEAKER 00401 0 0.013000 15.420000 0 +SPEAKER 00401 0 18.960000 0.607000 0 +SPEAKER 00401 0 28.092050 1.300950 0 +SPEAKER 00401 0 15.485490 3.481510 2 +SPEAKER 00401 0 19.715000 9.715000 2 +SPEAKER 00401 0 19.687000 0.706000 4 +SPEAKER 00401 0 28.108440 1.321560 4 +SPEAKER 00401 0 19.707000 0.733000 3 +SPEAKER 00401 0 28.133030 1.296970 3 +SPEAKER 00401 0 19.715000 0.663930 1 +SPEAKER 00401 0 28.174010 1.274990 1 diff --git a/rttm/many/00417.rttm b/rttm/many/00417.rttm new file mode 100644 index 0000000000000000000000000000000000000000..26a24266aa68031e37337cdc73fc3a7718a0675e --- /dev/null +++ b/rttm/many/00417.rttm @@ -0,0 +1,48 @@ +SPEAKER 00417 0 8.965000 1.000000 0 +SPEAKER 00417 0 19.380000 1.476100 0 +SPEAKER 00417 0 25.956000 1.882000 0 +SPEAKER 00417 0 28.753940 0.576490 0 +SPEAKER 00417 0 30.168680 2.095320 0 +SPEAKER 00417 0 38.560000 0.611000 0 +SPEAKER 00417 0 47.563420 1.570170 0 +SPEAKER 00417 0 54.168680 1.114030 0 +SPEAKER 00417 0 0.894000 1.000000 h1 +SPEAKER 00417 0 10.493240 1.024760 h1 +SPEAKER 00417 0 12.300550 0.473390 h1 +SPEAKER 00417 0 16.326570 0.649130 h1 +SPEAKER 00417 0 17.589730 1.822270 h1 +SPEAKER 00417 0 21.309030 1.879970 h1 +SPEAKER 00417 0 23.896750 0.473680 h1 +SPEAKER 00417 0 26.510790 0.858240 h1 +SPEAKER 00417 0 39.010790 1.561400 h1 +SPEAKER 00417 0 44.572190 1.500000 h1 +SPEAKER 00417 0 46.651140 3.511220 h1 +SPEAKER 00417 0 50.475700 1.887010 h1 +SPEAKER 00417 0 52.712540 2.278600 h1 +SPEAKER 00417 0 32.514000 1.230120 3 +SPEAKER 00417 0 0.162540 0.437360 1 +SPEAKER 00417 0 2.115370 1.536630 1 +SPEAKER 00417 0 19.417000 0.725360 1 +SPEAKER 00417 0 25.431840 1.184210 1 +SPEAKER 00417 0 30.077000 2.056590 1 +SPEAKER 00417 0 27.744000 1.000000 4 +SPEAKER 00417 0 41.501000 0.904520 4 +SPEAKER 00417 0 4.483300 1.093700 5 +SPEAKER 00417 0 12.975700 0.468770 5 +SPEAKER 00417 0 14.532000 1.000000 5 +SPEAKER 00417 0 23.243560 2.854940 5 +SPEAKER 00417 0 38.835350 1.131860 5 +SPEAKER 00417 0 40.545870 0.859130 5 +SPEAKER 00417 0 44.993240 3.371350 5 +SPEAKER 00417 0 49.598500 1.377200 5 +SPEAKER 00417 0 52.703770 1.456140 5 +SPEAKER 00417 0 3.671980 0.877350 h2 +SPEAKER 00417 0 7.414290 2.070180 h2 +SPEAKER 00417 0 33.923070 4.342790 h2 +SPEAKER 00417 0 43.168680 2.771930 h2 +SPEAKER 00417 0 34.712540 0.531580 6 +SPEAKER 00417 0 50.756400 0.675440 6 +SPEAKER 00417 0 3.809030 3.815780 h0 +SPEAKER 00417 0 10.045870 0.457200 h0 +SPEAKER 00417 0 20.712540 0.596490 h0 +SPEAKER 00417 0 40.502010 2.422580 h0 diff --git a/rttm/many/00429.rttm b/rttm/many/00429.rttm new file mode 100644 index 0000000000000000000000000000000000000000..369679c4399d1cdd9d707a64d6144928f1f30e04 --- /dev/null +++ b/rttm/many/00429.rttm @@ -0,0 +1,33 @@ +SPEAKER 00429 0 0.522750 1.312600 2 +SPEAKER 00429 0 6.124820 1.684210 2 +SPEAKER 00429 0 8.484470 0.741830 2 +SPEAKER 00429 0 9.712540 0.488540 2 +SPEAKER 00429 0 14.414290 0.456140 2 +SPEAKER 00429 0 15.245170 0.476140 2 +SPEAKER 00429 0 16.817800 0.806990 2 +SPEAKER 00429 0 20.317800 1.235560 2 +SPEAKER 00429 0 22.318670 2.037330 2 +SPEAKER 00429 0 24.701000 1.015630 2 +SPEAKER 00429 0 26.765170 0.429830 2 +SPEAKER 00429 0 29.839000 1.417400 2 +SPEAKER 00429 0 0.000000 0.616050 3 +SPEAKER 00429 0 1.846000 1.000000 3 +SPEAKER 00429 0 3.328870 0.693880 3 +SPEAKER 00429 0 4.359480 1.496520 3 +SPEAKER 00429 0 6.143000 3.655260 3 +SPEAKER 00429 0 12.798260 1.230070 3 +SPEAKER 00429 0 15.107280 0.991220 3 +SPEAKER 00429 0 17.727630 2.009410 3 +SPEAKER 00429 0 22.114000 0.826610 3 +SPEAKER 00429 0 26.861000 1.804610 3 +SPEAKER 00429 0 33.030650 0.950350 3 +SPEAKER 00429 0 5.800260 0.412280 0 +SPEAKER 00429 0 11.255290 1.711640 0 +SPEAKER 00429 0 14.208000 0.522080 0 +SPEAKER 00429 0 16.093000 1.382700 0 +SPEAKER 00429 0 22.598500 0.631580 0 +SPEAKER 00429 0 24.686220 1.912280 0 +SPEAKER 00429 0 29.502340 2.903180 0 +SPEAKER 00429 0 33.712540 0.303460 0 +SPEAKER 00429 0 0.578000 1.117000 1 +SPEAKER 00429 0 32.839080 1.136620 h0 diff --git a/rttm/many/00430.rttm b/rttm/many/00430.rttm new file mode 100644 index 0000000000000000000000000000000000000000..457155ed6a7099357a76d9fce41e42c6bdb27732 --- /dev/null +++ b/rttm/many/00430.rttm @@ -0,0 +1,28 @@ +SPEAKER 00430 0 0.045000 0.853090 2 +SPEAKER 00430 0 12.000000 0.881000 2 +SPEAKER 00430 0 13.280000 3.180590 2 +SPEAKER 00430 0 26.019000 0.404000 2 +SPEAKER 00430 0 34.150000 0.777710 2 +SPEAKER 00430 0 39.286000 1.391710 2 +SPEAKER 00430 0 51.191000 1.738000 2 +SPEAKER 00430 0 0.806000 6.254000 0 +SPEAKER 00430 0 7.452000 1.310000 0 +SPEAKER 00430 0 9.476000 2.901260 0 +SPEAKER 00430 0 15.939760 2.893240 0 +SPEAKER 00430 0 19.548000 5.190000 0 +SPEAKER 00430 0 26.481420 1.875000 0 +SPEAKER 00430 0 28.928000 4.810000 0 +SPEAKER 00430 0 34.684000 4.411000 0 +SPEAKER 00430 0 0.007000 1.015770 1 +SPEAKER 00430 0 8.441000 0.809000 1 +SPEAKER 00430 0 13.230000 1.208000 1 +SPEAKER 00430 0 35.872000 0.730710 1 +SPEAKER 00430 0 16.738000 1.500000 h0 +SPEAKER 00430 0 27.583000 0.958000 h0 +SPEAKER 00430 0 34.596000 1.000000 h0 +SPEAKER 00430 0 53.023000 2.904710 h0 +SPEAKER 00430 0 40.964000 1.000000 h1 +SPEAKER 00430 0 42.786000 0.809000 h1 +SPEAKER 00430 0 44.381000 0.643000 h1 +SPEAKER 00430 0 45.381000 4.262000 h1 +SPEAKER 00430 0 50.262000 0.643000 h1 diff --git a/rttm/many/00443.rttm b/rttm/many/00443.rttm new file mode 100644 index 0000000000000000000000000000000000000000..19ba5798ae7bed39dcef7e2a6099565aa782cfda --- /dev/null +++ b/rttm/many/00443.rttm @@ -0,0 +1,36 @@ +SPEAKER 00443 0 0.596840 0.370940 0 +SPEAKER 00443 0 4.228000 0.293860 0 +SPEAKER 00443 0 4.921270 0.837630 0 +SPEAKER 00443 0 21.149000 0.376920 0 +SPEAKER 00443 0 23.454000 0.439140 0 +SPEAKER 00443 0 29.588000 1.561140 0 +SPEAKER 00443 0 31.686000 1.366000 0 +SPEAKER 00443 0 1.205000 0.447400 3 +SPEAKER 00443 0 2.630580 1.732550 3 +SPEAKER 00443 0 7.710000 2.025000 3 +SPEAKER 00443 0 11.893000 0.707000 3 +SPEAKER 00443 0 15.039000 3.110000 3 +SPEAKER 00443 0 19.076000 1.939000 3 +SPEAKER 00443 0 23.344000 1.000000 3 +SPEAKER 00443 0 24.832000 2.320400 3 +SPEAKER 00443 0 27.618000 1.000000 3 +SPEAKER 00443 0 33.210000 1.053510 3 +SPEAKER 00443 0 34.642000 0.602990 3 +SPEAKER 00443 0 6.722000 0.598000 1 +SPEAKER 00443 0 9.625000 1.151760 1 +SPEAKER 00443 0 11.129700 0.480390 1 +SPEAKER 00443 0 12.527000 0.305000 1 +SPEAKER 00443 0 17.771000 0.381400 1 +SPEAKER 00443 0 21.686000 0.511920 1 +SPEAKER 00443 0 28.819870 0.390250 1 +SPEAKER 00443 0 29.552000 1.658000 1 +SPEAKER 00443 0 32.478000 0.354000 1 +SPEAKER 00443 0 11.271000 0.842000 2 +SPEAKER 00443 0 12.820000 2.133230 2 +SPEAKER 00443 0 16.300550 0.319350 2 +SPEAKER 00443 0 16.985730 0.354150 2 +SPEAKER 00443 0 18.247000 0.590580 2 +SPEAKER 00443 0 22.222000 0.464000 2 +SPEAKER 00443 0 29.613000 1.597000 2 +SPEAKER 00443 0 33.308000 0.683000 2 +SPEAKER 00443 0 24.636950 0.817070 h0 diff --git a/rttm/many/00471.rttm b/rttm/many/00471.rttm new file mode 100644 index 0000000000000000000000000000000000000000..72b3041838634cf0742ce4223e91f58264b13255 --- /dev/null +++ b/rttm/many/00471.rttm @@ -0,0 +1,28 @@ +SPEAKER 00471 0 0.509000 3.970000 0 +SPEAKER 00471 0 6.247980 1.164180 0 +SPEAKER 00471 0 11.003000 0.476000 0 +SPEAKER 00471 0 18.782000 3.374630 0 +SPEAKER 00471 0 27.318000 2.264000 0 +SPEAKER 00471 0 33.747000 2.418000 0 +SPEAKER 00471 0 4.747000 0.767000 h0 +SPEAKER 00471 0 16.539000 1.689000 h0 +SPEAKER 00471 0 23.852000 0.895000 h0 +SPEAKER 00471 0 28.956000 0.768000 h0 +SPEAKER 00471 0 31.468000 1.000000 h0 +SPEAKER 00471 0 35.643500 0.783590 h0 +SPEAKER 00471 0 6.433000 2.744000 3 +SPEAKER 00471 0 12.258000 0.954000 3 +SPEAKER 00471 0 13.939000 1.250000 3 +SPEAKER 00471 0 20.631000 1.511000 3 +SPEAKER 00471 0 22.910000 0.651000 3 +SPEAKER 00471 0 24.224000 1.534000 3 +SPEAKER 00471 0 32.118000 1.501000 3 +SPEAKER 00471 0 36.305000 1.919000 3 +SPEAKER 00471 0 10.737000 1.789000 5 +SPEAKER 00471 0 13.282000 1.011000 5 +SPEAKER 00471 0 15.096000 3.779000 5 +SPEAKER 00471 0 21.793000 2.849000 5 +SPEAKER 00471 0 25.703210 2.597010 5 +SPEAKER 00471 0 37.468000 0.789000 5 +SPEAKER 00471 0 16.119000 2.063210 h1 +SPEAKER 00471 0 29.568880 1.387120 2 diff --git a/rttm/many/00523.rttm b/rttm/many/00523.rttm new file mode 100644 index 0000000000000000000000000000000000000000..5386bbcdf08643b0abb04451f8bee6084f8d7b99 --- /dev/null +++ b/rttm/many/00523.rttm @@ -0,0 +1,24 @@ +SPEAKER 00523 0 0.004000 5.752400 0 +SPEAKER 00523 0 9.098500 0.803090 0 +SPEAKER 00523 0 15.677450 0.654550 0 +SPEAKER 00523 0 18.677450 0.463860 0 +SPEAKER 00523 0 24.080960 2.036040 0 +SPEAKER 00523 0 30.695000 0.359640 0 +SPEAKER 00523 0 32.177450 5.044550 0 +SPEAKER 00523 0 6.221310 2.079690 2 +SPEAKER 00523 0 12.221310 0.893690 2 +SPEAKER 00523 0 14.071000 0.567000 2 +SPEAKER 00523 0 15.747630 1.819370 2 +SPEAKER 00523 0 32.414290 1.958250 2 +SPEAKER 00523 0 34.809030 0.570180 2 +SPEAKER 00523 0 9.151140 1.789470 3 +SPEAKER 00523 0 11.221310 2.578690 3 +SPEAKER 00523 0 20.252000 4.188610 3 +SPEAKER 00523 0 24.984470 0.767020 3 +SPEAKER 00523 0 27.100740 1.571800 3 +SPEAKER 00523 0 29.291490 0.786510 3 +SPEAKER 00523 0 31.250000 0.637980 3 +SPEAKER 00523 0 10.004250 0.679040 4 +SPEAKER 00523 0 19.335350 3.216450 4 +SPEAKER 00523 0 31.616050 0.503410 4 +SPEAKER 00523 0 33.660000 0.719210 1 diff --git a/rttm/many/00548.rttm b/rttm/many/00548.rttm new file mode 100644 index 0000000000000000000000000000000000000000..79f561b43ae6dca6da33acdabceb8107d5e4e33e --- /dev/null +++ b/rttm/many/00548.rttm @@ -0,0 +1,69 @@ +SPEAKER 00548 0 0.018000 6.150920 2 +SPEAKER 00548 0 8.986000 1.696440 2 +SPEAKER 00548 0 13.325300 4.535710 2 +SPEAKER 00548 0 18.748000 0.607000 2 +SPEAKER 00548 0 20.933000 1.963730 2 +SPEAKER 00548 0 27.790000 0.642440 2 +SPEAKER 00548 0 34.208000 1.148000 2 +SPEAKER 00548 0 36.361010 1.827990 2 +SPEAKER 00548 0 43.468160 2.720840 2 +SPEAKER 00548 0 53.115000 0.556000 2 +SPEAKER 00548 0 61.575300 4.762700 2 +SPEAKER 00548 0 68.039590 6.001410 2 +SPEAKER 00548 0 78.245000 0.758870 2 +SPEAKER 00548 0 80.942000 1.822000 2 +SPEAKER 00548 0 91.253870 2.500000 2 +SPEAKER 00548 0 1.449000 0.800000 5 +SPEAKER 00548 0 9.753870 3.428570 5 +SPEAKER 00548 0 17.003870 3.463130 5 +SPEAKER 00548 0 21.881000 0.560000 5 +SPEAKER 00548 0 30.353730 5.400140 5 +SPEAKER 00548 0 37.335000 9.561730 5 +SPEAKER 00548 0 53.111010 4.966990 5 +SPEAKER 00548 0 60.731000 0.679000 5 +SPEAKER 00548 0 62.862000 6.070440 5 +SPEAKER 00548 0 74.017000 0.742000 5 +SPEAKER 00548 0 78.267000 1.552000 5 +SPEAKER 00548 0 87.652000 1.959010 5 +SPEAKER 00548 0 93.932440 1.214290 5 +SPEAKER 00548 0 104.551000 0.750000 5 +SPEAKER 00548 0 110.540000 1.000000 5 +SPEAKER 00548 0 2.308000 0.880000 0 +SPEAKER 00548 0 4.638000 0.508730 0 +SPEAKER 00548 0 5.764000 2.967420 0 +SPEAKER 00548 0 10.569000 1.583000 0 +SPEAKER 00548 0 13.165000 0.660300 0 +SPEAKER 00548 0 16.075000 0.406000 0 +SPEAKER 00548 0 20.540000 1.000000 0 +SPEAKER 00548 0 23.146730 6.321430 0 +SPEAKER 00548 0 50.396730 1.392860 0 +SPEAKER 00548 0 52.809000 0.458000 0 +SPEAKER 00548 0 58.356000 3.389000 0 +SPEAKER 00548 0 73.504000 0.764000 0 +SPEAKER 00548 0 75.039590 2.631410 0 +SPEAKER 00548 0 82.825300 1.464290 0 +SPEAKER 00548 0 92.593000 0.553730 0 +SPEAKER 00548 0 95.361010 14.928580 0 +SPEAKER 00548 0 111.039590 4.714280 0 +SPEAKER 00548 0 21.115000 0.817440 3 +SPEAKER 00548 0 105.226000 0.599300 3 +SPEAKER 00548 0 27.467000 0.786870 1 +SPEAKER 00548 0 33.753870 2.695130 1 +SPEAKER 00548 0 45.652000 5.601870 1 +SPEAKER 00548 0 52.039590 1.035710 1 +SPEAKER 00548 0 55.177000 1.443000 1 +SPEAKER 00548 0 75.896730 0.928570 1 +SPEAKER 00548 0 77.578000 1.056000 1 +SPEAKER 00548 0 110.182000 1.000000 1 +SPEAKER 00548 0 112.182000 1.000000 1 +SPEAKER 00548 0 17.832000 1.350440 4 +SPEAKER 00548 0 35.245000 1.544590 4 +SPEAKER 00548 0 45.615000 0.860000 4 +SPEAKER 00548 0 63.396730 0.885270 4 +SPEAKER 00548 0 65.772000 0.662000 4 +SPEAKER 00548 0 72.023000 0.480870 4 +SPEAKER 00548 0 77.861000 0.857160 4 +SPEAKER 00548 0 81.876000 0.975000 4 +SPEAKER 00548 0 93.182440 1.357150 4 +SPEAKER 00548 0 104.045000 0.887440 4 +SPEAKER 00548 0 116.430000 0.752000 4 diff --git a/rttm/many/00554.rttm b/rttm/many/00554.rttm new file mode 100644 index 0000000000000000000000000000000000000000..546015eb284f3aeb5fdea0b3b25475c77396cbef --- /dev/null +++ b/rttm/many/00554.rttm @@ -0,0 +1,21 @@ +SPEAKER 00554 0 0.023000 1.302780 2 +SPEAKER 00554 0 13.050000 1.324620 2 +SPEAKER 00554 0 18.610090 4.245100 2 +SPEAKER 00554 0 1.414010 1.107850 0 +SPEAKER 00554 0 5.374800 4.110930 0 +SPEAKER 00554 0 11.806170 2.166670 0 +SPEAKER 00554 0 1.707950 3.000050 3 +SPEAKER 00554 0 6.784990 2.238010 3 +SPEAKER 00554 0 9.823460 1.894480 3 +SPEAKER 00554 0 13.227000 0.518000 3 +SPEAKER 00554 0 14.208000 0.722000 3 +SPEAKER 00554 0 15.300550 0.917390 3 +SPEAKER 00554 0 17.597000 0.600000 3 +SPEAKER 00554 0 7.948690 0.685190 1 +SPEAKER 00554 0 9.133880 1.944120 1 +SPEAKER 00554 0 12.192000 2.516000 1 +SPEAKER 00554 0 15.570880 2.063000 1 +SPEAKER 00554 0 18.000000 1.000000 1 +SPEAKER 00554 0 22.763510 0.464230 1 +SPEAKER 00554 0 16.541470 2.277590 4 +SPEAKER 00554 0 22.652400 0.496910 4 diff --git a/rttm/many/00600.rttm b/rttm/many/00600.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4ddd6397d1414dbc5b8c10e343a64f4e586e8f48 --- /dev/null +++ b/rttm/many/00600.rttm @@ -0,0 +1,29 @@ +SPEAKER 00600 0 0.000000 0.375000 3 +SPEAKER 00600 0 3.301000 0.463000 3 +SPEAKER 00600 0 8.615000 0.389000 3 +SPEAKER 00600 0 16.986000 1.000000 3 +SPEAKER 00600 0 19.412000 1.314000 3 +SPEAKER 00600 0 22.449000 0.463000 3 +SPEAKER 00600 0 23.486000 0.870000 3 +SPEAKER 00600 0 27.855000 0.871000 3 +SPEAKER 00600 0 31.560000 1.815000 3 +SPEAKER 00600 0 1.689000 1.260000 0 +SPEAKER 00600 0 5.232000 5.772250 0 +SPEAKER 00600 0 11.460000 2.284990 0 +SPEAKER 00600 0 14.523000 1.092000 0 +SPEAKER 00600 0 18.486000 0.481000 0 +SPEAKER 00600 0 21.523000 1.981000 0 +SPEAKER 00600 0 25.547000 0.494000 0 +SPEAKER 00600 0 29.726000 1.722690 0 +SPEAKER 00600 0 32.681000 0.743000 0 +SPEAKER 00600 0 0.430000 0.611000 2 +SPEAKER 00600 0 3.819000 0.889000 2 +SPEAKER 00600 0 14.282000 0.593000 2 +SPEAKER 00600 0 0.652000 0.741000 1 +SPEAKER 00600 0 2.967000 1.204000 1 +SPEAKER 00600 0 4.931000 1.110290 1 +SPEAKER 00600 0 15.726000 1.000000 1 +SPEAKER 00600 0 21.264000 0.462000 1 +SPEAKER 00600 0 26.004000 1.260000 1 +SPEAKER 00600 0 29.819000 1.500000 1 +SPEAKER 00600 0 1.657000 0.847000 h0 diff --git a/rttm/many/00616.rttm b/rttm/many/00616.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c74e538a5bd921ffc61d421ca1c7c451cd0fc1df --- /dev/null +++ b/rttm/many/00616.rttm @@ -0,0 +1,43 @@ +SPEAKER 00616 0 0.645410 1.660310 1 +SPEAKER 00616 0 4.134990 1.230730 1 +SPEAKER 00616 0 7.209000 0.819970 1 +SPEAKER 00616 0 8.593000 0.501180 1 +SPEAKER 00616 0 10.247540 0.529460 1 +SPEAKER 00616 0 12.731000 1.371090 1 +SPEAKER 00616 0 16.720270 0.709090 1 +SPEAKER 00616 0 18.729360 0.481640 1 +SPEAKER 00616 0 20.130000 0.685000 1 +SPEAKER 00616 0 21.756630 2.181820 1 +SPEAKER 00616 0 31.229000 1.000000 1 +SPEAKER 00616 0 35.847000 0.543100 1 +SPEAKER 00616 0 37.313000 0.314000 1 +SPEAKER 00616 0 38.265720 0.409090 1 +SPEAKER 00616 0 39.683900 0.891100 1 +SPEAKER 00616 0 43.890100 3.011990 1 +SPEAKER 00616 0 47.474810 1.909090 1 +SPEAKER 00616 0 3.186500 0.690500 0 +SPEAKER 00616 0 6.142000 0.369180 0 +SPEAKER 00616 0 7.992140 0.346310 0 +SPEAKER 00616 0 8.597460 1.154540 0 +SPEAKER 00616 0 10.911180 0.463630 0 +SPEAKER 00616 0 21.648000 1.710650 0 +SPEAKER 00616 0 25.902090 0.790910 0 +SPEAKER 00616 0 43.186020 1.641520 0 +SPEAKER 00616 0 9.647540 1.363640 3 +SPEAKER 00616 0 16.983900 1.002100 3 +SPEAKER 00616 0 22.620270 0.754570 3 +SPEAKER 00616 0 25.439000 1.312000 3 +SPEAKER 00616 0 18.156630 0.718180 4 +SPEAKER 00616 0 19.465720 0.432280 4 +SPEAKER 00616 0 20.956630 0.572370 4 +SPEAKER 00616 0 23.748000 0.399540 4 +SPEAKER 00616 0 24.883900 0.681820 4 +SPEAKER 00616 0 27.002090 0.964910 4 +SPEAKER 00616 0 31.047540 0.483780 4 +SPEAKER 00616 0 32.447540 0.736360 4 +SPEAKER 00616 0 36.628000 0.527400 4 +SPEAKER 00616 0 37.773000 0.392720 4 +SPEAKER 00616 0 38.693000 0.341810 4 +SPEAKER 00616 0 40.665720 0.772730 4 +SPEAKER 00616 0 33.093000 1.209090 h0 +SPEAKER 00616 0 41.202090 0.907270 h0 diff --git a/rttm/many/00646.rttm b/rttm/many/00646.rttm new file mode 100644 index 0000000000000000000000000000000000000000..1dcf2632cf390c0830edcff1c16a1b428698a0d9 --- /dev/null +++ b/rttm/many/00646.rttm @@ -0,0 +1,68 @@ +SPEAKER 00646 0 20.951660 2.179490 1 +SPEAKER 00646 0 33.579870 0.405860 1 +SPEAKER 00646 0 35.574710 0.385710 1 +SPEAKER 00646 0 36.840000 3.868070 1 +SPEAKER 00646 0 41.900380 9.038460 1 +SPEAKER 00646 0 100.530000 1.000000 1 +SPEAKER 00646 0 102.133880 2.944440 1 +SPEAKER 00646 0 122.935880 1.822230 1 +SPEAKER 00646 0 125.391440 2.377780 1 +SPEAKER 00646 0 128.097000 0.573920 1 +SPEAKER 00646 0 130.458110 0.323920 1 +SPEAKER 00646 0 136.025000 6.321990 1 +SPEAKER 00646 0 10.959000 1.632440 5 +SPEAKER 00646 0 13.617560 3.667430 5 +SPEAKER 00646 0 20.015760 0.897440 5 +SPEAKER 00646 0 24.179000 1.000000 5 +SPEAKER 00646 0 31.803000 5.187120 5 +SPEAKER 00646 0 37.926020 0.500000 5 +SPEAKER 00646 0 40.606000 2.294380 5 +SPEAKER 00646 0 44.946140 0.838850 5 +SPEAKER 00646 0 48.574710 0.671820 5 +SPEAKER 00646 0 50.272170 2.128210 5 +SPEAKER 00646 0 53.477300 5.487180 5 +SPEAKER 00646 0 60.082000 0.292740 5 +SPEAKER 00646 0 61.860420 1.245090 5 +SPEAKER 00646 0 67.967000 0.482000 5 +SPEAKER 00646 0 100.323460 0.810420 5 +SPEAKER 00646 0 101.646000 0.525000 5 +SPEAKER 00646 0 106.225000 1.010880 5 +SPEAKER 00646 0 122.391440 0.755550 5 +SPEAKER 00646 0 130.213660 5.855560 5 +SPEAKER 00646 0 137.058000 0.316620 5 +SPEAKER 00646 0 21.695250 1.373970 4 +SPEAKER 00646 0 59.067040 2.779100 4 +SPEAKER 00646 0 62.503280 5.985710 4 +SPEAKER 00646 0 69.942870 4.803030 4 +SPEAKER 00646 0 106.931850 0.771430 4 +SPEAKER 00646 0 127.958110 0.877770 4 +SPEAKER 00646 0 21.528580 1.692310 2 +SPEAKER 00646 0 29.002940 2.089750 2 +SPEAKER 00646 0 74.955000 0.404000 2 +SPEAKER 00646 0 114.596840 7.527930 2 +SPEAKER 00646 0 12.793000 0.620200 3 +SPEAKER 00646 0 17.648000 2.047250 3 +SPEAKER 00646 0 19.990120 0.871800 3 +SPEAKER 00646 0 23.524000 4.295060 3 +SPEAKER 00646 0 38.462000 0.764000 3 +SPEAKER 00646 0 50.088990 2.747290 3 +SPEAKER 00646 0 60.413000 0.554210 3 +SPEAKER 00646 0 61.728000 0.535510 3 +SPEAKER 00646 0 74.912000 4.221880 3 +SPEAKER 00646 0 79.393000 1.259400 3 +SPEAKER 00646 0 81.474000 5.622840 3 +SPEAKER 00646 0 100.449050 0.351350 3 +SPEAKER 00646 0 106.358110 8.333330 3 +SPEAKER 00646 0 121.858110 1.622220 3 +SPEAKER 00646 0 127.991000 2.013250 3 +SPEAKER 00646 0 21.656790 1.512820 0 +SPEAKER 00646 0 27.726470 1.276470 0 +SPEAKER 00646 0 58.131150 0.397430 0 +SPEAKER 00646 0 78.761050 0.372830 0 +SPEAKER 00646 0 87.200000 1.211660 0 +SPEAKER 00646 0 88.734000 6.029510 0 +SPEAKER 00646 0 95.319000 0.611000 0 +SPEAKER 00646 0 96.244990 0.981480 0 +SPEAKER 00646 0 97.708000 2.574030 0 +SPEAKER 00646 0 101.378000 0.626000 0 +SPEAKER 00646 0 105.494000 1.195440 0 diff --git a/rttm/many/00656.rttm b/rttm/many/00656.rttm new file mode 100644 index 0000000000000000000000000000000000000000..a0bd9e248c97f057b3cd6ef3ac6aa32d52ea2977 --- /dev/null +++ b/rttm/many/00656.rttm @@ -0,0 +1,20 @@ +SPEAKER 00656 0 0.041000 1.315000 5 +SPEAKER 00656 0 4.353510 0.780490 5 +SPEAKER 00656 0 9.449000 0.703000 5 +SPEAKER 00656 0 17.204570 3.707430 5 +SPEAKER 00656 0 1.633030 2.670380 6 +SPEAKER 00656 0 5.001820 2.952380 6 +SPEAKER 00656 0 8.764000 4.629000 6 +SPEAKER 00656 0 14.060000 0.500000 6 +SPEAKER 00656 0 19.338000 0.537000 6 +SPEAKER 00656 0 6.946270 1.465730 2 +SPEAKER 00656 0 6.671000 0.669930 3 +SPEAKER 00656 0 18.264000 0.728730 3 +SPEAKER 00656 0 10.976520 0.711870 1 +SPEAKER 00656 0 8.011600 0.839620 4 +SPEAKER 00656 0 13.436130 4.216980 4 +SPEAKER 00656 0 8.381530 1.825270 0 +SPEAKER 00656 0 12.822610 0.455220 0 +SPEAKER 00656 0 14.210670 1.049330 0 +SPEAKER 00656 0 15.993470 0.940680 0 +SPEAKER 00656 0 19.408000 1.534620 0 diff --git a/rttm/many/00663.rttm b/rttm/many/00663.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c7f40c35b80ff11a6e339d6cdde87c41250ab400 --- /dev/null +++ b/rttm/many/00663.rttm @@ -0,0 +1,20 @@ +SPEAKER 00663 0 0.000000 3.081370 1 +SPEAKER 00663 0 7.139340 0.557980 1 +SPEAKER 00663 0 29.002090 3.990910 1 +SPEAKER 00663 0 33.584000 1.300600 1 +SPEAKER 00663 0 35.168920 2.794110 1 +SPEAKER 00663 0 43.002000 2.313000 1 +SPEAKER 00663 0 2.106000 0.459000 2 +SPEAKER 00663 0 3.508910 12.865900 2 +SPEAKER 00663 0 16.693000 1.327270 2 +SPEAKER 00663 0 18.411180 5.472720 2 +SPEAKER 00663 0 25.656630 3.090910 2 +SPEAKER 00663 0 36.708130 0.805870 2 +SPEAKER 00663 0 38.573000 2.304000 2 +SPEAKER 00663 0 8.022000 0.682560 0 +SPEAKER 00663 0 9.269000 2.210920 0 +SPEAKER 00663 0 32.762530 3.229920 0 +SPEAKER 00663 0 41.504000 1.269000 0 +SPEAKER 00663 0 45.565000 0.334000 0 +SPEAKER 00663 0 40.835000 1.688400 h0 +SPEAKER 00663 0 44.377000 1.188000 h1 diff --git a/rttm/many/00678.rttm b/rttm/many/00678.rttm new file mode 100644 index 0000000000000000000000000000000000000000..056dfb6cdc69a5dae56436bfe2a7f0736e9331ce --- /dev/null +++ b/rttm/many/00678.rttm @@ -0,0 +1,25 @@ +SPEAKER 00678 0 0.268400 0.606600 1 +SPEAKER 00678 0 6.839080 1.498500 1 +SPEAKER 00678 0 8.856100 1.388890 1 +SPEAKER 00678 0 11.152400 0.814810 1 +SPEAKER 00678 0 13.782000 0.999610 1 +SPEAKER 00678 0 15.815500 1.233680 1 +SPEAKER 00678 0 0.419620 0.806380 0 +SPEAKER 00678 0 2.815150 1.207620 0 +SPEAKER 00678 0 4.904700 2.658870 0 +SPEAKER 00678 0 8.301000 0.573620 0 +SPEAKER 00678 0 9.908720 4.428860 0 +SPEAKER 00678 0 15.059810 1.037030 0 +SPEAKER 00678 0 20.337580 0.726420 0 +SPEAKER 00678 0 1.449000 1.000000 h0 +SPEAKER 00678 0 3.449000 1.002320 h0 +SPEAKER 00678 0 8.320550 0.783830 h0 +SPEAKER 00678 0 10.430000 1.074000 h0 +SPEAKER 00678 0 13.801000 1.472130 h0 +SPEAKER 00678 0 17.189000 1.488090 h0 +SPEAKER 00678 0 0.801000 0.407000 h3 +SPEAKER 00678 0 9.504000 0.661610 h3 +SPEAKER 00678 0 11.430180 1.700400 h3 +SPEAKER 00678 0 17.837580 3.223420 h3 +SPEAKER 00678 0 15.525920 1.331960 h2 +SPEAKER 00678 0 2.522770 0.592590 h1 diff --git a/rttm/many/00692.rttm b/rttm/many/00692.rttm new file mode 100644 index 0000000000000000000000000000000000000000..cbf89f026626ca23d9f1063a3f296fed45a2a8dd --- /dev/null +++ b/rttm/many/00692.rttm @@ -0,0 +1,24 @@ +SPEAKER 00692 0 0.004000 1.926000 4 +SPEAKER 00692 0 3.856000 0.274580 4 +SPEAKER 00692 0 4.500000 1.921270 4 +SPEAKER 00692 0 10.200000 1.026000 4 +SPEAKER 00692 0 1.326000 1.641000 1 +SPEAKER 00692 0 4.800550 0.833330 1 +SPEAKER 00692 0 15.634000 0.370000 1 +SPEAKER 00692 0 19.134000 0.491000 1 +SPEAKER 00692 0 20.218000 1.212000 1 +SPEAKER 00692 0 21.707000 0.501000 1 +SPEAKER 00692 0 2.782000 0.818000 3 +SPEAKER 00692 0 6.226000 1.649000 3 +SPEAKER 00692 0 5.591440 0.388890 2 +SPEAKER 00692 0 6.560000 1.259000 2 +SPEAKER 00692 0 11.544000 0.283000 2 +SPEAKER 00692 0 8.134000 1.733000 0 +SPEAKER 00692 0 19.615000 0.464000 0 +SPEAKER 00692 0 7.827000 0.717000 6 +SPEAKER 00692 0 9.191440 0.923560 6 +SPEAKER 00692 0 12.412000 3.314470 6 +SPEAKER 00692 0 17.671000 1.233000 6 +SPEAKER 00692 0 20.060000 0.518000 6 +SPEAKER 00692 0 11.567000 0.900000 5 +SPEAKER 00692 0 14.400000 2.833000 7 diff --git a/rttm/many/00714.rttm b/rttm/many/00714.rttm new file mode 100644 index 0000000000000000000000000000000000000000..fba12422aed78030f7cd16851527ab33d1998e96 --- /dev/null +++ b/rttm/many/00714.rttm @@ -0,0 +1,58 @@ +SPEAKER 00714 0 0.000000 0.930000 2 +SPEAKER 00714 0 2.812000 2.729000 2 +SPEAKER 00714 0 7.097000 0.527840 2 +SPEAKER 00714 0 8.317150 3.242850 2 +SPEAKER 00714 0 16.647920 0.853850 2 +SPEAKER 00714 0 19.741000 2.745000 2 +SPEAKER 00714 0 24.115000 2.889000 2 +SPEAKER 00714 0 28.338000 0.851000 2 +SPEAKER 00714 0 31.597000 2.259000 2 +SPEAKER 00714 0 35.050000 1.325000 2 +SPEAKER 00714 0 38.706000 1.080380 2 +SPEAKER 00714 0 42.809460 0.507160 2 +SPEAKER 00714 0 44.386390 1.953840 2 +SPEAKER 00714 0 49.486000 1.981000 2 +SPEAKER 00714 0 52.492000 2.253000 2 +SPEAKER 00714 0 55.648000 1.875000 2 +SPEAKER 00714 0 58.412000 3.000000 2 +SPEAKER 00714 0 65.039000 0.743000 2 +SPEAKER 00714 0 66.256000 1.915000 2 +SPEAKER 00714 0 72.869000 0.802000 2 +SPEAKER 00714 0 74.555000 2.394000 2 +SPEAKER 00714 0 81.978690 1.322310 2 +SPEAKER 00714 0 84.194070 0.730770 2 +SPEAKER 00714 0 86.847920 1.712080 2 +SPEAKER 00714 0 90.571000 1.100000 2 +SPEAKER 00714 0 0.078000 1.834000 1 +SPEAKER 00714 0 6.078000 0.963000 1 +SPEAKER 00714 0 13.279000 0.670000 1 +SPEAKER 00714 0 18.671000 1.055000 1 +SPEAKER 00714 0 22.745000 1.440000 1 +SPEAKER 00714 0 29.778690 0.799310 1 +SPEAKER 00714 0 37.089000 1.915000 1 +SPEAKER 00714 0 41.586380 0.276920 1 +SPEAKER 00714 0 47.386380 2.043620 1 +SPEAKER 00714 0 57.522000 0.742000 1 +SPEAKER 00714 0 61.986380 0.353850 1 +SPEAKER 00714 0 62.978690 2.044310 1 +SPEAKER 00714 0 69.071000 3.207690 1 +SPEAKER 00714 0 76.940230 0.623070 1 +SPEAKER 00714 0 83.886380 0.761540 1 +SPEAKER 00714 0 91.004000 0.666000 1 +SPEAKER 00714 0 7.086380 0.991620 3 +SPEAKER 00714 0 30.690000 0.788690 3 +SPEAKER 00714 0 42.060000 0.426380 3 +SPEAKER 00714 0 51.515000 0.952000 3 +SPEAKER 00714 0 90.967000 0.748000 3 +SPEAKER 00714 0 2.399000 1.965800 0 +SPEAKER 00714 0 11.632000 1.000000 0 +SPEAKER 00714 0 14.255610 2.030770 0 +SPEAKER 00714 0 39.837000 1.241000 0 +SPEAKER 00714 0 41.955000 0.369390 0 +SPEAKER 00714 0 52.555000 0.809800 0 +SPEAKER 00714 0 54.738000 1.207600 0 +SPEAKER 00714 0 56.509000 1.000000 0 +SPEAKER 00714 0 73.688000 0.946000 0 +SPEAKER 00714 0 78.041000 3.315000 0 +SPEAKER 00714 0 85.377000 0.609000 0 +SPEAKER 00714 0 88.671000 1.740000 h0 diff --git a/rttm/many/00721.rttm b/rttm/many/00721.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ea06958a1aba02dea2cd21453a27d181994f3027 --- /dev/null +++ b/rttm/many/00721.rttm @@ -0,0 +1,44 @@ +SPEAKER 00721 0 0.041000 5.278060 1 +SPEAKER 00721 0 6.076000 4.057880 1 +SPEAKER 00721 0 10.875000 1.203000 1 +SPEAKER 00721 0 12.801000 2.549000 1 +SPEAKER 00721 0 89.100000 2.879410 1 +SPEAKER 00721 0 92.912000 0.629000 1 +SPEAKER 00721 0 96.333000 4.000000 1 +SPEAKER 00721 0 1.417000 1.143810 4 +SPEAKER 00721 0 3.979410 2.220590 4 +SPEAKER 00721 0 10.883000 0.340600 2 +SPEAKER 00721 0 12.781740 0.383720 2 +SPEAKER 00721 0 14.167000 1.450000 2 +SPEAKER 00721 0 16.717000 1.234320 2 +SPEAKER 00721 0 19.333000 0.413850 2 +SPEAKER 00721 0 21.258480 0.604650 2 +SPEAKER 00721 0 23.450000 0.866620 2 +SPEAKER 00721 0 28.223600 7.093020 2 +SPEAKER 00721 0 44.735230 1.058140 2 +SPEAKER 00721 0 51.967000 2.733000 2 +SPEAKER 00721 0 57.500000 1.301000 2 +SPEAKER 00721 0 63.100000 4.217000 2 +SPEAKER 00721 0 79.781000 2.408440 2 +SPEAKER 00721 0 82.967210 1.444450 2 +SPEAKER 00721 0 84.958000 4.120320 2 +SPEAKER 00721 0 92.517000 3.816000 2 +SPEAKER 00721 0 99.467000 1.111320 2 +SPEAKER 00721 0 101.152400 5.097600 2 +SPEAKER 00721 0 116.560810 4.139190 2 +SPEAKER 00721 0 15.500000 1.117000 3 +SPEAKER 00721 0 18.409650 0.923350 3 +SPEAKER 00721 0 20.177090 1.139910 3 +SPEAKER 00721 0 22.258480 0.837210 3 +SPEAKER 00721 0 24.874760 1.392240 3 +SPEAKER 00721 0 26.767000 1.083000 3 +SPEAKER 00721 0 34.152400 0.385150 3 +SPEAKER 00721 0 36.150000 9.017000 3 +SPEAKER 00721 0 46.711970 5.971030 3 +SPEAKER 00721 0 55.467780 1.999220 3 +SPEAKER 00721 0 58.758480 4.591520 3 +SPEAKER 00721 0 67.363130 4.622600 3 +SPEAKER 00721 0 72.479000 0.803030 3 +SPEAKER 00721 0 73.695000 7.253690 3 +SPEAKER 00721 0 106.250000 10.750000 3 +SPEAKER 00721 0 90.400000 1.800340 0 diff --git a/rttm/many/00727.rttm b/rttm/many/00727.rttm new file mode 100644 index 0000000000000000000000000000000000000000..36ff0650c8467137cfdd3dc4e96fb14645bfaa56 --- /dev/null +++ b/rttm/many/00727.rttm @@ -0,0 +1,43 @@ +SPEAKER 00727 0 0.302090 2.518180 4 +SPEAKER 00727 0 3.774810 1.526190 4 +SPEAKER 00727 0 6.811180 0.954540 4 +SPEAKER 00727 0 10.111180 2.189820 4 +SPEAKER 00727 0 13.211180 1.021820 4 +SPEAKER 00727 0 15.691180 1.925450 4 +SPEAKER 00727 0 18.093000 5.848000 4 +SPEAKER 00727 0 26.177000 0.661000 4 +SPEAKER 00727 0 27.389000 2.351270 4 +SPEAKER 00727 0 30.756630 5.600000 4 +SPEAKER 00727 0 36.745000 7.420720 4 +SPEAKER 00727 0 46.138450 0.936360 4 +SPEAKER 00727 0 49.023000 1.242720 4 +SPEAKER 00727 0 52.597000 8.405090 4 +SPEAKER 00727 0 3.211180 0.590910 1 +SPEAKER 00727 0 5.738450 0.913550 1 +SPEAKER 00727 0 26.520270 0.563630 1 +SPEAKER 00727 0 28.856000 1.056000 1 +SPEAKER 00727 0 42.354810 0.547280 1 +SPEAKER 00727 0 46.247540 2.354550 1 +SPEAKER 00727 0 50.394000 0.889000 1 +SPEAKER 00727 0 52.565720 1.354550 1 +SPEAKER 00727 0 57.711180 0.481820 1 +SPEAKER 00727 0 3.365720 0.436370 0 +SPEAKER 00727 0 5.538450 1.263640 0 +SPEAKER 00727 0 7.929360 1.054540 0 +SPEAKER 00727 0 9.829360 0.918180 0 +SPEAKER 00727 0 11.402090 0.936360 0 +SPEAKER 00727 0 14.674810 0.940190 0 +SPEAKER 00727 0 17.956630 0.518180 0 +SPEAKER 00727 0 24.483900 0.518190 0 +SPEAKER 00727 0 26.565720 0.445460 0 +SPEAKER 00727 0 6.238450 1.563640 2 +SPEAKER 00727 0 8.593000 1.027270 2 +SPEAKER 00727 0 13.011180 1.054820 2 +SPEAKER 00727 0 24.491180 0.610910 2 +SPEAKER 00727 0 25.693000 0.444000 2 +SPEAKER 00727 0 30.383900 0.465460 2 +SPEAKER 00727 0 60.764000 1.018000 2 +SPEAKER 00727 0 3.083900 0.672730 3 +SPEAKER 00727 0 20.943900 0.512730 3 +SPEAKER 00727 0 30.356630 0.318180 3 +SPEAKER 00727 0 51.583900 0.678190 3 diff --git a/rttm/many/00746.rttm b/rttm/many/00746.rttm new file mode 100644 index 0000000000000000000000000000000000000000..3e043e0252e1fce626fe44ec5a45038db121cab7 --- /dev/null +++ b/rttm/many/00746.rttm @@ -0,0 +1,19 @@ +SPEAKER 00746 0 0.000000 0.523000 2 +SPEAKER 00746 0 7.674000 0.419530 2 +SPEAKER 00746 0 9.461950 1.197370 2 +SPEAKER 00746 0 19.239000 0.880850 2 +SPEAKER 00746 0 21.117000 0.431000 2 +SPEAKER 00746 0 25.290900 0.447370 2 +SPEAKER 00746 0 0.393000 1.067590 0 +SPEAKER 00746 0 13.501000 3.829370 0 +SPEAKER 00746 0 1.633010 2.049810 4 +SPEAKER 00746 0 5.044000 2.339010 4 +SPEAKER 00746 0 8.593530 0.263160 4 +SPEAKER 00746 0 11.764580 1.447370 4 +SPEAKER 00746 0 17.654000 0.847430 4 +SPEAKER 00746 0 20.317220 0.657890 4 +SPEAKER 00746 0 22.409320 2.947370 4 +SPEAKER 00746 0 3.652000 1.138900 3 +SPEAKER 00746 0 7.646000 0.763000 1 +SPEAKER 00746 0 9.298000 0.697000 1 +SPEAKER 00746 0 10.488000 0.763430 1 diff --git a/rttm/many/00760.rttm b/rttm/many/00760.rttm new file mode 100644 index 0000000000000000000000000000000000000000..cab36d61d73ae28964875a5100d98665d7e2e79a --- /dev/null +++ b/rttm/many/00760.rttm @@ -0,0 +1,29 @@ +SPEAKER 00760 0 0.022000 2.140020 2 +SPEAKER 00760 0 3.830570 0.294200 2 +SPEAKER 00760 0 12.508420 2.945210 2 +SPEAKER 00760 0 18.357740 0.744810 2 +SPEAKER 00760 0 22.878110 1.368880 2 +SPEAKER 00760 0 25.995000 0.642850 2 +SPEAKER 00760 0 28.841390 0.755610 2 +SPEAKER 00760 0 30.486000 1.227660 2 +SPEAKER 00760 0 2.436310 3.046160 0 +SPEAKER 00760 0 6.433080 0.513700 0 +SPEAKER 00760 0 7.669220 1.533330 0 +SPEAKER 00760 0 10.186500 1.556500 0 +SPEAKER 00760 0 15.590610 1.913390 0 +SPEAKER 00760 0 19.665610 0.459160 0 +SPEAKER 00760 0 21.291440 0.527560 0 +SPEAKER 00760 0 31.422000 2.008000 0 +SPEAKER 00760 0 39.319000 0.821360 0 +SPEAKER 00760 0 2.421000 0.991530 1 +SPEAKER 00760 0 17.356000 0.624330 1 +SPEAKER 00760 0 24.982010 0.509430 1 +SPEAKER 00760 0 26.798000 1.817000 1 +SPEAKER 00760 0 29.382630 3.761720 1 +SPEAKER 00760 0 33.891100 6.642860 1 +SPEAKER 00760 0 26.180330 0.444440 3 +SPEAKER 00760 0 32.244000 0.798420 3 +SPEAKER 00760 0 37.041000 3.408000 3 +SPEAKER 00760 0 26.686000 0.547000 4 +SPEAKER 00760 0 30.189000 0.977000 4 +SPEAKER 00760 0 33.696300 0.688310 4 diff --git a/rttm/many/00769.rttm b/rttm/many/00769.rttm new file mode 100644 index 0000000000000000000000000000000000000000..d2eda627b91a5096859f609d027aa761109c299f --- /dev/null +++ b/rttm/many/00769.rttm @@ -0,0 +1,56 @@ +SPEAKER 00769 0 0.319000 2.314880 2 +SPEAKER 00769 0 3.006000 1.313060 2 +SPEAKER 00769 0 4.696220 0.292780 2 +SPEAKER 00769 0 5.516000 0.843480 2 +SPEAKER 00769 0 8.832070 0.390240 2 +SPEAKER 00769 0 21.597000 0.483330 2 +SPEAKER 00769 0 23.338000 1.120110 2 +SPEAKER 00769 0 41.189000 3.908000 2 +SPEAKER 00769 0 63.578000 3.068990 2 +SPEAKER 00769 0 71.856000 2.056000 2 +SPEAKER 00769 0 0.300550 1.557560 h0 +SPEAKER 00769 0 8.876000 0.425000 h0 +SPEAKER 00769 0 13.449000 0.722000 h0 +SPEAKER 00769 0 21.745000 1.833000 h0 +SPEAKER 00769 0 38.671000 1.130000 h0 +SPEAKER 00769 0 42.658110 0.475770 h0 +SPEAKER 00769 0 67.258110 1.393890 h0 +SPEAKER 00769 0 70.758110 0.866890 h0 +SPEAKER 00769 0 74.105000 0.885000 h0 +SPEAKER 00769 0 5.300550 0.602000 1 +SPEAKER 00769 0 31.356000 0.746550 1 +SPEAKER 00769 0 34.708000 0.536990 1 +SPEAKER 00769 0 35.874620 2.127930 1 +SPEAKER 00769 0 44.597000 0.949990 1 +SPEAKER 00769 0 46.430000 0.450330 1 +SPEAKER 00769 0 49.986000 1.222000 1 +SPEAKER 00769 0 51.819000 3.167000 1 +SPEAKER 00769 0 61.375000 0.683110 1 +SPEAKER 00769 0 68.191000 1.089330 1 +SPEAKER 00769 0 69.885000 1.140000 1 +SPEAKER 00769 0 6.967000 0.555770 0 +SPEAKER 00769 0 7.798000 0.651000 0 +SPEAKER 00769 0 9.319060 1.134960 0 +SPEAKER 00769 0 14.208000 1.722000 0 +SPEAKER 00769 0 17.652000 2.074000 0 +SPEAKER 00769 0 22.446990 1.817010 0 +SPEAKER 00769 0 24.875000 1.536660 0 +SPEAKER 00769 0 26.833000 2.356440 0 +SPEAKER 00769 0 30.691440 0.609110 0 +SPEAKER 00769 0 32.578000 0.502330 0 +SPEAKER 00769 0 34.023000 0.868440 0 +SPEAKER 00769 0 38.214000 0.587000 0 +SPEAKER 00769 0 40.391440 0.677780 0 +SPEAKER 00769 0 47.189000 1.957990 0 +SPEAKER 00769 0 56.801000 2.323770 0 +SPEAKER 00769 0 60.393000 0.831770 0 +SPEAKER 00769 0 63.412000 0.879440 0 +SPEAKER 00769 0 71.857000 0.499100 0 +SPEAKER 00769 0 73.135880 0.998000 0 +SPEAKER 00769 0 10.769000 1.000000 h1 +SPEAKER 00769 0 23.523000 1.001770 h1 +SPEAKER 00769 0 29.652000 0.639440 h1 +SPEAKER 00769 0 43.235880 0.509110 h1 +SPEAKER 00769 0 62.669220 0.522220 h1 +SPEAKER 00769 0 69.189000 0.869110 h1 +SPEAKER 00769 0 73.948690 1.041310 h1 diff --git a/rttm/many/00776.rttm b/rttm/many/00776.rttm new file mode 100644 index 0000000000000000000000000000000000000000..5757e31383cd1fbc21a5b9e4544c821149ca7e0a --- /dev/null +++ b/rttm/many/00776.rttm @@ -0,0 +1,22 @@ +SPEAKER 00776 0 0.000000 7.148090 3 +SPEAKER 00776 0 8.877260 1.700740 3 +SPEAKER 00776 0 12.069000 0.375000 3 +SPEAKER 00776 0 12.898000 2.020920 3 +SPEAKER 00776 0 15.835590 3.041670 3 +SPEAKER 00776 0 19.671000 0.441000 3 +SPEAKER 00776 0 21.689000 2.019000 3 +SPEAKER 00776 0 24.782000 0.386920 3 +SPEAKER 00776 0 26.208000 0.815000 3 +SPEAKER 00776 0 33.097000 4.074000 3 +SPEAKER 00776 0 7.423000 0.954000 1 +SPEAKER 00776 0 31.564760 1.395830 1 +SPEAKER 00776 0 20.393000 0.713420 2 +SPEAKER 00776 0 26.134000 1.222420 2 +SPEAKER 00776 0 29.710590 1.833330 2 +SPEAKER 00776 0 33.586000 3.478760 2 +SPEAKER 00776 0 20.546000 0.975000 4 +SPEAKER 00776 0 23.835590 0.872410 4 +SPEAKER 00776 0 26.912000 4.736090 4 +SPEAKER 00776 0 18.898000 0.500090 0 +SPEAKER 00776 0 24.689000 1.815000 0 +SPEAKER 00776 0 27.615000 1.352000 0 diff --git a/rttm/many/00777.rttm b/rttm/many/00777.rttm new file mode 100644 index 0000000000000000000000000000000000000000..005bf959eac44d0cab40b59fa15d9d219386c0ba --- /dev/null +++ b/rttm/many/00777.rttm @@ -0,0 +1,27 @@ +SPEAKER 00777 0 2.271090 0.268290 4 +SPEAKER 00777 0 4.393000 5.627000 4 +SPEAKER 00777 0 10.807680 0.256090 4 +SPEAKER 00777 0 14.374840 0.889160 4 +SPEAKER 00777 0 15.764000 0.237820 4 +SPEAKER 00777 0 17.819870 0.243900 4 +SPEAKER 00777 0 18.832070 0.268290 4 +SPEAKER 00777 0 20.344120 0.548920 4 +SPEAKER 00777 0 21.990600 0.529400 4 +SPEAKER 00777 0 0.012550 2.599330 5 +SPEAKER 00777 0 11.851030 7.819970 5 +SPEAKER 00777 0 22.237000 0.637870 5 +SPEAKER 00777 0 1.607230 0.407250 3 +SPEAKER 00777 0 3.490600 0.231710 3 +SPEAKER 00777 0 9.237540 0.732270 3 +SPEAKER 00777 0 11.287540 1.031740 3 +SPEAKER 00777 0 14.160550 0.769450 3 +SPEAKER 00777 0 21.310000 0.945610 3 +SPEAKER 00777 0 0.948000 0.282760 0 +SPEAKER 00777 0 2.800190 0.568460 0 +SPEAKER 00777 0 10.117000 0.964190 0 +SPEAKER 00777 0 16.189000 0.519000 0 +SPEAKER 00777 0 19.484470 0.809530 0 +SPEAKER 00777 0 22.636740 0.353860 0 +SPEAKER 00777 0 1.384000 0.686070 1 +SPEAKER 00777 0 20.588160 1.957710 1 +SPEAKER 00777 0 23.045760 0.338240 2 diff --git a/rttm/many/00780.rttm b/rttm/many/00780.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c8eb62461678134a97584b526f9bab2f6fd4a24f --- /dev/null +++ b/rttm/many/00780.rttm @@ -0,0 +1,20 @@ +SPEAKER 00780 0 0.000000 2.634000 1 +SPEAKER 00780 0 3.482010 1.188990 1 +SPEAKER 00780 0 5.282000 1.704000 1 +SPEAKER 00780 0 7.946270 1.761730 1 +SPEAKER 00780 0 10.741000 1.000000 1 +SPEAKER 00780 0 23.967000 0.852000 1 +SPEAKER 00780 0 2.706000 0.409000 2 +SPEAKER 00780 0 7.152000 0.408000 2 +SPEAKER 00780 0 13.081190 0.607810 2 +SPEAKER 00780 0 14.078000 1.000000 2 +SPEAKER 00780 0 15.335150 1.380960 2 +SPEAKER 00780 0 21.745000 1.701270 2 +SPEAKER 00780 0 3.030000 2.345000 0 +SPEAKER 00780 0 10.100000 3.238000 0 +SPEAKER 00780 0 13.671000 1.053040 0 +SPEAKER 00780 0 15.189000 0.297000 0 +SPEAKER 00780 0 17.836000 0.428000 0 +SPEAKER 00780 0 18.575000 3.059000 0 +SPEAKER 00780 0 23.684360 2.430640 0 +SPEAKER 00780 0 5.450000 1.000000 4 diff --git a/rttm/many/00783.rttm b/rttm/many/00783.rttm new file mode 100644 index 0000000000000000000000000000000000000000..8aa8847c04cd454da966a0e66703ff328ff8c1f0 --- /dev/null +++ b/rttm/many/00783.rttm @@ -0,0 +1,10 @@ +SPEAKER 00783 0 0.339080 0.886530 3 +SPEAKER 00783 0 2.237040 3.451960 3 +SPEAKER 00783 0 8.420710 1.454290 3 +SPEAKER 00783 0 11.959570 4.498450 3 +SPEAKER 00783 0 16.849400 6.500000 3 +SPEAKER 00783 0 23.671440 2.260340 3 +SPEAKER 00783 0 10.237440 0.488560 0 +SPEAKER 00783 0 5.849280 2.636720 2 +SPEAKER 00783 0 5.777850 1.061230 4 +SPEAKER 00783 0 10.155400 1.806130 1 diff --git a/rttm/many/00816.rttm b/rttm/many/00816.rttm new file mode 100644 index 0000000000000000000000000000000000000000..de8ba25f8e688b4109938d1b9b908e91061d565e --- /dev/null +++ b/rttm/many/00816.rttm @@ -0,0 +1,53 @@ +SPEAKER 00816 0 0.060000 3.891660 3 +SPEAKER 00816 0 5.733710 0.992290 3 +SPEAKER 00816 0 12.060000 0.944000 3 +SPEAKER 00816 0 25.832230 2.428190 3 +SPEAKER 00816 0 40.477300 3.730770 3 +SPEAKER 00816 0 48.262000 9.242000 3 +SPEAKER 00816 0 58.652000 3.420190 3 +SPEAKER 00816 0 96.301000 3.500000 3 +SPEAKER 00816 0 101.208000 2.759000 3 +SPEAKER 00816 0 104.504000 4.427840 3 +SPEAKER 00816 0 112.352890 8.510240 3 +SPEAKER 00816 0 124.597000 2.074000 3 +SPEAKER 00816 0 3.336280 1.564100 0 +SPEAKER 00816 0 13.291000 0.824000 0 +SPEAKER 00816 0 16.063420 1.417740 0 +SPEAKER 00816 0 22.441000 2.971000 0 +SPEAKER 00816 0 26.002010 3.798990 0 +SPEAKER 00816 0 38.800000 0.561660 0 +SPEAKER 00816 0 49.171000 1.567860 0 +SPEAKER 00816 0 61.115000 0.940630 0 +SPEAKER 00816 0 75.215210 0.808510 0 +SPEAKER 00816 0 84.152000 2.025450 0 +SPEAKER 00816 0 95.264000 1.017740 0 +SPEAKER 00816 0 111.282000 0.755550 0 +SPEAKER 00816 0 130.856000 1.501000 0 +SPEAKER 00816 0 6.515760 1.558950 4 +SPEAKER 00816 0 29.989000 2.808810 4 +SPEAKER 00816 0 33.965720 2.947480 4 +SPEAKER 00816 0 58.438840 2.703520 4 +SPEAKER 00816 0 79.274710 7.685710 4 +SPEAKER 00816 0 108.864000 3.150300 4 +SPEAKER 00816 0 119.672000 4.528340 4 +SPEAKER 00816 0 4.186220 1.145630 2 +SPEAKER 00816 0 9.515760 2.240640 2 +SPEAKER 00816 0 12.977300 3.063700 2 +SPEAKER 00816 0 17.560000 8.389000 2 +SPEAKER 00816 0 30.772000 3.028260 2 +SPEAKER 00816 0 36.419000 3.468560 2 +SPEAKER 00816 0 43.677450 2.530620 2 +SPEAKER 00816 0 47.285000 0.551280 2 +SPEAKER 00816 0 56.625000 1.839480 2 +SPEAKER 00816 0 61.791490 16.692980 2 +SPEAKER 00816 0 81.574710 2.743090 2 +SPEAKER 00816 0 88.730080 6.078950 2 +SPEAKER 00816 0 100.003000 2.665680 2 +SPEAKER 00816 0 103.995000 1.368130 2 +SPEAKER 00816 0 114.826570 0.377200 2 +SPEAKER 00816 0 125.648000 4.138000 2 +SPEAKER 00816 0 5.818000 1.324360 1 +SPEAKER 00816 0 119.479410 0.882250 1 +SPEAKER 00816 0 123.907000 0.491020 1 +SPEAKER 00816 0 127.293370 0.616280 1 +SPEAKER 00816 0 129.732530 1.874790 1 diff --git a/rttm/many/00820.rttm b/rttm/many/00820.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c85d8c12c11aa95b48e835afbc28c9dc6a8773c9 --- /dev/null +++ b/rttm/many/00820.rttm @@ -0,0 +1,22 @@ +SPEAKER 00820 0 0.035000 2.358000 2 +SPEAKER 00820 0 4.208000 0.356760 2 +SPEAKER 00820 0 7.060000 0.504760 2 +SPEAKER 00820 0 13.708000 2.148420 2 +SPEAKER 00820 0 17.412000 0.777000 2 +SPEAKER 00820 0 20.492000 1.885260 2 +SPEAKER 00820 0 25.169000 0.833260 2 +SPEAKER 00820 0 0.044000 0.604090 1 +SPEAKER 00820 0 2.441730 0.353270 1 +SPEAKER 00820 0 4.088000 0.893420 1 +SPEAKER 00820 0 7.166000 0.376000 1 +SPEAKER 00820 0 8.176000 5.717000 1 +SPEAKER 00820 0 14.804000 2.422000 1 +SPEAKER 00820 0 17.978920 1.865080 1 +SPEAKER 00820 0 22.523000 2.333000 1 +SPEAKER 00820 0 25.189760 0.811240 1 +SPEAKER 00820 0 26.356000 0.889000 1 +SPEAKER 00820 0 5.552000 0.887760 0 +SPEAKER 00820 0 24.590000 0.370000 0 +SPEAKER 00820 0 20.023000 0.541760 3 +SPEAKER 00820 0 27.634000 0.430760 h0 +SPEAKER 00820 0 28.479000 1.189000 h0 diff --git a/rttm/many/00823.rttm b/rttm/many/00823.rttm new file mode 100644 index 0000000000000000000000000000000000000000..b7bae214fbcb98eb3b57ac0136561a042d552919 --- /dev/null +++ b/rttm/many/00823.rttm @@ -0,0 +1,14 @@ +SPEAKER 00823 0 2.671440 0.779660 0 +SPEAKER 00823 0 21.629060 0.798940 0 +SPEAKER 00823 0 18.179910 0.795790 2 +SPEAKER 00823 0 0.004000 5.871000 1 +SPEAKER 00823 0 7.467780 2.573220 1 +SPEAKER 00823 0 2.347920 1.330770 5 +SPEAKER 00823 0 13.458000 0.676000 5 +SPEAKER 00823 0 14.874830 4.981170 5 +SPEAKER 00823 0 3.340230 10.060020 3 +SPEAKER 00823 0 14.154490 0.711860 3 +SPEAKER 00823 0 15.307030 0.905970 3 +SPEAKER 00823 0 19.001940 3.428060 3 +SPEAKER 00823 0 4.035840 1.013600 6 +SPEAKER 00823 0 21.773130 0.640870 6 diff --git a/rttm/many/00840.rttm b/rttm/many/00840.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c3f6c9b539766e34ed12382c8a8bc80df14261cb --- /dev/null +++ b/rttm/many/00840.rttm @@ -0,0 +1,12 @@ +SPEAKER 00840 0 0.282000 13.888320 1 +SPEAKER 00840 0 15.376000 6.956230 1 +SPEAKER 00840 0 51.144350 0.857140 1 +SPEAKER 00840 0 89.035000 0.691000 1 +SPEAKER 00840 0 22.319000 5.008430 2 +SPEAKER 00840 0 27.699000 7.304280 2 +SPEAKER 00840 0 15.496000 0.620000 4 +SPEAKER 00840 0 35.134000 10.222000 4 +SPEAKER 00840 0 45.545140 4.695910 3 +SPEAKER 00840 0 50.599000 15.733230 3 +SPEAKER 00840 0 66.310950 15.202130 0 +SPEAKER 00840 0 82.162020 14.601980 0 diff --git a/rttm/many/00841.rttm b/rttm/many/00841.rttm new file mode 100644 index 0000000000000000000000000000000000000000..f5a1f818d5d45bc9c87a43e0897de2831fff4845 --- /dev/null +++ b/rttm/many/00841.rttm @@ -0,0 +1,39 @@ +SPEAKER 00841 0 0.015000 0.585360 1 +SPEAKER 00841 0 2.189000 2.204000 1 +SPEAKER 00841 0 5.338000 0.388470 1 +SPEAKER 00841 0 6.868650 3.969350 1 +SPEAKER 00841 0 12.893040 0.573960 1 +SPEAKER 00841 0 13.930000 2.194750 1 +SPEAKER 00841 0 16.671000 0.592510 1 +SPEAKER 00841 0 17.652400 5.018520 1 +SPEAKER 00841 0 24.467000 3.833550 1 +SPEAKER 00841 0 29.083000 8.754580 1 +SPEAKER 00841 0 38.235000 1.639620 1 +SPEAKER 00841 0 46.245000 1.278000 1 +SPEAKER 00841 0 48.911000 1.334000 1 +SPEAKER 00841 0 53.171000 2.555470 1 +SPEAKER 00841 0 61.930180 2.499820 1 +SPEAKER 00841 0 64.967000 2.482000 1 +SPEAKER 00841 0 73.551580 0.415630 1 +SPEAKER 00841 0 5.356460 1.925570 2 +SPEAKER 00841 0 13.966210 0.945790 2 +SPEAKER 00841 0 22.245000 1.855360 2 +SPEAKER 00841 0 37.004000 1.254900 2 +SPEAKER 00841 0 44.560000 0.870180 2 +SPEAKER 00841 0 45.883000 0.750880 2 +SPEAKER 00841 0 51.949000 1.463000 2 +SPEAKER 00841 0 62.449000 1.944000 2 +SPEAKER 00841 0 71.189000 3.539000 2 +SPEAKER 00841 0 22.097000 0.917990 3 +SPEAKER 00841 0 41.149140 3.756100 3 +SPEAKER 00841 0 47.578000 1.037000 3 +SPEAKER 00841 0 50.634000 1.462840 3 +SPEAKER 00841 0 52.447000 1.816510 3 +SPEAKER 00841 0 54.801000 0.369920 3 +SPEAKER 00841 0 55.670920 0.407400 3 +SPEAKER 00841 0 56.559810 5.259250 3 +SPEAKER 00841 0 63.038000 1.373660 3 +SPEAKER 00841 0 70.636950 0.589520 3 +SPEAKER 00841 0 31.430000 0.328900 0 +SPEAKER 00841 0 67.560000 2.674510 0 +SPEAKER 00841 0 0.615360 1.370640 h0 diff --git a/rttm/many/00877.rttm b/rttm/many/00877.rttm new file mode 100644 index 0000000000000000000000000000000000000000..2308b5869e5cc51c12f0c82c20ab67787a4e75c2 --- /dev/null +++ b/rttm/many/00877.rttm @@ -0,0 +1,40 @@ +SPEAKER 00877 0 0.000000 2.523090 2 +SPEAKER 00877 0 34.378000 0.649710 2 +SPEAKER 00877 0 35.970000 2.507710 2 +SPEAKER 00877 0 41.064000 0.484570 2 +SPEAKER 00877 0 1.085590 1.708330 4 +SPEAKER 00877 0 4.939760 1.416660 4 +SPEAKER 00877 0 0.000000 0.697460 1 +SPEAKER 00877 0 2.773090 1.166670 1 +SPEAKER 00877 0 30.419680 1.194440 1 +SPEAKER 00877 0 4.225230 5.416670 h3 +SPEAKER 00877 0 10.059000 4.749570 h3 +SPEAKER 00877 0 17.290000 0.791000 h3 +SPEAKER 00877 0 24.315000 1.728920 h3 +SPEAKER 00877 0 26.586000 2.500000 h3 +SPEAKER 00877 0 30.253000 3.324710 h3 +SPEAKER 00877 0 38.652710 2.395860 h3 +SPEAKER 00877 0 41.728000 1.149710 h3 +SPEAKER 00877 0 15.210590 0.729170 3 +SPEAKER 00877 0 20.398090 0.854170 3 +SPEAKER 00877 0 32.708000 5.724000 3 +SPEAKER 00877 0 39.477710 1.425000 3 +SPEAKER 00877 0 18.773000 1.354260 0 +SPEAKER 00877 0 21.169000 0.999920 0 +SPEAKER 00877 0 33.252710 1.400000 0 +SPEAKER 00877 0 35.228000 0.749710 0 +SPEAKER 00877 0 37.016000 1.000000 0 +SPEAKER 00877 0 3.481420 0.916670 5 +SPEAKER 00877 0 6.085000 0.917260 5 +SPEAKER 00877 0 21.168920 2.148080 5 +SPEAKER 00877 0 28.911000 1.142000 5 +SPEAKER 00877 0 22.252260 1.770830 h1 +SPEAKER 00877 0 15.503010 1.638890 h2 +SPEAKER 00877 0 18.439000 0.709000 h2 +SPEAKER 00877 0 19.523000 0.687590 h2 +SPEAKER 00877 0 24.939760 0.541660 h2 +SPEAKER 00877 0 28.553000 1.799710 h2 +SPEAKER 00877 0 4.336000 0.457920 h0 +SPEAKER 00877 0 7.808570 1.166660 h0 +SPEAKER 00877 0 12.253010 1.722220 h0 +SPEAKER 00877 0 24.023000 1.000000 h0 diff --git a/rttm/many/00884.rttm b/rttm/many/00884.rttm new file mode 100644 index 0000000000000000000000000000000000000000..8e69756e765ea867955bdbcc032c700ca3dcc64c --- /dev/null +++ b/rttm/many/00884.rttm @@ -0,0 +1,420 @@ +SPEAKER 00884 0 0.078000 0.389000 2 +SPEAKER 00884 0 9.759350 1.128210 2 +SPEAKER 00884 0 18.486000 0.629000 2 +SPEAKER 00884 0 23.926020 1.151980 2 +SPEAKER 00884 0 35.874740 5.148260 2 +SPEAKER 00884 0 61.618330 2.033670 2 +SPEAKER 00884 0 90.078000 0.408000 2 +SPEAKER 00884 0 92.689000 8.982000 2 +SPEAKER 00884 0 104.067040 2.474360 2 +SPEAKER 00884 0 107.169610 4.371390 2 +SPEAKER 00884 0 113.226000 2.463000 2 +SPEAKER 00884 0 131.319000 0.611000 2 +SPEAKER 00884 0 135.393000 0.871000 2 +SPEAKER 00884 0 156.301000 1.009630 2 +SPEAKER 00884 0 179.467000 0.834000 2 +SPEAKER 00884 0 201.079870 0.980130 2 +SPEAKER 00884 0 205.849100 1.247900 2 +SPEAKER 00884 0 209.486000 0.537000 2 +SPEAKER 00884 0 211.023000 0.352000 2 +SPEAKER 00884 0 214.319000 0.370000 2 +SPEAKER 00884 0 223.504000 0.482000 2 +SPEAKER 00884 0 238.319000 0.594200 2 +SPEAKER 00884 0 256.912000 0.500000 2 +SPEAKER 00884 0 269.967000 0.574000 2 +SPEAKER 00884 0 285.662430 0.526570 2 +SPEAKER 00884 0 298.819000 0.407000 2 +SPEAKER 00884 0 301.578000 0.500000 2 +SPEAKER 00884 0 304.092690 1.859310 2 +SPEAKER 00884 0 313.523000 1.556870 2 +SPEAKER 00884 0 319.930000 0.537000 2 +SPEAKER 00884 0 322.226000 0.463000 2 +SPEAKER 00884 0 327.375000 0.759000 2 +SPEAKER 00884 0 348.615000 1.093000 2 +SPEAKER 00884 0 350.264000 1.018000 2 +SPEAKER 00884 0 354.338000 0.444000 2 +SPEAKER 00884 0 359.801000 1.055000 2 +SPEAKER 00884 0 366.301000 0.444000 2 +SPEAKER 00884 0 367.449000 2.259000 2 +SPEAKER 00884 0 374.105510 0.472490 2 +SPEAKER 00884 0 456.246530 1.525640 2 +SPEAKER 00884 0 459.301000 1.814000 2 +SPEAKER 00884 0 470.115000 1.093000 2 +SPEAKER 00884 0 484.477300 1.230700 2 +SPEAKER 00884 0 492.182430 2.321570 2 +SPEAKER 00884 0 521.554220 0.871800 2 +SPEAKER 00884 0 539.764000 0.592000 2 +SPEAKER 00884 0 556.041000 0.537000 2 +SPEAKER 00884 0 569.733710 1.730770 2 +SPEAKER 00884 0 573.689000 0.519000 2 +SPEAKER 00884 0 575.310630 3.212370 2 +SPEAKER 00884 0 587.282000 1.019000 2 +SPEAKER 00884 0 601.764000 1.296000 2 +SPEAKER 00884 0 622.528580 0.794880 2 +SPEAKER 00884 0 635.171000 0.722000 2 +SPEAKER 00884 0 660.819000 0.482000 2 +SPEAKER 00884 0 666.486000 1.222000 2 +SPEAKER 00884 0 686.930000 1.037000 2 +SPEAKER 00884 0 698.838000 0.833000 2 +SPEAKER 00884 0 723.246530 0.551280 2 +SPEAKER 00884 0 736.225000 0.650000 2 +SPEAKER 00884 0 748.282000 0.667000 2 +SPEAKER 00884 0 753.301000 2.870000 2 +SPEAKER 00884 0 759.893000 0.871000 2 +SPEAKER 00884 0 762.615000 0.556000 2 +SPEAKER 00884 0 767.097000 0.704000 2 +SPEAKER 00884 0 781.733710 2.511290 2 +SPEAKER 00884 0 787.004000 1.334000 2 +SPEAKER 00884 0 791.356000 2.945000 2 +SPEAKER 00884 0 795.501000 0.577000 2 +SPEAKER 00884 0 796.838000 14.203400 2 +SPEAKER 00884 0 811.849100 2.743590 2 +SPEAKER 00884 0 815.323460 0.692300 2 +SPEAKER 00884 0 820.449000 1.481000 2 +SPEAKER 00884 0 826.477300 0.948720 2 +SPEAKER 00884 0 0.523000 1.055000 3 +SPEAKER 00884 0 4.605510 0.576920 3 +SPEAKER 00884 0 6.118330 2.551280 3 +SPEAKER 00884 0 13.028580 3.141030 3 +SPEAKER 00884 0 20.387560 2.413440 3 +SPEAKER 00884 0 25.951660 1.534340 3 +SPEAKER 00884 0 31.977300 3.082700 3 +SPEAKER 00884 0 35.938840 0.679490 3 +SPEAKER 00884 0 39.597000 0.352000 3 +SPEAKER 00884 0 41.259350 3.022650 3 +SPEAKER 00884 0 48.023000 0.518000 3 +SPEAKER 00884 0 53.486000 0.740000 3 +SPEAKER 00884 0 56.208000 0.705200 3 +SPEAKER 00884 0 58.875000 1.777000 3 +SPEAKER 00884 0 68.004000 1.260000 3 +SPEAKER 00884 0 72.486000 0.500000 3 +SPEAKER 00884 0 84.245000 0.642560 3 +SPEAKER 00884 0 91.245000 0.611000 3 +SPEAKER 00884 0 95.528580 0.487180 3 +SPEAKER 00884 0 97.764000 0.610740 3 +SPEAKER 00884 0 102.208000 0.907000 3 +SPEAKER 00884 0 112.092690 0.512820 3 +SPEAKER 00884 0 116.745000 2.074000 3 +SPEAKER 00884 0 120.990120 0.976880 3 +SPEAKER 00884 0 123.964480 0.897440 3 +SPEAKER 00884 0 125.592690 0.911310 3 +SPEAKER 00884 0 127.467000 1.394920 3 +SPEAKER 00884 0 132.023000 2.796000 3 +SPEAKER 00884 0 136.759350 0.538460 3 +SPEAKER 00884 0 142.449000 0.500000 3 +SPEAKER 00884 0 147.105510 0.732490 3 +SPEAKER 00884 0 154.195250 0.961540 3 +SPEAKER 00884 0 157.156790 3.569210 3 +SPEAKER 00884 0 162.875000 1.203000 3 +SPEAKER 00884 0 165.115000 1.778000 3 +SPEAKER 00884 0 171.118330 0.833330 3 +SPEAKER 00884 0 172.784990 2.500000 3 +SPEAKER 00884 0 180.338000 1.754690 3 +SPEAKER 00884 0 183.523000 0.500000 3 +SPEAKER 00884 0 186.708070 1.025640 3 +SPEAKER 00884 0 190.782000 0.815000 3 +SPEAKER 00884 0 195.430000 0.445000 3 +SPEAKER 00884 0 198.652000 1.926000 3 +SPEAKER 00884 0 201.726000 0.815000 3 +SPEAKER 00884 0 205.838000 7.888000 3 +SPEAKER 00884 0 214.986000 3.815000 3 +SPEAKER 00884 0 221.004000 1.871000 3 +SPEAKER 00884 0 224.060000 4.426000 3 +SPEAKER 00884 0 230.097000 1.648000 3 +SPEAKER 00884 0 234.092690 3.671310 3 +SPEAKER 00884 0 240.615000 1.695630 3 +SPEAKER 00884 0 243.002940 1.730770 3 +SPEAKER 00884 0 246.282000 2.648000 3 +SPEAKER 00884 0 252.004000 3.834000 3 +SPEAKER 00884 0 257.671000 6.185000 3 +SPEAKER 00884 0 268.726000 0.463000 3 +SPEAKER 00884 0 270.504000 2.834000 3 +SPEAKER 00884 0 275.375000 4.000000 3 +SPEAKER 00884 0 280.449000 1.537000 3 +SPEAKER 00884 0 283.097000 2.685000 3 +SPEAKER 00884 0 286.951660 3.115380 3 +SPEAKER 00884 0 290.605510 6.417490 3 +SPEAKER 00884 0 300.412000 3.592000 3 +SPEAKER 00884 0 306.079000 3.555000 3 +SPEAKER 00884 0 311.078000 1.723000 3 +SPEAKER 00884 0 315.490120 3.773880 3 +SPEAKER 00884 0 320.486000 0.740000 3 +SPEAKER 00884 0 323.189000 1.130000 3 +SPEAKER 00884 0 325.349100 1.302900 3 +SPEAKER 00884 0 328.967000 3.019000 3 +SPEAKER 00884 0 335.875000 0.703000 3 +SPEAKER 00884 0 339.152000 0.519000 3 +SPEAKER 00884 0 344.060000 3.759000 3 +SPEAKER 00884 0 352.614000 1.131000 3 +SPEAKER 00884 0 355.105510 4.306490 3 +SPEAKER 00884 0 361.930000 2.829350 3 +SPEAKER 00884 0 368.338000 0.485460 3 +SPEAKER 00884 0 371.671000 1.315000 3 +SPEAKER 00884 0 377.264000 3.370000 3 +SPEAKER 00884 0 381.682430 1.076920 3 +SPEAKER 00884 0 383.784990 3.333340 3 +SPEAKER 00884 0 389.336280 1.278720 3 +SPEAKER 00884 0 393.656790 0.576920 3 +SPEAKER 00884 0 396.134000 3.296000 3 +SPEAKER 00884 0 401.949000 2.426000 3 +SPEAKER 00884 0 410.115000 0.519000 3 +SPEAKER 00884 0 414.208000 0.630000 3 +SPEAKER 00884 0 417.097000 0.981000 3 +SPEAKER 00884 0 420.523000 0.778000 3 +SPEAKER 00884 0 421.930000 0.519000 3 +SPEAKER 00884 0 428.951660 0.923080 3 +SPEAKER 00884 0 433.023000 3.000000 3 +SPEAKER 00884 0 437.912000 1.783250 3 +SPEAKER 00884 0 440.823460 3.948710 3 +SPEAKER 00884 0 445.426020 1.089740 3 +SPEAKER 00884 0 447.047040 0.623960 3 +SPEAKER 00884 0 449.745000 1.037000 3 +SPEAKER 00884 0 453.486000 0.796000 3 +SPEAKER 00884 0 458.912000 0.777000 3 +SPEAKER 00884 0 461.615000 1.649000 3 +SPEAKER 00884 0 465.745000 2.732300 3 +SPEAKER 00884 0 469.745000 1.185000 3 +SPEAKER 00884 0 473.412000 1.814000 3 +SPEAKER 00884 0 478.143970 4.953030 3 +SPEAKER 00884 0 487.782000 3.667000 3 +SPEAKER 00884 0 492.504000 0.667000 3 +SPEAKER 00884 0 494.208000 0.574000 3 +SPEAKER 00884 0 495.819000 4.500000 3 +SPEAKER 00884 0 503.264000 2.796000 3 +SPEAKER 00884 0 507.152000 1.834000 3 +SPEAKER 00884 0 512.413200 5.127800 3 +SPEAKER 00884 0 518.523000 1.907000 3 +SPEAKER 00884 0 523.054220 0.974360 3 +SPEAKER 00884 0 526.733710 0.678290 3 +SPEAKER 00884 0 528.464480 4.169520 3 +SPEAKER 00884 0 534.578000 4.463000 3 +SPEAKER 00884 0 545.784990 1.071010 3 +SPEAKER 00884 0 547.708000 6.074000 3 +SPEAKER 00884 0 558.949000 0.537000 3 +SPEAKER 00884 0 564.504000 3.111000 3 +SPEAKER 00884 0 570.349100 2.765900 3 +SPEAKER 00884 0 579.430000 6.945000 3 +SPEAKER 00884 0 588.905000 10.674870 3 +SPEAKER 00884 0 603.875000 0.986920 3 +SPEAKER 00884 0 606.226000 1.075000 3 +SPEAKER 00884 0 610.671000 1.444000 3 +SPEAKER 00884 0 613.689000 6.275480 3 +SPEAKER 00884 0 621.282000 1.741000 3 +SPEAKER 00884 0 627.671000 0.722000 3 +SPEAKER 00884 0 630.282000 0.667000 3 +SPEAKER 00884 0 636.143970 0.694030 3 +SPEAKER 00884 0 640.246530 3.868470 3 +SPEAKER 00884 0 647.338000 0.926000 3 +SPEAKER 00884 0 649.430000 1.111000 3 +SPEAKER 00884 0 651.875000 1.926000 3 +SPEAKER 00884 0 656.745000 2.463000 3 +SPEAKER 00884 0 663.041000 1.482000 3 +SPEAKER 00884 0 666.689000 3.000000 3 +SPEAKER 00884 0 670.592690 4.559310 3 +SPEAKER 00884 0 676.782000 0.889000 3 +SPEAKER 00884 0 678.708000 2.407000 3 +SPEAKER 00884 0 681.912000 2.296000 3 +SPEAKER 00884 0 688.449000 4.296000 3 +SPEAKER 00884 0 693.708000 3.704000 3 +SPEAKER 00884 0 699.097000 0.546970 3 +SPEAKER 00884 0 702.634000 2.630000 3 +SPEAKER 00884 0 709.338000 2.426000 3 +SPEAKER 00884 0 714.515760 0.474360 3 +SPEAKER 00884 0 715.772170 1.115390 3 +SPEAKER 00884 0 717.733710 3.973290 3 +SPEAKER 00884 0 723.838000 0.481000 3 +SPEAKER 00884 0 725.652000 0.389000 3 +SPEAKER 00884 0 729.156790 3.125210 3 +SPEAKER 00884 0 733.245000 1.593000 3 +SPEAKER 00884 0 739.319000 7.482000 3 +SPEAKER 00884 0 753.856000 0.500000 3 +SPEAKER 00884 0 755.967000 0.485000 3 +SPEAKER 00884 0 759.078000 0.519000 3 +SPEAKER 00884 0 760.356000 0.611000 3 +SPEAKER 00884 0 761.726000 1.712840 3 +SPEAKER 00884 0 764.893000 1.056000 3 +SPEAKER 00884 0 767.764000 0.851000 3 +SPEAKER 00884 0 770.797810 0.576930 3 +SPEAKER 00884 0 773.152000 5.350940 3 +SPEAKER 00884 0 779.067040 1.820520 3 +SPEAKER 00884 0 787.097000 3.559790 3 +SPEAKER 00884 0 792.689000 0.797000 3 +SPEAKER 00884 0 794.951660 0.849340 3 +SPEAKER 00884 0 822.438840 0.807690 3 +SPEAKER 00884 0 825.004000 0.834000 3 +SPEAKER 00884 0 2.182430 1.155570 4 +SPEAKER 00884 0 9.861920 2.420080 4 +SPEAKER 00884 0 16.246530 1.183470 4 +SPEAKER 00884 0 28.336280 2.910250 4 +SPEAKER 00884 0 33.115000 0.463000 4 +SPEAKER 00884 0 53.938840 0.628200 4 +SPEAKER 00884 0 63.349100 1.505900 4 +SPEAKER 00884 0 69.708000 1.852000 4 +SPEAKER 00884 0 74.597000 0.816200 4 +SPEAKER 00884 0 77.004000 12.685000 4 +SPEAKER 00884 0 90.949000 0.486000 4 +SPEAKER 00884 0 94.819000 0.542000 4 +SPEAKER 00884 0 102.301000 0.481000 4 +SPEAKER 00884 0 132.004000 0.667000 4 +SPEAKER 00884 0 156.671000 2.267840 4 +SPEAKER 00884 0 219.523000 0.500000 4 +SPEAKER 00884 0 226.592000 0.597000 4 +SPEAKER 00884 0 230.134000 1.037000 4 +SPEAKER 00884 0 264.745000 0.500000 4 +SPEAKER 00884 0 280.097000 0.537000 4 +SPEAKER 00884 0 285.413200 1.053800 4 +SPEAKER 00884 0 290.467000 1.330810 4 +SPEAKER 00884 0 297.964480 2.206520 4 +SPEAKER 00884 0 321.856000 0.519000 4 +SPEAKER 00884 0 328.782000 0.870000 4 +SPEAKER 00884 0 334.597000 0.685000 4 +SPEAKER 00884 0 348.819000 0.870000 4 +SPEAKER 00884 0 359.856000 0.963000 4 +SPEAKER 00884 0 367.078000 0.723000 4 +SPEAKER 00884 0 383.264000 0.481000 4 +SPEAKER 00884 0 387.523000 0.574000 4 +SPEAKER 00884 0 391.949000 1.037000 4 +SPEAKER 00884 0 400.134000 1.222000 4 +SPEAKER 00884 0 408.092690 8.356310 4 +SPEAKER 00884 0 418.671000 0.648000 4 +SPEAKER 00884 0 420.554220 0.801780 4 +SPEAKER 00884 0 422.671000 2.611000 4 +SPEAKER 00884 0 443.592690 0.596310 4 +SPEAKER 00884 0 444.913200 0.961800 4 +SPEAKER 00884 0 451.412000 1.685000 4 +SPEAKER 00884 0 454.801000 0.592000 4 +SPEAKER 00884 0 461.615000 3.037000 4 +SPEAKER 00884 0 469.356000 0.833000 4 +SPEAKER 00884 0 471.784990 0.960010 4 +SPEAKER 00884 0 476.338000 1.023920 4 +SPEAKER 00884 0 485.060000 2.389000 4 +SPEAKER 00884 0 489.977300 0.619700 4 +SPEAKER 00884 0 492.838000 2.370000 4 +SPEAKER 00884 0 501.523000 4.389000 4 +SPEAKER 00884 0 517.597000 0.500000 4 +SPEAKER 00884 0 523.078000 1.815000 4 +SPEAKER 00884 0 533.426020 0.858970 4 +SPEAKER 00884 0 547.926020 1.205130 4 +SPEAKER 00884 0 555.078000 2.945000 4 +SPEAKER 00884 0 562.926000 1.171000 4 +SPEAKER 00884 0 586.523000 2.611000 4 +SPEAKER 00884 0 607.930000 0.889000 4 +SPEAKER 00884 0 623.233710 0.628210 4 +SPEAKER 00884 0 624.523000 5.222000 4 +SPEAKER 00884 0 631.356000 4.019000 4 +SPEAKER 00884 0 638.578000 0.815000 4 +SPEAKER 00884 0 654.393000 0.574000 4 +SPEAKER 00884 0 659.951660 1.923340 4 +SPEAKER 00884 0 663.297810 2.540190 4 +SPEAKER 00884 0 682.105510 0.807690 4 +SPEAKER 00884 0 692.400380 1.622620 4 +SPEAKER 00884 0 697.838000 0.722000 4 +SPEAKER 00884 0 699.208000 3.653920 4 +SPEAKER 00884 0 722.412000 2.463000 4 +SPEAKER 00884 0 726.720890 0.692310 4 +SPEAKER 00884 0 735.387560 1.283440 4 +SPEAKER 00884 0 747.949000 2.981000 4 +SPEAKER 00884 0 757.134000 3.074000 4 +SPEAKER 00884 0 761.689000 1.482000 4 +SPEAKER 00884 0 764.041000 0.556000 4 +SPEAKER 00884 0 766.375000 0.648000 4 +SPEAKER 00884 0 768.912000 1.222000 4 +SPEAKER 00884 0 776.449000 1.185000 4 +SPEAKER 00884 0 781.486000 1.092000 4 +SPEAKER 00884 0 784.523000 1.903020 4 +SPEAKER 00884 0 791.189000 2.352000 4 +SPEAKER 00884 0 815.708000 0.741000 4 +SPEAKER 00884 0 817.486000 1.914380 4 +SPEAKER 00884 0 10.823460 0.846150 1 +SPEAKER 00884 0 44.195250 1.530750 1 +SPEAKER 00884 0 48.152000 1.963000 1 +SPEAKER 00884 0 50.764000 2.759000 1 +SPEAKER 00884 0 54.523000 0.444000 1 +SPEAKER 00884 0 62.413200 1.424800 1 +SPEAKER 00884 0 65.195250 1.419750 1 +SPEAKER 00884 0 90.143970 0.435900 1 +SPEAKER 00884 0 123.028580 0.730770 1 +SPEAKER 00884 0 136.208000 0.602630 1 +SPEAKER 00884 0 181.772170 4.602830 1 +SPEAKER 00884 0 187.118330 3.126670 1 +SPEAKER 00884 0 191.430000 7.574000 1 +SPEAKER 00884 0 201.631150 3.782050 1 +SPEAKER 00884 0 227.449000 3.037000 1 +SPEAKER 00884 0 232.023000 0.981000 1 +SPEAKER 00884 0 237.838000 1.959810 1 +SPEAKER 00884 0 265.708000 3.518000 1 +SPEAKER 00884 0 280.913200 0.646800 1 +SPEAKER 00884 0 299.078000 0.760000 1 +SPEAKER 00884 0 304.171000 0.722000 1 +SPEAKER 00884 0 313.849100 1.038460 1 +SPEAKER 00884 0 322.226000 0.538000 1 +SPEAKER 00884 0 328.310630 0.705130 1 +SPEAKER 00884 0 335.171000 3.126810 1 +SPEAKER 00884 0 350.245000 1.315000 1 +SPEAKER 00884 0 354.301000 0.518000 1 +SPEAKER 00884 0 360.078000 0.593000 1 +SPEAKER 00884 0 370.375000 0.435630 1 +SPEAKER 00884 0 391.856000 0.833000 1 +SPEAKER 00884 0 444.023000 0.741000 1 +SPEAKER 00884 0 461.189000 0.612000 1 +SPEAKER 00884 0 469.930000 1.093000 1 +SPEAKER 00884 0 484.502940 1.038060 1 +SPEAKER 00884 0 486.208000 0.796000 1 +SPEAKER 00884 0 493.560000 0.558330 1 +SPEAKER 00884 0 496.118330 1.012820 1 +SPEAKER 00884 0 504.745000 0.722000 1 +SPEAKER 00884 0 541.319000 0.982000 1 +SPEAKER 00884 0 556.375000 0.500000 1 +SPEAKER 00884 0 568.759350 0.874650 1 +SPEAKER 00884 0 623.615000 1.297000 1 +SPEAKER 00884 0 660.118330 0.948710 1 +SPEAKER 00884 0 666.319000 0.556000 1 +SPEAKER 00884 0 667.634000 0.708000 1 +SPEAKER 00884 0 699.912000 0.777000 1 +SPEAKER 00884 0 723.245000 0.593000 1 +SPEAKER 00884 0 736.597000 0.518000 1 +SPEAKER 00884 0 764.319000 1.926000 1 +SPEAKER 00884 0 792.464480 0.743520 1 +SPEAKER 00884 0 814.189000 1.019000 1 +SPEAKER 00884 0 822.669610 0.964390 1 +SPEAKER 00884 0 827.986000 0.703000 1 +SPEAKER 00884 0 24.900380 0.788620 0 +SPEAKER 00884 0 45.745000 0.778000 0 +SPEAKER 00884 0 50.097000 0.555000 0 +SPEAKER 00884 0 90.689000 0.445000 0 +SPEAKER 00884 0 125.708070 0.564100 0 +SPEAKER 00884 0 128.105510 0.858970 0 +SPEAKER 00884 0 129.720890 1.191110 0 +SPEAKER 00884 0 138.208000 3.685000 0 +SPEAKER 00884 0 143.373000 3.446000 0 +SPEAKER 00884 0 148.208000 2.679560 0 +SPEAKER 00884 0 154.438840 1.325160 0 +SPEAKER 00884 0 176.356000 1.082840 0 +SPEAKER 00884 0 203.521000 0.594000 0 +SPEAKER 00884 0 219.745000 0.722000 0 +SPEAKER 00884 0 245.041400 1.025640 0 +SPEAKER 00884 0 250.284990 0.923010 0 +SPEAKER 00884 0 265.504000 0.500000 0 +SPEAKER 00884 0 303.449000 0.848810 0 +SPEAKER 00884 0 315.097000 0.662350 0 +SPEAKER 00884 0 360.615000 0.387940 0 +SPEAKER 00884 0 366.449000 0.444000 0 +SPEAKER 00884 0 391.220890 0.987110 0 +SPEAKER 00884 0 419.078000 0.741000 0 +SPEAKER 00884 0 471.226000 0.649000 0 +SPEAKER 00884 0 475.301000 0.555000 0 +SPEAKER 00884 0 487.132000 0.617000 0 +SPEAKER 00884 0 540.597000 0.555000 0 +SPEAKER 00884 0 556.875000 0.463000 0 +SPEAKER 00884 0 568.387560 0.628200 0 +SPEAKER 00884 0 574.689000 0.500000 0 +SPEAKER 00884 0 635.541000 0.574000 0 +SPEAKER 00884 0 637.143970 1.231030 0 +SPEAKER 00884 0 644.189000 0.926000 0 +SPEAKER 00884 0 659.579870 0.820510 0 +SPEAKER 00884 0 699.671000 1.148000 0 +SPEAKER 00884 0 749.143970 0.768030 0 +SPEAKER 00884 0 764.893000 0.741000 0 +SPEAKER 00884 0 793.134000 0.704000 0 +SPEAKER 00884 0 814.990120 0.525640 0 +SPEAKER 00884 0 822.134000 1.389000 0 diff --git a/rttm/many/00906.rttm b/rttm/many/00906.rttm new file mode 100644 index 0000000000000000000000000000000000000000..3ca13ae038715597aa61995004edc32e1ff7fe23 --- /dev/null +++ b/rttm/many/00906.rttm @@ -0,0 +1,18 @@ +SPEAKER 00906 0 0.000000 1.763510 0 +SPEAKER 00906 0 2.571000 0.753990 0 +SPEAKER 00906 0 3.984000 0.299900 0 +SPEAKER 00906 0 10.591180 2.810910 0 +SPEAKER 00906 0 14.966000 1.136090 0 +SPEAKER 00906 0 7.207000 2.080000 h2 +SPEAKER 00906 0 22.001000 0.366110 h2 +SPEAKER 00906 0 25.207950 0.388890 h2 +SPEAKER 00906 0 26.124690 0.416310 h2 +SPEAKER 00906 0 15.257000 1.722060 1 +SPEAKER 00906 0 20.096840 1.962970 1 +SPEAKER 00906 0 23.783000 1.832000 1 +SPEAKER 00906 0 4.356100 2.409620 h0 +SPEAKER 00906 0 16.023000 0.661000 h0 +SPEAKER 00906 0 21.928000 1.045170 h0 +SPEAKER 00906 0 4.802000 2.636450 h1 +SPEAKER 00906 0 22.274000 1.193210 h1 +SPEAKER 00906 0 25.655000 0.666660 h1 diff --git a/rttm/many/00913.rttm b/rttm/many/00913.rttm new file mode 100644 index 0000000000000000000000000000000000000000..9451bd3970797ddc2dcba4c4d31e37f9f198d4d5 --- /dev/null +++ b/rttm/many/00913.rttm @@ -0,0 +1,17 @@ +SPEAKER 00913 0 0.000000 2.295470 2 +SPEAKER 00913 0 2.946270 3.071420 2 +SPEAKER 00913 0 6.652620 1.378940 2 +SPEAKER 00913 0 9.096500 9.165500 2 +SPEAKER 00913 0 19.197920 3.518080 2 +SPEAKER 00913 0 1.034000 1.304000 0 +SPEAKER 00913 0 6.335150 1.032850 0 +SPEAKER 00913 0 8.323000 0.838340 0 +SPEAKER 00913 0 10.514000 0.476600 0 +SPEAKER 00913 0 22.717000 0.620000 0 +SPEAKER 00913 0 5.893040 0.267510 1 +SPEAKER 00913 0 18.624750 0.260670 1 +SPEAKER 00913 0 22.701000 0.637000 1 +SPEAKER 00913 0 7.652620 1.081890 h0 +SPEAKER 00913 0 11.140000 1.197000 h0 +SPEAKER 00913 0 18.628810 0.277890 h0 +SPEAKER 00913 0 13.303410 0.841270 h1 diff --git a/rttm/many/00919.rttm b/rttm/many/00919.rttm new file mode 100644 index 0000000000000000000000000000000000000000..7249418f8413fcd831d81f72bfe6d4d0fd746a77 --- /dev/null +++ b/rttm/many/00919.rttm @@ -0,0 +1,58 @@ +SPEAKER 00919 0 0.634000 0.926000 1 +SPEAKER 00919 0 3.084060 0.901940 1 +SPEAKER 00919 0 5.537550 0.988370 1 +SPEAKER 00919 0 8.293370 1.348830 1 +SPEAKER 00919 0 11.281740 2.500260 1 +SPEAKER 00919 0 15.634000 1.315000 1 +SPEAKER 00919 0 18.979410 1.321590 1 +SPEAKER 00919 0 23.235230 1.546510 1 +SPEAKER 00919 0 26.130580 1.476740 1 +SPEAKER 00919 0 29.270110 1.093020 1 +SPEAKER 00919 0 33.502670 1.395350 1 +SPEAKER 00919 0 36.409650 1.918600 1 +SPEAKER 00919 0 39.037550 4.953490 1 +SPEAKER 00919 0 47.768000 1.755000 1 +SPEAKER 00919 0 57.208000 1.248160 1 +SPEAKER 00919 0 65.270110 11.233890 1 +SPEAKER 00919 0 77.502670 0.953490 1 +SPEAKER 00919 0 86.107320 4.767440 1 +SPEAKER 00919 0 92.107320 0.378680 1 +SPEAKER 00919 0 3.072440 0.825580 0 +SPEAKER 00919 0 5.339880 1.174420 0 +SPEAKER 00919 0 7.967780 1.337210 0 +SPEAKER 00919 0 11.281740 0.648260 0 +SPEAKER 00919 0 17.223600 1.362320 0 +SPEAKER 00919 0 24.115000 0.760000 0 +SPEAKER 00919 0 26.328250 1.069770 0 +SPEAKER 00919 0 33.595690 1.023260 0 +SPEAKER 00919 0 35.560810 2.054190 0 +SPEAKER 00919 0 49.652000 1.519000 0 +SPEAKER 00919 0 65.223600 2.225400 0 +SPEAKER 00919 0 68.132000 5.409000 0 +SPEAKER 00919 0 90.816620 1.255820 0 +SPEAKER 00919 0 6.539000 0.591580 h0 +SPEAKER 00919 0 13.979410 0.930240 h0 +SPEAKER 00919 0 16.967780 1.093030 h0 +SPEAKER 00919 0 20.301000 1.000000 h0 +SPEAKER 00919 0 30.258480 1.161520 h0 +SPEAKER 00919 0 42.642200 2.755820 h0 +SPEAKER 00919 0 46.308000 1.418000 h0 +SPEAKER 00919 0 49.386390 1.755810 h0 +SPEAKER 00919 0 58.502670 1.627910 h0 +SPEAKER 00919 0 76.595690 0.639540 h0 +SPEAKER 00919 0 80.025920 2.046520 h0 +SPEAKER 00919 0 5.514300 1.197670 3 +SPEAKER 00919 0 7.149000 2.207620 3 +SPEAKER 00919 0 21.398020 1.162790 3 +SPEAKER 00919 0 31.223600 1.780400 3 +SPEAKER 00919 0 52.560810 1.443190 3 +SPEAKER 00919 0 57.246850 1.383730 3 +SPEAKER 00919 0 60.014300 1.325580 3 +SPEAKER 00919 0 62.688720 1.372090 3 +SPEAKER 00919 0 76.956160 1.058140 3 +SPEAKER 00919 0 78.421270 1.360470 3 +SPEAKER 00919 0 90.700340 1.209310 3 +SPEAKER 00919 0 56.525920 0.720930 2 +SPEAKER 00919 0 60.764990 1.714420 2 +SPEAKER 00919 0 65.653830 1.872090 2 +SPEAKER 00919 0 85.967780 0.976750 2 diff --git a/rttm/many/00927.rttm b/rttm/many/00927.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4fa68d50c5a1b9c822dfbe27179052a1bc01c840 --- /dev/null +++ b/rttm/many/00927.rttm @@ -0,0 +1,84 @@ +SPEAKER 00927 0 0.023000 4.203000 2 +SPEAKER 00927 0 5.375000 1.814000 2 +SPEAKER 00927 0 8.432900 7.868100 2 +SPEAKER 00927 0 17.804990 1.310010 2 +SPEAKER 00927 0 19.634000 1.648000 2 +SPEAKER 00927 0 22.558000 1.000000 2 +SPEAKER 00927 0 24.597000 4.574000 2 +SPEAKER 00927 0 37.513660 1.490340 2 +SPEAKER 00927 0 39.980330 0.789780 2 +SPEAKER 00927 0 48.424770 0.511110 2 +SPEAKER 00927 0 60.374000 7.779830 2 +SPEAKER 00927 0 69.856000 6.389000 2 +SPEAKER 00927 0 76.764000 2.759000 2 +SPEAKER 00927 0 101.928000 6.687000 2 +SPEAKER 00927 0 118.171000 2.727020 2 +SPEAKER 00927 0 121.788990 0.471430 2 +SPEAKER 00927 0 124.817560 8.427440 2 +SPEAKER 00927 0 153.887560 0.692310 2 +SPEAKER 00927 0 155.669610 1.501390 2 +SPEAKER 00927 0 157.949000 1.000000 2 +SPEAKER 00927 0 160.003000 7.092690 2 +SPEAKER 00927 0 168.301000 5.370000 2 +SPEAKER 00927 0 174.782000 2.348580 2 +SPEAKER 00927 0 177.523000 1.463000 2 +SPEAKER 00927 0 180.142200 14.158800 2 +SPEAKER 00927 0 204.735230 1.418600 2 +SPEAKER 00927 0 229.560000 1.256620 2 +SPEAKER 00927 0 231.595690 3.168310 2 +SPEAKER 00927 0 242.700340 3.137660 2 +SPEAKER 00927 0 249.979410 0.988370 2 +SPEAKER 00927 0 252.781740 10.694330 2 +SPEAKER 00927 0 3.449050 1.925950 5 +SPEAKER 00927 0 6.560000 2.537000 5 +SPEAKER 00927 0 24.004000 1.114950 5 +SPEAKER 00927 0 43.301000 1.481000 5 +SPEAKER 00927 0 78.949000 2.018000 5 +SPEAKER 00927 0 82.302000 1.000000 5 +SPEAKER 00927 0 121.560000 2.286140 5 +SPEAKER 00927 0 133.446140 1.057860 5 +SPEAKER 00927 0 140.442000 2.544000 5 +SPEAKER 00927 0 156.980000 1.000000 5 +SPEAKER 00927 0 176.828250 0.663550 5 +SPEAKER 00927 0 213.002000 1.317000 5 +SPEAKER 00927 0 222.838000 0.946990 5 +SPEAKER 00927 0 250.319000 3.056000 5 +SPEAKER 00927 0 258.772170 0.265380 5 +SPEAKER 00927 0 16.479000 1.136000 1 +SPEAKER 00927 0 81.221000 1.468000 1 +SPEAKER 00927 0 111.967000 5.019000 1 +SPEAKER 00927 0 134.093000 6.171000 1 +SPEAKER 00927 0 174.208000 0.815000 1 +SPEAKER 00927 0 194.300000 10.593000 1 +SPEAKER 00927 0 206.097000 6.187990 1 +SPEAKER 00927 0 212.900380 16.914610 1 +SPEAKER 00927 0 234.816620 8.045300 1 +SPEAKER 00927 0 261.084060 0.534890 1 +SPEAKER 00927 0 263.057160 16.391840 1 +SPEAKER 00927 0 16.613000 1.000000 0 +SPEAKER 00927 0 17.908000 2.244000 0 +SPEAKER 00927 0 23.615000 0.829530 0 +SPEAKER 00927 0 81.356000 1.432680 0 +SPEAKER 00927 0 92.306000 1.611560 0 +SPEAKER 00927 0 135.338000 1.351000 0 +SPEAKER 00927 0 16.741000 1.000000 4 +SPEAKER 00927 0 21.096000 1.797000 4 +SPEAKER 00927 0 81.597000 1.156000 4 +SPEAKER 00927 0 94.301000 2.097020 4 +SPEAKER 00927 0 99.115000 1.145000 4 +SPEAKER 00927 0 121.023000 0.308850 4 +SPEAKER 00927 0 133.689000 1.000000 4 +SPEAKER 00927 0 173.444000 0.486000 4 +SPEAKER 00927 0 247.000000 0.426020 4 +SPEAKER 00927 0 274.692290 1.293710 4 +SPEAKER 00927 0 29.190000 31.166000 3 +SPEAKER 00927 0 68.688990 1.257150 3 +SPEAKER 00927 0 83.208000 18.722000 3 +SPEAKER 00927 0 108.678000 0.900000 3 +SPEAKER 00927 0 117.134000 1.969280 3 +SPEAKER 00927 0 119.912000 1.074000 3 +SPEAKER 00927 0 142.504000 13.768170 3 +SPEAKER 00927 0 167.226000 1.389000 3 +SPEAKER 00927 0 208.816620 1.687380 3 +SPEAKER 00927 0 248.412000 0.808890 3 +SPEAKER 00927 0 199.856000 2.056000 h0 diff --git a/rttm/many/00934.rttm b/rttm/many/00934.rttm new file mode 100644 index 0000000000000000000000000000000000000000..e80061b5a29a69c4545ef4c76d6597dfca95c649 --- /dev/null +++ b/rttm/many/00934.rttm @@ -0,0 +1,23 @@ +SPEAKER 00934 0 0.115000 4.959320 5 +SPEAKER 00934 0 23.963300 0.884620 5 +SPEAKER 00934 0 25.246000 6.209000 5 +SPEAKER 00934 0 1.097000 3.667000 4 +SPEAKER 00934 0 17.194000 2.992380 4 +SPEAKER 00934 0 25.197000 6.178000 4 +SPEAKER 00934 0 1.115000 3.611000 1 +SPEAKER 00934 0 25.230000 6.193000 1 +SPEAKER 00934 0 1.097000 3.555000 6 +SPEAKER 00934 0 25.213000 6.275000 6 +SPEAKER 00934 0 1.115000 3.482000 3 +SPEAKER 00934 0 5.424840 5.430770 3 +SPEAKER 00934 0 11.417150 4.353850 3 +SPEAKER 00934 0 25.262000 6.274000 3 +SPEAKER 00934 0 1.115000 3.463000 7 +SPEAKER 00934 0 25.230000 6.290000 7 +SPEAKER 00934 0 1.171000 3.407000 2 +SPEAKER 00934 0 25.262000 6.274000 2 +SPEAKER 00934 0 1.171000 3.426000 8 +SPEAKER 00934 0 25.310000 6.274000 8 +SPEAKER 00934 0 1.208000 3.370000 0 +SPEAKER 00934 0 20.971000 3.274000 0 +SPEAKER 00934 0 25.310000 6.274000 0 diff --git a/rttm/many/00935.rttm b/rttm/many/00935.rttm new file mode 100644 index 0000000000000000000000000000000000000000..a3fd961b6587e372696b043f05aec69dd5bfbe8d --- /dev/null +++ b/rttm/many/00935.rttm @@ -0,0 +1,23 @@ +SPEAKER 00935 0 0.237540 0.970590 3 +SPEAKER 00935 0 5.512050 0.519610 3 +SPEAKER 00935 0 6.472840 3.598040 3 +SPEAKER 00935 0 10.521860 1.952150 3 +SPEAKER 00935 0 13.080680 0.441180 3 +SPEAKER 00935 0 15.237540 3.166460 3 +SPEAKER 00935 0 0.894410 0.857590 6 +SPEAKER 00935 0 1.806170 0.765880 1 +SPEAKER 00935 0 2.992450 1.970580 1 +SPEAKER 00935 0 6.502250 0.362750 1 +SPEAKER 00935 0 9.709000 0.584000 1 +SPEAKER 00935 0 12.247350 3.476650 1 +SPEAKER 00935 0 16.747350 0.813720 1 +SPEAKER 00935 0 28.930000 3.135000 1 +SPEAKER 00935 0 2.972840 1.107840 2 +SPEAKER 00935 0 16.786560 0.590440 2 +SPEAKER 00935 0 36.393000 0.504000 2 +SPEAKER 00935 0 5.561070 0.585930 0 +SPEAKER 00935 0 13.825780 0.696080 0 +SPEAKER 00935 0 17.070880 0.705880 0 +SPEAKER 00935 0 18.272000 7.347900 h0 +SPEAKER 00935 0 25.992450 3.392940 h0 +SPEAKER 00935 0 31.414010 4.625990 h0 diff --git a/rttm/many/00938.rttm b/rttm/many/00938.rttm new file mode 100644 index 0000000000000000000000000000000000000000..b8e38d2c578cbef63e59fb72838f9a087883820d --- /dev/null +++ b/rttm/many/00938.rttm @@ -0,0 +1,70 @@ +SPEAKER 00938 0 0.151660 0.909410 1 +SPEAKER 00938 0 2.051270 3.666670 1 +SPEAKER 00938 0 15.218000 0.931310 1 +SPEAKER 00938 0 40.423820 1.549020 1 +SPEAKER 00938 0 51.293000 1.758270 1 +SPEAKER 00938 0 62.021860 3.009800 1 +SPEAKER 00938 0 1.171000 1.296000 5 +SPEAKER 00938 0 5.685000 0.520800 5 +SPEAKER 00938 0 15.486000 1.037000 5 +SPEAKER 00938 0 18.333000 5.041460 5 +SPEAKER 00938 0 24.930000 0.576040 5 +SPEAKER 00938 0 27.453410 1.172590 5 +SPEAKER 00938 0 34.321830 0.925260 5 +SPEAKER 00938 0 36.596840 11.077870 5 +SPEAKER 00938 0 51.129000 1.314000 5 +SPEAKER 00938 0 53.946140 2.385710 5 +SPEAKER 00938 0 59.131850 0.485710 5 +SPEAKER 00938 0 62.003000 0.607090 5 +SPEAKER 00938 0 65.660420 1.142860 5 +SPEAKER 00938 0 68.652000 3.794140 5 +SPEAKER 00938 0 73.660420 2.542860 5 +SPEAKER 00938 0 77.960420 1.214290 5 +SPEAKER 00938 0 79.893000 2.210280 5 +SPEAKER 00938 0 87.905240 5.938760 5 +SPEAKER 00938 0 1.253610 1.577930 7 +SPEAKER 00938 0 5.819060 3.870380 7 +SPEAKER 00938 0 56.374710 2.928570 7 +SPEAKER 00938 0 68.603280 0.911200 7 +SPEAKER 00938 0 75.746140 1.357140 7 +SPEAKER 00938 0 82.503280 1.228570 7 +SPEAKER 00938 0 6.928140 1.367370 6 +SPEAKER 00938 0 11.163930 1.770530 6 +SPEAKER 00938 0 14.041000 1.648440 6 +SPEAKER 00938 0 25.041290 2.129630 6 +SPEAKER 00938 0 56.615360 1.425930 6 +SPEAKER 00938 0 82.125000 0.490360 6 +SPEAKER 00938 0 7.708000 2.123080 2 +SPEAKER 00938 0 10.597000 1.040000 2 +SPEAKER 00938 0 23.331850 1.427150 2 +SPEAKER 00938 0 25.346140 0.728570 2 +SPEAKER 00938 0 27.418000 0.628140 2 +SPEAKER 00938 0 41.131850 0.685710 2 +SPEAKER 00938 0 52.654710 1.502850 2 +SPEAKER 00938 0 59.717560 2.085720 2 +SPEAKER 00938 0 64.989000 0.814280 2 +SPEAKER 00938 0 71.788990 2.642860 2 +SPEAKER 00938 0 78.946140 1.045710 2 +SPEAKER 00938 0 84.774000 1.014990 2 +SPEAKER 00938 0 88.503280 0.471720 2 +SPEAKER 00938 0 0.000680 0.413330 0 +SPEAKER 00938 0 9.486000 1.841430 0 +SPEAKER 00938 0 15.685800 0.926490 0 +SPEAKER 00938 0 26.016000 3.784400 0 +SPEAKER 00938 0 33.976070 1.441000 0 +SPEAKER 00938 0 35.997000 0.991500 0 +SPEAKER 00938 0 48.079000 2.788970 0 +SPEAKER 00938 0 65.049000 0.873020 0 +SPEAKER 00938 0 67.435530 0.918470 0 +SPEAKER 00938 0 83.786890 2.121620 0 +SPEAKER 00938 0 86.422020 0.945950 0 +SPEAKER 00938 0 16.611210 1.864860 3 +SPEAKER 00938 0 32.473000 1.606000 3 +SPEAKER 00938 0 41.125000 0.499720 3 +SPEAKER 00938 0 51.649000 1.544000 3 +SPEAKER 00938 0 66.449050 0.918920 3 +SPEAKER 00938 0 85.084180 2.373820 3 +SPEAKER 00938 0 36.417750 1.500000 4 +SPEAKER 00938 0 38.590000 0.913960 4 +SPEAKER 00938 0 49.969470 1.344830 4 +SPEAKER 00938 0 85.417750 1.810340 4 diff --git a/rttm/many/00939.rttm b/rttm/many/00939.rttm new file mode 100644 index 0000000000000000000000000000000000000000..8af69d6a6a6cda41c3e05cda3243049857f398db --- /dev/null +++ b/rttm/many/00939.rttm @@ -0,0 +1,18 @@ +SPEAKER 00939 0 1.181530 2.285470 2 +SPEAKER 00939 0 8.459000 2.111880 2 +SPEAKER 00939 0 16.149420 1.172130 2 +SPEAKER 00939 0 20.900380 1.511620 2 +SPEAKER 00939 0 24.326000 2.454570 2 +SPEAKER 00939 0 12.726000 0.989600 0 +SPEAKER 00939 0 17.486000 1.420000 0 +SPEAKER 00939 0 22.529000 2.397020 0 +SPEAKER 00939 0 12.836280 0.712720 1 +SPEAKER 00939 0 15.459000 0.954000 1 +SPEAKER 00939 0 19.946000 0.880000 1 +SPEAKER 00939 0 28.206000 3.380000 1 +SPEAKER 00939 0 32.764180 2.221820 1 +SPEAKER 00939 0 0.000000 1.814860 h0 +SPEAKER 00939 0 4.308200 2.913330 h0 +SPEAKER 00939 0 14.326000 2.160000 h0 +SPEAKER 00939 0 31.560000 0.699350 h0 +SPEAKER 00939 0 35.926020 1.459980 h1 diff --git a/rttm/many/00978.rttm b/rttm/many/00978.rttm new file mode 100644 index 0000000000000000000000000000000000000000..25dd3f82cc0555bcd2a121315d0e4b37c76af2b7 --- /dev/null +++ b/rttm/many/00978.rttm @@ -0,0 +1,41 @@ +SPEAKER 00978 0 1.256630 0.645460 h0 +SPEAKER 00978 0 0.538450 5.435550 4 +SPEAKER 00978 0 9.638000 1.064090 4 +SPEAKER 00978 0 30.620000 0.900270 4 +SPEAKER 00978 0 39.644000 0.856000 4 +SPEAKER 00978 0 51.171440 2.868560 4 +SPEAKER 00978 0 1.356630 2.564370 3 +SPEAKER 00978 0 4.332070 1.483930 3 +SPEAKER 00978 0 6.540000 1.098450 3 +SPEAKER 00978 0 11.411180 1.542840 3 +SPEAKER 00978 0 15.765720 0.708280 3 +SPEAKER 00978 0 19.414000 0.507000 3 +SPEAKER 00978 0 25.518450 1.820000 3 +SPEAKER 00978 0 47.365720 1.500000 3 +SPEAKER 00978 0 8.065720 1.013280 5 +SPEAKER 00978 0 10.647540 1.326460 5 +SPEAKER 00978 0 12.447000 0.711000 5 +SPEAKER 00978 0 13.685000 2.421000 5 +SPEAKER 00978 0 17.502800 1.329270 5 +SPEAKER 00978 0 22.347540 1.481820 5 +SPEAKER 00978 0 25.156630 6.843370 5 +SPEAKER 00978 0 32.695250 2.734110 5 +SPEAKER 00978 0 35.800000 0.972170 5 +SPEAKER 00978 0 42.208070 4.949930 5 +SPEAKER 00978 0 47.836280 0.606340 5 +SPEAKER 00978 0 50.968050 0.550840 5 +SPEAKER 00978 0 53.165000 1.065760 5 +SPEAKER 00978 0 55.860250 2.056750 5 +SPEAKER 00978 0 14.637000 0.390190 0 +SPEAKER 00978 0 16.823000 1.106630 0 +SPEAKER 00978 0 18.832070 0.890240 0 +SPEAKER 00978 0 21.581000 0.702900 0 +SPEAKER 00978 0 31.836000 0.820630 0 +SPEAKER 00978 0 35.002090 0.564950 0 +SPEAKER 00978 0 36.921000 0.991000 0 +SPEAKER 00978 0 22.865720 2.009090 2 +SPEAKER 00978 0 27.238450 0.645450 2 +SPEAKER 00978 0 47.919000 1.290000 2 +SPEAKER 00978 0 53.993470 2.033900 2 +SPEAKER 00978 0 22.502090 1.609090 1 +SPEAKER 00978 0 54.044320 0.601010 1 diff --git a/rttm/many/00990.rttm b/rttm/many/00990.rttm new file mode 100644 index 0000000000000000000000000000000000000000..b537f8247f615eb95936bca9c530beb60b2908a4 --- /dev/null +++ b/rttm/many/00990.rttm @@ -0,0 +1,17 @@ +SPEAKER 00990 0 0.016000 1.090000 1 +SPEAKER 00990 0 1.473000 1.092000 1 +SPEAKER 00990 0 3.086000 1.395000 1 +SPEAKER 00990 0 11.241000 0.657020 1 +SPEAKER 00990 0 13.409650 0.983490 1 +SPEAKER 00990 0 14.805000 1.238000 1 +SPEAKER 00990 0 17.445000 1.090000 1 +SPEAKER 00990 0 19.745000 0.350690 1 +SPEAKER 00990 0 20.439000 1.637000 1 +SPEAKER 00990 0 24.239000 0.787000 1 +SPEAKER 00990 0 3.263510 3.717490 0 +SPEAKER 00990 0 7.351000 3.539000 0 +SPEAKER 00990 0 11.746850 1.505150 0 +SPEAKER 00990 0 23.133880 1.867120 0 +SPEAKER 00990 0 16.154000 0.837040 h0 +SPEAKER 00990 0 18.538000 1.000000 h1 +SPEAKER 00990 0 19.607320 0.709300 h2 diff --git a/rttm/many/01003.rttm b/rttm/many/01003.rttm new file mode 100644 index 0000000000000000000000000000000000000000..0bca7d8eb8b1e8cccf28400c3e629f3e173127b4 --- /dev/null +++ b/rttm/many/01003.rttm @@ -0,0 +1,46 @@ +SPEAKER 01003 0 1.963000 1.000000 3 +SPEAKER 01003 0 4.099000 2.238000 3 +SPEAKER 01003 0 8.234000 2.648000 3 +SPEAKER 01003 0 19.059810 0.652270 3 +SPEAKER 01003 0 23.744990 0.752010 3 +SPEAKER 01003 0 33.412000 1.129000 3 +SPEAKER 01003 0 35.171000 1.741000 3 +SPEAKER 01003 0 45.082000 0.385000 3 +SPEAKER 01003 0 61.079000 0.945580 3 +SPEAKER 01003 0 6.467000 1.834000 2 +SPEAKER 01003 0 8.893000 1.000000 2 +SPEAKER 01003 0 10.602000 2.772620 2 +SPEAKER 01003 0 13.828000 3.879950 2 +SPEAKER 01003 0 18.708000 1.407000 2 +SPEAKER 01003 0 21.930000 0.426000 2 +SPEAKER 01003 0 49.245000 0.519000 2 +SPEAKER 01003 0 52.670920 0.500080 2 +SPEAKER 01003 0 53.497000 1.000000 2 +SPEAKER 01003 0 60.983000 2.374920 2 +SPEAKER 01003 0 2.456000 0.826030 1 +SPEAKER 01003 0 3.822000 0.885950 1 +SPEAKER 01003 0 8.504000 1.436000 1 +SPEAKER 01003 0 17.707950 0.870050 1 +SPEAKER 01003 0 19.930000 1.982000 1 +SPEAKER 01003 0 22.967000 0.555770 1 +SPEAKER 01003 0 23.948690 1.796300 1 +SPEAKER 01003 0 26.079000 1.869690 1 +SPEAKER 01003 0 28.707950 2.574050 1 +SPEAKER 01003 0 31.893000 3.167000 1 +SPEAKER 01003 0 37.038000 0.485000 1 +SPEAKER 01003 0 37.873000 1.001620 1 +SPEAKER 01003 0 39.533000 1.415690 1 +SPEAKER 01003 0 41.388000 0.764000 1 +SPEAKER 01003 0 42.411000 1.000000 1 +SPEAKER 01003 0 45.163000 0.397000 1 +SPEAKER 01003 0 46.025000 2.257000 1 +SPEAKER 01003 0 49.838000 0.592000 1 +SPEAKER 01003 0 52.095000 0.724060 1 +SPEAKER 01003 0 53.273000 1.824000 1 +SPEAKER 01003 0 55.727000 2.555000 1 +SPEAKER 01003 0 58.561000 1.000000 1 +SPEAKER 01003 0 59.967000 1.315030 1 +SPEAKER 01003 0 61.810000 1.000000 1 +SPEAKER 01003 0 2.765000 1.000000 4 +SPEAKER 01003 0 5.078320 0.870680 4 +SPEAKER 01003 0 6.986000 1.000000 4 diff --git a/rttm/many/01008.rttm b/rttm/many/01008.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ab85854fc3fc21ddb699c235e0a0724425a7421c --- /dev/null +++ b/rttm/many/01008.rttm @@ -0,0 +1,18 @@ +SPEAKER 01008 0 0.045000 5.978000 0 +SPEAKER 01008 0 7.757440 1.142860 0 +SPEAKER 01008 0 10.063570 0.663260 0 +SPEAKER 01008 0 14.247240 1.682860 0 +SPEAKER 01008 0 17.634990 0.561230 0 +SPEAKER 01008 0 20.767650 0.693060 0 +SPEAKER 01008 0 3.400710 0.397550 4 +SPEAKER 01008 0 6.328870 1.064130 3 +SPEAKER 01008 0 14.247240 0.401760 3 +SPEAKER 01008 0 15.869690 0.642860 3 +SPEAKER 01008 0 17.043160 0.998310 3 +SPEAKER 01008 0 21.441120 1.333880 3 +SPEAKER 01008 0 4.190000 0.390680 1 +SPEAKER 01008 0 8.100290 2.921570 1 +SPEAKER 01008 0 11.434000 1.313240 1 +SPEAKER 01008 0 17.492140 3.486970 1 +SPEAKER 01008 0 4.471730 0.795920 2 +SPEAKER 01008 0 9.032950 1.551020 2 diff --git a/rttm/many/01011.rttm b/rttm/many/01011.rttm new file mode 100644 index 0000000000000000000000000000000000000000..0743ceb69701297c315d79bdc35d14af3fdf8d0d --- /dev/null +++ b/rttm/many/01011.rttm @@ -0,0 +1,17 @@ +SPEAKER 01011 0 0.504000 2.373260 0 +SPEAKER 01011 0 3.708000 1.972820 0 +SPEAKER 01011 0 10.669000 1.692000 0 +SPEAKER 01011 0 12.765000 8.720000 0 +SPEAKER 01011 0 22.041000 2.627920 0 +SPEAKER 01011 0 4.856000 2.021260 1 +SPEAKER 01011 0 7.078000 1.537000 7 +SPEAKER 01011 0 9.652000 0.433590 7 +SPEAKER 01011 0 29.445000 0.503000 7 +SPEAKER 01011 0 8.672000 0.392760 3 +SPEAKER 01011 0 30.265000 0.380000 3 +SPEAKER 01011 0 34.165000 0.420000 3 +SPEAKER 01011 0 8.127260 0.458330 6 +SPEAKER 01011 0 24.845000 0.490590 5 +SPEAKER 01011 0 25.749000 2.815000 5 +SPEAKER 01011 0 29.134000 1.130000 5 +SPEAKER 01011 0 31.227710 2.733290 5 diff --git a/rttm/many/01012.rttm b/rttm/many/01012.rttm new file mode 100644 index 0000000000000000000000000000000000000000..cb676260b1fae8d4b019ed745d82d7f3900b3ff9 --- /dev/null +++ b/rttm/many/01012.rttm @@ -0,0 +1,16 @@ +SPEAKER 01012 0 0.005000 1.203000 0 +SPEAKER 01012 0 4.001710 3.078620 0 +SPEAKER 01012 0 9.397240 0.953130 0 +SPEAKER 01012 0 12.310000 1.056000 0 +SPEAKER 01012 0 16.616000 1.610000 0 +SPEAKER 01012 0 0.140330 2.622580 1 +SPEAKER 01012 0 5.502000 1.529560 1 +SPEAKER 01012 0 15.724770 1.766670 1 +SPEAKER 01012 0 19.969220 1.011110 1 +SPEAKER 01012 0 7.824770 1.053340 2 +SPEAKER 01012 0 9.865000 1.757910 2 +SPEAKER 01012 0 13.058000 1.306000 2 +SPEAKER 01012 0 15.009000 1.306150 2 +SPEAKER 01012 0 18.270000 1.109000 2 +SPEAKER 01012 0 21.580330 0.622670 h0 +SPEAKER 01012 0 23.969220 1.671110 3 diff --git a/rttm/many/01036.rttm b/rttm/many/01036.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c2f50eb729e783e6d4e5551eba7de1e2a8089680 --- /dev/null +++ b/rttm/many/01036.rttm @@ -0,0 +1,46 @@ +SPEAKER 01036 0 0.011000 0.623000 3 +SPEAKER 01036 0 5.910510 0.642850 3 +SPEAKER 01036 0 14.726830 2.367350 3 +SPEAKER 01036 0 22.900300 4.030610 3 +SPEAKER 01036 0 27.298260 1.795920 3 +SPEAKER 01036 0 32.757440 1.438780 3 +SPEAKER 01036 0 35.012550 1.132650 3 +SPEAKER 01036 0 39.375000 3.963000 3 +SPEAKER 01036 0 48.665610 0.612240 3 +SPEAKER 01036 0 0.819000 0.932000 4 +SPEAKER 01036 0 4.941120 0.846940 4 +SPEAKER 01036 0 6.737040 0.571420 4 +SPEAKER 01036 0 10.849280 6.704080 4 +SPEAKER 01036 0 22.583970 0.469390 4 +SPEAKER 01036 0 25.267650 7.673470 4 +SPEAKER 01036 0 33.226830 1.826530 4 +SPEAKER 01036 0 36.282000 2.519000 4 +SPEAKER 01036 0 41.002340 4.724490 4 +SPEAKER 01036 0 49.114590 0.622450 4 +SPEAKER 01036 0 50.053360 2.397960 4 +SPEAKER 01036 0 2.216630 6.357140 2 +SPEAKER 01036 0 9.043570 0.540400 2 +SPEAKER 01036 0 14.339080 1.234690 2 +SPEAKER 01036 0 18.339080 4.173470 2 +SPEAKER 01036 0 23.012550 1.163260 2 +SPEAKER 01036 0 26.206420 1.390580 2 +SPEAKER 01036 0 39.083970 9.173470 2 +SPEAKER 01036 0 48.890100 6.459180 2 +SPEAKER 01036 0 55.624790 0.637210 2 +SPEAKER 01036 0 5.226000 0.371000 1 +SPEAKER 01036 0 6.523000 0.595000 1 +SPEAKER 01036 0 8.114590 0.673470 1 +SPEAKER 01036 0 21.578000 1.383530 1 +SPEAKER 01036 0 23.282000 1.138710 1 +SPEAKER 01036 0 26.226000 0.426000 1 +SPEAKER 01036 0 31.073770 0.469390 1 +SPEAKER 01036 0 34.267650 1.622450 1 +SPEAKER 01036 0 36.910510 1.030610 1 +SPEAKER 01036 0 39.175810 2.285720 1 +SPEAKER 01036 0 42.481930 1.244070 1 +SPEAKER 01036 0 49.451320 0.673470 1 +SPEAKER 01036 0 55.597000 0.667000 1 +SPEAKER 01036 0 9.838000 0.868420 0 +SPEAKER 01036 0 19.104380 1.273470 0 +SPEAKER 01036 0 35.737040 1.063960 0 +SPEAKER 01036 0 40.532950 1.153070 0 diff --git a/rttm/many/01039.rttm b/rttm/many/01039.rttm new file mode 100644 index 0000000000000000000000000000000000000000..01259c84f8f056a0c69934cce64a953e51598ba8 --- /dev/null +++ b/rttm/many/01039.rttm @@ -0,0 +1,44 @@ +SPEAKER 01039 0 0.000000 0.398000 1 +SPEAKER 01039 0 0.803410 0.753220 1 +SPEAKER 01039 0 4.525630 0.816610 1 +SPEAKER 01039 0 5.724040 1.009510 1 +SPEAKER 01039 0 19.047000 0.900000 1 +SPEAKER 01039 0 21.097060 2.163940 1 +SPEAKER 01039 0 23.962140 0.476190 1 +SPEAKER 01039 0 25.037380 3.666620 1 +SPEAKER 01039 0 28.983000 0.431710 1 +SPEAKER 01039 0 34.739920 1.349200 1 +SPEAKER 01039 0 37.470080 0.553320 1 +SPEAKER 01039 0 0.286000 2.316090 h0 +SPEAKER 01039 0 4.552000 1.402200 h0 +SPEAKER 01039 0 6.747000 0.969110 h0 +SPEAKER 01039 0 8.334000 1.517030 h0 +SPEAKER 01039 0 10.319280 0.498720 h0 +SPEAKER 01039 0 11.290000 0.528000 h0 +SPEAKER 01039 0 23.044000 1.045120 h0 +SPEAKER 01039 0 30.375000 1.923760 h0 +SPEAKER 01039 0 33.770000 1.096900 h0 +SPEAKER 01039 0 35.438330 0.436510 h0 +SPEAKER 01039 0 37.263730 0.261900 h0 +SPEAKER 01039 0 6.136740 0.604050 2 +SPEAKER 01039 0 13.660550 1.698410 2 +SPEAKER 01039 0 17.724040 0.864580 2 +SPEAKER 01039 0 18.954200 1.020800 2 +SPEAKER 01039 0 6.807000 2.061000 0 +SPEAKER 01039 0 9.247000 0.481330 0 +SPEAKER 01039 0 12.602000 0.421400 0 +SPEAKER 01039 0 16.847000 1.075770 0 +SPEAKER 01039 0 18.430390 0.992070 0 +SPEAKER 01039 0 21.147000 0.814000 0 +SPEAKER 01039 0 29.632000 0.818940 0 +SPEAKER 01039 0 32.900210 2.103790 0 +SPEAKER 01039 0 35.858960 1.157200 0 +SPEAKER 01039 0 38.161080 0.420290 0 +SPEAKER 01039 0 8.110360 1.507250 3 +SPEAKER 01039 0 10.110000 1.712000 3 +SPEAKER 01039 0 12.255790 1.222220 3 +SPEAKER 01039 0 14.507000 2.256730 3 +SPEAKER 01039 0 19.954200 1.119050 3 +SPEAKER 01039 0 29.813260 0.537770 3 +SPEAKER 01039 0 32.381000 1.994000 3 +SPEAKER 01039 0 35.747000 3.892340 3 diff --git a/rttm/many/01065.rttm b/rttm/many/01065.rttm new file mode 100644 index 0000000000000000000000000000000000000000..96879fe1aa19c58de4234ea086e6cb1fdcebcf98 --- /dev/null +++ b/rttm/many/01065.rttm @@ -0,0 +1,52 @@ +SPEAKER 01065 0 0.543920 4.166670 3 +SPEAKER 01065 0 5.273090 12.375000 3 +SPEAKER 01065 0 19.129520 15.875000 3 +SPEAKER 01065 0 35.713000 1.041520 3 +SPEAKER 01065 0 37.254520 15.958330 3 +SPEAKER 01065 0 54.546180 17.083340 3 +SPEAKER 01065 0 73.046180 32.291670 3 +SPEAKER 01065 0 106.256770 6.692230 3 +SPEAKER 01065 0 113.819270 10.937500 3 +SPEAKER 01065 0 178.882000 3.062270 3 +SPEAKER 01065 0 182.569270 12.875000 3 +SPEAKER 01065 0 267.468160 6.142850 3 +SPEAKER 01065 0 275.002710 6.425000 3 +SPEAKER 01065 0 354.628390 14.968750 3 +SPEAKER 01065 0 370.814000 10.365000 3 +SPEAKER 01065 0 450.182000 20.929010 3 +SPEAKER 01065 0 624.939000 15.836190 3 +SPEAKER 01065 0 795.361010 13.000000 3 +SPEAKER 01065 0 809.530000 22.616730 3 +SPEAKER 01065 0 125.444270 14.812500 1 +SPEAKER 01065 0 140.930000 35.576770 1 +SPEAKER 01065 0 471.967000 52.728000 1 +SPEAKER 01065 0 525.734000 20.321420 1 +SPEAKER 01065 0 546.875000 0.837000 1 +SPEAKER 01065 0 196.381770 41.085230 2 +SPEAKER 01065 0 238.078000 27.426000 2 +SPEAKER 01065 0 273.935000 0.494000 2 +SPEAKER 01065 0 548.063000 14.842420 2 +SPEAKER 01065 0 563.755420 5.426580 2 +SPEAKER 01065 0 569.900000 9.105420 2 +SPEAKER 01065 0 580.105420 18.410580 2 +SPEAKER 01065 0 599.426000 11.244000 2 +SPEAKER 01065 0 611.378390 11.829610 2 +SPEAKER 01065 0 281.852710 29.771290 0 +SPEAKER 01065 0 312.611010 20.244410 0 +SPEAKER 01065 0 333.805420 9.994580 0 +SPEAKER 01065 0 344.694000 7.836000 0 +SPEAKER 01065 0 353.165000 0.775890 0 +SPEAKER 01065 0 641.144000 21.972100 0 +SPEAKER 01065 0 664.002460 4.243540 0 +SPEAKER 01065 0 668.881000 5.576010 0 +SPEAKER 01065 0 675.219000 2.771000 0 +SPEAKER 01065 0 678.661550 21.071450 0 +SPEAKER 01065 0 700.692000 7.604180 0 +SPEAKER 01065 0 0.023000 0.463000 4 +SPEAKER 01065 0 381.628390 42.698610 4 +SPEAKER 01065 0 425.006770 4.062500 4 +SPEAKER 01065 0 430.067000 12.342000 4 +SPEAKER 01065 0 443.054000 5.664160 4 +SPEAKER 01065 0 710.368000 52.723000 4 +SPEAKER 01065 0 763.773000 28.945160 4 +SPEAKER 01065 0 794.449000 0.481000 4 diff --git a/rttm/many/01067.rttm b/rttm/many/01067.rttm new file mode 100644 index 0000000000000000000000000000000000000000..8cffb67bd41f84fe6d38c2af58ddcfc6f2cc43eb --- /dev/null +++ b/rttm/many/01067.rttm @@ -0,0 +1,72 @@ +SPEAKER 01067 0 0.023000 1.574000 1 +SPEAKER 01067 0 2.461530 4.839470 1 +SPEAKER 01067 0 9.986000 1.039920 1 +SPEAKER 01067 0 13.248000 2.615130 1 +SPEAKER 01067 0 17.356000 3.259000 1 +SPEAKER 01067 0 22.486000 6.202720 1 +SPEAKER 01067 0 31.504000 4.389000 1 +SPEAKER 01067 0 39.245000 1.241000 1 +SPEAKER 01067 0 47.886390 0.511630 1 +SPEAKER 01067 0 52.745000 1.000000 1 +SPEAKER 01067 0 54.443000 5.765000 1 +SPEAKER 01067 0 60.875000 7.370000 1 +SPEAKER 01067 0 69.023000 1.000000 1 +SPEAKER 01067 0 71.134000 0.759000 1 +SPEAKER 01067 0 74.949000 1.576920 1 +SPEAKER 01067 0 77.467000 0.992890 1 +SPEAKER 01067 0 84.430000 0.285210 1 +SPEAKER 01067 0 85.967000 0.450340 1 +SPEAKER 01067 0 93.615360 1.957080 1 +SPEAKER 01067 0 6.618950 0.290700 2 +SPEAKER 01067 0 7.479410 1.154590 2 +SPEAKER 01067 0 10.504000 3.556000 2 +SPEAKER 01067 0 17.356000 2.611000 2 +SPEAKER 01067 0 26.171000 0.413060 2 +SPEAKER 01067 0 31.597000 0.905670 2 +SPEAKER 01067 0 33.967000 1.686830 2 +SPEAKER 01067 0 39.448000 4.501000 2 +SPEAKER 01067 0 44.337000 3.723000 2 +SPEAKER 01067 0 48.711970 5.496030 2 +SPEAKER 01067 0 59.190000 0.574000 2 +SPEAKER 01067 0 60.263510 1.843810 2 +SPEAKER 01067 0 65.523000 1.537000 2 +SPEAKER 01067 0 68.671000 0.808410 2 +SPEAKER 01067 0 71.282000 1.406720 2 +SPEAKER 01067 0 75.801000 1.259000 2 +SPEAKER 01067 0 78.393000 1.000000 2 +SPEAKER 01067 0 87.634000 3.481000 2 +SPEAKER 01067 0 91.671000 0.599110 2 +SPEAKER 01067 0 95.049180 0.779070 2 +SPEAKER 01067 0 7.893000 3.408000 0 +SPEAKER 01067 0 15.883000 0.528660 0 +SPEAKER 01067 0 28.338000 3.277000 0 +SPEAKER 01067 0 32.356000 1.777880 0 +SPEAKER 01067 0 35.449000 3.537000 0 +SPEAKER 01067 0 43.770110 0.734140 0 +SPEAKER 01067 0 46.200340 0.337210 0 +SPEAKER 01067 0 52.430180 2.684820 0 +SPEAKER 01067 0 70.467000 4.167000 0 +SPEAKER 01067 0 77.078000 0.519000 0 +SPEAKER 01067 0 78.356000 8.370000 0 +SPEAKER 01067 0 87.153000 2.722000 0 +SPEAKER 01067 0 95.189440 0.825560 0 +SPEAKER 01067 0 11.893000 1.500000 h0 +SPEAKER 01067 0 14.949000 2.111000 h0 +SPEAKER 01067 0 21.095690 1.390310 h0 +SPEAKER 01067 0 23.211970 0.366350 h0 +SPEAKER 01067 0 25.537550 0.860470 h0 +SPEAKER 01067 0 31.838000 1.518000 h0 +SPEAKER 01067 0 39.134000 1.796000 h0 +SPEAKER 01067 0 42.688720 0.519230 h0 +SPEAKER 01067 0 66.875000 1.685000 h0 +SPEAKER 01067 0 69.171000 3.814730 h0 +SPEAKER 01067 0 80.060000 0.481000 h0 +SPEAKER 01067 0 82.467000 1.037000 h0 +SPEAKER 01067 0 86.393140 0.795580 h0 +SPEAKER 01067 0 89.819000 1.093000 h0 +SPEAKER 01067 0 91.541000 3.037000 h0 +SPEAKER 01067 0 94.874620 1.140380 h0 +SPEAKER 01067 0 51.118950 0.811230 h1 +SPEAKER 01067 0 55.282000 1.241000 h1 +SPEAKER 01067 0 60.097000 1.407000 h1 +SPEAKER 01067 0 88.689000 1.223000 h1 diff --git a/rttm/many/01068.rttm b/rttm/many/01068.rttm new file mode 100644 index 0000000000000000000000000000000000000000..727265a8d20c00e42946c7b499b6c387aa51119e --- /dev/null +++ b/rttm/many/01068.rttm @@ -0,0 +1,16 @@ +SPEAKER 01068 0 0.003000 5.779030 1 +SPEAKER 01068 0 7.578320 2.351860 1 +SPEAKER 01068 0 3.030470 10.214530 3 +SPEAKER 01068 0 14.041290 0.923140 3 +SPEAKER 01068 0 15.356000 0.646170 3 +SPEAKER 01068 0 19.002550 3.409450 3 +SPEAKER 01068 0 2.245000 1.342070 5 +SPEAKER 01068 0 11.707950 0.351860 5 +SPEAKER 01068 0 13.445560 0.396230 5 +SPEAKER 01068 0 14.766320 5.094340 5 +SPEAKER 01068 0 2.674000 0.660000 0 +SPEAKER 01068 0 21.689000 0.768000 0 +SPEAKER 01068 0 4.004250 0.979050 6 +SPEAKER 01068 0 9.541290 0.444440 6 +SPEAKER 01068 0 13.670920 0.537030 6 +SPEAKER 01068 0 21.777000 0.680000 6 diff --git a/rttm/many/01097.rttm b/rttm/many/01097.rttm new file mode 100644 index 0000000000000000000000000000000000000000..30c50e8d05e24ef3db07dad70073c63f45cde66c --- /dev/null +++ b/rttm/many/01097.rttm @@ -0,0 +1,36 @@ +SPEAKER 01097 0 0.000000 0.752260 1 +SPEAKER 01097 0 3.041000 0.586260 1 +SPEAKER 01097 0 4.231000 0.354590 1 +SPEAKER 01097 0 16.731420 1.750000 1 +SPEAKER 01097 0 21.172000 0.704000 1 +SPEAKER 01097 0 27.675000 0.910590 1 +SPEAKER 01097 0 0.478000 0.823000 2 +SPEAKER 01097 0 16.648090 0.604170 2 +SPEAKER 01097 0 18.665000 0.895000 2 +SPEAKER 01097 0 23.509000 4.472420 2 +SPEAKER 01097 0 29.782000 0.426000 2 +SPEAKER 01097 0 35.322000 0.440000 2 +SPEAKER 01097 0 8.782000 1.011920 3 +SPEAKER 01097 0 11.314760 1.208330 3 +SPEAKER 01097 0 15.553000 1.011760 3 +SPEAKER 01097 0 17.615000 4.297000 3 +SPEAKER 01097 0 23.023000 0.500090 3 +SPEAKER 01097 0 31.104000 2.106590 3 +SPEAKER 01097 0 2.208000 0.593000 4 +SPEAKER 01097 0 3.652000 0.600260 4 +SPEAKER 01097 0 5.673000 0.320000 4 +SPEAKER 01097 0 6.746000 0.672000 4 +SPEAKER 01097 0 13.106420 1.770840 4 +SPEAKER 01097 0 19.106420 0.561580 4 +SPEAKER 01097 0 22.023000 0.937590 4 +SPEAKER 01097 0 24.793000 0.792590 4 +SPEAKER 01097 0 28.398090 3.375000 4 +SPEAKER 01097 0 35.124890 3.835700 4 +SPEAKER 01097 0 5.563000 1.021000 0 +SPEAKER 01097 0 10.127260 1.062500 0 +SPEAKER 01097 0 13.171000 1.081260 0 +SPEAKER 01097 0 15.541000 0.315420 0 +SPEAKER 01097 0 19.504000 1.539920 0 +SPEAKER 01097 0 21.901000 2.184590 0 +SPEAKER 01097 0 26.967000 1.743590 0 +SPEAKER 01097 0 30.314760 0.916660 0 diff --git a/rttm/many/01104.rttm b/rttm/many/01104.rttm new file mode 100644 index 0000000000000000000000000000000000000000..7c0b33fd1b5746c89d04210f52d478fa46c8e7bb --- /dev/null +++ b/rttm/many/01104.rttm @@ -0,0 +1,61 @@ +SPEAKER 01104 0 0.000000 3.444500 1 +SPEAKER 01104 0 4.501880 1.052980 1 +SPEAKER 01104 0 6.568200 2.556800 1 +SPEAKER 01104 0 23.080000 4.151000 1 +SPEAKER 01104 0 29.028200 1.940000 1 +SPEAKER 01104 0 31.714860 1.986140 1 +SPEAKER 01104 0 47.818520 3.215480 1 +SPEAKER 01104 0 57.973450 2.773550 1 +SPEAKER 01104 0 73.888940 0.992960 1 +SPEAKER 01104 0 81.874860 1.957740 1 +SPEAKER 01104 0 90.783310 0.262690 1 +SPEAKER 01104 0 4.747780 1.442630 3 +SPEAKER 01104 0 11.761530 0.500470 3 +SPEAKER 01104 0 12.961530 1.446670 3 +SPEAKER 01104 0 18.005000 1.060000 3 +SPEAKER 01104 0 20.708200 0.588760 3 +SPEAKER 01104 0 33.774860 0.367340 3 +SPEAKER 01104 0 36.201530 0.540000 3 +SPEAKER 01104 0 38.489000 0.652000 3 +SPEAKER 01104 0 39.901530 3.674810 3 +SPEAKER 01104 0 45.307000 2.525600 3 +SPEAKER 01104 0 54.625000 1.000000 3 +SPEAKER 01104 0 55.982000 1.643000 3 +SPEAKER 01104 0 62.614290 1.389710 3 +SPEAKER 01104 0 68.804430 1.639570 3 +SPEAKER 01104 0 71.201000 0.727000 3 +SPEAKER 01104 0 72.489000 2.288000 3 +SPEAKER 01104 0 79.793000 1.039600 3 +SPEAKER 01104 0 82.504000 8.515000 3 +SPEAKER 01104 0 3.292000 1.000000 2 +SPEAKER 01104 0 9.853000 0.901860 2 +SPEAKER 01104 0 30.991040 0.343820 2 +SPEAKER 01104 0 35.214860 3.600000 2 +SPEAKER 01104 0 47.269220 0.464790 2 +SPEAKER 01104 0 53.595000 0.970000 2 +SPEAKER 01104 0 57.171000 0.715390 2 +SPEAKER 01104 0 76.262000 2.424000 2 +SPEAKER 01104 0 80.811480 1.690140 2 +SPEAKER 01104 0 90.374760 0.662240 2 +SPEAKER 01104 0 6.548200 2.553330 4 +SPEAKER 01104 0 14.853000 0.833000 4 +SPEAKER 01104 0 16.488200 1.246660 4 +SPEAKER 01104 0 18.383000 0.471860 4 +SPEAKER 01104 0 19.368200 1.059800 4 +SPEAKER 01104 0 37.108200 1.218800 4 +SPEAKER 01104 0 40.814860 0.746670 4 +SPEAKER 01104 0 44.403020 0.422540 4 +SPEAKER 01104 0 54.595000 1.546000 4 +SPEAKER 01104 0 60.630580 2.033010 4 +SPEAKER 01104 0 64.719930 3.951070 4 +SPEAKER 01104 0 71.297390 2.115610 4 +SPEAKER 01104 0 74.095000 1.939000 4 +SPEAKER 01104 0 4.534670 0.666860 0 +SPEAKER 01104 0 12.301530 0.440000 0 +SPEAKER 01104 0 27.353000 0.828530 0 +SPEAKER 01104 0 34.588200 1.021800 0 +SPEAKER 01104 0 38.956160 0.716840 0 +SPEAKER 01104 0 44.474810 0.632510 0 +SPEAKER 01104 0 51.338000 2.378000 0 +SPEAKER 01104 0 63.474000 0.450150 0 +SPEAKER 01104 0 70.804430 0.881570 0 diff --git a/rttm/many/01111.rttm b/rttm/many/01111.rttm new file mode 100644 index 0000000000000000000000000000000000000000..1630520eae5c90b89cce13646f03dbe5bc3011d2 --- /dev/null +++ b/rttm/many/01111.rttm @@ -0,0 +1,14 @@ +SPEAKER 01111 0 0.268400 8.920600 2 +SPEAKER 01111 0 11.265000 5.638520 2 +SPEAKER 01111 0 17.619460 2.921540 2 +SPEAKER 01111 0 21.550000 1.435490 2 +SPEAKER 01111 0 0.378930 1.229510 1 +SPEAKER 01111 0 3.236480 0.491520 1 +SPEAKER 01111 0 20.504000 0.924110 1 +SPEAKER 01111 0 22.986000 0.828000 1 +SPEAKER 01111 0 8.353510 1.123780 3 +SPEAKER 01111 0 9.993080 1.443230 3 +SPEAKER 01111 0 16.641230 0.989770 3 +SPEAKER 01111 0 21.658000 0.622570 3 +SPEAKER 01111 0 9.435000 0.909000 4 +SPEAKER 01111 0 15.598190 0.446800 0 diff --git a/rttm/many/01112.rttm b/rttm/many/01112.rttm new file mode 100644 index 0000000000000000000000000000000000000000..558c53f8733444013fff075ebb19a17dc9c6147d --- /dev/null +++ b/rttm/many/01112.rttm @@ -0,0 +1,17 @@ +SPEAKER 01112 0 0.004000 5.589170 2 +SPEAKER 01112 0 8.041000 1.945000 2 +SPEAKER 01112 0 11.958110 0.879890 2 +SPEAKER 01112 0 16.390680 2.580320 2 +SPEAKER 01112 0 20.278690 6.223080 2 +SPEAKER 01112 0 30.097000 0.474000 2 +SPEAKER 01112 0 31.471000 2.639000 2 +SPEAKER 01112 0 4.480490 0.260560 0 +SPEAKER 01112 0 12.797390 3.096680 0 +SPEAKER 01112 0 21.446990 0.577780 0 +SPEAKER 01112 0 5.734010 1.973990 1 +SPEAKER 01112 0 15.824840 1.853850 1 +SPEAKER 01112 0 10.469220 1.442780 3 +SPEAKER 01112 0 13.432790 3.942100 3 +SPEAKER 01112 0 26.332530 1.807700 3 +SPEAKER 01112 0 30.709460 0.715380 3 +SPEAKER 01112 0 28.309460 1.861540 h0 diff --git a/rttm/many/01118.rttm b/rttm/many/01118.rttm new file mode 100644 index 0000000000000000000000000000000000000000..34afe3e07bd28f7a80e87b12475d7c55d6eb227b --- /dev/null +++ b/rttm/many/01118.rttm @@ -0,0 +1,58 @@ +SPEAKER 01118 0 0.788770 7.033230 0 +SPEAKER 01118 0 9.059000 5.295340 0 +SPEAKER 01118 0 22.552000 0.744960 0 +SPEAKER 01118 0 54.268460 0.826740 0 +SPEAKER 01118 0 55.511040 0.732670 0 +SPEAKER 01118 0 5.542860 0.680330 6 +SPEAKER 01118 0 7.640000 0.682000 6 +SPEAKER 01118 0 14.808000 1.169290 6 +SPEAKER 01118 0 17.492000 1.124640 6 +SPEAKER 01118 0 57.852000 0.842210 6 +SPEAKER 01118 0 64.669450 0.529710 6 +SPEAKER 01118 0 65.788260 1.918540 6 +SPEAKER 01118 0 5.510080 0.660920 2 +SPEAKER 01118 0 7.643000 0.679000 2 +SPEAKER 01118 0 18.993680 14.467220 2 +SPEAKER 01118 0 34.881000 6.502000 2 +SPEAKER 01118 0 41.688000 0.437000 2 +SPEAKER 01118 0 42.994000 5.947730 2 +SPEAKER 01118 0 49.268460 4.480200 2 +SPEAKER 01118 0 54.788000 0.604230 2 +SPEAKER 01118 0 59.208000 7.160000 2 +SPEAKER 01118 0 68.863000 4.361270 2 +SPEAKER 01118 0 73.763000 4.455250 2 +SPEAKER 01118 0 82.819670 4.727270 2 +SPEAKER 01118 0 88.196000 0.773020 2 +SPEAKER 01118 0 92.319000 3.882000 2 +SPEAKER 01118 0 5.477290 0.708710 1 +SPEAKER 01118 0 7.656000 0.697000 1 +SPEAKER 01118 0 16.116640 1.024590 1 +SPEAKER 01118 0 33.222000 1.903000 1 +SPEAKER 01118 0 52.969000 0.962830 1 +SPEAKER 01118 0 83.349000 1.017000 1 +SPEAKER 01118 0 87.546940 0.948060 1 +SPEAKER 01118 0 91.136000 1.000000 1 +SPEAKER 01118 0 5.526470 0.689530 4 +SPEAKER 01118 0 7.656000 0.727000 4 +SPEAKER 01118 0 32.653000 0.794000 4 +SPEAKER 01118 0 41.149420 1.025580 4 +SPEAKER 01118 0 47.882320 0.995050 4 +SPEAKER 01118 0 93.425000 1.471000 4 +SPEAKER 01118 0 5.510080 0.705920 3 +SPEAKER 01118 0 7.675000 0.708000 3 +SPEAKER 01118 0 16.961000 0.500000 3 +SPEAKER 01118 0 17.990000 0.671000 3 +SPEAKER 01118 0 41.581000 0.794000 3 +SPEAKER 01118 0 66.318000 3.173240 3 +SPEAKER 01118 0 5.398000 0.818000 5 +SPEAKER 01118 0 7.656000 0.757000 5 +SPEAKER 01118 0 40.586120 0.963880 5 +SPEAKER 01118 0 78.097770 0.428960 5 +SPEAKER 01118 0 94.767000 0.922800 5 +SPEAKER 01118 0 53.090250 2.420790 7 +SPEAKER 01118 0 55.897180 2.188110 7 +SPEAKER 01118 0 58.892230 0.297020 7 +SPEAKER 01118 0 66.225000 3.158000 7 +SPEAKER 01118 0 78.853000 4.005630 7 +SPEAKER 01118 0 83.297000 0.686000 7 +SPEAKER 01118 0 88.592400 3.227270 7 diff --git a/rttm/many/01151.rttm b/rttm/many/01151.rttm new file mode 100644 index 0000000000000000000000000000000000000000..6f8c5ded437c002109a93a5426b312387013b0b0 --- /dev/null +++ b/rttm/many/01151.rttm @@ -0,0 +1,128 @@ +SPEAKER 01151 0 0.264370 14.873680 1 +SPEAKER 01151 0 15.957000 0.362000 1 +SPEAKER 01151 0 17.690680 15.636840 1 +SPEAKER 01151 0 38.053840 0.326320 1 +SPEAKER 01151 0 103.115000 1.000000 1 +SPEAKER 01151 0 129.566000 0.772000 1 +SPEAKER 01151 0 314.764000 10.804880 1 +SPEAKER 01151 0 326.189000 2.573910 1 +SPEAKER 01151 0 329.949000 8.247300 1 +SPEAKER 01151 0 338.644350 1.645730 1 +SPEAKER 01151 0 341.281610 9.984710 1 +SPEAKER 01151 0 351.931340 11.324840 1 +SPEAKER 01151 0 363.709460 14.830990 1 +SPEAKER 01151 0 405.361000 5.621000 1 +SPEAKER 01151 0 413.410000 2.691000 1 +SPEAKER 01151 0 418.494000 17.178000 1 +SPEAKER 01151 0 436.720000 2.238000 1 +SPEAKER 01151 0 498.934000 0.551000 1 +SPEAKER 01151 0 501.372000 0.486630 1 +SPEAKER 01151 0 791.738000 0.577980 1 +SPEAKER 01151 0 843.761000 0.725000 1 +SPEAKER 01151 0 883.989000 14.690420 1 +SPEAKER 01151 0 899.182210 12.840530 1 +SPEAKER 01151 0 912.502000 0.696330 1 +SPEAKER 01151 0 913.757150 13.217710 1 +SPEAKER 01151 0 927.274860 13.104070 1 +SPEAKER 01151 0 940.822000 9.136150 1 +SPEAKER 01151 0 1001.614590 0.459180 1 +SPEAKER 01151 0 1009.370430 0.421060 1 +SPEAKER 01151 0 1019.861660 0.447370 1 +SPEAKER 01151 0 1029.213000 0.604800 1 +SPEAKER 01151 0 1034.966930 0.552630 1 +SPEAKER 01151 0 1128.441120 0.673470 1 +SPEAKER 01151 0 1135.194000 0.577000 1 +SPEAKER 01151 0 35.265690 56.592940 5 +SPEAKER 01151 0 92.397590 3.201300 5 +SPEAKER 01151 0 149.879890 6.283700 5 +SPEAKER 01151 0 235.782000 1.074000 5 +SPEAKER 01151 0 238.702470 44.968530 5 +SPEAKER 01151 0 290.356000 1.820000 5 +SPEAKER 01151 0 527.193000 0.952000 5 +SPEAKER 01151 0 584.356000 30.102000 5 +SPEAKER 01151 0 718.633000 44.640940 5 +SPEAKER 01151 0 781.601000 1.119000 5 +SPEAKER 01151 0 784.053000 1.000000 5 +SPEAKER 01151 0 826.379000 1.327800 5 +SPEAKER 01151 0 837.178000 1.000000 5 +SPEAKER 01151 0 859.124000 24.053450 5 +SPEAKER 01151 0 1139.379000 0.584300 5 +SPEAKER 01151 0 1174.301000 2.474000 5 +SPEAKER 01151 0 97.776000 19.271300 0 +SPEAKER 01151 0 284.566000 28.707940 0 +SPEAKER 01151 0 632.744000 39.020670 0 +SPEAKER 01151 0 672.237790 11.394740 0 +SPEAKER 01151 0 769.791000 16.154560 0 +SPEAKER 01151 0 786.700280 4.964710 0 +SPEAKER 01151 0 903.796370 0.764700 0 +SPEAKER 01151 0 975.316000 0.666640 0 +SPEAKER 01151 0 985.448000 28.118000 0 +SPEAKER 01151 0 122.405000 7.044000 6 +SPEAKER 01151 0 130.578000 2.111000 6 +SPEAKER 01151 0 134.100000 15.386000 6 +SPEAKER 01151 0 952.194000 23.063150 6 +SPEAKER 01151 0 975.982640 7.703380 6 +SPEAKER 01151 0 1000.411000 0.489300 6 +SPEAKER 01151 0 129.560000 0.759000 2 +SPEAKER 01151 0 440.315000 7.373030 2 +SPEAKER 01151 0 448.982000 27.555100 2 +SPEAKER 01151 0 477.801000 5.463000 2 +SPEAKER 01151 0 484.235260 2.603890 2 +SPEAKER 01151 0 487.501490 13.837660 2 +SPEAKER 01151 0 501.891100 1.032900 2 +SPEAKER 01151 0 503.631360 2.236020 2 +SPEAKER 01151 0 507.767650 3.867340 2 +SPEAKER 01151 0 512.138450 12.088590 2 +SPEAKER 01151 0 524.581880 11.050850 2 +SPEAKER 01151 0 536.049520 21.252250 2 +SPEAKER 01151 0 557.747920 3.806720 2 +SPEAKER 01151 0 562.177450 11.867140 2 +SPEAKER 01151 0 575.753000 7.594920 2 +SPEAKER 01151 0 793.319000 5.796000 2 +SPEAKER 01151 0 799.912000 1.220530 2 +SPEAKER 01151 0 801.930060 19.489560 2 +SPEAKER 01151 0 821.894550 17.226980 2 +SPEAKER 01151 0 839.781530 1.973330 2 +SPEAKER 01151 0 843.051270 2.683240 2 +SPEAKER 01151 0 848.301000 7.855630 2 +SPEAKER 01151 0 857.683000 0.468140 2 +SPEAKER 01151 0 1017.449000 19.737220 2 +SPEAKER 01151 0 1092.041000 30.906780 2 +SPEAKER 01151 0 1123.746850 8.893380 2 +SPEAKER 01151 0 1133.652000 1.834000 2 +SPEAKER 01151 0 156.686020 11.662560 3 +SPEAKER 01151 0 168.938050 4.260280 3 +SPEAKER 01151 0 173.581660 3.208690 3 +SPEAKER 01151 0 177.515700 2.621040 3 +SPEAKER 01151 0 180.611000 16.702490 3 +SPEAKER 01151 0 381.434000 4.198000 3 +SPEAKER 01151 0 386.398000 17.636230 3 +SPEAKER 01151 0 688.361660 7.359650 3 +SPEAKER 01151 0 696.449380 1.681770 3 +SPEAKER 01151 0 698.747240 2.362300 3 +SPEAKER 01151 0 701.598730 8.212620 3 +SPEAKER 01151 0 710.216110 7.759960 3 +SPEAKER 01151 0 1039.097000 6.814180 3 +SPEAKER 01151 0 1046.774810 11.797380 3 +SPEAKER 01151 0 1059.159910 8.640350 3 +SPEAKER 01151 0 1068.282710 6.919840 3 +SPEAKER 01151 0 1075.735880 15.940490 3 +SPEAKER 01151 0 1150.095000 13.540880 3 +SPEAKER 01151 0 1163.991000 8.374000 3 +SPEAKER 01151 0 199.801350 33.628650 4 +SPEAKER 01151 0 269.472580 0.304600 4 +SPEAKER 01151 0 271.587530 0.465510 4 +SPEAKER 01151 0 401.449000 0.555000 4 +SPEAKER 01151 0 608.830000 0.619000 4 +SPEAKER 01151 0 618.696000 12.976000 4 +SPEAKER 01151 0 715.023000 0.703000 4 +SPEAKER 01151 0 1091.024000 0.925250 4 +SPEAKER 01151 0 1135.948000 11.817170 4 +SPEAKER 01151 0 1157.858000 0.549830 4 +SPEAKER 01151 0 1172.257000 0.558980 4 +SPEAKER 01151 0 1176.154000 6.229300 4 +SPEAKER 01151 0 1183.425670 6.249190 4 +SPEAKER 01151 0 302.059000 0.658000 h1 +SPEAKER 01151 0 527.852000 1.000000 h1 +SPEAKER 01151 0 934.644680 0.650790 h1 +SPEAKER 01151 0 1197.066000 2.821000 h0 diff --git a/rttm/many/01166.rttm b/rttm/many/01166.rttm new file mode 100644 index 0000000000000000000000000000000000000000..fd46587cf0ce6be6f05a3f3a0cbfc8540c65ad7f --- /dev/null +++ b/rttm/many/01166.rttm @@ -0,0 +1,12 @@ +SPEAKER 01166 0 1.541000 5.019000 2 +SPEAKER 01166 0 7.176420 2.531580 2 +SPEAKER 01166 0 10.652000 6.074000 2 +SPEAKER 01166 0 0.226830 0.666170 0 +SPEAKER 01166 0 16.060000 0.494220 0 +SPEAKER 01166 0 4.977300 0.307690 4 +SPEAKER 01166 0 17.105000 8.547000 4 +SPEAKER 01166 0 0.960000 0.795790 5 +SPEAKER 01166 0 16.287540 0.563490 5 +SPEAKER 01166 0 25.652000 6.299660 5 +SPEAKER 01166 0 32.272170 7.115390 6 +SPEAKER 01166 0 40.631150 4.502850 6 diff --git a/rttm/many/01219.rttm b/rttm/many/01219.rttm new file mode 100644 index 0000000000000000000000000000000000000000..9a19dcf435e6f222757aa3a5c6375f875cb5c4fb --- /dev/null +++ b/rttm/many/01219.rttm @@ -0,0 +1,13 @@ +SPEAKER 01219 0 0.319000 0.740810 0 +SPEAKER 01219 0 1.578000 1.488250 0 +SPEAKER 01219 0 3.671000 4.778000 0 +SPEAKER 01219 0 8.745000 4.889000 0 +SPEAKER 01219 0 14.004000 1.630000 0 +SPEAKER 01219 0 15.912000 4.759000 0 +SPEAKER 01219 0 21.078000 0.574000 0 +SPEAKER 01219 0 21.967000 4.012500 0 +SPEAKER 01219 0 2.856000 1.240840 2 +SPEAKER 01219 0 22.837000 1.000000 2 +SPEAKER 01219 0 20.985730 0.870270 h1 +SPEAKER 01219 0 26.029500 0.372500 h1 +SPEAKER 01219 0 17.967000 0.574000 h0 diff --git a/rttm/many/01242.rttm b/rttm/many/01242.rttm new file mode 100644 index 0000000000000000000000000000000000000000..26db964543dccc6ac8b565def38bee6d757ad316 --- /dev/null +++ b/rttm/many/01242.rttm @@ -0,0 +1,58 @@ +SPEAKER 01242 0 0.374780 2.314220 3 +SPEAKER 01242 0 3.124790 0.969390 3 +SPEAKER 01242 0 4.666000 1.193480 3 +SPEAKER 01242 0 6.723600 2.883720 3 +SPEAKER 01242 0 17.263300 0.853850 3 +SPEAKER 01242 0 18.786380 1.138460 3 +SPEAKER 01242 0 22.886380 4.969620 3 +SPEAKER 01242 0 28.801770 0.407690 3 +SPEAKER 01242 0 30.226000 1.392950 3 +SPEAKER 01242 0 32.049180 2.639820 3 +SPEAKER 01242 0 35.246850 5.262610 3 +SPEAKER 01242 0 43.264180 5.590160 3 +SPEAKER 01242 0 51.956160 5.566840 3 +SPEAKER 01242 0 61.652000 0.315780 3 +SPEAKER 01242 0 63.537550 11.357770 3 +SPEAKER 01242 0 75.301000 3.592000 3 +SPEAKER 01242 0 79.698600 2.768400 3 +SPEAKER 01242 0 83.356000 1.867600 3 +SPEAKER 01242 0 86.607320 2.394560 3 +SPEAKER 01242 0 91.430000 0.444760 3 +SPEAKER 01242 0 92.764180 2.906820 3 +SPEAKER 01242 0 97.616640 1.406360 3 +SPEAKER 01242 0 1.819000 0.778000 2 +SPEAKER 01242 0 5.986000 0.725970 2 +SPEAKER 01242 0 9.851510 1.934870 2 +SPEAKER 01242 0 12.317150 0.441330 2 +SPEAKER 01242 0 13.563300 3.477700 2 +SPEAKER 01242 0 18.078000 0.982000 2 +SPEAKER 01242 0 20.828250 1.860750 2 +SPEAKER 01242 0 27.893000 1.093000 2 +SPEAKER 01242 0 31.689000 0.426000 2 +SPEAKER 01242 0 36.444530 0.255810 2 +SPEAKER 01242 0 38.412000 0.579040 2 +SPEAKER 01242 0 40.409460 2.909540 2 +SPEAKER 01242 0 57.911720 1.852280 2 +SPEAKER 01242 0 61.304990 0.441860 2 +SPEAKER 01242 0 62.363000 0.941990 2 +SPEAKER 01242 0 78.991040 0.906980 2 +SPEAKER 01242 0 82.804990 0.607010 2 +SPEAKER 01242 0 85.338000 1.926180 2 +SPEAKER 01242 0 89.375000 1.518000 2 +SPEAKER 01242 0 92.134000 2.217510 2 +SPEAKER 01242 0 97.641230 1.704910 2 +SPEAKER 01242 0 2.430000 0.720840 1 +SPEAKER 01242 0 13.201770 1.723070 1 +SPEAKER 01242 0 27.509460 0.953840 1 +SPEAKER 01242 0 29.025920 0.953490 1 +SPEAKER 01242 0 42.856000 1.158300 1 +SPEAKER 01242 0 48.078000 2.809130 1 +SPEAKER 01242 0 79.023000 0.805250 1 +SPEAKER 01242 0 87.526470 0.996530 1 +SPEAKER 01242 0 38.430000 1.222000 0 +SPEAKER 01242 0 40.617150 2.040470 0 +SPEAKER 01242 0 43.264000 1.934600 0 +SPEAKER 01242 0 50.378930 1.053600 0 +SPEAKER 01242 0 66.190410 0.416910 0 +SPEAKER 01242 0 88.821550 2.088100 0 +SPEAKER 01242 0 98.828250 0.544750 5 diff --git a/rttm/many/01247.rttm b/rttm/many/01247.rttm new file mode 100644 index 0000000000000000000000000000000000000000..73a6fda559850c34fa40554ed29ed9990343a59f --- /dev/null +++ b/rttm/many/01247.rttm @@ -0,0 +1,27 @@ +SPEAKER 01247 0 1.115000 1.500000 3 +SPEAKER 01247 0 4.624820 1.549180 3 +SPEAKER 01247 0 6.940610 2.833330 3 +SPEAKER 01247 0 11.309030 1.710530 3 +SPEAKER 01247 0 16.159910 2.724210 3 +SPEAKER 01247 0 20.370430 0.744570 3 +SPEAKER 01247 0 22.152000 0.385100 3 +SPEAKER 01247 0 23.597000 0.519050 3 +SPEAKER 01247 0 0.004000 1.133540 5 +SPEAKER 01247 0 2.942620 1.553900 5 +SPEAKER 01247 0 9.852890 1.315790 5 +SPEAKER 01247 0 11.844120 2.178880 5 +SPEAKER 01247 0 14.580960 0.412280 5 +SPEAKER 01247 0 18.844120 1.552630 5 +SPEAKER 01247 0 22.063420 1.973680 5 +SPEAKER 01247 0 0.003000 0.880300 2 +SPEAKER 01247 0 2.966930 2.070170 2 +SPEAKER 01247 0 5.929380 3.476140 2 +SPEAKER 01247 0 15.238860 0.500000 2 +SPEAKER 01247 0 17.430000 1.922890 2 +SPEAKER 01247 0 20.677450 1.268070 2 +SPEAKER 01247 0 23.198000 1.214000 2 +SPEAKER 01247 0 11.245000 0.634210 0 +SPEAKER 01247 0 16.393000 1.000000 0 +SPEAKER 01247 0 22.159910 0.491230 0 +SPEAKER 01247 0 5.765170 1.016830 4 +SPEAKER 01247 0 12.019560 5.114440 1 diff --git a/rttm/many/01253.rttm b/rttm/many/01253.rttm new file mode 100644 index 0000000000000000000000000000000000000000..d796df4ca037185a5d2b8b8f8715ea3389ad687b --- /dev/null +++ b/rttm/many/01253.rttm @@ -0,0 +1,26 @@ +SPEAKER 01253 0 2.595690 0.697680 0 +SPEAKER 01253 0 3.801000 1.038880 0 +SPEAKER 01253 0 5.411000 1.075000 0 +SPEAKER 01253 0 6.968000 0.684400 0 +SPEAKER 01253 0 7.928000 0.484000 0 +SPEAKER 01253 0 9.005000 6.536000 0 +SPEAKER 01253 0 17.443000 0.501530 0 +SPEAKER 01253 0 31.374800 1.333200 0 +SPEAKER 01253 0 20.430180 1.314820 2 +SPEAKER 01253 0 26.356000 1.000000 2 +SPEAKER 01253 0 29.525920 0.837210 2 +SPEAKER 01253 0 32.708130 1.980870 2 +SPEAKER 01253 0 0.653830 1.941860 1 +SPEAKER 01253 0 8.504000 0.800990 1 +SPEAKER 01253 0 21.819000 2.574000 1 +SPEAKER 01253 0 30.004000 1.463780 1 +SPEAKER 01253 0 15.764000 1.261920 5 +SPEAKER 01253 0 23.764000 1.481000 5 +SPEAKER 01253 0 27.615000 1.371000 5 +SPEAKER 01253 0 0.004000 0.760000 4 +SPEAKER 01253 0 19.875000 0.499620 4 +SPEAKER 01253 0 21.023000 0.741000 4 +SPEAKER 01253 0 23.338000 0.676300 4 +SPEAKER 01253 0 25.819060 0.381280 4 +SPEAKER 01253 0 33.502250 0.460780 4 +SPEAKER 01253 0 34.580680 0.461320 4 diff --git a/rttm/many/01261.rttm b/rttm/many/01261.rttm new file mode 100644 index 0000000000000000000000000000000000000000..33372bd0919e6be62f37011e746117f8fb8cc643 --- /dev/null +++ b/rttm/many/01261.rttm @@ -0,0 +1,13 @@ +SPEAKER 01261 0 0.264000 1.560770 0 +SPEAKER 01261 0 6.455000 0.936440 0 +SPEAKER 01261 0 18.967000 1.529000 0 +SPEAKER 01261 0 1.973860 4.401140 2 +SPEAKER 01261 0 10.029000 10.481000 2 +SPEAKER 01261 0 7.393000 2.111000 1 +SPEAKER 01261 0 19.134000 1.377000 1 +SPEAKER 01261 0 7.430000 2.130000 5 +SPEAKER 01261 0 19.171000 1.340000 5 +SPEAKER 01261 0 7.412000 2.129000 4 +SPEAKER 01261 0 19.208000 1.303000 4 +SPEAKER 01261 0 7.412000 2.148000 3 +SPEAKER 01261 0 19.208000 1.296000 3 diff --git a/rttm/many/01265.rttm b/rttm/many/01265.rttm new file mode 100644 index 0000000000000000000000000000000000000000..3259cb0ef7b430f1bd14c0f5602560420bfc9b06 --- /dev/null +++ b/rttm/many/01265.rttm @@ -0,0 +1,120 @@ +SPEAKER 01265 0 0.320000 0.647000 4 +SPEAKER 01265 0 4.099020 0.862070 4 +SPEAKER 01265 0 10.754190 0.827590 4 +SPEAKER 01265 0 61.817410 0.486590 4 +SPEAKER 01265 0 64.315000 2.017230 4 +SPEAKER 01265 0 68.264000 2.037000 4 +SPEAKER 01265 0 77.130100 0.936170 4 +SPEAKER 01265 0 87.415110 0.413800 4 +SPEAKER 01265 0 93.545000 0.921840 4 +SPEAKER 01265 0 98.024310 0.362070 4 +SPEAKER 01265 0 100.087550 2.713450 4 +SPEAKER 01265 0 122.880900 0.650600 4 +SPEAKER 01265 0 130.627890 2.596380 4 +SPEAKER 01265 0 139.405000 1.228910 4 +SPEAKER 01265 0 143.561620 0.515380 4 +SPEAKER 01265 0 153.242000 0.750000 4 +SPEAKER 01265 0 188.818520 0.584500 4 +SPEAKER 01265 0 1.282930 0.390800 0 +SPEAKER 01265 0 2.357640 0.436780 0 +SPEAKER 01265 0 3.167990 0.350570 0 +SPEAKER 01265 0 4.179480 0.689200 0 +SPEAKER 01265 0 7.478330 0.822670 0 +SPEAKER 01265 0 8.667990 0.350570 0 +SPEAKER 01265 0 12.430000 0.875920 0 +SPEAKER 01265 0 13.650000 0.582650 0 +SPEAKER 01265 0 60.030000 1.752930 0 +SPEAKER 01265 0 64.385000 0.298290 0 +SPEAKER 01265 0 79.668000 5.447000 0 +SPEAKER 01265 0 85.553000 1.811000 0 +SPEAKER 01265 0 87.747120 0.438110 0 +SPEAKER 01265 0 88.744000 2.077000 0 +SPEAKER 01265 0 92.639250 0.580460 0 +SPEAKER 01265 0 95.023000 2.944000 0 +SPEAKER 01265 0 98.377000 1.795650 0 +SPEAKER 01265 0 102.041550 0.701150 0 +SPEAKER 01265 0 103.083000 1.080000 0 +SPEAKER 01265 0 104.435000 2.886590 0 +SPEAKER 01265 0 107.725850 4.844680 0 +SPEAKER 01265 0 113.027000 0.762680 0 +SPEAKER 01265 0 114.322000 0.442000 0 +SPEAKER 01265 0 115.204000 1.000000 0 +SPEAKER 01265 0 116.455000 6.169570 0 +SPEAKER 01265 0 123.989330 2.882670 0 +SPEAKER 01265 0 127.268400 1.969600 0 +SPEAKER 01265 0 129.603790 1.339210 0 +SPEAKER 01265 0 137.621860 0.530120 0 +SPEAKER 01265 0 140.785000 2.608000 0 +SPEAKER 01265 0 149.073670 0.463860 0 +SPEAKER 01265 0 151.342870 1.556100 0 +SPEAKER 01265 0 192.473450 1.773670 0 +SPEAKER 01265 0 196.163590 0.647890 0 +SPEAKER 01265 0 200.440000 0.399640 0 +SPEAKER 01265 0 203.987530 0.976470 0 +SPEAKER 01265 0 208.677670 0.622640 0 +SPEAKER 01265 0 2.127760 0.390800 1 +SPEAKER 01265 0 6.553040 1.694960 1 +SPEAKER 01265 0 45.098000 0.819340 1 +SPEAKER 01265 0 90.949000 0.872590 1 +SPEAKER 01265 0 93.606000 1.726230 1 +SPEAKER 01265 0 137.670060 1.596380 1 +SPEAKER 01265 0 152.502440 1.548470 1 +SPEAKER 01265 0 167.819000 1.964310 1 +SPEAKER 01265 0 177.689000 1.333740 1 +SPEAKER 01265 0 197.619460 1.088540 1 +SPEAKER 01265 0 204.804430 0.802820 1 +SPEAKER 01265 0 205.973450 2.584500 1 +SPEAKER 01265 0 3.093270 0.850580 3 +SPEAKER 01265 0 4.574000 2.210000 3 +SPEAKER 01265 0 10.513080 1.152920 3 +SPEAKER 01265 0 12.725850 1.028340 3 +SPEAKER 01265 0 14.268400 1.040000 3 +SPEAKER 01265 0 15.696720 4.454660 3 +SPEAKER 01265 0 20.501000 4.701470 3 +SPEAKER 01265 0 26.161000 1.564850 3 +SPEAKER 01265 0 28.821590 4.414890 3 +SPEAKER 01265 0 33.576910 6.001090 3 +SPEAKER 01265 0 40.130100 4.951680 3 +SPEAKER 01265 0 45.470530 0.662120 3 +SPEAKER 01265 0 46.576910 0.516360 3 +SPEAKER 01265 0 47.874780 1.340430 3 +SPEAKER 01265 0 50.428000 0.820450 3 +SPEAKER 01265 0 51.696720 0.706900 3 +SPEAKER 01265 0 53.578000 4.110000 3 +SPEAKER 01265 0 58.095000 1.535100 3 +SPEAKER 01265 0 62.409360 0.571800 3 +SPEAKER 01265 0 70.215210 2.835300 3 +SPEAKER 01265 0 73.399000 1.728760 3 +SPEAKER 01265 0 75.995570 1.155810 3 +SPEAKER 01265 0 92.823160 1.005750 3 +SPEAKER 01265 0 94.403620 1.086200 3 +SPEAKER 01265 0 134.236000 2.596230 3 +SPEAKER 01265 0 144.484000 2.266000 3 +SPEAKER 01265 0 160.109000 0.510000 3 +SPEAKER 01265 0 202.177670 0.570430 3 +SPEAKER 01265 0 207.304430 0.894370 3 +SPEAKER 01265 0 2.188000 0.382280 2 +SPEAKER 01265 0 8.466840 0.281610 2 +SPEAKER 01265 0 63.673730 0.614950 2 +SPEAKER 01265 0 93.609000 1.595570 2 +SPEAKER 01265 0 104.736950 0.459770 2 +SPEAKER 01265 0 128.917000 0.747990 2 +SPEAKER 01265 0 133.537000 1.444160 2 +SPEAKER 01265 0 140.838730 0.397590 2 +SPEAKER 01265 0 147.004000 1.793000 2 +SPEAKER 01265 0 149.365000 2.829150 2 +SPEAKER 01265 0 152.566270 0.521280 2 +SPEAKER 01265 0 153.470530 3.107470 2 +SPEAKER 01265 0 157.100210 10.274650 2 +SPEAKER 01265 0 167.853000 0.468590 2 +SPEAKER 01265 0 168.832230 5.227770 2 +SPEAKER 01265 0 174.406700 0.728720 2 +SPEAKER 01265 0 175.513000 6.425610 2 +SPEAKER 01265 0 182.203000 0.544000 2 +SPEAKER 01265 0 183.566270 5.259290 2 +SPEAKER 01265 0 189.374000 3.421140 2 +SPEAKER 01265 0 193.410070 3.704930 2 +SPEAKER 01265 0 197.970530 4.126470 2 +SPEAKER 01265 0 202.356000 1.589280 2 +SPEAKER 01265 0 205.388940 0.677330 2 +SPEAKER 01265 0 208.029790 1.056330 2 diff --git a/rttm/many/01267.rttm b/rttm/many/01267.rttm new file mode 100644 index 0000000000000000000000000000000000000000..d2cb36d5824056448b35781048f531eedfaee0cf --- /dev/null +++ b/rttm/many/01267.rttm @@ -0,0 +1,28 @@ +SPEAKER 01267 0 1.032000 3.991000 2 +SPEAKER 01267 0 7.072000 1.605090 2 +SPEAKER 01267 0 25.060810 3.091190 2 +SPEAKER 01267 0 2.104000 2.882000 6 +SPEAKER 01267 0 15.057000 3.947000 6 +SPEAKER 01267 0 26.337000 1.815000 6 +SPEAKER 01267 0 28.456160 0.918600 6 +SPEAKER 01267 0 2.094000 2.910000 8 +SPEAKER 01267 0 22.956160 1.732560 8 +SPEAKER 01267 0 26.375000 1.740000 8 +SPEAKER 01267 0 2.112000 2.929000 4 +SPEAKER 01267 0 19.164000 1.989830 4 +SPEAKER 01267 0 26.374000 1.723000 4 +SPEAKER 01267 0 2.112000 2.929000 1 +SPEAKER 01267 0 21.486000 1.132950 1 +SPEAKER 01267 0 26.356000 1.722000 1 +SPEAKER 01267 0 2.112000 2.874000 5 +SPEAKER 01267 0 12.014000 2.861000 5 +SPEAKER 01267 0 26.356000 1.759000 5 +SPEAKER 01267 0 2.111000 2.893000 7 +SPEAKER 01267 0 9.062000 2.336020 7 +SPEAKER 01267 0 26.412000 1.740000 7 +SPEAKER 01267 0 2.113000 2.873000 0 +SPEAKER 01267 0 5.241000 0.689000 0 +SPEAKER 01267 0 26.412000 1.722000 0 +SPEAKER 01267 0 2.113000 2.928000 3 +SPEAKER 01267 0 5.976000 1.000000 3 +SPEAKER 01267 0 26.393000 1.722000 3 diff --git a/rttm/many/01337.rttm b/rttm/many/01337.rttm new file mode 100644 index 0000000000000000000000000000000000000000..47c3c3ca3f641a1c6c52122171a87e441857e414 --- /dev/null +++ b/rttm/many/01337.rttm @@ -0,0 +1,30 @@ +SPEAKER 01337 0 4.573710 0.498730 4 +SPEAKER 01337 0 5.385000 0.576740 4 +SPEAKER 01337 0 13.343000 2.139670 4 +SPEAKER 01337 0 18.634000 4.416000 4 +SPEAKER 01337 0 29.100000 1.490000 4 +SPEAKER 01337 0 35.177000 10.438370 4 +SPEAKER 01337 0 46.843000 1.010000 4 +SPEAKER 01337 0 50.193000 5.090000 4 +SPEAKER 01337 0 7.795000 0.643450 3 +SPEAKER 01337 0 9.467000 3.540000 3 +SPEAKER 01337 0 15.230000 1.267000 3 +SPEAKER 01337 0 17.977000 0.746000 3 +SPEAKER 01337 0 19.432000 0.525000 3 +SPEAKER 01337 0 20.683000 0.737270 3 +SPEAKER 01337 0 32.165720 2.690910 3 +SPEAKER 01337 0 5.096840 1.851850 2 +SPEAKER 01337 0 7.729510 0.951610 2 +SPEAKER 01337 0 23.003000 3.093840 2 +SPEAKER 01337 0 26.883000 1.712360 2 +SPEAKER 01337 0 32.349400 0.915260 2 +SPEAKER 01337 0 45.631000 1.226000 2 +SPEAKER 01337 0 50.222280 0.669500 2 +SPEAKER 01337 0 52.374830 0.415250 2 +SPEAKER 01337 0 53.726470 0.481480 2 +SPEAKER 01337 0 4.929360 0.654540 1 +SPEAKER 01337 0 5.947000 0.709630 1 +SPEAKER 01337 0 31.055000 1.474360 1 +SPEAKER 01337 0 40.256000 2.014000 1 +SPEAKER 01337 0 6.911660 1.142960 0 +SPEAKER 01337 0 8.467210 1.921480 0 diff --git a/rttm/many/01340.rttm b/rttm/many/01340.rttm new file mode 100644 index 0000000000000000000000000000000000000000..b6524345ef8cf36a5f8f0b34e26a741b1462dd9b --- /dev/null +++ b/rttm/many/01340.rttm @@ -0,0 +1,25 @@ +SPEAKER 01340 0 0.460590 2.270410 3 +SPEAKER 01340 0 3.002000 2.166920 3 +SPEAKER 01340 0 6.138000 0.459000 3 +SPEAKER 01340 0 7.189760 2.583330 3 +SPEAKER 01340 0 10.327000 1.233000 3 +SPEAKER 01340 0 11.932000 0.570260 3 +SPEAKER 01340 0 13.177000 1.016000 3 +SPEAKER 01340 0 14.683000 1.339000 3 +SPEAKER 01340 0 17.235000 0.752000 3 +SPEAKER 01340 0 19.418920 0.803080 3 +SPEAKER 01340 0 20.602000 1.798000 3 +SPEAKER 01340 0 24.196000 0.619000 3 +SPEAKER 01340 0 3.375000 0.814760 4 +SPEAKER 01340 0 5.321000 0.306260 4 +SPEAKER 01340 0 9.238000 1.347590 4 +SPEAKER 01340 0 5.543920 0.604080 1 +SPEAKER 01340 0 11.905000 0.783000 1 +SPEAKER 01340 0 17.981000 1.384000 1 +SPEAKER 01340 0 20.462000 0.706000 1 +SPEAKER 01340 0 23.602000 1.066000 1 +SPEAKER 01340 0 6.958000 0.421000 0 +SPEAKER 01340 0 16.265000 1.803000 0 +SPEAKER 01340 0 18.802000 0.700000 0 +SPEAKER 01340 0 22.752260 0.922740 0 +SPEAKER 01340 0 0.018000 1.375000 2 diff --git a/rttm/many/01345.rttm b/rttm/many/01345.rttm new file mode 100644 index 0000000000000000000000000000000000000000..1d86529b403aa17569780ac9e3da6ac7c5b1a624 --- /dev/null +++ b/rttm/many/01345.rttm @@ -0,0 +1,18 @@ +SPEAKER 01345 0 0.000000 4.783000 0 +SPEAKER 01345 0 15.117000 3.025200 0 +SPEAKER 01345 0 22.217000 0.262410 0 +SPEAKER 01345 0 23.828250 0.744190 0 +SPEAKER 01345 0 25.950000 12.600000 0 +SPEAKER 01345 0 0.000000 1.433000 1 +SPEAKER 01345 0 4.783000 6.894090 1 +SPEAKER 01345 0 13.630580 0.639530 1 +SPEAKER 01345 0 15.117000 0.920550 1 +SPEAKER 01345 0 23.817000 1.255440 1 +SPEAKER 01345 0 0.000000 1.433000 2 +SPEAKER 01345 0 11.483000 3.900000 2 +SPEAKER 01345 0 18.017000 1.950000 2 +SPEAKER 01345 0 20.533000 4.711990 2 +SPEAKER 01345 0 0.000000 1.433000 4 +SPEAKER 01345 0 25.183000 0.621990 4 +SPEAKER 01345 0 0.000000 1.450000 3 +SPEAKER 01345 0 18.383000 2.991760 3 diff --git a/rttm/many/01368.rttm b/rttm/many/01368.rttm new file mode 100644 index 0000000000000000000000000000000000000000..b86adbfbfdae3913d42169b6a13b7186d5ce9028 --- /dev/null +++ b/rttm/many/01368.rttm @@ -0,0 +1,48 @@ +SPEAKER 01368 0 0.000000 5.377260 5 +SPEAKER 01368 0 9.814760 1.312500 5 +SPEAKER 01368 0 15.253000 1.444460 5 +SPEAKER 01368 0 18.647000 1.000000 5 +SPEAKER 01368 0 24.484000 3.171930 5 +SPEAKER 01368 0 30.523000 1.166000 5 +SPEAKER 01368 0 36.020000 0.303360 5 +SPEAKER 01368 0 44.969000 1.202000 5 +SPEAKER 01368 0 51.786000 0.930220 5 +SPEAKER 01368 0 16.921000 2.609790 6 +SPEAKER 01368 0 37.573360 2.985410 6 +SPEAKER 01368 0 9.801000 1.638760 3 +SPEAKER 01368 0 19.905930 1.538460 3 +SPEAKER 01368 0 4.764000 2.259000 8 +SPEAKER 01368 0 8.335590 1.166670 8 +SPEAKER 01368 0 12.503010 1.444450 8 +SPEAKER 01368 0 18.509000 0.998000 8 +SPEAKER 01368 0 22.189000 0.909240 8 +SPEAKER 01368 0 25.209000 1.332000 8 +SPEAKER 01368 0 28.523000 0.479080 8 +SPEAKER 01368 0 29.809780 2.173070 8 +SPEAKER 01368 0 35.859080 0.267860 8 +SPEAKER 01368 0 39.734000 0.267940 8 +SPEAKER 01368 0 40.428000 2.502510 8 +SPEAKER 01368 0 44.091220 2.060780 8 +SPEAKER 01368 0 54.037650 1.464290 8 +SPEAKER 01368 0 57.984080 1.500000 8 +SPEAKER 01368 0 60.375000 0.912650 8 +SPEAKER 01368 0 7.181000 0.758760 1 +SPEAKER 01368 0 32.015000 0.520000 1 +SPEAKER 01368 0 37.060000 0.602650 1 +SPEAKER 01368 0 6.585590 0.437500 2 +SPEAKER 01368 0 7.802000 0.991920 2 +SPEAKER 01368 0 11.764000 1.037000 2 +SPEAKER 01368 0 20.231000 1.000000 2 +SPEAKER 01368 0 24.982850 0.373150 2 +SPEAKER 01368 0 31.261000 0.664000 2 +SPEAKER 01368 0 41.023000 0.746790 2 +SPEAKER 01368 0 7.021030 0.540970 0 +SPEAKER 01368 0 8.106000 0.542090 0 +SPEAKER 01368 0 11.608000 0.522000 0 +SPEAKER 01368 0 32.252080 5.785570 0 +SPEAKER 01368 0 40.450000 1.105510 0 +SPEAKER 01368 0 24.356000 0.915320 4 +SPEAKER 01368 0 27.079010 0.961990 7 +SPEAKER 01368 0 41.338000 0.981000 7 +SPEAKER 01368 0 42.930000 1.107650 7 +SPEAKER 01368 0 57.541000 0.978790 7 diff --git a/rttm/many/01372.rttm b/rttm/many/01372.rttm new file mode 100644 index 0000000000000000000000000000000000000000..599df038721e4e07356f9cb1eb74be09a015a06d --- /dev/null +++ b/rttm/many/01372.rttm @@ -0,0 +1,63 @@ +SPEAKER 01372 0 0.000000 0.559810 0 +SPEAKER 01372 0 0.853000 0.762360 0 +SPEAKER 01372 0 3.597000 1.000000 0 +SPEAKER 01372 0 9.041000 1.038000 0 +SPEAKER 01372 0 14.930000 1.166840 0 +SPEAKER 01372 0 33.782000 1.537000 0 +SPEAKER 01372 0 36.097000 1.704000 0 +SPEAKER 01372 0 39.283000 2.462000 0 +SPEAKER 01372 0 42.486000 1.777510 0 +SPEAKER 01372 0 44.648000 1.000000 0 +SPEAKER 01372 0 50.189000 0.738970 0 +SPEAKER 01372 0 51.782030 0.603390 0 +SPEAKER 01372 0 56.782000 5.296000 0 +SPEAKER 01372 0 62.505000 3.073000 0 +SPEAKER 01372 0 65.838000 1.000000 0 +SPEAKER 01372 0 67.189000 2.297000 0 +SPEAKER 01372 0 70.633880 1.222120 0 +SPEAKER 01372 0 0.041000 0.543180 4 +SPEAKER 01372 0 9.041000 1.000000 4 +SPEAKER 01372 0 18.226470 1.592530 4 +SPEAKER 01372 0 26.211000 0.700660 4 +SPEAKER 01372 0 31.782000 2.407000 4 +SPEAKER 01372 0 35.986000 1.278000 4 +SPEAKER 01372 0 45.393000 0.740880 4 +SPEAKER 01372 0 50.597000 0.722000 4 +SPEAKER 01372 0 52.523000 2.037000 4 +SPEAKER 01372 0 59.301000 0.629000 4 +SPEAKER 01372 0 64.522770 0.500000 4 +SPEAKER 01372 0 69.301000 0.463000 4 +SPEAKER 01372 0 2.134000 0.625860 1 +SPEAKER 01372 0 5.856000 1.704000 1 +SPEAKER 01372 0 16.485730 1.926270 1 +SPEAKER 01372 0 28.930180 0.646730 1 +SPEAKER 01372 0 45.449000 0.537000 1 +SPEAKER 01372 0 50.615000 1.260000 1 +SPEAKER 01372 0 55.272000 1.547060 1 +SPEAKER 01372 0 57.441000 0.766950 1 +SPEAKER 01372 0 61.949000 0.425780 1 +SPEAKER 01372 0 65.584000 1.383000 1 +SPEAKER 01372 0 69.264000 0.629000 1 +SPEAKER 01372 0 70.874000 1.833950 1 +SPEAKER 01372 0 73.134000 0.290000 1 +SPEAKER 01372 0 5.486000 0.478000 3 +SPEAKER 01372 0 23.727000 1.166000 3 +SPEAKER 01372 0 28.134000 1.592000 3 +SPEAKER 01372 0 32.708000 2.667000 3 +SPEAKER 01372 0 37.301000 1.388000 3 +SPEAKER 01372 0 50.597000 0.741000 3 +SPEAKER 01372 0 52.412000 0.685000 3 +SPEAKER 01372 0 55.282000 0.624700 3 +SPEAKER 01372 0 61.671000 0.352720 3 +SPEAKER 01372 0 65.584000 1.531000 3 +SPEAKER 01372 0 69.893000 0.648000 3 +SPEAKER 01372 0 72.355000 0.649000 3 +SPEAKER 01372 0 6.247120 0.423800 2 +SPEAKER 01372 0 11.004250 0.610750 2 +SPEAKER 01372 0 12.906700 1.041990 2 +SPEAKER 01372 0 15.298000 0.780000 2 +SPEAKER 01372 0 19.819000 1.556000 2 +SPEAKER 01372 0 27.108820 0.784180 2 +SPEAKER 01372 0 28.282000 2.759000 2 +SPEAKER 01372 0 37.615000 1.352000 2 +SPEAKER 01372 0 46.042000 4.013630 2 diff --git a/rttm/many/01434.rttm b/rttm/many/01434.rttm new file mode 100644 index 0000000000000000000000000000000000000000..042b11223b23d059a0671b37f06a41e61f7856b0 --- /dev/null +++ b/rttm/many/01434.rttm @@ -0,0 +1,13 @@ +SPEAKER 01434 0 0.000000 7.356000 2 +SPEAKER 01434 0 14.615000 2.500000 2 +SPEAKER 01434 0 7.523000 7.092000 0 +SPEAKER 01434 0 16.171000 0.529000 0 +SPEAKER 01434 0 16.986000 0.370000 0 +SPEAKER 01434 0 12.282000 0.463000 1 +SPEAKER 01434 0 13.319060 0.444940 1 +SPEAKER 01434 0 16.004000 0.408000 1 +SPEAKER 01434 0 17.437000 0.419000 1 +SPEAKER 01434 0 17.467000 3.908000 4 +SPEAKER 01434 0 4.635000 1.000000 3 +SPEAKER 01434 0 10.522000 1.000000 3 +SPEAKER 01434 0 17.596840 0.500000 3 diff --git a/rttm/many/01458.rttm b/rttm/many/01458.rttm new file mode 100644 index 0000000000000000000000000000000000000000..6f3610e4774ca66a9bbc21303ca47bc8c91961dc --- /dev/null +++ b/rttm/many/01458.rttm @@ -0,0 +1,17 @@ +SPEAKER 01458 0 0.000000 2.843090 h0 +SPEAKER 01458 0 2.581000 0.761240 h1 +SPEAKER 01458 0 9.170000 0.447000 h1 +SPEAKER 01458 0 10.233000 0.580000 3 +SPEAKER 01458 0 16.438000 0.883000 3 +SPEAKER 01458 0 2.629060 2.474580 2 +SPEAKER 01458 0 6.232790 2.669210 2 +SPEAKER 01458 0 10.899000 0.927000 2 +SPEAKER 01458 0 12.875000 3.186000 2 +SPEAKER 01458 0 16.470000 1.032000 2 +SPEAKER 01458 0 17.883000 1.207000 2 +SPEAKER 01458 0 19.478000 1.254000 2 +SPEAKER 01458 0 10.267000 0.584000 0 +SPEAKER 01458 0 11.407000 1.584000 0 +SPEAKER 01458 0 15.414000 1.745000 0 +SPEAKER 01458 0 17.777000 0.343000 0 +SPEAKER 01458 0 19.717000 0.388000 0 diff --git a/rttm/many/01461.rttm b/rttm/many/01461.rttm new file mode 100644 index 0000000000000000000000000000000000000000..d72f203a0913fff9d0e474d2d50eeed5001ca00e --- /dev/null +++ b/rttm/many/01461.rttm @@ -0,0 +1,11 @@ +SPEAKER 01461 0 0.013000 3.251000 0 +SPEAKER 01461 0 0.046490 0.476510 h1 +SPEAKER 01461 0 3.630760 1.725240 h1 +SPEAKER 01461 0 8.069000 2.014700 h1 +SPEAKER 01461 0 8.053000 2.024820 4 +SPEAKER 01461 0 9.548410 1.048590 1 +SPEAKER 01461 0 11.801000 2.447410 1 +SPEAKER 01461 0 9.542530 1.075470 3 +SPEAKER 01461 0 5.489590 2.670580 h0 +SPEAKER 01461 0 10.504000 1.278000 h0 +SPEAKER 01461 0 13.301000 6.799000 h0 diff --git a/rttm/many/01491.rttm b/rttm/many/01491.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c6d260fac3c3201e23a79d5350b22093f3dbff25 --- /dev/null +++ b/rttm/many/01491.rttm @@ -0,0 +1,13 @@ +SPEAKER 01491 0 0.546990 16.455560 4 +SPEAKER 01491 0 21.169220 1.328890 4 +SPEAKER 01491 0 24.138110 0.460890 4 +SPEAKER 01491 0 25.769220 14.884780 4 +SPEAKER 01491 0 17.413660 1.000000 1 +SPEAKER 01491 0 25.835880 0.600000 1 +SPEAKER 01491 0 39.769220 1.111110 1 +SPEAKER 01491 0 19.424770 1.182230 3 +SPEAKER 01491 0 21.175000 1.000000 3 +SPEAKER 01491 0 39.902550 0.977780 3 +SPEAKER 01491 0 22.946990 1.022230 0 +SPEAKER 01491 0 40.269220 0.655550 0 +SPEAKER 01491 0 24.269220 1.255550 2 diff --git a/rttm/many/01497.rttm b/rttm/many/01497.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4a8136b7bba2aeb84d08d285f35b25b0b8b174c4 --- /dev/null +++ b/rttm/many/01497.rttm @@ -0,0 +1,30 @@ +SPEAKER 01497 0 0.089000 5.544880 0 +SPEAKER 01497 0 6.207000 2.556510 0 +SPEAKER 01497 0 9.119000 4.477840 0 +SPEAKER 01497 0 14.018630 1.393030 0 +SPEAKER 01497 0 16.957000 1.000000 0 +SPEAKER 01497 0 19.661000 0.883990 0 +SPEAKER 01497 0 22.691000 0.640000 0 +SPEAKER 01497 0 24.615360 1.203700 0 +SPEAKER 01497 0 26.524000 1.193000 0 +SPEAKER 01497 0 30.024000 0.886000 0 +SPEAKER 01497 0 31.351000 0.338440 0 +SPEAKER 01497 0 32.451000 1.363000 0 +SPEAKER 01497 0 35.207950 1.198050 0 +SPEAKER 01497 0 11.798000 0.428470 4 +SPEAKER 01497 0 15.576910 1.265960 4 +SPEAKER 01497 0 19.321590 0.709410 4 +SPEAKER 01497 0 20.656000 2.848250 4 +SPEAKER 01497 0 25.226470 1.251530 4 +SPEAKER 01497 0 28.059000 0.638000 4 +SPEAKER 01497 0 29.947000 0.523530 4 +SPEAKER 01497 0 32.253000 2.208000 4 +SPEAKER 01497 0 19.161000 0.417320 1 +SPEAKER 01497 0 28.393140 1.343340 1 +SPEAKER 01497 0 35.211000 1.163780 1 +SPEAKER 01497 0 21.615360 1.185640 2 +SPEAKER 01497 0 27.041290 1.111110 2 +SPEAKER 01497 0 9.094180 0.792210 5 +SPEAKER 01497 0 23.045000 1.292580 5 +SPEAKER 01497 0 35.170920 0.981480 5 +SPEAKER 01497 0 32.412000 0.699000 3 diff --git a/rttm/many/01521.rttm b/rttm/many/01521.rttm new file mode 100644 index 0000000000000000000000000000000000000000..431d805fa37ea6ed39bde7d981bdb4e3ca51010b --- /dev/null +++ b/rttm/many/01521.rttm @@ -0,0 +1,10 @@ +SPEAKER 01521 0 0.000000 14.079000 1 +SPEAKER 01521 0 18.289000 0.711000 1 +SPEAKER 01521 0 28.135420 1.496580 1 +SPEAKER 01521 0 14.230750 3.980250 0 +SPEAKER 01521 0 20.276200 9.355800 0 +SPEAKER 01521 0 19.066270 1.191490 3 +SPEAKER 01521 0 28.548470 1.079530 3 +SPEAKER 01521 0 19.055630 1.181370 4 +SPEAKER 01521 0 19.076910 1.186090 2 +SPEAKER 01521 0 28.700640 0.963360 2 diff --git a/rttm/many/01554.rttm b/rttm/many/01554.rttm new file mode 100644 index 0000000000000000000000000000000000000000..95b86847c634d09c1b7dd5fc0e10d713d9ec859d --- /dev/null +++ b/rttm/many/01554.rttm @@ -0,0 +1,10 @@ +SPEAKER 01554 0 0.376000 10.293000 0 +SPEAKER 01554 0 11.784000 3.905000 0 +SPEAKER 01554 0 16.785000 2.071000 0 +SPEAKER 01554 0 1.989000 0.622000 1 +SPEAKER 01554 0 5.598000 1.777000 1 +SPEAKER 01554 0 16.652400 0.740740 1 +SPEAKER 01554 0 19.044000 2.245000 2 +SPEAKER 01554 0 19.856000 0.759000 3 +SPEAKER 01554 0 20.467210 0.944450 h0 +SPEAKER 01554 0 21.189440 0.259560 h1 diff --git a/rttm/many/01559.rttm b/rttm/many/01559.rttm new file mode 100644 index 0000000000000000000000000000000000000000..19f7bc75df915c68c5bb04acd2b817fd9e8faa1b --- /dev/null +++ b/rttm/many/01559.rttm @@ -0,0 +1,18 @@ +SPEAKER 01559 0 0.106420 0.562500 0 +SPEAKER 01559 0 1.524000 1.197310 0 +SPEAKER 01559 0 5.043920 0.666670 0 +SPEAKER 01559 0 23.543920 3.791670 0 +SPEAKER 01559 0 28.627260 4.708330 0 +SPEAKER 01559 0 34.163000 0.329000 0 +SPEAKER 01559 0 0.000000 0.502260 1 +SPEAKER 01559 0 5.726000 1.167000 1 +SPEAKER 01559 0 12.523090 2.520830 1 +SPEAKER 01559 0 15.960590 6.354170 1 +SPEAKER 01559 0 28.168920 1.250000 1 +SPEAKER 01559 0 30.439760 1.229160 1 +SPEAKER 01559 0 33.634000 0.648000 1 +SPEAKER 01559 0 10.168920 0.747080 5 +SPEAKER 01559 0 18.269000 0.522000 5 +SPEAKER 01559 0 27.524000 0.686000 5 +SPEAKER 01559 0 10.646000 1.481260 6 +SPEAKER 01559 0 12.521000 0.814590 2 diff --git a/rttm/many/01580.rttm b/rttm/many/01580.rttm new file mode 100644 index 0000000000000000000000000000000000000000..af9ad145374055531dd0124903606c4e823164c7 --- /dev/null +++ b/rttm/many/01580.rttm @@ -0,0 +1,30 @@ +SPEAKER 01580 0 0.004000 3.512610 1 +SPEAKER 01580 0 4.004000 4.222000 1 +SPEAKER 01580 0 8.893000 5.945000 1 +SPEAKER 01580 0 15.189000 2.760000 1 +SPEAKER 01580 0 19.420270 0.393640 1 +SPEAKER 01580 0 21.745000 3.413430 1 +SPEAKER 01580 0 33.801000 0.377780 1 +SPEAKER 01580 0 1.430000 0.908450 4 +SPEAKER 01580 0 8.285290 0.484820 4 +SPEAKER 01580 0 10.467000 0.860430 4 +SPEAKER 01580 0 14.930000 2.086610 4 +SPEAKER 01580 0 20.547540 0.254550 4 +SPEAKER 01580 0 31.180820 2.141790 4 +SPEAKER 01580 0 35.367970 1.027020 4 +SPEAKER 01580 0 36.875000 4.166000 4 +SPEAKER 01580 0 54.986000 0.224670 4 +SPEAKER 01580 0 60.449000 0.418970 4 +SPEAKER 01580 0 61.292760 0.600240 4 +SPEAKER 01580 0 63.222000 12.254070 4 +SPEAKER 01580 0 17.856000 1.185000 0 +SPEAKER 01580 0 19.319000 2.463000 0 +SPEAKER 01580 0 25.680820 5.484440 2 +SPEAKER 01580 0 34.449000 0.722000 2 +SPEAKER 01580 0 38.501710 0.380600 2 +SPEAKER 01580 0 41.262910 0.389090 2 +SPEAKER 01580 0 42.016610 3.580390 2 +SPEAKER 01580 0 45.935530 15.031470 2 +SPEAKER 01580 0 61.375000 2.261040 2 +SPEAKER 01580 0 32.486000 2.203000 h0 +SPEAKER 01580 0 35.303000 0.606650 h0 diff --git a/rttm/many/01596.rttm b/rttm/many/01596.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4da95b3d7bc3b7a31ae911e7f210b15513627a37 --- /dev/null +++ b/rttm/many/01596.rttm @@ -0,0 +1,20 @@ +SPEAKER 01596 0 0.255790 2.468250 3 +SPEAKER 01596 0 4.541500 0.563500 3 +SPEAKER 01596 0 11.800260 0.954740 3 +SPEAKER 01596 0 44.861920 1.166660 3 +SPEAKER 01596 0 50.115000 1.334000 3 +SPEAKER 01596 0 52.060000 2.278000 3 +SPEAKER 01596 0 0.374840 0.420630 1 +SPEAKER 01596 0 18.486000 1.153500 1 +SPEAKER 01596 0 30.528580 7.128210 1 +SPEAKER 01596 0 38.356740 7.304340 1 +SPEAKER 01596 0 47.561530 4.572470 1 +SPEAKER 01596 0 5.566000 0.579410 2 +SPEAKER 01596 0 7.858960 1.590420 2 +SPEAKER 01596 0 10.676420 6.097520 2 +SPEAKER 01596 0 17.894410 12.794310 2 +SPEAKER 01596 0 32.508910 0.237620 2 +SPEAKER 01596 0 33.740790 0.403180 2 +SPEAKER 01596 0 5.533570 0.690470 4 +SPEAKER 01596 0 17.486000 0.761350 4 +SPEAKER 01596 0 14.387980 0.388220 0 diff --git a/rttm/many/01616.rttm b/rttm/many/01616.rttm new file mode 100644 index 0000000000000000000000000000000000000000..44acb97f53a42918f39c96dc35dbe5a95287e2af --- /dev/null +++ b/rttm/many/01616.rttm @@ -0,0 +1,98 @@ +SPEAKER 01616 0 0.003000 4.205000 1 +SPEAKER 01616 0 4.983300 0.613540 1 +SPEAKER 01616 0 5.877000 1.000000 1 +SPEAKER 01616 0 7.524000 4.147000 1 +SPEAKER 01616 0 12.740000 1.007000 1 +SPEAKER 01616 0 17.671000 0.537000 1 +SPEAKER 01616 0 18.559810 4.185190 1 +SPEAKER 01616 0 23.405240 1.839760 1 +SPEAKER 01616 0 26.136950 1.365850 1 +SPEAKER 01616 0 29.004000 0.500250 1 +SPEAKER 01616 0 29.856100 0.777780 1 +SPEAKER 01616 0 33.838000 2.963000 1 +SPEAKER 01616 0 37.097000 2.537000 1 +SPEAKER 01616 0 45.539380 1.112620 1 +SPEAKER 01616 0 51.917000 1.346000 1 +SPEAKER 01616 0 71.693930 1.273280 1 +SPEAKER 01616 0 73.975000 4.103000 1 +SPEAKER 01616 0 79.332230 0.787770 1 +SPEAKER 01616 0 81.630100 0.893620 1 +SPEAKER 01616 0 84.396060 9.080010 1 +SPEAKER 01616 0 93.922020 5.711860 1 +SPEAKER 01616 0 99.911000 0.408060 1 +SPEAKER 01616 0 100.949050 1.256750 1 +SPEAKER 01616 0 104.374620 2.629380 1 +SPEAKER 01616 0 109.693930 4.032070 1 +SPEAKER 01616 0 114.621000 2.434630 1 +SPEAKER 01616 0 118.577000 1.464290 1 +SPEAKER 01616 0 122.587550 2.127660 1 +SPEAKER 01616 0 126.842870 1.648930 1 +SPEAKER 01616 0 129.821590 0.319150 1 +SPEAKER 01616 0 131.098190 0.935810 1 +SPEAKER 01616 0 133.310950 1.730050 1 +SPEAKER 01616 0 136.087550 2.627660 1 +SPEAKER 01616 0 144.130100 2.966740 1 +SPEAKER 01616 0 148.098190 1.887810 1 +SPEAKER 01616 0 150.608820 10.404260 1 +SPEAKER 01616 0 162.140740 5.715360 1 +SPEAKER 01616 0 168.233000 1.000000 1 +SPEAKER 01616 0 172.940000 2.966700 1 +SPEAKER 01616 0 177.204570 1.159570 1 +SPEAKER 01616 0 179.782030 3.018520 1 +SPEAKER 01616 0 1.954020 0.817070 0 +SPEAKER 01616 0 3.747450 1.090550 0 +SPEAKER 01616 0 6.936130 0.457010 0 +SPEAKER 01616 0 13.841790 1.829130 0 +SPEAKER 01616 0 16.294000 1.599140 0 +SPEAKER 01616 0 20.539380 0.316720 0 +SPEAKER 01616 0 25.600360 0.243900 0 +SPEAKER 01616 0 28.466210 0.426830 0 +SPEAKER 01616 0 30.559810 1.555550 0 +SPEAKER 01616 0 32.527000 1.000000 0 +SPEAKER 01616 0 36.758900 0.393500 0 +SPEAKER 01616 0 37.511000 0.622880 0 +SPEAKER 01616 0 42.600360 1.024390 0 +SPEAKER 01616 0 44.600360 0.885640 0 +SPEAKER 01616 0 46.624000 1.415380 0 +SPEAKER 01616 0 49.356460 3.018540 0 +SPEAKER 01616 0 53.170000 0.332800 0 +SPEAKER 01616 0 54.078000 0.796620 0 +SPEAKER 01616 0 55.430000 1.907580 0 +SPEAKER 01616 0 57.948690 0.555560 0 +SPEAKER 01616 0 58.889000 1.726360 0 +SPEAKER 01616 0 61.393040 1.074170 0 +SPEAKER 01616 0 63.031000 0.788060 0 +SPEAKER 01616 0 64.358000 1.831440 0 +SPEAKER 01616 0 67.470530 0.978470 0 +SPEAKER 01616 0 69.385420 0.748460 0 +SPEAKER 01616 0 70.518000 0.782550 0 +SPEAKER 01616 0 100.226000 1.130100 0 +SPEAKER 01616 0 102.300550 1.796450 0 +SPEAKER 01616 0 128.502440 1.189560 0 +SPEAKER 01616 0 132.502440 1.031920 0 +SPEAKER 01616 0 141.566270 0.446810 0 +SPEAKER 01616 0 173.661000 1.000000 0 +SPEAKER 01616 0 176.829000 2.673440 0 +SPEAKER 01616 0 5.577640 0.352540 h0 +SPEAKER 01616 0 11.633000 0.631000 h0 +SPEAKER 01616 0 15.011600 1.745280 h0 +SPEAKER 01616 0 27.974000 0.284900 h0 +SPEAKER 01616 0 71.449000 0.444140 h0 +SPEAKER 01616 0 108.337580 0.420180 h0 +SPEAKER 01616 0 112.640740 2.437260 h0 +SPEAKER 01616 0 161.772000 1.000000 h0 +SPEAKER 01616 0 168.141000 1.659550 h0 +SPEAKER 01616 0 170.267000 0.459470 h0 +SPEAKER 01616 0 171.245000 1.000000 h0 +SPEAKER 01616 0 175.809000 0.510060 h0 +SPEAKER 01616 0 113.906700 0.851060 h2 +SPEAKER 01616 0 172.247000 0.680970 h2 +SPEAKER 01616 0 80.170920 3.203700 h1 +SPEAKER 01616 0 83.992000 2.067810 h1 +SPEAKER 01616 0 91.117000 1.000000 h1 +SPEAKER 01616 0 102.192000 2.886320 h1 +SPEAKER 01616 0 109.002440 0.489360 h1 +SPEAKER 01616 0 113.874620 1.542720 h1 +SPEAKER 01616 0 161.065000 2.254060 h1 +SPEAKER 01616 0 169.800000 1.000000 h1 +SPEAKER 01616 0 175.821590 0.787230 h1 diff --git a/rttm/many/01641.rttm b/rttm/many/01641.rttm new file mode 100644 index 0000000000000000000000000000000000000000..71b512605045806ae4f01f8f425a3dc53d201c2f --- /dev/null +++ b/rttm/many/01641.rttm @@ -0,0 +1,30 @@ +SPEAKER 01641 0 0.023000 3.541760 1 +SPEAKER 01641 0 5.469000 0.305000 1 +SPEAKER 01641 0 7.210590 0.291670 1 +SPEAKER 01641 0 8.148000 0.562590 1 +SPEAKER 01641 0 10.399680 0.567320 1 +SPEAKER 01641 0 13.986000 1.017010 1 +SPEAKER 01641 0 15.541000 2.416480 1 +SPEAKER 01641 0 19.828000 0.644180 1 +SPEAKER 01641 0 22.825120 1.377590 1 +SPEAKER 01641 0 25.245000 1.057710 1 +SPEAKER 01641 0 31.702710 1.406370 1 +SPEAKER 01641 0 3.564760 6.699240 2 +SPEAKER 01641 0 10.726000 3.527010 2 +SPEAKER 01641 0 14.801000 1.507570 2 +SPEAKER 01641 0 22.199000 1.059000 2 +SPEAKER 01641 0 23.949000 1.000000 2 +SPEAKER 01641 0 27.484080 1.000000 2 +SPEAKER 01641 0 1.421000 0.294000 3 +SPEAKER 01641 0 3.004000 0.524970 3 +SPEAKER 01641 0 24.575120 1.573530 3 +SPEAKER 01641 0 26.801000 0.933080 3 +SPEAKER 01641 0 19.722000 0.720770 6 +SPEAKER 01641 0 21.226000 0.926000 6 +SPEAKER 01641 0 17.373000 2.285000 5 +SPEAKER 01641 0 22.203000 1.000000 5 +SPEAKER 01641 0 26.303000 0.497000 5 +SPEAKER 01641 0 28.127000 2.714220 5 +SPEAKER 01641 0 8.776000 0.407000 0 +SPEAKER 01641 0 10.579000 0.560000 0 +SPEAKER 01641 0 26.038000 0.696080 0 diff --git a/rttm/many/01649.rttm b/rttm/many/01649.rttm new file mode 100644 index 0000000000000000000000000000000000000000..1f4efee26e563c13aff7eb142a8f71f12cdb158a --- /dev/null +++ b/rttm/many/01649.rttm @@ -0,0 +1,25 @@ +SPEAKER 01649 0 1.217000 0.800000 h0 +SPEAKER 01649 0 3.663590 3.781690 h0 +SPEAKER 01649 0 8.910070 8.408450 h0 +SPEAKER 01649 0 23.846150 1.908990 h0 +SPEAKER 01649 0 32.540000 1.000000 h0 +SPEAKER 01649 0 2.017000 0.695880 1 +SPEAKER 01649 0 8.057950 0.345070 1 +SPEAKER 01649 0 22.255140 0.436620 1 +SPEAKER 01649 0 26.395980 4.176060 1 +SPEAKER 01649 0 31.368000 1.000000 1 +SPEAKER 01649 0 34.683000 1.107350 1 +SPEAKER 01649 0 36.621330 1.035220 1 +SPEAKER 01649 0 38.081000 1.087490 1 +SPEAKER 01649 0 40.041500 7.741500 1 +SPEAKER 01649 0 17.769220 1.415490 0 +SPEAKER 01649 0 19.522740 1.591550 0 +SPEAKER 01649 0 30.168490 4.466930 0 +SPEAKER 01649 0 35.850000 0.644570 0 +SPEAKER 01649 0 18.583000 1.367000 3 +SPEAKER 01649 0 21.586120 0.422540 2 +SPEAKER 01649 0 23.015700 1.901410 2 +SPEAKER 01649 0 25.832600 1.521130 2 +SPEAKER 01649 0 28.987530 0.471830 2 +SPEAKER 01649 0 31.633500 1.656850 2 +SPEAKER 01649 0 36.367000 1.465600 2 diff --git a/rttm/many/01662.rttm b/rttm/many/01662.rttm new file mode 100644 index 0000000000000000000000000000000000000000..7ff5ece5c9d68fccbd36b7d4a47d3b8856320817 --- /dev/null +++ b/rttm/many/01662.rttm @@ -0,0 +1,47 @@ +SPEAKER 01662 0 0.000000 1.572440 4 +SPEAKER 01662 0 21.944530 0.755810 4 +SPEAKER 01662 0 31.616000 0.917000 4 +SPEAKER 01662 0 37.025920 0.738080 4 +SPEAKER 01662 0 49.293370 1.686040 4 +SPEAKER 01662 0 52.014300 2.255810 4 +SPEAKER 01662 0 0.060000 2.944000 3 +SPEAKER 01662 0 5.281740 2.778260 3 +SPEAKER 01662 0 10.514300 1.337210 3 +SPEAKER 01662 0 15.781740 1.337210 3 +SPEAKER 01662 0 19.107320 1.878680 3 +SPEAKER 01662 0 22.921270 0.337210 3 +SPEAKER 01662 0 23.967780 1.324190 3 +SPEAKER 01662 0 26.467780 2.232560 3 +SPEAKER 01662 0 29.491040 1.994960 3 +SPEAKER 01662 0 32.293370 1.267440 3 +SPEAKER 01662 0 35.851510 0.949490 3 +SPEAKER 01662 0 38.025920 2.965120 3 +SPEAKER 01662 0 41.491040 1.883720 3 +SPEAKER 01662 0 44.014300 1.116280 3 +SPEAKER 01662 0 45.711970 1.446980 3 +SPEAKER 01662 0 50.525920 0.720930 3 +SPEAKER 01662 0 52.584060 0.804940 3 +SPEAKER 01662 0 56.677090 1.067910 3 +SPEAKER 01662 0 58.781740 0.790700 3 +SPEAKER 01662 0 3.339880 0.465110 2 +SPEAKER 01662 0 11.072440 3.802320 2 +SPEAKER 01662 0 16.398020 0.568980 2 +SPEAKER 01662 0 22.177090 1.141910 2 +SPEAKER 01662 0 29.398020 0.627900 2 +SPEAKER 01662 0 36.816620 0.313960 2 +SPEAKER 01662 0 45.130580 0.569760 2 +SPEAKER 01662 0 46.281740 1.000260 2 +SPEAKER 01662 0 48.049180 1.454820 2 +SPEAKER 01662 0 57.828250 0.494750 2 +SPEAKER 01662 0 59.898020 0.476740 2 +SPEAKER 01662 0 6.956160 0.813950 0 +SPEAKER 01662 0 8.049180 0.523260 0 +SPEAKER 01662 0 15.177090 2.046510 0 +SPEAKER 01662 0 23.270110 0.627910 0 +SPEAKER 01662 0 33.339880 2.209300 0 +SPEAKER 01662 0 36.967780 0.720940 0 +SPEAKER 01662 0 40.153830 0.953490 0 +SPEAKER 01662 0 50.642200 1.481860 0 +SPEAKER 01662 0 53.444530 2.893470 0 +SPEAKER 01662 0 59.618950 0.476740 0 +SPEAKER 01662 0 25.514300 1.008700 1 diff --git a/rttm/many/01663.rttm b/rttm/many/01663.rttm new file mode 100644 index 0000000000000000000000000000000000000000..663361e5f0461ce0f6bf41eee529669a08bce941 --- /dev/null +++ b/rttm/many/01663.rttm @@ -0,0 +1,16 @@ +SPEAKER 01663 0 0.004000 2.132950 0 +SPEAKER 01663 0 7.344260 1.622670 0 +SPEAKER 01663 0 11.986000 1.722000 0 +SPEAKER 01663 0 19.838000 1.888000 0 +SPEAKER 01663 0 23.264000 1.592000 0 +SPEAKER 01663 0 2.149140 4.854860 1 +SPEAKER 01663 0 8.307680 3.678320 1 +SPEAKER 01663 0 13.708000 4.889000 1 +SPEAKER 01663 0 21.726000 1.538000 1 +SPEAKER 01663 0 25.774000 1.230000 1 +SPEAKER 01663 0 29.319000 1.278000 1 +SPEAKER 01663 0 9.912000 0.994580 2 +SPEAKER 01663 0 18.819000 1.000000 3 +SPEAKER 01663 0 25.016000 0.785000 3 +SPEAKER 01663 0 27.004000 1.973000 4 +SPEAKER 01663 0 30.597000 2.092000 4 diff --git a/rttm/many/01668.rttm b/rttm/many/01668.rttm new file mode 100644 index 0000000000000000000000000000000000000000..85968581b908413f6d6f8e2b8b0572f364455631 --- /dev/null +++ b/rttm/many/01668.rttm @@ -0,0 +1,68 @@ +SPEAKER 01668 0 0.000000 1.189000 h0 +SPEAKER 01668 0 4.623000 1.000000 h0 +SPEAKER 01668 0 12.384130 5.154320 h0 +SPEAKER 01668 0 20.945860 1.327160 h0 +SPEAKER 01668 0 34.504000 0.408000 h0 +SPEAKER 01668 0 3.456000 1.000000 0 +SPEAKER 01668 0 8.708000 0.481000 0 +SPEAKER 01668 0 22.041000 11.547200 0 +SPEAKER 01668 0 33.921530 0.473330 0 +SPEAKER 01668 0 40.611180 1.077820 0 +SPEAKER 01668 0 44.338000 1.407000 0 +SPEAKER 01668 0 52.036000 0.438860 0 +SPEAKER 01668 0 57.967000 1.000000 0 +SPEAKER 01668 0 60.995000 1.000000 0 +SPEAKER 01668 0 63.078000 4.816860 0 +SPEAKER 01668 0 73.083900 0.784300 0 +SPEAKER 01668 0 74.615000 3.673200 0 +SPEAKER 01668 0 78.948200 2.266660 0 +SPEAKER 01668 0 95.708000 1.130000 0 +SPEAKER 01668 0 105.974170 1.011830 0 +SPEAKER 01668 0 124.523000 0.518000 0 +SPEAKER 01668 0 135.439930 3.694070 0 +SPEAKER 01668 0 140.830340 0.803660 0 +SPEAKER 01668 0 4.196000 0.551710 1 +SPEAKER 01668 0 9.078000 0.686000 1 +SPEAKER 01668 0 18.245000 2.363200 1 +SPEAKER 01668 0 21.248200 0.413330 1 +SPEAKER 01668 0 52.476000 3.250000 1 +SPEAKER 01668 0 72.356000 0.982000 1 +SPEAKER 01668 0 90.764000 1.470860 1 +SPEAKER 01668 0 92.768000 1.926860 1 +SPEAKER 01668 0 95.320000 0.777000 1 +SPEAKER 01668 0 96.856000 2.994890 1 +SPEAKER 01668 0 106.426230 0.513700 1 +SPEAKER 01668 0 129.930000 1.834000 1 +SPEAKER 01668 0 139.152000 1.149000 1 +SPEAKER 01668 0 4.550800 0.981480 4 +SPEAKER 01668 0 9.134000 0.574000 4 +SPEAKER 01668 0 59.297710 0.728400 4 +SPEAKER 01668 0 60.322400 0.765440 4 +SPEAKER 01668 0 86.112530 4.410470 4 +SPEAKER 01668 0 4.035840 0.313560 5 +SPEAKER 01668 0 4.967000 0.628170 5 +SPEAKER 01668 0 108.330340 2.914660 5 +SPEAKER 01668 0 7.078000 1.760000 h1 +SPEAKER 01668 0 9.893000 2.144000 h1 +SPEAKER 01668 0 36.152000 1.207440 h1 +SPEAKER 01668 0 38.112530 1.450620 h1 +SPEAKER 01668 0 40.434000 1.252600 h1 +SPEAKER 01668 0 47.637220 3.950620 h1 +SPEAKER 01668 0 55.504000 1.482000 h1 +SPEAKER 01668 0 68.748330 3.181670 h1 +SPEAKER 01668 0 112.801000 2.870000 h1 +SPEAKER 01668 0 116.430000 1.519000 h1 +SPEAKER 01668 0 118.781610 1.797390 h1 +SPEAKER 01668 0 141.245000 4.463000 h1 +SPEAKER 01668 0 42.115000 2.130000 2 +SPEAKER 01668 0 100.149560 1.420180 2 +SPEAKER 01668 0 102.371790 3.503040 2 +SPEAKER 01668 0 107.171000 0.762520 2 +SPEAKER 01668 0 122.612530 0.672840 2 +SPEAKER 01668 0 133.692770 1.413580 2 +SPEAKER 01668 0 82.806000 0.568860 3 +SPEAKER 01668 0 123.033000 0.783640 3 +SPEAKER 01668 0 124.419380 0.595890 3 +SPEAKER 01668 0 127.023000 0.649800 3 +SPEAKER 01668 0 128.236000 0.484750 3 +SPEAKER 01668 0 137.187000 0.484000 3 diff --git a/rttm/many/01691.rttm b/rttm/many/01691.rttm new file mode 100644 index 0000000000000000000000000000000000000000..903a6c4809658157508e52c01775db7c5b78237c --- /dev/null +++ b/rttm/many/01691.rttm @@ -0,0 +1,41 @@ +SPEAKER 01691 0 6.143000 0.921000 1 +SPEAKER 01691 0 23.115000 0.416560 1 +SPEAKER 01691 0 24.876510 0.652770 1 +SPEAKER 01691 0 26.338000 1.385730 1 +SPEAKER 01691 0 28.841000 0.201000 1 +SPEAKER 01691 0 29.393000 0.371000 1 +SPEAKER 01691 0 30.967000 0.520620 1 +SPEAKER 01691 0 34.245000 1.574000 1 +SPEAKER 01691 0 37.152000 0.752280 1 +SPEAKER 01691 0 46.265000 1.179000 1 +SPEAKER 01691 0 48.634000 1.037000 1 +SPEAKER 01691 0 66.652000 0.852000 1 +SPEAKER 01691 0 73.226000 1.630000 1 +SPEAKER 01691 0 81.084620 0.650380 1 +SPEAKER 01691 0 0.301000 3.555420 0 +SPEAKER 01691 0 8.178000 1.151010 0 +SPEAKER 01691 0 48.390000 0.564000 0 +SPEAKER 01691 0 50.098000 1.077090 0 +SPEAKER 01691 0 53.986000 1.166000 0 +SPEAKER 01691 0 55.801000 4.444000 0 +SPEAKER 01691 0 61.634000 1.870000 0 +SPEAKER 01691 0 67.903000 0.440000 0 +SPEAKER 01691 0 68.745000 2.899150 0 +SPEAKER 01691 0 73.041000 0.723000 0 +SPEAKER 01691 0 74.935000 1.421000 0 +SPEAKER 01691 0 77.523000 4.185000 0 +SPEAKER 01691 0 12.893000 0.687370 3 +SPEAKER 01691 0 13.988270 2.000000 3 +SPEAKER 01691 0 5.312000 0.728550 2 +SPEAKER 01691 0 6.708000 0.944000 2 +SPEAKER 01691 0 8.138000 5.385000 2 +SPEAKER 01691 0 15.959840 1.027780 2 +SPEAKER 01691 0 17.819000 6.307510 2 +SPEAKER 01691 0 28.012000 0.403000 2 +SPEAKER 01691 0 37.689000 2.630000 2 +SPEAKER 01691 0 41.564000 0.470000 2 +SPEAKER 01691 0 42.737620 2.618380 2 +SPEAKER 01691 0 51.708000 1.833000 2 +SPEAKER 01691 0 81.140000 0.537000 2 +SPEAKER 01691 0 69.919170 1.844030 4 +SPEAKER 01691 0 73.004000 0.854430 4 diff --git a/rttm/many/01694.rttm b/rttm/many/01694.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ad2e91cfa6f435bfba7bbefaf528c6e7b61eadf3 --- /dev/null +++ b/rttm/many/01694.rttm @@ -0,0 +1,59 @@ +SPEAKER 01694 0 0.246990 2.566670 3 +SPEAKER 01694 0 4.546990 1.055560 3 +SPEAKER 01694 0 12.746990 0.955560 3 +SPEAKER 01694 0 15.069220 0.600000 3 +SPEAKER 01694 0 16.246990 0.544450 3 +SPEAKER 01694 0 19.618110 0.617770 3 +SPEAKER 01694 0 20.869220 0.544440 3 +SPEAKER 01694 0 21.846990 0.657010 3 +SPEAKER 01694 0 26.235880 0.600000 3 +SPEAKER 01694 0 40.724770 0.455560 3 +SPEAKER 01694 0 42.391440 0.755550 3 +SPEAKER 01694 0 44.591440 0.690560 3 +SPEAKER 01694 0 59.535880 5.500000 3 +SPEAKER 01694 0 65.513660 8.777780 3 +SPEAKER 01694 0 3.313660 1.153340 1 +SPEAKER 01694 0 6.646990 1.288890 1 +SPEAKER 01694 0 16.924770 1.600000 1 +SPEAKER 01694 0 19.335000 1.611990 1 +SPEAKER 01694 0 22.708000 3.333000 1 +SPEAKER 01694 0 29.080330 0.645670 1 +SPEAKER 01694 0 30.580330 1.300000 1 +SPEAKER 01694 0 33.369220 0.611110 1 +SPEAKER 01694 0 34.802550 0.566670 1 +SPEAKER 01694 0 41.226000 0.649000 1 +SPEAKER 01694 0 46.080330 1.388890 1 +SPEAKER 01694 0 52.113660 0.888890 1 +SPEAKER 01694 0 56.035880 1.300000 1 +SPEAKER 01694 0 58.324770 0.866670 1 +SPEAKER 01694 0 64.113660 1.224340 1 +SPEAKER 01694 0 75.769220 3.049780 1 +SPEAKER 01694 0 4.724770 2.177780 0 +SPEAKER 01694 0 8.458110 1.528890 0 +SPEAKER 01694 0 35.702550 1.575560 0 +SPEAKER 01694 0 45.724770 1.909230 0 +SPEAKER 01694 0 48.226000 0.797000 0 +SPEAKER 01694 0 50.613660 0.366670 0 +SPEAKER 01694 0 55.235880 1.144450 0 +SPEAKER 01694 0 56.846990 1.477780 0 +SPEAKER 01694 0 62.024770 1.166670 0 +SPEAKER 01694 0 73.713660 1.790340 0 +SPEAKER 01694 0 6.369220 1.600000 4 +SPEAKER 01694 0 9.435880 0.494120 4 +SPEAKER 01694 0 10.702550 0.635450 4 +SPEAKER 01694 0 11.858110 0.349890 4 +SPEAKER 01694 0 17.135880 1.055560 4 +SPEAKER 01694 0 21.146990 2.577780 4 +SPEAKER 01694 0 24.424770 2.800000 4 +SPEAKER 01694 0 44.669220 1.500000 4 +SPEAKER 01694 0 51.358110 0.822220 4 +SPEAKER 01694 0 53.813660 1.222220 4 +SPEAKER 01694 0 59.702550 0.666670 4 +SPEAKER 01694 0 75.269220 2.288890 4 +SPEAKER 01694 0 7.869220 0.533330 2 +SPEAKER 01694 0 36.624770 1.011110 2 +SPEAKER 01694 0 38.813660 2.233330 2 +SPEAKER 01694 0 42.735880 2.517780 2 +SPEAKER 01694 0 45.869220 0.688890 2 +SPEAKER 01694 0 8.913660 0.777780 h0 +SPEAKER 01694 0 58.791440 0.888890 h0 diff --git a/rttm/many/01703.rttm b/rttm/many/01703.rttm new file mode 100644 index 0000000000000000000000000000000000000000..55b86caae2b27f8f02d0635af1e2578a9f28636e --- /dev/null +++ b/rttm/many/01703.rttm @@ -0,0 +1,54 @@ +SPEAKER 01703 0 0.000000 18.578000 0 +SPEAKER 01703 0 56.356000 9.796000 0 +SPEAKER 01703 0 80.390000 2.225000 0 +SPEAKER 01703 0 86.875000 10.296000 0 +SPEAKER 01703 0 110.301000 7.944000 0 +SPEAKER 01703 0 124.041000 0.574000 0 +SPEAKER 01703 0 126.375000 1.981000 0 +SPEAKER 01703 0 18.615000 11.223000 3 +SPEAKER 01703 0 40.689000 0.389000 3 +SPEAKER 01703 0 43.356000 1.741000 3 +SPEAKER 01703 0 53.004000 3.352000 3 +SPEAKER 01703 0 72.604000 5.474000 3 +SPEAKER 01703 0 83.511000 1.141000 3 +SPEAKER 01703 0 95.708000 0.718000 3 +SPEAKER 01703 0 97.449000 1.315000 3 +SPEAKER 01703 0 99.597000 4.481000 3 +SPEAKER 01703 0 104.708000 5.537000 3 +SPEAKER 01703 0 118.801000 2.351000 3 +SPEAKER 01703 0 122.523000 0.741000 3 +SPEAKER 01703 0 125.708000 1.259000 3 +SPEAKER 01703 0 127.708000 7.518000 3 +SPEAKER 01703 0 136.490000 1.051000 3 +SPEAKER 01703 0 28.375000 11.796000 5 +SPEAKER 01703 0 40.449000 4.203000 5 +SPEAKER 01703 0 52.523000 0.796000 5 +SPEAKER 01703 0 61.171000 0.963000 5 +SPEAKER 01703 0 63.023000 0.407000 5 +SPEAKER 01703 0 65.060000 8.537000 5 +SPEAKER 01703 0 98.412000 0.814000 5 +SPEAKER 01703 0 102.967000 2.537000 5 +SPEAKER 01703 0 120.152000 1.556000 5 +SPEAKER 01703 0 124.949000 0.500000 5 +SPEAKER 01703 0 128.226000 0.723000 5 +SPEAKER 01703 0 136.541000 1.000000 5 +SPEAKER 01703 0 44.467000 9.648000 1 +SPEAKER 01703 0 76.338000 4.240000 1 +SPEAKER 01703 0 83.079000 3.462000 1 +SPEAKER 01703 0 97.652000 2.723000 1 +SPEAKER 01703 0 121.838000 3.666000 1 +SPEAKER 01703 0 23.985730 1.759270 4 +SPEAKER 01703 0 32.189000 0.389000 4 +SPEAKER 01703 0 33.019560 1.336440 4 +SPEAKER 01703 0 37.756400 0.824600 4 +SPEAKER 01703 0 46.467000 4.259000 4 +SPEAKER 01703 0 63.687000 1.169000 4 +SPEAKER 01703 0 67.671000 1.759000 4 +SPEAKER 01703 0 79.949000 1.407000 4 +SPEAKER 01703 0 97.574000 1.523000 4 +SPEAKER 01703 0 119.661000 3.677000 4 +SPEAKER 01703 0 124.801000 1.148000 4 +SPEAKER 01703 0 128.097000 0.907000 4 +SPEAKER 01703 0 136.523000 0.833000 4 +SPEAKER 01703 0 70.967000 1.959000 2 +SPEAKER 01703 0 134.875000 2.055000 2 diff --git a/rttm/many/01744.rttm b/rttm/many/01744.rttm new file mode 100644 index 0000000000000000000000000000000000000000..01f25bbb0319af82d0f27ddc561f4a0a262a6720 --- /dev/null +++ b/rttm/many/01744.rttm @@ -0,0 +1,31 @@ +SPEAKER 01744 0 0.012000 5.820000 5 +SPEAKER 01744 0 7.983000 2.507000 5 +SPEAKER 01744 0 13.011600 0.450570 5 +SPEAKER 01744 0 14.162540 4.990570 5 +SPEAKER 01744 0 20.131980 0.502260 5 +SPEAKER 01744 0 26.690840 0.420000 5 +SPEAKER 01744 0 28.690840 1.616840 5 +SPEAKER 01744 0 34.256880 2.247120 5 +SPEAKER 01744 0 38.294620 0.979380 5 +SPEAKER 01744 0 5.888990 1.319010 4 +SPEAKER 01744 0 10.282000 0.387000 4 +SPEAKER 01744 0 31.964430 1.333380 4 +SPEAKER 01744 0 36.530470 0.796980 4 +SPEAKER 01744 0 7.907830 1.537730 3 +SPEAKER 01744 0 12.738010 0.745290 3 +SPEAKER 01744 0 19.822920 0.981130 3 +SPEAKER 01744 0 24.700280 0.668370 3 +SPEAKER 01744 0 33.464430 0.452830 3 +SPEAKER 01744 0 40.360660 1.082340 3 +SPEAKER 01744 0 8.464430 0.622640 0 +SPEAKER 01744 0 20.690840 1.739160 0 +SPEAKER 01744 0 22.925560 1.384440 0 +SPEAKER 01744 0 29.936130 1.339620 0 +SPEAKER 01744 0 32.054000 0.538690 0 +SPEAKER 01744 0 35.247450 0.923550 0 +SPEAKER 01744 0 38.143670 2.500000 0 +SPEAKER 01744 0 10.238010 1.617990 2 +SPEAKER 01744 0 30.430000 0.449520 2 +SPEAKER 01744 0 7.549000 0.372270 1 +SPEAKER 01744 0 25.266320 1.695680 h0 +SPEAKER 01744 0 28.228580 0.554710 h0 diff --git a/rttm/many/01768.rttm b/rttm/many/01768.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c485eae2df23bb1c4cdd74e60ac5876f8a9966e6 --- /dev/null +++ b/rttm/many/01768.rttm @@ -0,0 +1,34 @@ +SPEAKER 01768 0 3.152000 0.815000 0 +SPEAKER 01768 0 5.161000 1.954000 0 +SPEAKER 01768 0 8.394410 0.461590 0 +SPEAKER 01768 0 13.560000 2.018000 0 +SPEAKER 01768 0 16.786560 0.568630 0 +SPEAKER 01768 0 17.923820 1.395180 0 +SPEAKER 01768 0 20.610090 0.970590 0 +SPEAKER 01768 0 7.384600 0.887400 3 +SPEAKER 01768 0 1.555630 3.159580 h0 +SPEAKER 01768 0 5.257760 0.765960 h0 +SPEAKER 01768 0 9.842870 3.085100 h0 +SPEAKER 01768 0 14.655000 1.386470 h0 +SPEAKER 01768 0 17.521860 1.313720 h0 +SPEAKER 01768 0 19.796370 0.813720 h0 +SPEAKER 01768 0 4.717940 1.558820 1 +SPEAKER 01768 0 11.159110 1.344170 1 +SPEAKER 01768 0 15.502250 0.921570 1 +SPEAKER 01768 0 23.757150 1.375850 1 +SPEAKER 01768 0 0.000000 0.801000 2 +SPEAKER 01768 0 3.859480 1.061520 2 +SPEAKER 01768 0 18.757760 0.502550 2 +SPEAKER 01768 0 1.822870 1.083830 6 +SPEAKER 01768 0 6.768400 1.691490 6 +SPEAKER 01768 0 11.236480 0.686390 6 +SPEAKER 01768 0 13.490000 3.600490 6 +SPEAKER 01768 0 20.766960 1.813720 6 +SPEAKER 01768 0 0.693000 0.681810 h1 +SPEAKER 01768 0 3.365000 1.563000 h1 +SPEAKER 01768 0 7.698330 2.078430 h1 +SPEAKER 01768 0 10.825780 1.343140 h1 +SPEAKER 01768 0 12.855190 0.954960 h1 +SPEAKER 01768 0 16.374800 1.854710 h1 +SPEAKER 01768 0 20.195000 0.856270 h1 +SPEAKER 01768 0 22.217940 2.890880 h1 diff --git a/rttm/many/01771.rttm b/rttm/many/01771.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c0f6b3c08240ad3627c1139a8569034e42bf772e --- /dev/null +++ b/rttm/many/01771.rttm @@ -0,0 +1,16 @@ +SPEAKER 01771 0 0.164000 6.655000 1 +SPEAKER 01771 0 8.949000 4.166000 1 +SPEAKER 01771 0 15.016000 1.359000 1 +SPEAKER 01771 0 23.198000 5.038000 1 +SPEAKER 01771 0 6.356000 2.537000 0 +SPEAKER 01771 0 11.245000 1.000000 0 +SPEAKER 01771 0 12.652000 3.130000 0 +SPEAKER 01771 0 19.638000 2.273000 0 +SPEAKER 01771 0 25.356000 2.889000 0 +SPEAKER 01771 0 12.004000 1.871000 3 +SPEAKER 01771 0 14.986000 4.634000 3 +SPEAKER 01771 0 21.115000 0.963000 3 +SPEAKER 01771 0 23.262000 3.638000 3 +SPEAKER 01771 0 12.637000 0.620000 4 +SPEAKER 01771 0 22.264000 3.349000 4 +SPEAKER 01771 0 14.746000 0.603000 2 diff --git a/rttm/many/01793.rttm b/rttm/many/01793.rttm new file mode 100644 index 0000000000000000000000000000000000000000..a348f89a632ac8a95b114dabf1199f86b7bcef3c --- /dev/null +++ b/rttm/many/01793.rttm @@ -0,0 +1,33 @@ +SPEAKER 01793 0 0.000000 1.002260 3 +SPEAKER 01793 0 5.918920 1.854170 3 +SPEAKER 01793 0 9.707000 0.463000 3 +SPEAKER 01793 0 11.545000 0.832260 3 +SPEAKER 01793 0 14.128000 0.894000 3 +SPEAKER 01793 0 15.316000 0.584000 3 +SPEAKER 01793 0 17.191000 0.943000 3 +SPEAKER 01793 0 18.502000 0.916920 3 +SPEAKER 01793 0 20.147000 1.707000 3 +SPEAKER 01793 0 23.453000 0.326890 3 +SPEAKER 01793 0 25.477000 0.620200 3 +SPEAKER 01793 0 3.106420 1.541670 h0 +SPEAKER 01793 0 12.560000 1.181430 h0 +SPEAKER 01793 0 18.186000 2.132350 h0 +SPEAKER 01793 0 24.847000 0.199810 h0 +SPEAKER 01793 0 26.762050 1.369560 h0 +SPEAKER 01793 0 5.153000 0.786760 1 +SPEAKER 01793 0 10.735000 0.680000 1 +SPEAKER 01793 0 12.819000 0.391050 1 +SPEAKER 01793 0 20.129000 1.185760 1 +SPEAKER 01793 0 23.530000 1.278730 1 +SPEAKER 01793 0 3.481000 0.562920 0 +SPEAKER 01793 0 8.002260 2.020830 0 +SPEAKER 01793 0 15.521000 0.451200 0 +SPEAKER 01793 0 1.186000 0.337090 2 +SPEAKER 01793 0 11.564760 0.625000 2 +SPEAKER 01793 0 22.274000 0.386000 2 +SPEAKER 01793 0 24.792000 0.420000 2 +SPEAKER 01793 0 25.491000 0.313890 2 +SPEAKER 01793 0 29.116000 0.728000 2 +SPEAKER 01793 0 4.175000 0.510960 4 +SPEAKER 01793 0 30.336000 1.280000 4 +SPEAKER 01793 0 33.708000 0.884000 4 diff --git a/rttm/many/01803.rttm b/rttm/many/01803.rttm new file mode 100644 index 0000000000000000000000000000000000000000..23265be835c96e4987955df0ca88fba7feb83d10 --- /dev/null +++ b/rttm/many/01803.rttm @@ -0,0 +1,19 @@ +SPEAKER 01803 0 0.000000 3.833000 1 +SPEAKER 01803 0 5.332350 0.746650 1 +SPEAKER 01803 0 8.917260 0.953740 1 +SPEAKER 01803 0 11.509000 2.238850 1 +SPEAKER 01803 0 14.708000 0.463000 1 +SPEAKER 01803 0 15.556000 2.021640 1 +SPEAKER 01803 0 21.986000 0.793000 1 +SPEAKER 01803 0 1.609000 0.585000 3 +SPEAKER 01803 0 3.946000 3.738360 3 +SPEAKER 01803 0 8.056000 0.761000 3 +SPEAKER 01803 0 10.063000 1.129300 3 +SPEAKER 01803 0 22.978010 0.920640 3 +SPEAKER 01803 0 9.068200 0.802800 5 +SPEAKER 01803 0 23.049440 1.044560 5 +SPEAKER 01803 0 10.010000 1.576000 0 +SPEAKER 01803 0 17.763000 3.970000 0 +SPEAKER 01803 0 24.309000 3.962000 0 +SPEAKER 01803 0 13.563000 1.170000 2 +SPEAKER 01803 0 23.271000 0.715000 4 diff --git a/rttm/many/01820.rttm b/rttm/many/01820.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ac0a97d2eb69c3850c19db3620ca3eb62db062d0 --- /dev/null +++ b/rttm/many/01820.rttm @@ -0,0 +1,15 @@ +SPEAKER 01820 0 0.033000 2.912560 1 +SPEAKER 01820 0 4.747450 4.093490 1 +SPEAKER 01820 0 9.097000 6.716910 1 +SPEAKER 01820 0 18.627000 10.400000 1 +SPEAKER 01820 0 2.709710 2.245290 3 +SPEAKER 01820 0 18.955000 1.000000 3 +SPEAKER 01820 0 24.670920 2.289080 3 +SPEAKER 01820 0 27.902000 0.940410 3 +SPEAKER 01820 0 14.664000 4.192100 2 +SPEAKER 01820 0 18.800000 0.848860 0 +SPEAKER 01820 0 28.229510 0.741930 0 +SPEAKER 01820 0 4.700000 1.462540 h0 +SPEAKER 01820 0 7.113000 1.021240 h0 +SPEAKER 01820 0 9.179000 0.445720 h0 +SPEAKER 01820 0 20.254000 1.394860 h0 diff --git a/rttm/many/01865.rttm b/rttm/many/01865.rttm new file mode 100644 index 0000000000000000000000000000000000000000..9cbbb81260e29bed8f2c16e895e69a88d68ef0e3 --- /dev/null +++ b/rttm/many/01865.rttm @@ -0,0 +1,15 @@ +SPEAKER 01865 0 2.689000 0.778000 1 +SPEAKER 01865 0 9.737000 1.000000 1 +SPEAKER 01865 0 18.565720 0.679280 1 +SPEAKER 01865 0 0.000000 0.785290 0 +SPEAKER 01865 0 3.412000 0.574790 0 +SPEAKER 01865 0 18.469000 0.683260 0 +SPEAKER 01865 0 23.245000 0.778000 0 +SPEAKER 01865 0 1.338000 0.636810 2 +SPEAKER 01865 0 18.356000 2.063380 2 +SPEAKER 01865 0 20.859480 1.515520 2 +SPEAKER 01865 0 24.104380 0.955620 2 +SPEAKER 01865 0 2.152000 0.537000 3 +SPEAKER 01865 0 13.556630 1.429370 5 +SPEAKER 01865 0 16.411000 1.538000 5 +SPEAKER 01865 0 14.597000 1.000000 4 diff --git a/rttm/many/01935.rttm b/rttm/many/01935.rttm new file mode 100644 index 0000000000000000000000000000000000000000..6689eb1c412626e8d17e2d067a1addb248f8712b --- /dev/null +++ b/rttm/many/01935.rttm @@ -0,0 +1,24 @@ +SPEAKER 01935 0 0.042000 0.446000 4 +SPEAKER 01935 0 3.011060 2.080990 4 +SPEAKER 01935 0 21.116000 1.622600 4 +SPEAKER 01935 0 0.324000 3.026000 5 +SPEAKER 01935 0 3.943430 1.362740 5 +SPEAKER 01935 0 7.384600 2.545790 5 +SPEAKER 01935 0 10.551270 1.039220 5 +SPEAKER 01935 0 12.110090 3.499910 5 +SPEAKER 01935 0 16.117640 2.343870 5 +SPEAKER 01935 0 1.124830 1.295080 3 +SPEAKER 01935 0 6.247780 4.246100 3 +SPEAKER 01935 0 14.059260 1.464590 3 +SPEAKER 01935 0 2.442170 4.484520 0 +SPEAKER 01935 0 7.521030 0.783020 0 +SPEAKER 01935 0 12.549330 1.575480 0 +SPEAKER 01935 0 18.222270 3.490760 h +SPEAKER 01935 0 0.725590 0.504410 7 +SPEAKER 01935 0 4.233000 1.000000 7 +SPEAKER 01935 0 18.835220 0.255960 7 +SPEAKER 01935 0 6.838370 0.317370 6 +SPEAKER 01935 0 17.832660 0.480520 1 +SPEAKER 01935 0 7.109000 1.254300 2 +SPEAKER 01935 0 18.306690 0.454540 2 +SPEAKER 01935 0 21.176810 1.607800 2 diff --git a/rttm/many/01954.rttm b/rttm/many/01954.rttm new file mode 100644 index 0000000000000000000000000000000000000000..35576186f56f0fbba92305db8a375ad7b87ebda6 --- /dev/null +++ b/rttm/many/01954.rttm @@ -0,0 +1,33 @@ +SPEAKER 01954 0 0.018000 0.630090 h0 +SPEAKER 01954 0 6.867000 0.280000 h0 +SPEAKER 01954 0 10.896000 0.417000 h0 +SPEAKER 01954 0 16.252260 0.916660 h0 +SPEAKER 01954 0 18.975000 1.416900 h0 +SPEAKER 01954 0 29.708000 1.489460 h0 +SPEAKER 01954 0 31.861000 0.558680 h0 +SPEAKER 01954 0 38.782000 1.107000 h0 +SPEAKER 01954 0 0.801000 1.555000 h1 +SPEAKER 01954 0 16.726000 1.408000 h1 +SPEAKER 01954 0 19.023000 1.892000 h1 +SPEAKER 01954 0 27.152000 1.712120 h1 +SPEAKER 01954 0 33.375000 1.740000 h1 +SPEAKER 01954 0 40.035000 0.440000 h1 +SPEAKER 01954 0 2.951000 0.801260 2 +SPEAKER 01954 0 7.227000 0.379420 2 +SPEAKER 01954 0 11.689000 1.056000 2 +SPEAKER 01954 0 13.615000 2.128000 2 +SPEAKER 01954 0 17.269000 0.524920 2 +SPEAKER 01954 0 20.912000 1.396570 2 +SPEAKER 01954 0 25.280790 0.964210 2 +SPEAKER 01954 0 29.060000 1.304120 2 +SPEAKER 01954 0 32.142000 1.343000 2 +SPEAKER 01954 0 37.322000 2.016000 2 +SPEAKER 01954 0 15.282000 0.803590 1 +SPEAKER 01954 0 18.544000 0.541590 1 +SPEAKER 01954 0 24.208000 1.878340 1 +SPEAKER 01954 0 33.515000 0.765790 1 +SPEAKER 01954 0 18.127260 2.416660 h2 +SPEAKER 01954 0 21.570000 0.786000 h2 +SPEAKER 01954 0 35.060000 1.443010 h2 +SPEAKER 01954 0 0.386000 1.581000 0 +SPEAKER 01954 0 19.058570 1.888890 0 diff --git a/rttm/many/01955.rttm b/rttm/many/01955.rttm new file mode 100644 index 0000000000000000000000000000000000000000..7cd7a28f445c2e4e1dd2e03325063590f29f7af8 --- /dev/null +++ b/rttm/many/01955.rttm @@ -0,0 +1,65 @@ +SPEAKER 01955 0 0.004000 2.074000 0 +SPEAKER 01955 0 2.969000 0.796000 0 +SPEAKER 01955 0 4.333000 1.848410 0 +SPEAKER 01955 0 7.078000 2.041460 0 +SPEAKER 01955 0 11.162020 0.868450 0 +SPEAKER 01955 0 12.532000 3.026770 0 +SPEAKER 01955 0 17.734620 1.533780 0 +SPEAKER 01955 0 23.078000 1.955080 0 +SPEAKER 01955 0 31.143000 0.283690 0 +SPEAKER 01955 0 32.151380 0.511160 0 +SPEAKER 01955 0 34.992730 3.765030 0 +SPEAKER 01955 0 40.924000 7.753000 0 +SPEAKER 01955 0 49.833000 6.348410 0 +SPEAKER 01955 0 60.077640 11.547170 0 +SPEAKER 01955 0 72.068200 0.669810 0 +SPEAKER 01955 0 75.004000 3.271750 0 +SPEAKER 01955 0 80.199150 5.199240 0 +SPEAKER 01955 0 86.252000 8.820000 0 +SPEAKER 01955 0 95.483300 12.221270 0 +SPEAKER 01955 0 108.077640 1.245280 0 +SPEAKER 01955 0 110.521000 0.781000 0 +SPEAKER 01955 0 5.726000 1.093000 2 +SPEAKER 01955 0 8.926690 0.874310 2 +SPEAKER 01955 0 15.159000 2.239390 2 +SPEAKER 01955 0 17.779040 0.500000 2 +SPEAKER 01955 0 18.630100 1.000000 2 +SPEAKER 01955 0 21.055630 0.946810 2 +SPEAKER 01955 0 22.504000 1.604820 2 +SPEAKER 01955 0 25.193930 0.372340 2 +SPEAKER 01955 0 32.622000 2.116010 2 +SPEAKER 01955 0 39.247120 1.500330 2 +SPEAKER 01955 0 48.725000 2.201690 2 +SPEAKER 01955 0 58.282000 3.880020 2 +SPEAKER 01955 0 79.888960 1.251780 2 +SPEAKER 01955 0 83.523000 1.196150 2 +SPEAKER 01955 0 84.992730 1.424530 2 +SPEAKER 01955 0 95.481160 0.829790 2 +SPEAKER 01955 0 103.162020 0.414890 2 +SPEAKER 01955 0 107.864140 0.380860 2 +SPEAKER 01955 0 109.261000 0.637390 2 +SPEAKER 01955 0 7.097000 0.389000 3 +SPEAKER 01955 0 8.819000 2.619610 3 +SPEAKER 01955 0 12.504000 1.195460 3 +SPEAKER 01955 0 23.587550 1.324450 3 +SPEAKER 01955 0 27.268400 1.723400 3 +SPEAKER 01955 0 29.802000 0.992620 3 +SPEAKER 01955 0 31.108000 1.000000 3 +SPEAKER 01955 0 32.698000 1.185000 3 +SPEAKER 01955 0 34.608820 0.507180 3 +SPEAKER 01955 0 38.508000 1.718000 3 +SPEAKER 01955 0 55.448000 3.176810 3 +SPEAKER 01955 0 60.153000 2.126040 3 +SPEAKER 01955 0 73.002000 0.372780 3 +SPEAKER 01955 0 78.747450 2.223080 3 +SPEAKER 01955 0 83.800310 1.447140 3 +SPEAKER 01955 0 89.342000 0.914880 3 +SPEAKER 01955 0 95.087550 1.061270 3 +SPEAKER 01955 0 107.570000 0.394430 3 +SPEAKER 01955 0 8.864140 1.769860 1 +SPEAKER 01955 0 21.215210 0.488080 1 +SPEAKER 01955 0 52.846000 0.788240 1 +SPEAKER 01955 0 61.493080 0.913620 1 +SPEAKER 01955 0 72.727000 2.312900 1 +SPEAKER 01955 0 25.491800 1.617020 h0 +SPEAKER 01955 0 28.257760 1.461390 h0 diff --git a/rttm/many/01984.rttm b/rttm/many/01984.rttm new file mode 100644 index 0000000000000000000000000000000000000000..1352224e9496d07ef62154009d882ebb0d91871d --- /dev/null +++ b/rttm/many/01984.rttm @@ -0,0 +1,42 @@ +SPEAKER 01984 0 0.102550 2.014450 4 +SPEAKER 01984 0 2.691440 1.511110 4 +SPEAKER 01984 0 5.617000 1.199620 4 +SPEAKER 01984 0 8.558110 0.811110 4 +SPEAKER 01984 0 9.880330 6.818000 4 +SPEAKER 01984 0 17.833000 1.325110 4 +SPEAKER 01984 0 19.953230 3.463770 4 +SPEAKER 01984 0 24.580330 7.032670 4 +SPEAKER 01984 0 33.113660 3.753340 4 +SPEAKER 01984 0 38.133000 1.667000 4 +SPEAKER 01984 0 40.540000 0.884770 4 +SPEAKER 01984 0 42.446990 0.888890 4 +SPEAKER 01984 0 44.472840 0.833330 4 +SPEAKER 01984 0 47.200000 2.317000 4 +SPEAKER 01984 0 50.850000 3.033000 4 +SPEAKER 01984 0 54.646990 2.920010 4 +SPEAKER 01984 0 0.017000 0.616000 1 +SPEAKER 01984 0 8.058110 1.700370 1 +SPEAKER 01984 0 12.702550 0.447450 1 +SPEAKER 01984 0 16.382550 1.300450 1 +SPEAKER 01984 0 23.437000 1.433000 1 +SPEAKER 01984 0 27.146990 2.003010 1 +SPEAKER 01984 0 35.135000 0.614000 1 +SPEAKER 01984 0 36.867000 1.266000 1 +SPEAKER 01984 0 43.210000 1.141440 1 +SPEAKER 01984 0 2.150000 1.341440 0 +SPEAKER 01984 0 6.435880 0.700000 0 +SPEAKER 01984 0 27.513660 0.788890 0 +SPEAKER 01984 0 45.533000 1.667000 0 +SPEAKER 01984 0 48.267000 0.680000 0 +SPEAKER 01984 0 49.585000 1.142740 0 +SPEAKER 01984 0 4.333000 1.123160 3 +SPEAKER 01984 0 6.413660 1.069340 3 +SPEAKER 01984 0 24.291440 0.524540 3 +SPEAKER 01984 0 31.653000 1.193990 3 +SPEAKER 01984 0 38.913660 1.669340 3 +SPEAKER 01984 0 41.524770 0.808230 3 +SPEAKER 01984 0 52.267000 0.400000 3 +SPEAKER 01984 0 53.582550 1.130450 3 +SPEAKER 01984 0 7.269220 0.591780 2 +SPEAKER 01984 0 32.200000 0.633000 2 +SPEAKER 01984 0 35.024770 0.600000 2 diff --git a/rttm/many/01997.rttm b/rttm/many/01997.rttm new file mode 100644 index 0000000000000000000000000000000000000000..3391dff2c027192f8658c098d77acf69b06e0fbf --- /dev/null +++ b/rttm/many/01997.rttm @@ -0,0 +1,35 @@ +SPEAKER 01997 0 0.000000 0.648000 2 +SPEAKER 01997 0 9.773000 1.458000 2 +SPEAKER 01997 0 11.857000 1.866910 2 +SPEAKER 01997 0 16.700160 1.176840 2 +SPEAKER 01997 0 18.898000 1.583000 2 +SPEAKER 01997 0 23.919380 2.103620 2 +SPEAKER 01997 0 27.885130 2.318980 2 +SPEAKER 01997 0 33.595000 2.089300 2 +SPEAKER 01997 0 39.223000 8.053760 2 +SPEAKER 01997 0 48.127000 0.709000 2 +SPEAKER 01997 0 49.502000 1.625000 2 +SPEAKER 01997 0 48.982000 0.837000 h0 +SPEAKER 01997 0 0.002000 1.542000 0 +SPEAKER 01997 0 3.502000 1.165900 0 +SPEAKER 01997 0 6.961000 1.000000 0 +SPEAKER 01997 0 13.807690 2.153310 0 +SPEAKER 01997 0 18.076500 6.308630 0 +SPEAKER 01997 0 26.172800 1.871200 0 +SPEAKER 01997 0 30.023000 1.026520 0 +SPEAKER 01997 0 33.130000 0.692920 0 +SPEAKER 01997 0 35.553000 0.462990 0 +SPEAKER 01997 0 36.945000 2.308610 0 +SPEAKER 01997 0 1.747000 2.255000 1 +SPEAKER 01997 0 18.151770 0.822580 1 +SPEAKER 01997 0 30.044000 3.250000 1 +SPEAKER 01997 0 37.219000 1.499960 1 +SPEAKER 01997 0 45.961000 2.134470 1 +SPEAKER 01997 0 3.513000 4.448000 3 +SPEAKER 01997 0 8.919000 0.752000 3 +SPEAKER 01997 0 16.033000 1.258560 3 +SPEAKER 01997 0 20.329190 1.339810 3 +SPEAKER 01997 0 30.440000 1.896000 3 +SPEAKER 01997 0 33.585000 1.000000 3 +SPEAKER 01997 0 35.555000 1.371880 3 +SPEAKER 01997 0 39.185000 1.182470 3 diff --git a/rttm/many/02040.rttm b/rttm/many/02040.rttm new file mode 100644 index 0000000000000000000000000000000000000000..682457667a18bb21ecc5851a6095c4bc15b313b0 --- /dev/null +++ b/rttm/many/02040.rttm @@ -0,0 +1,73 @@ +SPEAKER 02040 0 0.375000 1.111000 0 +SPEAKER 02040 0 2.264990 11.225130 0 +SPEAKER 02040 0 17.143970 1.371790 0 +SPEAKER 02040 0 21.797810 1.871800 0 +SPEAKER 02040 0 26.554220 1.397440 0 +SPEAKER 02040 0 32.926020 1.833330 0 +SPEAKER 02040 0 47.412000 3.277000 0 +SPEAKER 02040 0 51.272170 3.453830 0 +SPEAKER 02040 0 55.097000 2.277740 0 +SPEAKER 02040 0 59.054220 1.358980 0 +SPEAKER 02040 0 65.348000 0.916000 0 +SPEAKER 02040 0 84.208000 1.926000 0 +SPEAKER 02040 0 87.579870 1.051280 0 +SPEAKER 02040 0 100.656790 2.525640 0 +SPEAKER 02040 0 107.523000 2.274810 0 +SPEAKER 02040 0 110.726000 3.649000 0 +SPEAKER 02040 0 114.661000 4.508610 0 +SPEAKER 02040 0 120.118330 1.397430 0 +SPEAKER 02040 0 133.264000 1.425000 0 +SPEAKER 02040 0 146.054220 2.179490 0 +SPEAKER 02040 0 154.652000 1.074000 0 +SPEAKER 02040 0 17.272170 2.879830 1 +SPEAKER 02040 0 27.169610 1.166670 1 +SPEAKER 02040 0 32.746530 7.282050 1 +SPEAKER 02040 0 59.349100 1.302900 1 +SPEAKER 02040 0 61.682430 1.615380 1 +SPEAKER 02040 0 64.195000 1.897690 1 +SPEAKER 02040 0 67.464480 3.447520 1 +SPEAKER 02040 0 72.776000 3.488000 1 +SPEAKER 02040 0 85.002940 1.025640 1 +SPEAKER 02040 0 87.964480 1.628210 1 +SPEAKER 02040 0 90.156790 2.366210 1 +SPEAKER 02040 0 93.233710 1.666670 1 +SPEAKER 02040 0 103.464000 2.476000 1 +SPEAKER 02040 0 119.875000 1.115120 1 +SPEAKER 02040 0 121.631150 0.897850 1 +SPEAKER 02040 0 124.131150 3.115380 1 +SPEAKER 02040 0 127.912000 3.590940 1 +SPEAKER 02040 0 134.605510 2.371790 1 +SPEAKER 02040 0 147.015760 1.673240 1 +SPEAKER 02040 0 149.412000 0.981000 1 +SPEAKER 02040 0 156.272000 0.960000 1 +SPEAKER 02040 0 21.784990 0.948720 4 +SPEAKER 02040 0 23.913200 2.294870 4 +SPEAKER 02040 0 27.887560 0.589740 4 +SPEAKER 02040 0 41.143970 1.397430 4 +SPEAKER 02040 0 45.913200 2.166670 4 +SPEAKER 02040 0 150.784990 0.487180 4 +SPEAKER 02040 0 13.951660 0.910260 2 +SPEAKER 02040 0 27.301000 1.203000 2 +SPEAKER 02040 0 29.467000 2.852000 2 +SPEAKER 02040 0 33.733710 1.371800 2 +SPEAKER 02040 0 37.115000 3.149000 2 +SPEAKER 02040 0 42.426020 0.820510 2 +SPEAKER 02040 0 44.597000 1.241000 2 +SPEAKER 02040 0 47.349100 2.113900 2 +SPEAKER 02040 0 56.301000 2.981000 2 +SPEAKER 02040 0 61.709000 0.795000 2 +SPEAKER 02040 0 66.528580 5.457420 2 +SPEAKER 02040 0 96.095000 2.574610 2 +SPEAKER 02040 0 137.169610 1.666670 2 +SPEAKER 02040 0 139.246530 10.089750 2 +SPEAKER 02040 0 150.523000 2.608150 2 +SPEAKER 02040 0 155.656790 0.641020 2 +SPEAKER 02040 0 28.567040 0.602570 3 +SPEAKER 02040 0 32.438840 2.102560 3 +SPEAKER 02040 0 38.534220 0.710780 3 +SPEAKER 02040 0 54.745000 0.352000 3 +SPEAKER 02040 0 60.054220 0.684780 3 +SPEAKER 02040 0 63.426020 3.374980 3 +SPEAKER 02040 0 76.319000 7.594200 3 +SPEAKER 02040 0 85.930000 1.560120 3 +SPEAKER 02040 0 99.208000 3.141100 3 diff --git a/rttm/many/02071.rttm b/rttm/many/02071.rttm new file mode 100644 index 0000000000000000000000000000000000000000..811203b019a10410382b2c34054878d88ab725cd --- /dev/null +++ b/rttm/many/02071.rttm @@ -0,0 +1,32 @@ +SPEAKER 02071 0 0.504000 0.521920 1 +SPEAKER 02071 0 2.226000 0.462720 1 +SPEAKER 02071 0 3.487000 0.851000 1 +SPEAKER 02071 0 5.340000 1.775360 1 +SPEAKER 02071 0 12.374760 3.518240 1 +SPEAKER 02071 0 22.135000 0.888000 1 +SPEAKER 02071 0 36.031000 0.634460 1 +SPEAKER 02071 0 37.735230 3.676770 1 +SPEAKER 02071 0 0.598000 1.684000 2 +SPEAKER 02071 0 2.706000 1.354000 2 +SPEAKER 02071 0 4.404000 0.544690 2 +SPEAKER 02071 0 2.601000 3.329000 4 +SPEAKER 02071 0 6.316620 7.069770 4 +SPEAKER 02071 0 15.838000 5.073660 4 +SPEAKER 02071 0 21.258000 1.000000 4 +SPEAKER 02071 0 23.211970 2.744190 4 +SPEAKER 02071 0 26.572440 0.968850 4 +SPEAKER 02071 0 29.130580 1.848830 4 +SPEAKER 02071 0 31.537550 0.820450 4 +SPEAKER 02071 0 32.793370 1.784630 4 +SPEAKER 02071 0 35.142200 0.593030 4 +SPEAKER 02071 0 36.153830 1.424170 4 +SPEAKER 02071 0 40.979410 0.358590 4 +SPEAKER 02071 0 4.784000 2.683000 0 +SPEAKER 02071 0 26.170000 0.797000 0 +SPEAKER 02071 0 27.432000 1.331510 0 +SPEAKER 02071 0 30.301000 1.260000 0 +SPEAKER 02071 0 32.171000 0.648060 0 +SPEAKER 02071 0 34.583000 0.489440 0 +SPEAKER 02071 0 35.688720 0.488370 0 +SPEAKER 02071 0 13.514300 1.323700 3 +SPEAKER 02071 0 40.875000 0.557000 3 diff --git a/rttm/many/02116.rttm b/rttm/many/02116.rttm new file mode 100644 index 0000000000000000000000000000000000000000..48134a0ef607182f161ada8715fdbe1979e48c4b --- /dev/null +++ b/rttm/many/02116.rttm @@ -0,0 +1,29 @@ +SPEAKER 02116 0 0.024000 2.864000 2 +SPEAKER 02116 0 3.604000 4.147000 2 +SPEAKER 02116 0 8.331510 1.286040 2 +SPEAKER 02116 0 10.002670 0.813950 2 +SPEAKER 02116 0 20.919000 0.833000 2 +SPEAKER 02116 0 2.153830 0.779070 6 +SPEAKER 02116 0 7.956160 0.616280 6 +SPEAKER 02116 0 9.537550 0.476750 6 +SPEAKER 02116 0 20.781740 3.596260 6 +SPEAKER 02116 0 2.746850 0.906980 4 +SPEAKER 02116 0 6.153830 1.028370 4 +SPEAKER 02116 0 7.549180 0.664650 4 +SPEAKER 02116 0 10.711970 5.540000 4 +SPEAKER 02116 0 17.419000 1.187000 4 +SPEAKER 02116 0 2.107320 1.186050 0 +SPEAKER 02116 0 7.551000 0.712730 0 +SPEAKER 02116 0 20.479410 0.465120 0 +SPEAKER 02116 0 24.014300 0.538700 0 +SPEAKER 02116 0 3.246850 0.395350 3 +SPEAKER 02116 0 12.444530 0.476740 3 +SPEAKER 02116 0 14.446000 0.889150 3 +SPEAKER 02116 0 3.281740 2.202160 1 +SPEAKER 02116 0 11.716000 0.600620 1 +SPEAKER 02116 0 14.804990 0.958610 1 +SPEAKER 02116 0 18.859000 0.655300 1 +SPEAKER 02116 0 22.828250 1.374750 1 +SPEAKER 02116 0 14.991040 5.886960 5 +SPEAKER 02116 0 22.432900 0.406980 5 +SPEAKER 02116 0 23.628000 0.719000 5 diff --git a/rttm/many/02130.rttm b/rttm/many/02130.rttm new file mode 100644 index 0000000000000000000000000000000000000000..7e28e1aa578d4a5bd1132aa0a7e87cb3b211dd20 --- /dev/null +++ b/rttm/many/02130.rttm @@ -0,0 +1,33 @@ +SPEAKER 02130 0 0.000000 4.291520 0 +SPEAKER 02130 0 5.883000 1.879530 0 +SPEAKER 02130 0 12.814000 0.375000 0 +SPEAKER 02130 0 14.838000 0.310090 0 +SPEAKER 02130 0 24.752260 0.879840 0 +SPEAKER 02130 0 28.836000 1.353760 0 +SPEAKER 02130 0 34.151000 0.292000 0 +SPEAKER 02130 0 37.688000 0.541000 0 +SPEAKER 02130 0 0.840000 0.777610 4 +SPEAKER 02130 0 4.690000 0.681230 4 +SPEAKER 02130 0 8.794000 0.939550 4 +SPEAKER 02130 0 12.066000 0.666000 4 +SPEAKER 02130 0 15.565000 2.124760 4 +SPEAKER 02130 0 2.377260 0.604160 3 +SPEAKER 02130 0 3.780000 0.414000 3 +SPEAKER 02130 0 6.396000 0.969000 3 +SPEAKER 02130 0 9.896000 0.356260 3 +SPEAKER 02130 0 11.231420 0.496580 3 +SPEAKER 02130 0 13.106420 2.958340 3 +SPEAKER 02130 0 16.856420 5.520840 3 +SPEAKER 02130 0 23.003000 0.469680 3 +SPEAKER 02130 0 28.049000 0.640760 3 +SPEAKER 02130 0 29.044000 0.395760 3 +SPEAKER 02130 0 31.731420 0.416670 3 +SPEAKER 02130 0 33.816000 0.310000 3 +SPEAKER 02130 0 35.358000 0.248420 3 +SPEAKER 02130 0 36.335590 2.270830 3 +SPEAKER 02130 0 22.948000 0.596000 1 +SPEAKER 02130 0 26.732000 1.041090 1 +SPEAKER 02130 0 23.627000 0.562760 2 +SPEAKER 02130 0 25.918920 4.166670 2 +SPEAKER 02130 0 30.481000 3.187920 2 +SPEAKER 02130 0 34.402000 2.287760 2 diff --git a/rttm/many/02144.rttm b/rttm/many/02144.rttm new file mode 100644 index 0000000000000000000000000000000000000000..cf6731794c69b580fb523d285aea57b065252c2f --- /dev/null +++ b/rttm/many/02144.rttm @@ -0,0 +1,42 @@ +SPEAKER 02144 0 0.949000 1.833000 0 +SPEAKER 02144 0 3.615000 0.485210 0 +SPEAKER 02144 0 7.138000 0.589000 0 +SPEAKER 02144 0 8.708000 7.246020 0 +SPEAKER 02144 0 40.597000 1.074000 0 +SPEAKER 02144 0 44.933000 0.596790 0 +SPEAKER 02144 0 59.949000 1.296000 0 +SPEAKER 02144 0 65.116000 0.777000 0 +SPEAKER 02144 0 2.938240 0.507040 4 +SPEAKER 02144 0 4.361000 0.611000 4 +SPEAKER 02144 0 15.478410 0.800280 4 +SPEAKER 02144 0 40.226000 1.254490 4 +SPEAKER 02144 0 49.739000 1.000000 4 +SPEAKER 02144 0 53.282000 0.834000 4 +SPEAKER 02144 0 57.250000 0.995000 4 +SPEAKER 02144 0 62.834000 1.000000 4 +SPEAKER 02144 0 66.344260 0.696740 4 +SPEAKER 02144 0 73.245000 3.481000 4 +SPEAKER 02144 0 78.563770 1.414640 4 +SPEAKER 02144 0 82.053000 2.488000 4 +SPEAKER 02144 0 4.856000 1.556000 5 +SPEAKER 02144 0 7.132000 1.830000 5 +SPEAKER 02144 0 24.186000 0.816800 5 +SPEAKER 02144 0 44.806000 2.001680 5 +SPEAKER 02144 0 61.060000 1.747680 5 +SPEAKER 02144 0 68.951000 1.673750 5 +SPEAKER 02144 0 71.823000 1.414000 5 +SPEAKER 02144 0 16.271000 11.743990 1 +SPEAKER 02144 0 40.264000 2.481000 1 +SPEAKER 02144 0 43.949000 0.703000 1 +SPEAKER 02144 0 46.486000 1.589970 1 +SPEAKER 02144 0 49.004000 0.722000 1 +SPEAKER 02144 0 54.189000 0.815000 1 +SPEAKER 02144 0 68.726000 3.334000 1 +SPEAKER 02144 0 79.745000 2.333000 1 +SPEAKER 02144 0 6.671000 0.352000 2 +SPEAKER 02144 0 35.023000 0.926000 2 +SPEAKER 02144 0 37.431190 1.223810 2 +SPEAKER 02144 0 42.486000 1.853640 2 +SPEAKER 02144 0 49.967000 2.111000 2 +SPEAKER 02144 0 30.831000 2.403510 h0 +SPEAKER 02144 0 85.983000 2.065000 h0 diff --git a/rttm/many/02162.rttm b/rttm/many/02162.rttm new file mode 100644 index 0000000000000000000000000000000000000000..13689a473c9be7194b0c3bf8f48a290a0d7a1532 --- /dev/null +++ b/rttm/many/02162.rttm @@ -0,0 +1,46 @@ +SPEAKER 02162 0 0.110090 3.460790 4 +SPEAKER 02162 0 3.865000 2.529410 4 +SPEAKER 02162 0 6.728000 2.097780 4 +SPEAKER 02162 0 18.423820 1.509180 4 +SPEAKER 02162 0 31.177090 3.374180 4 +SPEAKER 02162 0 34.943430 1.558820 4 +SPEAKER 02162 0 37.423820 1.171870 4 +SPEAKER 02162 0 38.909650 10.631750 4 +SPEAKER 02162 0 50.815980 1.754900 4 +SPEAKER 02162 0 53.286560 1.803930 4 +SPEAKER 02162 0 55.619900 1.742020 4 +SPEAKER 02162 0 2.873000 1.606320 2 +SPEAKER 02162 0 5.414000 0.392170 2 +SPEAKER 02162 0 15.904210 2.450980 2 +SPEAKER 02162 0 19.896750 5.348590 2 +SPEAKER 02162 0 25.598000 5.914050 2 +SPEAKER 02162 0 35.727740 1.794120 2 +SPEAKER 02162 0 38.061000 0.804000 2 +SPEAKER 02162 0 47.894410 0.921570 2 +SPEAKER 02162 0 8.061070 3.790150 3 +SPEAKER 02162 0 12.181410 4.481130 3 +SPEAKER 02162 0 32.142000 0.569970 3 +SPEAKER 02162 0 47.014000 3.370600 3 +SPEAKER 02162 0 54.849000 1.221880 3 +SPEAKER 02162 0 56.464480 1.217950 3 +SPEAKER 02162 0 8.614590 2.744890 1 +SPEAKER 02162 0 13.717540 0.725890 1 +SPEAKER 02162 0 43.806170 2.343140 1 +SPEAKER 02162 0 52.041470 0.392150 1 +SPEAKER 02162 0 56.472840 1.227160 1 +SPEAKER 02162 0 11.227740 1.421570 6 +SPEAKER 02162 0 17.186220 2.517550 6 +SPEAKER 02162 0 51.286560 2.576570 6 +SPEAKER 02162 0 56.746530 0.679490 6 +SPEAKER 02162 0 10.012550 0.602040 0 +SPEAKER 02162 0 16.800000 1.294640 0 +SPEAKER 02162 0 19.923820 0.385210 0 +SPEAKER 02162 0 31.433620 1.892160 0 +SPEAKER 02162 0 41.129700 1.107840 0 +SPEAKER 02162 0 51.492450 0.687450 0 +SPEAKER 02162 0 24.766960 1.930040 h0 +SPEAKER 02162 0 27.968000 0.627690 h0 +SPEAKER 02162 0 50.404210 0.970590 h0 +SPEAKER 02162 0 33.727740 0.754900 5 +SPEAKER 02162 0 34.976000 2.143900 5 +SPEAKER 02162 0 43.421000 0.679290 5 diff --git a/rttm/many/02180.rttm b/rttm/many/02180.rttm new file mode 100644 index 0000000000000000000000000000000000000000..8db3d86f742250b1867cfbb550e34df82a08b570 --- /dev/null +++ b/rttm/many/02180.rttm @@ -0,0 +1,49 @@ +SPEAKER 02180 0 0.034000 4.187310 3 +SPEAKER 02180 0 15.159910 5.877190 3 +SPEAKER 02180 0 46.352890 0.377190 3 +SPEAKER 02180 0 52.105940 7.751060 3 +SPEAKER 02180 0 60.643000 0.788000 3 +SPEAKER 02180 0 71.605940 1.251060 3 +SPEAKER 02180 0 80.973860 1.981140 3 +SPEAKER 02180 0 4.883000 5.963570 4 +SPEAKER 02180 0 39.812890 11.408420 4 +SPEAKER 02180 0 51.511600 0.660380 4 +SPEAKER 02180 0 57.332350 0.896230 4 +SPEAKER 02180 0 61.775750 1.118250 4 +SPEAKER 02180 0 64.077640 0.452830 4 +SPEAKER 02180 0 65.322920 2.660380 4 +SPEAKER 02180 0 78.256880 4.641510 4 +SPEAKER 02180 0 4.010790 0.710520 0 +SPEAKER 02180 0 10.984470 0.780700 0 +SPEAKER 02180 0 20.379210 0.622800 0 +SPEAKER 02180 0 22.116050 1.403510 0 +SPEAKER 02180 0 25.642360 2.692990 0 +SPEAKER 02180 0 31.002010 0.543860 0 +SPEAKER 02180 0 33.838000 0.865770 0 +SPEAKER 02180 0 39.309030 0.412280 0 +SPEAKER 02180 0 50.519560 0.456140 0 +SPEAKER 02180 0 63.859520 1.144910 0 +SPEAKER 02180 0 68.011600 1.113210 0 +SPEAKER 02180 0 80.992730 2.000000 0 +SPEAKER 02180 0 11.765170 3.649120 1 +SPEAKER 02180 0 72.936130 0.994870 1 +SPEAKER 02180 0 81.030470 1.943390 1 +SPEAKER 02180 0 4.387980 0.456140 6 +SPEAKER 02180 0 21.098500 1.353340 6 +SPEAKER 02180 0 74.087070 1.037740 6 +SPEAKER 02180 0 81.021030 1.933970 6 +SPEAKER 02180 0 23.607280 3.798240 5 +SPEAKER 02180 0 31.414290 0.526320 5 +SPEAKER 02180 0 50.605940 0.367920 5 +SPEAKER 02180 0 59.747450 1.226410 5 +SPEAKER 02180 0 62.568200 0.806800 5 +SPEAKER 02180 0 69.304050 2.254720 5 +SPEAKER 02180 0 78.162540 1.481130 5 +SPEAKER 02180 0 81.049330 1.716990 5 +SPEAKER 02180 0 28.019560 11.374440 2 +SPEAKER 02180 0 50.521030 0.490570 2 +SPEAKER 02180 0 75.671980 0.666020 2 +SPEAKER 02180 0 81.021030 2.066040 2 +SPEAKER 02180 0 50.662540 0.518870 7 +SPEAKER 02180 0 77.162540 0.877360 7 +SPEAKER 02180 0 81.030470 2.650530 7 diff --git a/rttm/many/02209.rttm b/rttm/many/02209.rttm new file mode 100644 index 0000000000000000000000000000000000000000..b728ea6144b6065cc7e171ae1b77ded3e320ac0f --- /dev/null +++ b/rttm/many/02209.rttm @@ -0,0 +1,35 @@ +SPEAKER 02209 0 0.000000 2.171000 5 +SPEAKER 02209 0 7.294070 2.691930 5 +SPEAKER 02209 0 18.678690 2.307690 5 +SPEAKER 02209 0 51.264000 2.148000 5 +SPEAKER 02209 0 59.240230 0.738460 5 +SPEAKER 02209 0 61.001770 1.030760 5 +SPEAKER 02209 0 63.689000 0.989690 5 +SPEAKER 02209 0 6.017150 1.061170 7 +SPEAKER 02209 0 51.171000 2.185000 7 +SPEAKER 02209 0 6.063000 1.000000 3 +SPEAKER 02209 0 10.504000 1.722000 3 +SPEAKER 02209 0 34.463300 0.890700 3 +SPEAKER 02209 0 51.078000 2.019000 3 +SPEAKER 02209 0 51.041000 2.130000 4 +SPEAKER 02209 0 61.097000 1.148000 1 +SPEAKER 02209 0 51.189000 2.260000 2 +SPEAKER 02209 0 12.347920 2.527080 0 +SPEAKER 02209 0 17.624840 0.530770 0 +SPEAKER 02209 0 21.655610 5.346160 0 +SPEAKER 02209 0 27.286380 4.123080 0 +SPEAKER 02209 0 32.598730 3.610730 0 +SPEAKER 02209 0 36.786380 5.484620 0 +SPEAKER 02209 0 43.286380 1.022620 0 +SPEAKER 02209 0 48.732530 3.253850 0 +SPEAKER 02209 0 53.671000 2.653840 0 +SPEAKER 02209 0 58.771000 3.300000 0 +SPEAKER 02209 0 62.447920 2.361540 0 +SPEAKER 02209 0 2.319000 3.867380 h0 +SPEAKER 02209 0 12.041000 1.630000 h0 +SPEAKER 02209 0 16.282000 2.389000 h0 +SPEAKER 02209 0 20.724840 0.890160 h0 +SPEAKER 02209 0 42.338000 6.703000 h0 +SPEAKER 02209 0 31.412000 1.481000 h1 +SPEAKER 02209 0 45.708000 2.444000 h1 +SPEAKER 02209 0 56.494070 1.961540 h1 diff --git a/rttm/many/02239.rttm b/rttm/many/02239.rttm new file mode 100644 index 0000000000000000000000000000000000000000..1e1763f77fee253be07cff37f53623c0b3173674 --- /dev/null +++ b/rttm/many/02239.rttm @@ -0,0 +1,24 @@ +SPEAKER 02239 0 0.078000 1.500000 4 +SPEAKER 02239 0 2.248150 0.663850 4 +SPEAKER 02239 0 7.194070 1.383930 4 +SPEAKER 02239 0 1.615000 0.852000 2 +SPEAKER 02239 0 2.949000 1.944000 2 +SPEAKER 02239 0 7.755000 4.923690 2 +SPEAKER 02239 0 13.337190 0.851810 2 +SPEAKER 02239 0 26.523000 1.315000 2 +SPEAKER 02239 0 4.809790 1.120210 0 +SPEAKER 02239 0 14.155610 0.738460 0 +SPEAKER 02239 0 15.502340 3.205660 0 +SPEAKER 02239 0 19.338450 10.390910 0 +SPEAKER 02239 0 30.189000 7.276720 0 +SPEAKER 02239 0 6.017150 1.597850 3 +SPEAKER 02239 0 14.486000 0.969610 3 +SPEAKER 02239 0 26.597000 1.060000 3 +SPEAKER 02239 0 35.293000 0.709340 3 +SPEAKER 02239 0 39.965720 1.666280 3 +SPEAKER 02239 0 12.689000 0.680690 1 +SPEAKER 02239 0 15.523000 0.697270 1 +SPEAKER 02239 0 16.738450 2.554550 1 +SPEAKER 02239 0 21.689000 0.486810 1 +SPEAKER 02239 0 28.115000 2.056000 1 +SPEAKER 02239 0 40.156630 0.627270 1 diff --git a/rttm/many/02242.rttm b/rttm/many/02242.rttm new file mode 100644 index 0000000000000000000000000000000000000000..014f37488da9b45f90e91b23ee3dbbe8a36ac5d1 --- /dev/null +++ b/rttm/many/02242.rttm @@ -0,0 +1,30 @@ +SPEAKER 02242 0 0.004000 2.089000 0 +SPEAKER 02242 0 9.611180 0.581820 0 +SPEAKER 02242 0 11.804000 3.161720 0 +SPEAKER 02242 0 15.356630 2.509090 0 +SPEAKER 02242 0 19.020270 0.465730 0 +SPEAKER 02242 0 20.529360 0.472730 0 +SPEAKER 02242 0 3.209000 0.950000 3 +SPEAKER 02242 0 9.588000 0.589000 3 +SPEAKER 02242 0 10.602000 0.836000 3 +SPEAKER 02242 0 20.930000 0.561000 3 +SPEAKER 02242 0 2.146010 0.423730 1 +SPEAKER 02242 0 4.112110 1.889830 1 +SPEAKER 02242 0 6.773130 0.415870 1 +SPEAKER 02242 0 8.764660 2.355930 1 +SPEAKER 02242 0 11.985000 0.778000 1 +SPEAKER 02242 0 17.086690 0.728810 1 +SPEAKER 02242 0 2.213810 4.813560 2 +SPEAKER 02242 0 7.917200 2.152540 2 +SPEAKER 02242 0 11.239230 0.822040 2 +SPEAKER 02242 0 3.336000 1.290000 7 +SPEAKER 02242 0 6.196000 2.609000 7 +SPEAKER 02242 0 11.328000 1.440000 7 +SPEAKER 02242 0 15.190000 0.851000 7 +SPEAKER 02242 0 4.823980 0.779660 6 +SPEAKER 02242 0 8.323980 0.677960 6 +SPEAKER 02242 0 3.603640 1.364410 5 +SPEAKER 02242 0 7.035840 0.627120 5 +SPEAKER 02242 0 6.137540 1.593220 4 +SPEAKER 02242 0 9.366350 3.398650 4 +SPEAKER 02242 0 17.730760 2.322030 4 diff --git a/rttm/many/02243.rttm b/rttm/many/02243.rttm new file mode 100644 index 0000000000000000000000000000000000000000..3acc064999de4e36aa2e58a931fbbb4976dc8831 --- /dev/null +++ b/rttm/many/02243.rttm @@ -0,0 +1,88 @@ +SPEAKER 02243 0 1.502550 4.612450 0 +SPEAKER 02243 0 7.224770 0.833340 0 +SPEAKER 02243 0 10.124770 5.455560 0 +SPEAKER 02243 0 17.513660 11.546340 0 +SPEAKER 02243 0 46.746990 16.513010 0 +SPEAKER 02243 0 64.678110 7.246660 0 +SPEAKER 02243 0 72.780330 0.655550 0 +SPEAKER 02243 0 85.424770 16.388890 0 +SPEAKER 02243 0 117.880330 1.100000 0 +SPEAKER 02243 0 126.380330 0.544440 0 +SPEAKER 02243 0 138.502550 0.673330 0 +SPEAKER 02243 0 149.824770 0.809230 0 +SPEAKER 02243 0 163.680330 17.244440 0 +SPEAKER 02243 0 182.480330 0.522220 0 +SPEAKER 02243 0 185.246990 3.998010 0 +SPEAKER 02243 0 192.402550 5.194450 0 +SPEAKER 02243 0 200.835880 1.033340 0 +SPEAKER 02243 0 204.782000 1.331660 0 +SPEAKER 02243 0 212.124770 1.233340 0 +SPEAKER 02243 0 216.102550 1.216450 0 +SPEAKER 02243 0 218.113660 0.422220 0 +SPEAKER 02243 0 220.813660 0.711110 0 +SPEAKER 02243 0 227.069220 6.800000 0 +SPEAKER 02243 0 235.491440 1.411110 0 +SPEAKER 02243 0 237.335880 0.722230 0 +SPEAKER 02243 0 241.413660 18.066670 0 +SPEAKER 02243 0 259.858110 3.826660 0 +SPEAKER 02243 0 264.266990 1.997780 0 +SPEAKER 02243 0 267.902550 1.286450 0 +SPEAKER 02243 0 270.301000 2.814000 0 +SPEAKER 02243 0 274.424770 0.677780 0 +SPEAKER 02243 0 276.402550 0.731450 0 +SPEAKER 02243 0 278.780330 1.612670 0 +SPEAKER 02243 0 282.003000 6.816000 0 +SPEAKER 02243 0 292.113660 0.666670 0 +SPEAKER 02243 0 294.891440 2.388890 0 +SPEAKER 02243 0 299.980330 0.944440 0 +SPEAKER 02243 0 301.758110 2.166660 0 +SPEAKER 02243 0 8.438110 1.120000 1 +SPEAKER 02243 0 15.302550 0.611110 1 +SPEAKER 02243 0 16.930000 0.905880 1 +SPEAKER 02243 0 29.046990 1.533340 1 +SPEAKER 02243 0 31.458110 1.711110 1 +SPEAKER 02243 0 33.791440 6.557780 1 +SPEAKER 02243 0 40.958110 5.655550 1 +SPEAKER 02243 0 54.245000 0.778000 1 +SPEAKER 02243 0 63.702550 0.966670 1 +SPEAKER 02243 0 71.713660 0.933330 1 +SPEAKER 02243 0 73.035880 5.633340 1 +SPEAKER 02243 0 79.380330 5.988890 1 +SPEAKER 02243 0 102.169220 7.222220 1 +SPEAKER 02243 0 109.669220 5.202220 1 +SPEAKER 02243 0 115.524770 2.022220 1 +SPEAKER 02243 0 118.791440 4.117780 1 +SPEAKER 02243 0 123.346990 2.566670 1 +SPEAKER 02243 0 126.680330 1.277780 1 +SPEAKER 02243 0 128.260330 19.616670 1 +SPEAKER 02243 0 148.746990 0.911120 1 +SPEAKER 02243 0 150.369220 6.677770 1 +SPEAKER 02243 0 157.924770 5.411110 1 +SPEAKER 02243 0 180.669220 1.575780 1 +SPEAKER 02243 0 189.358110 2.766660 1 +SPEAKER 02243 0 197.691440 2.711110 1 +SPEAKER 02243 0 205.802550 1.411110 1 +SPEAKER 02243 0 208.024770 3.088890 1 +SPEAKER 02243 0 212.369220 0.811110 1 +SPEAKER 02243 0 215.080330 1.188890 1 +SPEAKER 02243 0 216.813660 1.177780 1 +SPEAKER 02243 0 218.591440 2.153560 1 +SPEAKER 02243 0 221.413660 2.128890 1 +SPEAKER 02243 0 214.124770 0.988890 3 +SPEAKER 02243 0 223.509000 1.749110 3 +SPEAKER 02243 0 257.560330 1.153330 3 +SPEAKER 02243 0 266.546990 1.013010 3 +SPEAKER 02243 0 269.069220 1.271780 3 +SPEAKER 02243 0 288.191440 0.844440 3 +SPEAKER 02243 0 307.091440 0.833330 3 +SPEAKER 02243 0 239.758110 1.255550 4 +SPEAKER 02243 0 272.580330 1.566660 4 +SPEAKER 02243 0 275.413660 0.928890 4 +SPEAKER 02243 0 277.935880 0.846120 4 +SPEAKER 02243 0 280.458110 0.675890 4 +SPEAKER 02243 0 295.213660 0.711110 4 +SPEAKER 02243 0 298.002550 0.666670 4 +SPEAKER 02243 0 288.913660 2.744450 2 +SPEAKER 02243 0 292.146990 2.728010 2 +SPEAKER 02243 0 296.724770 3.288890 2 +SPEAKER 02243 0 303.924770 6.301230 2 diff --git a/rttm/many/02250.rttm b/rttm/many/02250.rttm new file mode 100644 index 0000000000000000000000000000000000000000..6ceba7cf6aa3f8f0bb6a5886bfca3753c41d7f29 --- /dev/null +++ b/rttm/many/02250.rttm @@ -0,0 +1,22 @@ +SPEAKER 02250 0 0.000000 14.513660 1 +SPEAKER 02250 0 17.244000 0.383260 1 +SPEAKER 02250 0 20.252260 2.645830 1 +SPEAKER 02250 0 23.876000 0.315440 1 +SPEAKER 02250 0 27.954000 1.393000 1 +SPEAKER 02250 0 4.045000 1.090000 5 +SPEAKER 02250 0 8.114000 1.000000 5 +SPEAKER 02250 0 13.809000 7.922420 5 +SPEAKER 02250 0 23.168920 1.375000 5 +SPEAKER 02250 0 27.939760 1.125000 5 +SPEAKER 02250 0 9.194000 1.266590 2 +SPEAKER 02250 0 14.523000 0.458420 2 +SPEAKER 02250 0 24.732000 0.395260 2 +SPEAKER 02250 0 20.077000 1.008590 6 +SPEAKER 02250 0 20.306000 1.000000 0 +SPEAKER 02250 0 5.231420 0.562500 4 +SPEAKER 02250 0 25.002260 2.895830 4 +SPEAKER 02250 0 4.403000 0.889000 3 +SPEAKER 02250 0 18.934000 1.401590 3 +SPEAKER 02250 0 23.648090 2.583330 3 +SPEAKER 02250 0 27.180000 0.884760 3 +SPEAKER 02250 0 28.919000 0.524000 3 diff --git a/rttm/many/02258.rttm b/rttm/many/02258.rttm new file mode 100644 index 0000000000000000000000000000000000000000..1f7c17868fce1b5101dcf9b4a4e33cccfd4f41b2 --- /dev/null +++ b/rttm/many/02258.rttm @@ -0,0 +1,39 @@ +SPEAKER 02258 0 0.009000 0.784000 1 +SPEAKER 02258 0 15.106000 1.164000 1 +SPEAKER 02258 0 19.671000 0.481000 1 +SPEAKER 02258 0 22.457000 0.736110 1 +SPEAKER 02258 0 40.912000 1.112000 1 +SPEAKER 02258 0 0.513080 3.423050 0 +SPEAKER 02258 0 7.539000 4.940000 0 +SPEAKER 02258 0 13.307000 1.652890 0 +SPEAKER 02258 0 17.162020 2.443980 0 +SPEAKER 02258 0 20.606000 1.000000 0 +SPEAKER 02258 0 23.017000 1.006720 0 +SPEAKER 02258 0 25.757760 1.031920 0 +SPEAKER 02258 0 27.121000 1.243140 0 +SPEAKER 02258 0 30.472000 1.000000 0 +SPEAKER 02258 0 32.415000 0.991700 0 +SPEAKER 02258 0 36.176000 2.788000 0 +SPEAKER 02258 0 39.278000 1.507000 0 +SPEAKER 02258 0 3.885420 0.989580 3 +SPEAKER 02258 0 5.512000 1.109000 3 +SPEAKER 02258 0 11.009000 0.474300 3 +SPEAKER 02258 0 16.392000 0.507000 3 +SPEAKER 02258 0 20.096000 0.436000 3 +SPEAKER 02258 0 21.778000 0.537000 3 +SPEAKER 02258 0 23.061000 1.658150 3 +SPEAKER 02258 0 27.470530 2.282470 3 +SPEAKER 02258 0 30.912000 1.398950 3 +SPEAKER 02258 0 35.078220 0.661010 3 +SPEAKER 02258 0 36.154490 0.758640 3 +SPEAKER 02258 0 39.338000 0.661000 3 +SPEAKER 02258 0 40.851220 2.314780 3 +SPEAKER 02258 0 4.765000 2.379000 2 +SPEAKER 02258 0 21.823000 0.527000 2 +SPEAKER 02258 0 24.397000 0.620000 2 +SPEAKER 02258 0 26.711000 0.770160 2 +SPEAKER 02258 0 29.108820 1.229180 2 +SPEAKER 02258 0 32.364140 0.846860 2 +SPEAKER 02258 0 33.823000 1.037000 2 +SPEAKER 02258 0 42.077640 0.807360 2 +SPEAKER 02258 0 34.530470 1.443390 h0 diff --git a/rttm/many/02260.rttm b/rttm/many/02260.rttm new file mode 100644 index 0000000000000000000000000000000000000000..1c283533297c70bcab8db65012150268affba51c --- /dev/null +++ b/rttm/many/02260.rttm @@ -0,0 +1,21 @@ +SPEAKER 02260 0 0.009000 3.238120 1 +SPEAKER 02260 0 11.098190 2.313810 1 +SPEAKER 02260 0 16.338000 2.148000 1 +SPEAKER 02260 0 19.289680 2.000000 1 +SPEAKER 02260 0 1.523000 1.947530 3 +SPEAKER 02260 0 5.119460 2.127660 3 +SPEAKER 02260 0 13.118000 1.664000 3 +SPEAKER 02260 0 1.662020 1.510630 h0 +SPEAKER 02260 0 9.544990 2.042560 h0 +SPEAKER 02260 0 12.353510 2.280490 h0 +SPEAKER 02260 0 8.523720 1.060000 7 +SPEAKER 02260 0 10.832230 1.063830 7 +SPEAKER 02260 0 14.151380 3.021270 7 +SPEAKER 02260 0 20.708000 2.704000 7 +SPEAKER 02260 0 7.162020 2.098980 0 +SPEAKER 02260 0 22.671380 0.448080 0 +SPEAKER 02260 0 20.162020 2.085100 h1 +SPEAKER 02260 0 23.119460 1.093540 h1 +SPEAKER 02260 0 2.780000 1.000000 2 +SPEAKER 02260 0 10.832230 1.148930 h3 +SPEAKER 02260 0 18.427970 0.574470 h3 diff --git a/rttm/many/02289.rttm b/rttm/many/02289.rttm new file mode 100644 index 0000000000000000000000000000000000000000..39c59a8b45e8625437ccdf23fd0641d92f8e79fd --- /dev/null +++ b/rttm/many/02289.rttm @@ -0,0 +1,43 @@ +SPEAKER 02289 0 0.000000 2.966210 2 +SPEAKER 02289 0 5.078000 0.266260 2 +SPEAKER 02289 0 5.912000 3.481040 2 +SPEAKER 02289 0 11.685730 0.578270 2 +SPEAKER 02289 0 19.807680 0.938320 2 +SPEAKER 02289 0 25.319000 2.519000 2 +SPEAKER 02289 0 29.807680 1.418320 2 +SPEAKER 02289 0 33.801000 0.685000 2 +SPEAKER 02289 0 36.687000 1.000000 2 +SPEAKER 02289 0 38.819000 0.963030 2 +SPEAKER 02289 0 40.046000 3.273060 2 +SPEAKER 02289 0 47.689000 0.778000 2 +SPEAKER 02289 0 49.764000 1.425000 2 +SPEAKER 02289 0 51.504000 2.945000 2 +SPEAKER 02289 0 58.097000 2.667000 2 +SPEAKER 02289 0 61.301000 1.000000 2 +SPEAKER 02289 0 62.671000 1.722000 2 +SPEAKER 02289 0 2.801000 3.323790 1 +SPEAKER 02289 0 12.468000 1.425040 1 +SPEAKER 02289 0 15.023000 4.016380 1 +SPEAKER 02289 0 20.986000 0.992410 1 +SPEAKER 02289 0 22.783290 0.887710 1 +SPEAKER 02289 0 25.271000 0.963510 1 +SPEAKER 02289 0 28.041000 3.926000 1 +SPEAKER 02289 0 33.801000 2.092000 1 +SPEAKER 02289 0 36.918000 2.160000 1 +SPEAKER 02289 0 43.004000 3.537290 1 +SPEAKER 02289 0 46.856000 1.500000 1 +SPEAKER 02289 0 54.449000 2.222000 1 +SPEAKER 02289 0 57.930000 1.000000 1 +SPEAKER 02289 0 61.319060 1.537040 1 +SPEAKER 02289 0 9.112550 5.502450 0 +SPEAKER 02289 0 31.874000 1.927000 0 +SPEAKER 02289 0 44.829000 0.789950 0 +SPEAKER 02289 0 47.023000 2.741000 0 +SPEAKER 02289 0 53.823460 0.448710 0 +SPEAKER 02289 0 57.208000 0.678390 0 +SPEAKER 02289 0 58.819000 1.778000 0 +SPEAKER 02289 0 62.190000 1.370000 0 +SPEAKER 02289 0 23.967000 0.438240 h0 +SPEAKER 02289 0 46.171000 0.575850 h0 +SPEAKER 02289 0 56.671000 2.648000 h0 +SPEAKER 02289 0 60.801000 0.795840 h1 diff --git a/rttm/many/02311.rttm b/rttm/many/02311.rttm new file mode 100644 index 0000000000000000000000000000000000000000..741a364fe35cf1edc209c2b9ae867853982afd33 --- /dev/null +++ b/rttm/many/02311.rttm @@ -0,0 +1,32 @@ +SPEAKER 02311 0 3.398650 1.190470 9 +SPEAKER 02311 0 4.975520 0.668830 9 +SPEAKER 02311 0 11.388960 0.806780 9 +SPEAKER 02311 0 12.473860 1.536560 9 +SPEAKER 02311 0 23.260000 1.470760 9 +SPEAKER 02311 0 37.245000 5.074280 9 +SPEAKER 02311 0 51.587000 1.369630 9 +SPEAKER 02311 0 5.986790 1.477640 1 +SPEAKER 02311 0 26.024100 1.517400 1 +SPEAKER 02311 0 47.412000 0.418070 1 +SPEAKER 02311 0 48.560000 2.434250 1 +SPEAKER 02311 0 5.041000 0.901010 3 +SPEAKER 02311 0 14.968050 1.063510 3 +SPEAKER 02311 0 30.497000 1.000000 3 +SPEAKER 02311 0 6.134240 3.316700 2 +SPEAKER 02311 0 12.690070 0.830960 2 +SPEAKER 02311 0 16.273000 4.342000 2 +SPEAKER 02311 0 29.560000 1.037000 2 +SPEAKER 02311 0 47.448000 0.643260 2 +SPEAKER 02311 0 51.541000 1.852000 2 +SPEAKER 02311 0 32.419620 1.492380 0 +SPEAKER 02311 0 35.684000 0.534130 0 +SPEAKER 02311 0 39.606190 0.749810 0 +SPEAKER 02311 0 45.882310 1.373130 0 +SPEAKER 02311 0 48.052000 0.472100 0 +SPEAKER 02311 0 50.504000 0.766370 0 +SPEAKER 02311 0 8.375000 0.481000 4 +SPEAKER 02311 0 16.004000 0.794560 4 +SPEAKER 02311 0 26.925670 1.785000 4 +SPEAKER 02311 0 48.501000 1.149000 4 +SPEAKER 02311 0 0.000000 0.951100 h0 +SPEAKER 02311 0 11.292760 0.962680 h0 diff --git a/rttm/many/02329.rttm b/rttm/many/02329.rttm new file mode 100644 index 0000000000000000000000000000000000000000..169726f7fa6a0fc100a17e7dc3e24ed6ab9cf32f --- /dev/null +++ b/rttm/many/02329.rttm @@ -0,0 +1,18 @@ +SPEAKER 02329 0 0.000000 1.491800 1 +SPEAKER 02329 0 1.789680 1.670210 1 +SPEAKER 02329 0 39.321590 0.682410 1 +SPEAKER 02329 0 55.459890 3.159570 1 +SPEAKER 02329 0 5.491800 13.068200 0 +SPEAKER 02329 0 20.854000 1.187000 3 +SPEAKER 02329 0 25.757760 1.524240 3 +SPEAKER 02329 0 28.725850 0.744680 3 +SPEAKER 02329 0 31.310950 3.101050 3 +SPEAKER 02329 0 35.338000 1.972950 3 +SPEAKER 02329 0 40.864140 2.617020 3 +SPEAKER 02329 0 44.044990 1.552010 3 +SPEAKER 02329 0 48.130100 5.170900 3 +SPEAKER 02329 0 54.417340 0.414890 3 +SPEAKER 02329 0 56.193930 5.292070 2 +SPEAKER 02329 0 62.821590 1.021280 2 +SPEAKER 02329 0 64.257760 5.031920 4 +SPEAKER 02329 0 69.672650 2.627660 4 diff --git a/rttm/many/02339.rttm b/rttm/many/02339.rttm new file mode 100644 index 0000000000000000000000000000000000000000..72fa310f909ffa376a4ad3ecb1487f603e351143 --- /dev/null +++ b/rttm/many/02339.rttm @@ -0,0 +1,27 @@ +SPEAKER 02339 0 5.413000 0.349000 0 +SPEAKER 02339 0 6.694070 0.597930 0 +SPEAKER 02339 0 9.052790 0.936210 0 +SPEAKER 02339 0 13.353000 1.418000 0 +SPEAKER 02339 0 21.329750 1.979710 0 +SPEAKER 02339 0 30.444000 0.772000 0 +SPEAKER 02339 0 14.080000 4.061000 4 +SPEAKER 02339 0 19.004000 0.818000 4 +SPEAKER 02339 0 22.307000 0.973570 4 +SPEAKER 02339 0 11.701770 1.257230 3 +SPEAKER 02339 0 24.042860 0.310140 3 +SPEAKER 02339 0 24.898000 1.000000 3 +SPEAKER 02339 0 27.065000 1.904090 3 +SPEAKER 02339 0 18.383000 0.364000 2 +SPEAKER 02339 0 19.171000 0.894000 2 +SPEAKER 02339 0 26.247000 0.530000 2 +SPEAKER 02339 0 29.353000 1.106000 2 +SPEAKER 02339 0 30.868000 0.545000 2 +SPEAKER 02339 0 0.646010 0.542380 1 +SPEAKER 02339 0 1.762000 2.255150 1 +SPEAKER 02339 0 7.762000 1.279000 1 +SPEAKER 02339 0 10.838000 0.606000 1 +SPEAKER 02339 0 15.832450 0.505550 1 +SPEAKER 02339 0 18.436000 0.356000 1 +SPEAKER 02339 0 19.944000 1.045000 1 +SPEAKER 02339 0 23.641000 0.363000 1 +SPEAKER 02339 0 25.686380 1.266320 1 diff --git a/rttm/many/02341.rttm b/rttm/many/02341.rttm new file mode 100644 index 0000000000000000000000000000000000000000..763ff904612dfee2329503397f30e4a3af03a1be --- /dev/null +++ b/rttm/many/02341.rttm @@ -0,0 +1,392 @@ +SPEAKER 02341 0 0.466000 0.408620 4 +SPEAKER 02341 0 43.515000 0.378140 4 +SPEAKER 02341 0 47.346990 0.758010 4 +SPEAKER 02341 0 49.158000 3.342000 4 +SPEAKER 02341 0 54.782000 0.431660 4 +SPEAKER 02341 0 55.737000 2.552000 4 +SPEAKER 02341 0 58.868000 4.395510 4 +SPEAKER 02341 0 63.523000 0.740000 4 +SPEAKER 02341 0 64.841000 0.712000 4 +SPEAKER 02341 0 68.563000 0.311740 4 +SPEAKER 02341 0 70.079000 1.368000 4 +SPEAKER 02341 0 72.231000 0.953000 4 +SPEAKER 02341 0 74.684000 2.426000 4 +SPEAKER 02341 0 78.421000 2.132000 4 +SPEAKER 02341 0 81.548000 2.320000 4 +SPEAKER 02341 0 85.131000 3.316000 4 +SPEAKER 02341 0 88.773000 0.358150 4 +SPEAKER 02341 0 96.685000 0.317940 4 +SPEAKER 02341 0 101.611000 0.756000 4 +SPEAKER 02341 0 103.264000 0.394000 4 +SPEAKER 02341 0 104.356100 0.775900 4 +SPEAKER 02341 0 106.632000 1.210000 4 +SPEAKER 02341 0 108.342000 1.105000 4 +SPEAKER 02341 0 110.130000 0.659000 4 +SPEAKER 02341 0 111.237000 1.289000 4 +SPEAKER 02341 0 113.368000 0.421000 4 +SPEAKER 02341 0 114.075000 3.114440 4 +SPEAKER 02341 0 117.658000 2.079000 4 +SPEAKER 02341 0 120.436000 0.959000 4 +SPEAKER 02341 0 122.377000 1.386000 4 +SPEAKER 02341 0 125.342000 2.125210 4 +SPEAKER 02341 0 130.559810 0.940190 4 +SPEAKER 02341 0 135.453000 1.547000 4 +SPEAKER 02341 0 139.816000 0.392070 4 +SPEAKER 02341 0 149.241000 1.180000 4 +SPEAKER 02341 0 151.910000 0.442000 4 +SPEAKER 02341 0 155.316000 0.421000 4 +SPEAKER 02341 0 157.057000 1.000000 4 +SPEAKER 02341 0 158.482000 1.334000 4 +SPEAKER 02341 0 160.967000 1.665000 4 +SPEAKER 02341 0 163.064000 0.910000 4 +SPEAKER 02341 0 165.214000 0.839000 4 +SPEAKER 02341 0 167.302000 1.324000 4 +SPEAKER 02341 0 170.232000 0.321000 4 +SPEAKER 02341 0 170.996000 3.530000 4 +SPEAKER 02341 0 180.639000 0.572000 4 +SPEAKER 02341 0 181.711000 0.473000 4 +SPEAKER 02341 0 183.482000 1.000000 4 +SPEAKER 02341 0 185.372000 1.260000 4 +SPEAKER 02341 0 206.327000 0.594000 4 +SPEAKER 02341 0 207.246000 0.409000 4 +SPEAKER 02341 0 242.113000 0.440000 4 +SPEAKER 02341 0 242.974000 0.315000 4 +SPEAKER 02341 0 358.039000 0.520810 4 +SPEAKER 02341 0 413.585000 0.862000 4 +SPEAKER 02341 0 420.046000 0.371750 4 +SPEAKER 02341 0 425.421000 0.411070 4 +SPEAKER 02341 0 426.921000 1.008630 4 +SPEAKER 02341 0 429.765000 0.893000 4 +SPEAKER 02341 0 432.322000 1.000000 4 +SPEAKER 02341 0 433.946000 0.449000 4 +SPEAKER 02341 0 442.988000 0.538000 4 +SPEAKER 02341 0 447.866030 0.568960 4 +SPEAKER 02341 0 454.026000 2.395000 4 +SPEAKER 02341 0 457.711000 3.947000 4 +SPEAKER 02341 0 462.758900 1.794100 4 +SPEAKER 02341 0 465.395000 3.000000 4 +SPEAKER 02341 0 469.392000 0.687000 4 +SPEAKER 02341 0 473.211000 0.921000 4 +SPEAKER 02341 0 474.816000 1.316000 4 +SPEAKER 02341 0 476.947000 0.421000 4 +SPEAKER 02341 0 478.342000 1.316000 4 +SPEAKER 02341 0 480.705000 0.637000 4 +SPEAKER 02341 0 485.700000 1.105000 4 +SPEAKER 02341 0 487.815000 1.001000 4 +SPEAKER 02341 0 489.974000 1.360000 4 +SPEAKER 02341 0 492.661340 0.609750 4 +SPEAKER 02341 0 495.237000 1.974000 4 +SPEAKER 02341 0 498.237000 0.342000 4 +SPEAKER 02341 0 498.989000 2.404040 4 +SPEAKER 02341 0 502.339000 1.000000 4 +SPEAKER 02341 0 504.384000 0.563000 4 +SPEAKER 02341 0 506.316000 0.421000 4 +SPEAKER 02341 0 510.124690 1.059310 4 +SPEAKER 02341 0 511.951000 0.295700 4 +SPEAKER 02341 0 524.332070 2.114930 4 +SPEAKER 02341 0 530.795480 3.678520 4 +SPEAKER 02341 0 537.737000 0.342000 4 +SPEAKER 02341 0 544.499000 0.322000 4 +SPEAKER 02341 0 577.579000 2.132000 4 +SPEAKER 02341 0 580.291000 0.683000 4 +SPEAKER 02341 0 595.423060 0.741940 4 +SPEAKER 02341 0 647.237000 1.052000 4 +SPEAKER 02341 0 648.862000 1.401000 4 +SPEAKER 02341 0 651.929630 1.544370 4 +SPEAKER 02341 0 654.334000 0.534000 4 +SPEAKER 02341 0 658.026000 0.208510 4 +SPEAKER 02341 0 0.931000 1.016000 0 +SPEAKER 02341 0 2.664000 4.073000 0 +SPEAKER 02341 0 8.184000 0.502020 0 +SPEAKER 02341 0 10.079000 0.351180 0 +SPEAKER 02341 0 24.801000 9.699000 0 +SPEAKER 02341 0 39.079000 0.868000 0 +SPEAKER 02341 0 45.920710 0.921290 0 +SPEAKER 02341 0 54.395000 0.447000 0 +SPEAKER 02341 0 68.757000 0.361330 0 +SPEAKER 02341 0 131.700000 1.011000 0 +SPEAKER 02341 0 134.447000 1.649840 0 +SPEAKER 02341 0 136.542000 1.665950 0 +SPEAKER 02341 0 151.237000 0.526000 0 +SPEAKER 02341 0 175.026000 5.000000 0 +SPEAKER 02341 0 193.428000 1.359000 0 +SPEAKER 02341 0 195.342000 1.402990 0 +SPEAKER 02341 0 198.085000 1.441000 0 +SPEAKER 02341 0 202.369000 0.763000 0 +SPEAKER 02341 0 206.579000 2.184000 0 +SPEAKER 02341 0 210.578320 0.351680 0 +SPEAKER 02341 0 213.500000 4.967210 0 +SPEAKER 02341 0 233.764000 0.710000 0 +SPEAKER 02341 0 236.374000 1.482100 0 +SPEAKER 02341 0 238.356100 4.317430 0 +SPEAKER 02341 0 243.815000 1.263320 0 +SPEAKER 02341 0 249.911660 0.740740 0 +SPEAKER 02341 0 255.893140 1.113860 0 +SPEAKER 02341 0 264.689000 0.680000 0 +SPEAKER 02341 0 271.504250 0.516750 0 +SPEAKER 02341 0 272.491440 1.637560 0 +SPEAKER 02341 0 274.457000 0.780000 0 +SPEAKER 02341 0 277.005000 0.555000 0 +SPEAKER 02341 0 277.915000 0.612000 0 +SPEAKER 02341 0 278.842000 0.869000 0 +SPEAKER 02341 0 290.947000 2.053000 0 +SPEAKER 02341 0 293.661340 1.568660 0 +SPEAKER 02341 0 295.541000 4.852140 0 +SPEAKER 02341 0 300.893140 4.659860 0 +SPEAKER 02341 0 306.956000 0.412000 0 +SPEAKER 02341 0 309.230000 0.797000 0 +SPEAKER 02341 0 310.369000 6.552000 0 +SPEAKER 02341 0 317.537000 3.068000 0 +SPEAKER 02341 0 325.895000 0.583410 0 +SPEAKER 02341 0 346.466210 2.807160 0 +SPEAKER 02341 0 354.369000 0.431550 0 +SPEAKER 02341 0 361.579000 1.368000 0 +SPEAKER 02341 0 370.685000 2.078000 0 +SPEAKER 02341 0 378.758900 2.741100 0 +SPEAKER 02341 0 383.185730 5.404430 0 +SPEAKER 02341 0 389.500000 1.502800 0 +SPEAKER 02341 0 397.954020 1.177980 0 +SPEAKER 02341 0 399.632000 0.268510 0 +SPEAKER 02341 0 400.285000 0.598270 0 +SPEAKER 02341 0 405.710000 2.890360 0 +SPEAKER 02341 0 426.539380 0.565620 0 +SPEAKER 02341 0 451.758900 0.688100 0 +SPEAKER 02341 0 468.605000 0.684000 0 +SPEAKER 02341 0 470.579000 0.632000 0 +SPEAKER 02341 0 486.245900 0.842260 0 +SPEAKER 02341 0 507.790000 0.894000 0 +SPEAKER 02341 0 509.474000 0.605000 0 +SPEAKER 02341 0 515.921000 1.053000 0 +SPEAKER 02341 0 526.368000 2.711000 0 +SPEAKER 02341 0 549.053000 0.684000 0 +SPEAKER 02341 0 569.751000 1.000000 0 +SPEAKER 02341 0 586.222310 5.152360 0 +SPEAKER 02341 0 591.712000 0.727190 0 +SPEAKER 02341 0 593.035960 1.562040 0 +SPEAKER 02341 0 595.421000 1.324640 0 +SPEAKER 02341 0 605.133000 0.596510 0 +SPEAKER 02341 0 611.622000 0.284700 0 +SPEAKER 02341 0 613.129000 0.235140 0 +SPEAKER 02341 0 621.105000 0.763000 0 +SPEAKER 02341 0 622.612000 0.362000 0 +SPEAKER 02341 0 624.202000 0.798000 0 +SPEAKER 02341 0 635.947000 2.027000 0 +SPEAKER 02341 0 638.399000 2.104100 0 +SPEAKER 02341 0 644.746340 1.148660 0 +SPEAKER 02341 0 654.917430 0.707290 0 +SPEAKER 02341 0 655.906000 1.543050 0 +SPEAKER 02341 0 659.185730 4.780480 0 +SPEAKER 02341 0 665.527190 2.814810 0 +SPEAKER 02341 0 670.158000 5.816000 0 +SPEAKER 02341 0 684.368000 2.264000 0 +SPEAKER 02341 0 686.990000 0.488410 0 +SPEAKER 02341 0 688.289000 2.268160 0 +SPEAKER 02341 0 707.183000 1.588090 0 +SPEAKER 02341 0 711.271090 2.175910 0 +SPEAKER 02341 0 713.921000 1.184000 0 +SPEAKER 02341 0 9.158000 1.253660 1 +SPEAKER 02341 0 11.818670 2.681330 1 +SPEAKER 02341 0 14.764000 0.388000 1 +SPEAKER 02341 0 15.567000 2.670000 1 +SPEAKER 02341 0 19.000000 0.789000 1 +SPEAKER 02341 0 20.236000 3.080000 1 +SPEAKER 02341 0 23.825780 1.493220 1 +SPEAKER 02341 0 31.157000 0.404070 1 +SPEAKER 02341 0 34.429630 2.881320 1 +SPEAKER 02341 0 37.666000 0.808000 1 +SPEAKER 02341 0 39.763000 0.869000 1 +SPEAKER 02341 0 41.974000 1.052000 1 +SPEAKER 02341 0 48.353000 0.515000 1 +SPEAKER 02341 0 53.184000 0.948000 1 +SPEAKER 02341 0 58.012000 0.357220 1 +SPEAKER 02341 0 62.598000 0.481000 1 +SPEAKER 02341 0 64.596840 0.388890 1 +SPEAKER 02341 0 65.887560 4.033440 1 +SPEAKER 02341 0 90.246000 1.091580 1 +SPEAKER 02341 0 91.699000 0.472000 1 +SPEAKER 02341 0 92.827000 0.357000 1 +SPEAKER 02341 0 93.544000 6.956000 1 +SPEAKER 02341 0 102.428000 0.756000 1 +SPEAKER 02341 0 104.284990 0.500000 1 +SPEAKER 02341 0 127.322000 0.516000 1 +SPEAKER 02341 0 133.484000 0.648000 1 +SPEAKER 02341 0 140.658000 1.263000 1 +SPEAKER 02341 0 144.474000 2.158000 1 +SPEAKER 02341 0 147.285000 0.684220 1 +SPEAKER 02341 0 150.144000 0.935000 1 +SPEAKER 02341 0 161.004000 0.444690 1 +SPEAKER 02341 0 188.122000 3.010000 1 +SPEAKER 02341 0 191.615360 1.121640 1 +SPEAKER 02341 0 194.300550 1.777770 1 +SPEAKER 02341 0 198.286000 3.530000 1 +SPEAKER 02341 0 211.369000 1.763000 1 +SPEAKER 02341 0 215.632000 0.579000 1 +SPEAKER 02341 0 220.797000 0.799840 1 +SPEAKER 02341 0 243.474000 11.947000 1 +SPEAKER 02341 0 257.430180 0.870820 1 +SPEAKER 02341 0 258.782030 4.664970 1 +SPEAKER 02341 0 267.824770 3.623920 1 +SPEAKER 02341 0 271.947000 0.290000 1 +SPEAKER 02341 0 274.542000 0.610400 1 +SPEAKER 02341 0 276.079000 1.443770 1 +SPEAKER 02341 0 280.921000 1.421000 1 +SPEAKER 02341 0 284.244990 1.018010 1 +SPEAKER 02341 0 306.688000 1.927360 1 +SPEAKER 02341 0 309.178000 0.848000 1 +SPEAKER 02341 0 320.421000 5.211000 1 +SPEAKER 02341 0 327.447000 4.557250 1 +SPEAKER 02341 0 336.447000 0.448000 1 +SPEAKER 02341 0 340.553000 5.368000 1 +SPEAKER 02341 0 346.880850 1.224150 1 +SPEAKER 02341 0 349.734510 12.239490 1 +SPEAKER 02341 0 363.079000 0.911600 1 +SPEAKER 02341 0 364.551580 2.764420 1 +SPEAKER 02341 0 369.026000 1.500000 1 +SPEAKER 02341 0 374.052000 3.831270 1 +SPEAKER 02341 0 394.342000 1.000000 1 +SPEAKER 02341 0 396.059000 1.082890 1 +SPEAKER 02341 0 402.819870 1.706130 1 +SPEAKER 02341 0 409.405240 3.231710 1 +SPEAKER 02341 0 414.948000 3.184000 1 +SPEAKER 02341 0 418.880850 0.317070 1 +SPEAKER 02341 0 420.158000 2.198460 1 +SPEAKER 02341 0 445.026000 0.790000 1 +SPEAKER 02341 0 447.000000 0.868650 1 +SPEAKER 02341 0 481.367000 0.791000 1 +SPEAKER 02341 0 484.373000 1.148200 1 +SPEAKER 02341 0 513.893040 0.695120 1 +SPEAKER 02341 0 516.691000 2.342780 1 +SPEAKER 02341 0 534.563770 0.591220 1 +SPEAKER 02341 0 544.210120 1.131880 1 +SPEAKER 02341 0 547.514990 1.776370 1 +SPEAKER 02341 0 549.685300 1.213700 1 +SPEAKER 02341 0 551.395000 2.342000 1 +SPEAKER 02341 0 554.395000 0.631000 1 +SPEAKER 02341 0 556.552000 1.159000 1 +SPEAKER 02341 0 558.500000 1.306510 1 +SPEAKER 02341 0 560.289000 2.632000 1 +SPEAKER 02341 0 563.594390 0.803030 1 +SPEAKER 02341 0 566.816000 3.947000 1 +SPEAKER 02341 0 595.101000 0.548000 1 +SPEAKER 02341 0 603.990600 0.614400 1 +SPEAKER 02341 0 605.262000 0.606000 1 +SPEAKER 02341 0 625.237000 2.000000 1 +SPEAKER 02341 0 638.860000 1.805260 1 +SPEAKER 02341 0 640.976070 3.997930 1 +SPEAKER 02341 0 651.433000 0.299830 1 +SPEAKER 02341 0 669.210120 0.578880 1 +SPEAKER 02341 0 686.921000 2.053000 1 +SPEAKER 02341 0 691.342000 9.158000 1 +SPEAKER 02341 0 700.916000 1.000000 1 +SPEAKER 02341 0 702.237000 4.684000 1 +SPEAKER 02341 0 707.219000 1.281000 1 +SPEAKER 02341 0 709.079000 3.895000 1 +SPEAKER 02341 0 715.842000 7.134070 1 +SPEAKER 02341 0 723.367970 0.852030 1 +SPEAKER 02341 0 9.132000 0.390750 3 +SPEAKER 02341 0 14.609000 0.321910 3 +SPEAKER 02341 0 53.524770 0.331330 3 +SPEAKER 02341 0 125.168000 1.385000 3 +SPEAKER 02341 0 204.457000 0.622000 3 +SPEAKER 02341 0 222.300000 9.241290 3 +SPEAKER 02341 0 234.869000 0.682580 3 +SPEAKER 02341 0 248.842000 0.342000 3 +SPEAKER 02341 0 285.783290 0.597560 3 +SPEAKER 02341 0 288.342000 0.684000 3 +SPEAKER 02341 0 289.289000 0.711000 3 +SPEAKER 02341 0 326.737000 0.579000 3 +SPEAKER 02341 0 338.921000 0.842000 3 +SPEAKER 02341 0 373.485730 0.593270 3 +SPEAKER 02341 0 374.742000 0.606780 3 +SPEAKER 02341 0 377.978410 1.889590 3 +SPEAKER 02341 0 381.605000 0.921000 3 +SPEAKER 02341 0 384.831540 0.896550 3 +SPEAKER 02341 0 392.000000 0.789000 3 +SPEAKER 02341 0 472.527190 0.367810 3 +SPEAKER 02341 0 481.991000 0.394000 3 +SPEAKER 02341 0 482.765000 0.740000 3 +SPEAKER 02341 0 540.961000 2.209000 3 +SPEAKER 02341 0 565.657000 0.906770 3 +SPEAKER 02341 0 583.385000 1.000000 3 +SPEAKER 02341 0 596.132000 5.307190 3 +SPEAKER 02341 0 601.842410 1.516130 3 +SPEAKER 02341 0 604.737000 0.710000 3 +SPEAKER 02341 0 605.842000 1.184000 3 +SPEAKER 02341 0 607.842000 0.658000 3 +SPEAKER 02341 0 609.553000 1.605000 3 +SPEAKER 02341 0 612.237000 0.631000 3 +SPEAKER 02341 0 613.526000 0.448000 3 +SPEAKER 02341 0 614.330000 3.381000 3 +SPEAKER 02341 0 618.580000 1.841000 3 +SPEAKER 02341 0 622.237000 0.286720 3 +SPEAKER 02341 0 623.182000 0.435000 3 +SPEAKER 02341 0 624.233000 4.530000 3 +SPEAKER 02341 0 629.539380 1.407620 3 +SPEAKER 02341 0 631.344260 4.313740 3 +SPEAKER 02341 0 676.342000 4.579000 3 +SPEAKER 02341 0 681.389000 2.032000 3 +SPEAKER 02341 0 78.836280 0.897430 2 +SPEAKER 02341 0 101.067000 0.749000 2 +SPEAKER 02341 0 136.367000 3.186000 2 +SPEAKER 02341 0 141.416000 3.058000 2 +SPEAKER 02341 0 153.000000 1.237000 2 +SPEAKER 02341 0 165.837000 2.242000 2 +SPEAKER 02341 0 168.626000 0.716000 2 +SPEAKER 02341 0 201.810000 0.664000 2 +SPEAKER 02341 0 207.594000 1.853000 2 +SPEAKER 02341 0 210.132000 0.526000 2 +SPEAKER 02341 0 216.248000 0.647000 2 +SPEAKER 02341 0 221.004250 1.730750 2 +SPEAKER 02341 0 241.027190 0.939020 2 +SPEAKER 02341 0 255.342000 1.437000 2 +SPEAKER 02341 0 337.552000 0.383530 2 +SPEAKER 02341 0 407.762580 1.155170 2 +SPEAKER 02341 0 423.783290 1.552710 2 +SPEAKER 02341 0 428.039380 0.425620 2 +SPEAKER 02341 0 429.622000 0.563000 2 +SPEAKER 02341 0 431.737000 0.816000 2 +SPEAKER 02341 0 434.711000 6.631000 2 +SPEAKER 02341 0 442.030000 0.628000 2 +SPEAKER 02341 0 443.526000 1.000000 2 +SPEAKER 02341 0 448.828000 1.935000 2 +SPEAKER 02341 0 457.264000 1.604000 2 +SPEAKER 02341 0 477.500000 0.579000 2 +SPEAKER 02341 0 479.411000 0.628380 2 +SPEAKER 02341 0 481.362000 0.822000 2 +SPEAKER 02341 0 516.518630 4.665370 2 +SPEAKER 02341 0 522.289000 1.158000 2 +SPEAKER 02341 0 524.767000 0.758000 2 +SPEAKER 02341 0 537.263000 0.361750 2 +SPEAKER 02341 0 537.921000 2.885510 2 +SPEAKER 02341 0 541.358000 0.736390 2 +SPEAKER 02341 0 571.158000 1.646000 2 +SPEAKER 02341 0 573.939190 0.806450 2 +SPEAKER 02341 0 575.406930 0.912940 2 +SPEAKER 02341 0 578.262000 0.870730 2 +SPEAKER 02341 0 579.600480 3.794520 2 +SPEAKER 02341 0 583.783000 0.743000 2 +SPEAKER 02341 0 585.316000 1.101430 2 +SPEAKER 02341 0 590.882000 0.291530 2 +SPEAKER 02341 0 593.423060 1.274190 2 +SPEAKER 02341 0 643.111000 0.621830 2 +SPEAKER 02341 0 647.974000 1.579000 2 +SPEAKER 02341 0 660.899000 0.686000 2 +SPEAKER 02341 0 714.665260 0.689190 2 +SPEAKER 02341 0 723.632000 0.925000 2 +SPEAKER 02341 0 201.157000 0.448000 h1 +SPEAKER 02341 0 202.707650 0.581350 h1 +SPEAKER 02341 0 218.691440 2.440560 h1 +SPEAKER 02341 0 233.431000 1.128810 h1 +SPEAKER 02341 0 305.814000 0.671730 h1 +SPEAKER 02341 0 452.526000 1.477480 h1 +SPEAKER 02341 0 455.579000 1.316000 h1 +SPEAKER 02341 0 523.291360 0.348480 h1 +SPEAKER 02341 0 535.154990 2.090910 h1 +SPEAKER 02341 0 542.184000 1.974000 h1 +SPEAKER 02341 0 545.491000 1.956000 h1 +SPEAKER 02341 0 572.658000 1.557600 h1 +SPEAKER 02341 0 586.714000 0.637960 h1 +SPEAKER 02341 0 591.737000 2.868000 h1 +SPEAKER 02341 0 713.233000 0.797130 h1 +SPEAKER 02341 0 231.320000 1.154000 h0 +SPEAKER 02341 0 563.851000 0.596000 h0 diff --git a/rttm/many/02399.rttm b/rttm/many/02399.rttm new file mode 100644 index 0000000000000000000000000000000000000000..dcb30a84c683d1e444e7075e7c84c368cf506dc1 --- /dev/null +++ b/rttm/many/02399.rttm @@ -0,0 +1,30 @@ +SPEAKER 02399 0 0.004000 1.222300 1 +SPEAKER 02399 0 7.008910 1.125090 1 +SPEAKER 02399 0 22.340000 0.915140 1 +SPEAKER 02399 0 0.906000 1.320000 h0 +SPEAKER 02399 0 4.170000 1.338910 0 +SPEAKER 02399 0 7.762530 4.442030 0 +SPEAKER 02399 0 12.835000 4.159420 0 +SPEAKER 02399 0 18.328000 3.602000 0 +SPEAKER 02399 0 25.095870 3.676500 0 +SPEAKER 02399 0 29.108440 2.262290 0 +SPEAKER 02399 0 31.856630 3.390070 0 +SPEAKER 02399 0 35.813360 0.844260 0 +SPEAKER 02399 0 37.338000 1.944000 0 +SPEAKER 02399 0 4.414710 1.586950 3 +SPEAKER 02399 0 11.320500 0.681380 3 +SPEAKER 02399 0 15.671000 1.287180 3 +SPEAKER 02399 0 18.285000 2.260140 3 +SPEAKER 02399 0 21.581370 0.782610 3 +SPEAKER 02399 0 23.780570 0.967470 3 +SPEAKER 02399 0 27.947000 1.094000 3 +SPEAKER 02399 0 30.562000 1.000000 3 +SPEAKER 02399 0 32.147540 0.930460 3 +SPEAKER 02399 0 4.856740 0.833260 2 +SPEAKER 02399 0 6.052390 0.956610 2 +SPEAKER 02399 0 11.289000 0.740790 2 +SPEAKER 02399 0 12.385720 0.789860 2 +SPEAKER 02399 0 16.487170 2.782610 2 +SPEAKER 02399 0 23.146000 1.587550 2 +SPEAKER 02399 0 27.247000 0.665000 2 +SPEAKER 02399 0 31.282000 0.426000 h1 diff --git a/rttm/many/02404.rttm b/rttm/many/02404.rttm new file mode 100644 index 0000000000000000000000000000000000000000..142b721e3d7dccd78f8fb2c54521845d50339fcd --- /dev/null +++ b/rttm/many/02404.rttm @@ -0,0 +1,171 @@ +SPEAKER 02404 0 0.231850 0.700000 4 +SPEAKER 02404 0 1.432000 0.714140 4 +SPEAKER 02404 0 7.338000 1.926000 4 +SPEAKER 02404 0 10.676000 2.070140 4 +SPEAKER 02404 0 15.859000 1.429990 4 +SPEAKER 02404 0 17.632000 3.228420 4 +SPEAKER 02404 0 26.288990 1.171430 4 +SPEAKER 02404 0 28.303000 1.128850 4 +SPEAKER 02404 0 30.912000 2.634140 4 +SPEAKER 02404 0 34.066000 2.500000 4 +SPEAKER 02404 0 41.535000 1.811140 4 +SPEAKER 02404 0 44.603280 2.057140 4 +SPEAKER 02404 0 47.003000 1.114560 4 +SPEAKER 02404 0 48.718000 1.428140 4 +SPEAKER 02404 0 56.631850 3.632150 4 +SPEAKER 02404 0 61.009000 1.237140 4 +SPEAKER 02404 0 68.146140 1.742850 4 +SPEAKER 02404 0 70.203000 1.143140 4 +SPEAKER 02404 0 72.442000 2.556000 4 +SPEAKER 02404 0 78.063000 2.025990 4 +SPEAKER 02404 0 80.561000 1.585140 4 +SPEAKER 02404 0 86.430000 3.000000 4 +SPEAKER 02404 0 97.099000 3.409000 4 +SPEAKER 02404 0 101.125000 2.181510 4 +SPEAKER 02404 0 105.033780 0.818180 4 +SPEAKER 02404 0 106.867110 0.712120 4 +SPEAKER 02404 0 108.875000 1.074000 4 +SPEAKER 02404 0 112.924590 0.960000 4 +SPEAKER 02404 0 115.856000 2.808590 4 +SPEAKER 02404 0 119.325000 0.959590 4 +SPEAKER 02404 0 121.801000 3.634530 4 +SPEAKER 02404 0 126.111000 1.148860 4 +SPEAKER 02404 0 127.692000 2.446240 4 +SPEAKER 02404 0 130.638000 0.581320 4 +SPEAKER 02404 0 132.591000 0.944000 4 +SPEAKER 02404 0 134.314000 3.486400 4 +SPEAKER 02404 0 138.850000 2.274720 4 +SPEAKER 02404 0 142.063000 0.831990 4 +SPEAKER 02404 0 146.689000 0.815000 4 +SPEAKER 02404 0 149.641000 2.523590 4 +SPEAKER 02404 0 154.282000 2.278000 4 +SPEAKER 02404 0 160.962560 3.115440 4 +SPEAKER 02404 0 168.243000 4.111450 4 +SPEAKER 02404 0 175.890000 0.991480 4 +SPEAKER 02404 0 179.434000 2.663000 4 +SPEAKER 02404 0 185.004590 0.593110 4 +SPEAKER 02404 0 187.178780 1.337830 4 +SPEAKER 02404 0 189.016000 0.378990 4 +SPEAKER 02404 0 189.895000 0.486480 4 +SPEAKER 02404 0 194.824590 0.495410 4 +SPEAKER 02404 0 197.408510 1.780490 4 +SPEAKER 02404 0 201.171000 4.741000 4 +SPEAKER 02404 0 208.213000 1.411720 4 +SPEAKER 02404 0 211.584180 1.771820 4 +SPEAKER 02404 0 215.336000 0.835000 4 +SPEAKER 02404 0 218.381480 2.000000 4 +SPEAKER 02404 0 224.009000 0.446000 4 +SPEAKER 02404 0 226.434000 0.528560 4 +SPEAKER 02404 0 229.840940 4.527030 4 +SPEAKER 02404 0 240.843000 2.815000 4 +SPEAKER 02404 0 248.178780 3.391890 4 +SPEAKER 02404 0 251.841000 0.405340 4 +SPEAKER 02404 0 257.111210 3.810810 4 +SPEAKER 02404 0 261.226000 2.466290 4 +SPEAKER 02404 0 265.708000 0.349160 4 +SPEAKER 02404 0 266.476000 0.310890 4 +SPEAKER 02404 0 272.192290 2.175680 4 +SPEAKER 02404 0 274.834000 2.101530 4 +SPEAKER 02404 0 283.838000 2.444000 4 +SPEAKER 02404 0 0.726000 1.667000 2 +SPEAKER 02404 0 3.004000 1.241000 2 +SPEAKER 02404 0 5.303280 2.071430 2 +SPEAKER 02404 0 9.393000 1.181710 2 +SPEAKER 02404 0 12.844000 2.373560 2 +SPEAKER 02404 0 17.560000 0.614710 2 +SPEAKER 02404 0 20.986000 2.060140 2 +SPEAKER 02404 0 23.603000 3.171710 2 +SPEAKER 02404 0 27.689000 1.408000 2 +SPEAKER 02404 0 30.078000 1.723000 2 +SPEAKER 02404 0 37.160420 4.957140 2 +SPEAKER 02404 0 43.097000 1.685000 2 +SPEAKER 02404 0 46.631850 0.835150 2 +SPEAKER 02404 0 48.395000 0.522560 2 +SPEAKER 02404 0 50.504000 0.613560 2 +SPEAKER 02404 0 51.418000 2.756710 2 +SPEAKER 02404 0 54.612000 1.576990 2 +SPEAKER 02404 0 62.231850 4.285710 2 +SPEAKER 02404 0 66.860000 0.971850 2 +SPEAKER 02404 0 69.893000 0.538850 2 +SPEAKER 02404 0 71.602000 0.716000 2 +SPEAKER 02404 0 75.375000 1.500000 2 +SPEAKER 02404 0 80.264000 0.424990 2 +SPEAKER 02404 0 84.709000 1.556000 2 +SPEAKER 02404 0 88.903280 0.671430 2 +SPEAKER 02404 0 90.160000 1.471850 2 +SPEAKER 02404 0 93.615000 4.116850 2 +SPEAKER 02404 0 98.819000 0.442050 2 +SPEAKER 02404 0 100.579230 0.954550 2 +SPEAKER 02404 0 102.706000 2.782330 2 +SPEAKER 02404 0 105.942000 0.834200 2 +SPEAKER 02404 0 109.609540 3.195050 2 +SPEAKER 02404 0 113.205000 1.939590 2 +SPEAKER 02404 0 115.805000 2.839590 2 +SPEAKER 02404 0 119.708000 6.185000 2 +SPEAKER 02404 0 127.657000 1.259000 2 +SPEAKER 02404 0 130.078000 0.573750 2 +SPEAKER 02404 0 132.078000 0.778000 2 +SPEAKER 02404 0 138.467000 1.090160 2 +SPEAKER 02404 0 141.226000 0.979800 2 +SPEAKER 02404 0 146.854000 0.770720 2 +SPEAKER 02404 0 154.191000 1.271560 2 +SPEAKER 02404 0 157.138000 2.013750 2 +SPEAKER 02404 0 160.508000 0.772000 2 +SPEAKER 02404 0 162.597700 1.243240 2 +SPEAKER 02404 0 166.912000 1.185000 2 +SPEAKER 02404 0 168.726000 1.075000 2 +SPEAKER 02404 0 173.318000 1.063480 2 +SPEAKER 02404 0 177.171000 0.642910 2 +SPEAKER 02404 0 182.526000 1.558180 2 +SPEAKER 02404 0 184.689000 0.667000 2 +SPEAKER 02404 0 193.393000 0.704700 2 +SPEAKER 02404 0 195.504000 1.389000 2 +SPEAKER 02404 0 198.106000 1.829530 2 +SPEAKER 02404 0 210.924000 1.000000 2 +SPEAKER 02404 0 213.689000 1.723000 2 +SPEAKER 02404 0 216.117000 0.696910 2 +SPEAKER 02404 0 217.960000 0.664720 2 +SPEAKER 02404 0 231.651750 1.297250 2 +SPEAKER 02404 0 234.282000 0.565000 2 +SPEAKER 02404 0 237.652000 0.473000 2 +SPEAKER 02404 0 238.632000 1.857590 2 +SPEAKER 02404 0 243.913000 1.130000 2 +SPEAKER 02404 0 246.006000 0.564670 2 +SPEAKER 02404 0 255.759860 1.270270 2 +SPEAKER 02404 0 260.402020 0.465950 2 +SPEAKER 02404 0 262.584180 0.533820 2 +SPEAKER 02404 0 264.435530 1.972980 2 +SPEAKER 02404 0 267.947000 1.893940 2 +SPEAKER 02404 0 270.651750 0.837840 2 +SPEAKER 02404 0 274.682000 1.142590 2 +SPEAKER 02404 0 280.705800 1.851360 2 +SPEAKER 02404 0 283.314000 0.486400 2 +SPEAKER 02404 0 285.854450 0.410550 2 +SPEAKER 02404 0 2.878000 3.353850 0 +SPEAKER 02404 0 7.745000 1.722000 0 +SPEAKER 02404 0 14.460000 1.729440 0 +SPEAKER 02404 0 23.674710 1.442850 0 +SPEAKER 02404 0 30.503000 0.557420 0 +SPEAKER 02404 0 33.546000 0.374000 0 +SPEAKER 02404 0 40.856000 1.426000 0 +SPEAKER 02404 0 51.817560 0.557150 0 +SPEAKER 02404 0 53.260420 0.585720 0 +SPEAKER 02404 0 56.507000 0.724850 0 +SPEAKER 02404 0 94.924590 2.800000 0 +SPEAKER 02404 0 107.139840 2.994160 0 +SPEAKER 02404 0 125.484590 2.920000 0 +SPEAKER 02404 0 130.967000 2.441510 0 +SPEAKER 02404 0 133.928000 2.453480 0 +SPEAKER 02404 0 145.504000 2.334000 0 +SPEAKER 02404 0 229.208000 1.204000 0 +SPEAKER 02404 0 273.724590 0.460000 0 +SPEAKER 02404 0 284.097000 2.092000 0 +SPEAKER 02404 0 49.925000 0.763990 1 +SPEAKER 02404 0 65.467000 1.085000 1 +SPEAKER 02404 0 86.430000 1.124000 1 +SPEAKER 02404 0 92.107000 1.496280 1 +SPEAKER 02404 0 118.724590 1.140000 1 +SPEAKER 02404 0 163.622000 1.238000 1 +SPEAKER 02404 0 271.484590 0.620000 1 +SPEAKER 02404 0 131.814000 0.580990 h0 +SPEAKER 02404 0 144.206000 2.175480 h0 diff --git a/rttm/many/02409.rttm b/rttm/many/02409.rttm new file mode 100644 index 0000000000000000000000000000000000000000..bd007a103948ac6309f9099475c62281ced9afb3 --- /dev/null +++ b/rttm/many/02409.rttm @@ -0,0 +1,34 @@ +SPEAKER 02409 0 0.060000 0.666830 2 +SPEAKER 02409 0 3.745000 0.741000 2 +SPEAKER 02409 0 25.893000 1.926000 2 +SPEAKER 02409 0 43.208000 1.111060 2 +SPEAKER 02409 0 45.801000 1.481000 2 +SPEAKER 02409 0 0.115000 2.000000 0 +SPEAKER 02409 0 3.578320 0.611120 0 +SPEAKER 02409 0 30.686020 0.418360 0 +SPEAKER 02409 0 36.967000 1.000000 0 +SPEAKER 02409 0 40.134000 1.370000 0 +SPEAKER 02409 0 44.155000 1.082040 0 +SPEAKER 02409 0 52.060000 1.481000 0 +SPEAKER 02409 0 3.208000 0.926990 1 +SPEAKER 02409 0 14.430000 0.868260 1 +SPEAKER 02409 0 1.393000 1.895060 5 +SPEAKER 02409 0 4.002340 0.316330 5 +SPEAKER 02409 0 6.597000 1.278000 5 +SPEAKER 02409 0 47.782000 0.500000 5 +SPEAKER 02409 0 48.726470 1.018530 5 +SPEAKER 02409 0 53.597000 5.722000 5 +SPEAKER 02409 0 5.097000 1.204000 3 +SPEAKER 02409 0 29.171000 1.185000 3 +SPEAKER 02409 0 31.375000 2.185000 3 +SPEAKER 02409 0 34.355000 0.409000 3 +SPEAKER 02409 0 37.134000 1.759000 3 +SPEAKER 02409 0 8.226830 0.851490 4 +SPEAKER 02409 0 9.377000 2.238360 4 +SPEAKER 02409 0 11.912000 2.462620 4 +SPEAKER 02409 0 16.782000 7.648000 4 +SPEAKER 02409 0 25.583970 0.735030 4 +SPEAKER 02409 0 27.856000 1.463000 4 +SPEAKER 02409 0 32.245000 3.444000 4 +SPEAKER 02409 0 36.764000 1.370000 4 +SPEAKER 02409 0 48.577000 0.465000 4 diff --git a/rttm/many/02418.rttm b/rttm/many/02418.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c2e5fe352880b81718b308bc3da3e59c92d0a580 --- /dev/null +++ b/rttm/many/02418.rttm @@ -0,0 +1,17 @@ +SPEAKER 02418 0 3.417340 2.234660 3 +SPEAKER 02418 0 6.321590 0.829790 3 +SPEAKER 02418 0 12.215210 0.755320 3 +SPEAKER 02418 0 13.810950 0.787240 3 +SPEAKER 02418 0 17.300310 2.702130 3 +SPEAKER 02418 0 21.597000 0.389000 3 +SPEAKER 02418 0 7.417340 1.086660 2 +SPEAKER 02418 0 9.034360 0.694040 2 +SPEAKER 02418 0 10.630100 1.521280 2 +SPEAKER 02418 0 12.949250 0.861700 2 +SPEAKER 02418 0 14.541000 3.344420 2 +SPEAKER 02418 0 20.132000 1.150000 5 +SPEAKER 02418 0 0.233000 0.334000 0 +SPEAKER 02418 0 5.864140 0.500000 0 +SPEAKER 02418 0 13.693930 0.468090 0 +SPEAKER 02418 0 6.400000 0.449000 4 +SPEAKER 02418 0 0.896060 0.989360 1 diff --git a/rttm/many/02436.rttm b/rttm/many/02436.rttm new file mode 100644 index 0000000000000000000000000000000000000000..107a9afcea73a3abbadbb29c0a503e5bb0237d10 --- /dev/null +++ b/rttm/many/02436.rttm @@ -0,0 +1,18 @@ +SPEAKER 02436 0 0.041000 3.247770 4 +SPEAKER 02436 0 3.912000 1.136000 4 +SPEAKER 02436 0 6.652000 0.858080 4 +SPEAKER 02436 0 9.567450 3.177550 4 +SPEAKER 02436 0 14.854340 3.327870 4 +SPEAKER 02436 0 21.100240 1.156760 4 +SPEAKER 02436 0 3.060000 0.666000 1 +SPEAKER 02436 0 11.060000 1.245160 1 +SPEAKER 02436 0 16.986000 4.352000 1 +SPEAKER 02436 0 3.461000 0.549080 2 +SPEAKER 02436 0 4.821550 3.166650 2 +SPEAKER 02436 0 9.699000 0.589770 2 +SPEAKER 02436 0 13.133030 2.407970 2 +SPEAKER 02436 0 7.601530 2.072480 3 +SPEAKER 02436 0 14.764000 0.797070 0 +SPEAKER 02436 0 17.282000 1.105130 0 +SPEAKER 02436 0 21.115000 1.077000 0 +SPEAKER 02436 0 19.504000 1.612640 6 diff --git a/rttm/many/02441.rttm b/rttm/many/02441.rttm new file mode 100644 index 0000000000000000000000000000000000000000..a421b136a2145902efff162a26b136d600cb434f --- /dev/null +++ b/rttm/many/02441.rttm @@ -0,0 +1,151 @@ +SPEAKER 02441 0 0.394000 0.818650 2 +SPEAKER 02441 0 10.991800 0.589200 2 +SPEAKER 02441 0 17.197000 3.878630 2 +SPEAKER 02441 0 22.649000 0.491000 2 +SPEAKER 02441 0 27.236480 1.021280 2 +SPEAKER 02441 0 29.385420 9.538580 2 +SPEAKER 02441 0 39.470530 1.423470 2 +SPEAKER 02441 0 41.279040 1.516960 2 +SPEAKER 02441 0 46.367000 1.817000 2 +SPEAKER 02441 0 49.566270 1.563830 2 +SPEAKER 02441 0 55.127000 2.272000 2 +SPEAKER 02441 0 59.013080 2.012920 2 +SPEAKER 02441 0 69.821590 0.702130 2 +SPEAKER 02441 0 90.043160 0.949840 2 +SPEAKER 02441 0 91.645200 0.959180 2 +SPEAKER 02441 0 93.032950 0.960050 2 +SPEAKER 02441 0 94.920000 3.766020 2 +SPEAKER 02441 0 102.193000 1.345000 2 +SPEAKER 02441 0 104.602000 1.267690 2 +SPEAKER 02441 0 106.657000 1.245000 2 +SPEAKER 02441 0 110.702000 0.455000 2 +SPEAKER 02441 0 112.520000 1.218000 2 +SPEAKER 02441 0 114.912000 3.304630 2 +SPEAKER 02441 0 120.228000 3.490000 2 +SPEAKER 02441 0 124.747240 1.784760 2 +SPEAKER 02441 0 127.165610 6.424390 2 +SPEAKER 02441 0 134.359480 4.711520 2 +SPEAKER 02441 0 139.689000 2.637000 2 +SPEAKER 02441 0 142.698000 1.481000 2 +SPEAKER 02441 0 144.481930 0.510210 2 +SPEAKER 02441 0 150.336000 0.578000 2 +SPEAKER 02441 0 158.515000 0.722040 2 +SPEAKER 02441 0 160.624790 0.817210 2 +SPEAKER 02441 0 176.533000 0.540000 2 +SPEAKER 02441 0 193.115000 5.736510 2 +SPEAKER 02441 0 199.208000 1.316000 2 +SPEAKER 02441 0 203.130000 1.519000 2 +SPEAKER 02441 0 206.022000 3.127000 2 +SPEAKER 02441 0 239.689000 0.500000 2 +SPEAKER 02441 0 245.669000 0.353000 2 +SPEAKER 02441 0 246.581000 6.313000 2 +SPEAKER 02441 0 253.235230 0.619770 2 +SPEAKER 02441 0 254.404000 3.334000 2 +SPEAKER 02441 0 262.923000 0.805000 2 +SPEAKER 02441 0 265.041000 0.354000 2 +SPEAKER 02441 0 270.316620 0.988370 2 +SPEAKER 02441 0 1.417000 0.439000 0 +SPEAKER 02441 0 3.310950 1.624050 0 +SPEAKER 02441 0 5.800310 5.074690 0 +SPEAKER 02441 0 11.801000 4.731000 0 +SPEAKER 02441 0 18.226000 0.483000 0 +SPEAKER 02441 0 19.287000 2.431000 0 +SPEAKER 02441 0 22.151380 4.095620 0 +SPEAKER 02441 0 27.076910 2.914890 0 +SPEAKER 02441 0 38.034360 0.425530 0 +SPEAKER 02441 0 42.034360 2.422980 0 +SPEAKER 02441 0 45.665000 0.734000 0 +SPEAKER 02441 0 48.343000 3.825000 0 +SPEAKER 02441 0 52.593000 3.718000 0 +SPEAKER 02441 0 57.311000 1.063780 0 +SPEAKER 02441 0 61.327000 1.080000 0 +SPEAKER 02441 0 62.853510 6.648930 0 +SPEAKER 02441 0 70.810950 6.691050 0 +SPEAKER 02441 0 78.315000 1.030000 0 +SPEAKER 02441 0 79.917340 0.404250 0 +SPEAKER 02441 0 81.084000 2.627000 0 +SPEAKER 02441 0 85.634000 0.776000 0 +SPEAKER 02441 0 86.692000 0.437000 0 +SPEAKER 02441 0 87.957000 1.507000 0 +SPEAKER 02441 0 90.277850 2.188150 0 +SPEAKER 02441 0 96.793000 0.591000 0 +SPEAKER 02441 0 100.032950 1.542050 0 +SPEAKER 02441 0 105.102000 5.036000 0 +SPEAKER 02441 0 111.120000 1.219080 0 +SPEAKER 02441 0 113.848000 0.536000 0 +SPEAKER 02441 0 119.787650 0.735100 0 +SPEAKER 02441 0 121.706420 0.448980 0 +SPEAKER 02441 0 134.604380 0.479590 0 +SPEAKER 02441 0 148.325000 1.003870 0 +SPEAKER 02441 0 151.434000 1.240000 0 +SPEAKER 02441 0 153.844000 6.688950 0 +SPEAKER 02441 0 161.747000 2.510440 0 +SPEAKER 02441 0 165.098000 0.378000 0 +SPEAKER 02441 0 166.990000 2.770000 0 +SPEAKER 02441 0 177.521000 0.586000 0 +SPEAKER 02441 0 184.430000 0.426000 0 +SPEAKER 02441 0 191.595690 0.488370 0 +SPEAKER 02441 0 195.107320 1.119680 0 +SPEAKER 02441 0 196.717000 1.746000 0 +SPEAKER 02441 0 201.118950 0.847050 0 +SPEAKER 02441 0 224.973000 0.323000 0 +SPEAKER 02441 0 228.444000 2.519000 0 +SPEAKER 02441 0 231.423000 2.020000 0 +SPEAKER 02441 0 233.806000 1.255000 0 +SPEAKER 02441 0 235.581000 2.255000 0 +SPEAKER 02441 0 238.630000 4.627000 0 +SPEAKER 02441 0 243.833000 4.512000 0 +SPEAKER 02441 0 252.061000 1.278880 0 +SPEAKER 02441 0 257.933000 3.651060 0 +SPEAKER 02441 0 262.934000 0.549000 0 +SPEAKER 02441 0 264.012000 0.882000 0 +SPEAKER 02441 0 265.865000 3.602780 0 +SPEAKER 02441 0 272.339880 3.438120 0 +SPEAKER 02441 0 1.555630 1.346370 4 +SPEAKER 02441 0 87.032950 2.030050 4 +SPEAKER 02441 0 110.184000 0.736000 4 +SPEAKER 02441 0 216.339880 0.732560 4 +SPEAKER 02441 0 217.590000 2.991000 4 +SPEAKER 02441 0 220.963000 1.402000 4 +SPEAKER 02441 0 223.414000 1.255000 4 +SPEAKER 02441 0 226.032000 2.157000 4 +SPEAKER 02441 0 0.236480 0.797880 3 +SPEAKER 02441 0 3.693930 0.659580 3 +SPEAKER 02441 0 8.538000 0.503000 3 +SPEAKER 02441 0 45.204570 1.242430 3 +SPEAKER 02441 0 72.741000 0.395000 3 +SPEAKER 02441 0 118.053360 2.357150 3 +SPEAKER 02441 0 123.757440 1.489800 3 +SPEAKER 02441 0 145.134990 1.985010 3 +SPEAKER 02441 0 148.828870 1.561230 3 +SPEAKER 02441 0 151.505000 0.895300 3 +SPEAKER 02441 0 159.229000 0.408000 3 +SPEAKER 02441 0 160.357000 0.900440 3 +SPEAKER 02441 0 164.071000 0.608000 3 +SPEAKER 02441 0 165.095690 1.421310 3 +SPEAKER 02441 0 178.435000 1.121000 3 +SPEAKER 02441 0 179.901000 1.172000 3 +SPEAKER 02441 0 181.487000 2.793000 3 +SPEAKER 02441 0 184.745000 1.604000 3 +SPEAKER 02441 0 186.804990 2.096010 3 +SPEAKER 02441 0 189.246000 2.017000 3 +SPEAKER 02441 0 200.014000 2.197000 3 +SPEAKER 02441 0 202.561000 0.732370 3 +SPEAKER 02441 0 205.541000 0.383000 3 +SPEAKER 02441 0 209.032000 5.284000 3 +SPEAKER 02441 0 214.816000 1.127000 3 +SPEAKER 02441 0 216.228000 1.127000 3 +SPEAKER 02441 0 236.581000 0.374000 3 +SPEAKER 02441 0 17.787000 0.558000 1 +SPEAKER 02441 0 62.906700 1.329300 1 +SPEAKER 02441 0 84.073770 1.285710 1 +SPEAKER 02441 0 96.767650 2.255100 1 +SPEAKER 02441 0 99.339080 2.785710 1 +SPEAKER 02441 0 151.576000 1.841000 1 +SPEAKER 02441 0 169.803000 6.011000 1 +SPEAKER 02441 0 176.556000 1.655000 1 +SPEAKER 02441 0 265.473000 0.823000 1 +SPEAKER 02441 0 83.991800 1.420200 h0 +SPEAKER 02441 0 275.757000 0.667000 h0 +SPEAKER 02441 0 103.843000 0.786000 h1 +SPEAKER 02441 0 198.532000 0.454000 h1 diff --git a/rttm/many/02443.rttm b/rttm/many/02443.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4048ebbc72435f22f3470fe8cd12394a7f248f9c --- /dev/null +++ b/rttm/many/02443.rttm @@ -0,0 +1,58 @@ +SPEAKER 02443 0 1.798000 0.928000 6 +SPEAKER 02443 0 3.037000 3.097000 6 +SPEAKER 02443 0 6.454000 1.973000 6 +SPEAKER 02443 0 26.523000 0.592000 6 +SPEAKER 02443 0 27.720000 1.145000 6 +SPEAKER 02443 0 39.257000 0.636000 6 +SPEAKER 02443 0 41.676000 1.669000 6 +SPEAKER 02443 0 43.597000 1.168000 6 +SPEAKER 02443 0 45.544000 1.241000 6 +SPEAKER 02443 0 47.196000 6.849000 6 +SPEAKER 02443 0 54.567000 5.458000 6 +SPEAKER 02443 0 1.889000 0.856000 0 +SPEAKER 02443 0 3.874000 0.815000 0 +SPEAKER 02443 0 5.596000 0.630000 0 +SPEAKER 02443 0 24.739000 1.506000 0 +SPEAKER 02443 0 35.788000 1.000000 0 +SPEAKER 02443 0 38.725000 0.620000 0 +SPEAKER 02443 0 40.490000 0.648450 0 +SPEAKER 02443 0 59.245000 0.920000 0 +SPEAKER 02443 0 61.540000 0.905000 0 +SPEAKER 02443 0 1.875000 0.889000 1 +SPEAKER 02443 0 3.893000 0.796000 1 +SPEAKER 02443 0 5.615000 0.611000 1 +SPEAKER 02443 0 35.784000 1.000000 1 +SPEAKER 02443 0 59.241000 0.884000 1 +SPEAKER 02443 0 1.857000 0.888000 5 +SPEAKER 02443 0 3.911000 0.797000 5 +SPEAKER 02443 0 5.615000 0.593000 5 +SPEAKER 02443 0 50.645000 0.480000 5 +SPEAKER 02443 0 59.285000 0.840000 5 +SPEAKER 02443 0 1.875000 0.870000 3 +SPEAKER 02443 0 3.949000 0.777000 3 +SPEAKER 02443 0 5.669000 0.539000 3 +SPEAKER 02443 0 59.305000 0.820000 3 +SPEAKER 02443 0 1.838000 0.870000 2 +SPEAKER 02443 0 3.948000 0.797000 2 +SPEAKER 02443 0 5.633000 0.556000 2 +SPEAKER 02443 0 27.152000 0.371000 2 +SPEAKER 02443 0 28.985000 0.580000 2 +SPEAKER 02443 0 30.335000 3.870000 2 +SPEAKER 02443 0 34.718000 1.367000 2 +SPEAKER 02443 0 36.885000 0.740000 2 +SPEAKER 02443 0 38.085000 0.620000 2 +SPEAKER 02443 0 59.305000 0.860000 2 +SPEAKER 02443 0 1.819000 0.907000 4 +SPEAKER 02443 0 3.967000 0.722000 4 +SPEAKER 02443 0 5.701000 0.451000 4 +SPEAKER 02443 0 59.314000 0.771000 4 +SPEAKER 02443 0 1.840000 0.868000 7 +SPEAKER 02443 0 3.979000 0.692000 7 +SPEAKER 02443 0 5.689000 0.445000 7 +SPEAKER 02443 0 8.784000 7.368000 7 +SPEAKER 02443 0 16.560000 9.704000 7 +SPEAKER 02443 0 39.325000 2.120000 7 +SPEAKER 02443 0 44.565000 0.908000 7 +SPEAKER 02443 0 46.700000 0.665000 7 +SPEAKER 02443 0 59.325000 0.725000 7 +SPEAKER 02443 0 60.308000 1.000000 7 diff --git a/rttm/many/02446.rttm b/rttm/many/02446.rttm new file mode 100644 index 0000000000000000000000000000000000000000..bdc4a2993836e97ada3189ce10a560f45d8f349a --- /dev/null +++ b/rttm/many/02446.rttm @@ -0,0 +1,20 @@ +SPEAKER 02446 0 0.034000 6.307530 5 +SPEAKER 02446 0 6.877690 1.399310 5 +SPEAKER 02446 0 14.900170 1.382020 5 +SPEAKER 02446 0 0.031850 1.736350 4 +SPEAKER 02446 0 8.444490 2.723710 4 +SPEAKER 02446 0 15.517560 1.466880 4 +SPEAKER 02446 0 0.474810 0.452530 6 +SPEAKER 02446 0 8.261000 1.315910 6 +SPEAKER 02446 0 15.391980 4.041100 6 +SPEAKER 02446 0 5.338000 0.910200 2 +SPEAKER 02446 0 18.374860 5.629140 2 +SPEAKER 02446 0 24.519940 0.648140 2 +SPEAKER 02446 0 5.412530 0.897260 0 +SPEAKER 02446 0 15.871430 1.561650 0 +SPEAKER 02446 0 23.537550 0.848840 0 +SPEAKER 02446 0 7.944000 1.073560 1 +SPEAKER 02446 0 10.469810 7.834850 1 +SPEAKER 02446 0 5.371790 1.796290 3 +SPEAKER 02446 0 23.097460 0.767130 3 +SPEAKER 02446 0 24.412530 1.718050 3 diff --git a/rttm/many/02497.rttm b/rttm/many/02497.rttm new file mode 100644 index 0000000000000000000000000000000000000000..55988fc15e5b5f1926e737ed2d590fa35993d7aa --- /dev/null +++ b/rttm/many/02497.rttm @@ -0,0 +1,72 @@ +SPEAKER 02497 0 8.893000 0.963420 0 +SPEAKER 02497 0 15.179860 1.928570 0 +SPEAKER 02497 0 22.620000 0.655100 0 +SPEAKER 02497 0 25.968000 0.961860 0 +SPEAKER 02497 0 34.821080 0.170000 0 +SPEAKER 02497 0 44.930510 1.777490 0 +SPEAKER 02497 0 56.552000 1.267000 0 +SPEAKER 02497 0 61.523000 1.797650 0 +SPEAKER 02497 0 72.247000 0.860000 0 +SPEAKER 02497 0 73.752460 0.894560 0 +SPEAKER 02497 0 80.912000 1.681370 0 +SPEAKER 02497 0 95.356000 1.778000 0 +SPEAKER 02497 0 97.689000 2.660550 0 +SPEAKER 02497 0 100.821000 2.999650 0 +SPEAKER 02497 0 105.002000 0.881000 0 +SPEAKER 02497 0 7.440000 1.103920 5 +SPEAKER 02497 0 12.477480 1.845240 5 +SPEAKER 02497 0 22.208000 0.912340 5 +SPEAKER 02497 0 31.977480 4.053600 5 +SPEAKER 02497 0 45.556000 1.570940 5 +SPEAKER 02497 0 47.431000 0.678080 5 +SPEAKER 02497 0 65.502460 0.795460 5 +SPEAKER 02497 0 100.866100 0.727270 5 +SPEAKER 02497 0 0.000000 1.231420 1 +SPEAKER 02497 0 2.293920 0.708340 1 +SPEAKER 02497 0 10.912000 1.411000 1 +SPEAKER 02497 0 29.144000 3.524000 1 +SPEAKER 02497 0 33.465580 1.206760 1 +SPEAKER 02497 0 35.611080 1.840000 1 +SPEAKER 02497 0 37.782000 0.869080 1 +SPEAKER 02497 0 41.597000 1.601360 1 +SPEAKER 02497 0 46.806000 1.646000 1 +SPEAKER 02497 0 58.134000 2.119000 1 +SPEAKER 02497 0 62.866100 2.204550 1 +SPEAKER 02497 0 72.570650 2.896350 1 +SPEAKER 02497 0 86.097000 0.610010 1 +SPEAKER 02497 0 87.412000 0.726830 1 +SPEAKER 02497 0 92.764000 3.624830 1 +SPEAKER 02497 0 97.155000 0.501000 1 +SPEAKER 02497 0 99.488790 0.740950 1 +SPEAKER 02497 0 102.241000 0.738740 1 +SPEAKER 02497 0 4.148090 1.000000 4 +SPEAKER 02497 0 17.608430 1.761910 4 +SPEAKER 02497 0 28.310810 0.595240 4 +SPEAKER 02497 0 30.081000 0.200000 4 +SPEAKER 02497 0 31.023000 1.778000 4 +SPEAKER 02497 0 37.115000 1.366080 4 +SPEAKER 02497 0 39.841000 1.000220 4 +SPEAKER 02497 0 42.919000 0.797220 4 +SPEAKER 02497 0 54.501000 1.251000 4 +SPEAKER 02497 0 57.207010 2.545450 4 +SPEAKER 02497 0 66.949000 1.917100 4 +SPEAKER 02497 0 75.986000 1.971010 4 +SPEAKER 02497 0 82.578000 1.556000 4 +SPEAKER 02497 0 89.967000 1.694550 4 +SPEAKER 02497 0 1.245000 1.533000 3 +SPEAKER 02497 0 14.060000 2.477000 3 +SPEAKER 02497 0 32.211080 1.170000 3 +SPEAKER 02497 0 36.799000 0.345150 3 +SPEAKER 02497 0 37.571080 0.760000 3 +SPEAKER 02497 0 41.162650 1.125000 3 +SPEAKER 02497 0 49.180510 2.750000 3 +SPEAKER 02497 0 98.070650 2.886360 3 +SPEAKER 02497 0 101.729740 0.318180 3 +SPEAKER 02497 0 105.152000 0.732000 3 +SPEAKER 02497 0 3.266000 1.082000 2 +SPEAKER 02497 0 8.023090 1.665910 2 +SPEAKER 02497 0 53.320650 3.545450 2 +SPEAKER 02497 0 58.375000 1.411260 2 +SPEAKER 02497 0 81.356000 0.803680 2 +SPEAKER 02497 0 86.171000 1.318000 2 +SPEAKER 02497 0 88.418000 0.900000 2 diff --git a/rttm/many/02541.rttm b/rttm/many/02541.rttm new file mode 100644 index 0000000000000000000000000000000000000000..7f34dce43ad1e3a6a487c08a26fbfa5552954c63 --- /dev/null +++ b/rttm/many/02541.rttm @@ -0,0 +1,92 @@ +SPEAKER 02541 0 6.256000 1.010320 1 +SPEAKER 02541 0 26.059810 0.370190 1 +SPEAKER 02541 0 60.111000 1.004360 1 +SPEAKER 02541 0 62.930000 0.685000 1 +SPEAKER 02541 0 63.942000 1.000000 1 +SPEAKER 02541 0 65.867000 1.508000 1 +SPEAKER 02541 0 67.792000 0.469050 1 +SPEAKER 02541 0 68.764000 1.129140 1 +SPEAKER 02541 0 70.323000 2.903470 1 +SPEAKER 02541 0 73.791440 0.712810 1 +SPEAKER 02541 0 75.190000 2.258690 1 +SPEAKER 02541 0 77.893140 5.684860 1 +SPEAKER 02541 0 85.213660 0.666670 1 +SPEAKER 02541 0 93.424770 1.060960 1 +SPEAKER 02541 0 99.011000 1.085840 1 +SPEAKER 02541 0 106.115000 0.370730 1 +SPEAKER 02541 0 121.569000 1.324000 1 +SPEAKER 02541 0 123.756000 1.000000 1 +SPEAKER 02541 0 162.226470 2.499530 1 +SPEAKER 02541 0 6.226000 1.000000 4 +SPEAKER 02541 0 7.726470 2.944450 4 +SPEAKER 02541 0 11.041290 1.883480 4 +SPEAKER 02541 0 20.883000 0.529000 4 +SPEAKER 02541 0 57.986000 2.074000 4 +SPEAKER 02541 0 60.958000 1.898000 4 +SPEAKER 02541 0 74.551000 0.546000 4 +SPEAKER 02541 0 86.041000 2.130000 4 +SPEAKER 02541 0 92.245000 3.092580 4 +SPEAKER 02541 0 97.226000 2.778000 4 +SPEAKER 02541 0 104.930000 1.130000 4 +SPEAKER 02541 0 119.587000 1.000000 4 +SPEAKER 02541 0 123.097000 0.481320 4 +SPEAKER 02541 0 127.411660 2.389340 4 +SPEAKER 02541 0 137.180330 0.601700 4 +SPEAKER 02541 0 141.226470 1.351530 4 +SPEAKER 02541 0 12.819060 3.795940 0 +SPEAKER 02541 0 16.903000 4.138400 0 +SPEAKER 02541 0 21.512000 4.414020 0 +SPEAKER 02541 0 26.300000 2.686000 0 +SPEAKER 02541 0 35.097000 0.389000 0 +SPEAKER 02541 0 47.098000 0.647000 0 +SPEAKER 02541 0 69.771000 0.798220 0 +SPEAKER 02541 0 79.606000 0.454000 0 +SPEAKER 02541 0 90.856100 3.129900 0 +SPEAKER 02541 0 94.670920 1.981080 0 +SPEAKER 02541 0 106.152400 1.240740 0 +SPEAKER 02541 0 118.060000 0.498110 0 +SPEAKER 02541 0 123.685000 1.000000 0 +SPEAKER 02541 0 136.152400 0.694590 0 +SPEAKER 02541 0 137.770000 0.882400 0 +SPEAKER 02541 0 148.134000 1.035220 0 +SPEAKER 02541 0 149.709000 0.437990 0 +SPEAKER 02541 0 150.643970 1.628200 0 +SPEAKER 02541 0 153.000000 1.078320 0 +SPEAKER 02541 0 154.485000 0.482000 0 +SPEAKER 02541 0 155.412000 7.314000 0 +SPEAKER 02541 0 164.244000 1.186000 0 +SPEAKER 02541 0 29.353000 0.355070 3 +SPEAKER 02541 0 30.247000 0.730300 3 +SPEAKER 02541 0 31.475000 1.000000 3 +SPEAKER 02541 0 32.990120 14.106720 3 +SPEAKER 02541 0 48.178000 4.307730 3 +SPEAKER 02541 0 52.800550 1.107450 3 +SPEAKER 02541 0 55.523000 2.740510 3 +SPEAKER 02541 0 107.912000 5.814000 3 +SPEAKER 02541 0 114.024000 2.369000 3 +SPEAKER 02541 0 116.696000 1.000000 3 +SPEAKER 02541 0 118.060000 0.910000 3 +SPEAKER 02541 0 119.480000 1.000000 3 +SPEAKER 02541 0 120.980330 0.394290 3 +SPEAKER 02541 0 121.824000 0.477000 3 +SPEAKER 02541 0 123.657000 1.000000 3 +SPEAKER 02541 0 127.393000 0.444580 3 +SPEAKER 02541 0 135.189000 0.445000 3 +SPEAKER 02541 0 136.412000 0.481000 3 +SPEAKER 02541 0 140.467000 1.000000 3 +SPEAKER 02541 0 143.930000 1.239220 3 +SPEAKER 02541 0 161.714000 0.938400 3 +SPEAKER 02541 0 14.719000 0.397000 2 +SPEAKER 02541 0 35.390000 0.503000 2 +SPEAKER 02541 0 37.875000 0.389590 2 +SPEAKER 02541 0 82.944000 1.560000 2 +SPEAKER 02541 0 85.122000 0.771000 2 +SPEAKER 02541 0 88.380000 0.655880 2 +SPEAKER 02541 0 89.442000 2.099000 2 +SPEAKER 02541 0 96.226000 2.037510 2 +SPEAKER 02541 0 124.615360 1.296300 2 +SPEAKER 02541 0 130.707000 1.628880 2 +SPEAKER 02541 0 133.069220 3.122220 2 +SPEAKER 02541 0 136.966000 3.909000 2 +SPEAKER 02541 0 142.356100 1.290890 2 +SPEAKER 02541 0 145.137000 2.089000 2 diff --git a/rttm/many/02552.rttm b/rttm/many/02552.rttm new file mode 100644 index 0000000000000000000000000000000000000000..18ca9811757efb2e10cdc7cede87f88fdccfe3fd --- /dev/null +++ b/rttm/many/02552.rttm @@ -0,0 +1,43 @@ +SPEAKER 02552 0 3.393000 3.833470 3 +SPEAKER 02552 0 7.550000 4.361660 3 +SPEAKER 02552 0 13.986000 0.722000 3 +SPEAKER 02552 0 32.108000 1.000000 3 +SPEAKER 02552 0 35.375000 1.127670 3 +SPEAKER 02552 0 39.770110 0.209300 3 +SPEAKER 02552 0 49.328250 0.767440 3 +SPEAKER 02552 0 54.728000 6.073000 3 +SPEAKER 02552 0 4.393000 2.704000 4 +SPEAKER 02552 0 26.188000 5.835000 4 +SPEAKER 02552 0 55.634000 1.000000 4 +SPEAKER 02552 0 57.578000 3.204000 4 +SPEAKER 02552 0 4.394000 2.721000 2 +SPEAKER 02552 0 14.815000 0.730000 2 +SPEAKER 02552 0 33.150000 2.225000 2 +SPEAKER 02552 0 57.597000 3.129000 2 +SPEAKER 02552 0 4.375000 2.814000 6 +SPEAKER 02552 0 32.097000 1.000000 6 +SPEAKER 02552 0 41.595690 3.371310 6 +SPEAKER 02552 0 57.597000 3.204000 6 +SPEAKER 02552 0 4.375000 2.767200 8 +SPEAKER 02552 0 14.023000 4.981000 8 +SPEAKER 02552 0 32.152000 1.000000 8 +SPEAKER 02552 0 54.764000 1.648000 8 +SPEAKER 02552 0 57.597000 3.204000 8 +SPEAKER 02552 0 4.375000 2.767200 0 +SPEAKER 02552 0 32.208000 1.000000 0 +SPEAKER 02552 0 36.560000 4.741000 0 +SPEAKER 02552 0 54.745000 1.648000 0 +SPEAKER 02552 0 57.597000 3.278000 0 +SPEAKER 02552 0 4.356000 2.833000 1 +SPEAKER 02552 0 32.689000 0.575000 1 +SPEAKER 02552 0 45.003000 4.220600 1 +SPEAKER 02552 0 54.745000 1.759000 1 +SPEAKER 02552 0 57.597000 3.204000 1 +SPEAKER 02552 0 4.338000 2.850720 7 +SPEAKER 02552 0 12.763510 1.944490 7 +SPEAKER 02552 0 50.390000 4.336000 7 +SPEAKER 02552 0 57.597000 3.241000 7 +SPEAKER 02552 0 4.356000 2.797830 5 +SPEAKER 02552 0 21.828250 4.282960 5 +SPEAKER 02552 0 55.838000 0.759000 5 +SPEAKER 02552 0 57.597000 3.241000 5 diff --git a/rttm/many/02584.rttm b/rttm/many/02584.rttm new file mode 100644 index 0000000000000000000000000000000000000000..26871a0ca6b29ac61ffc55c721f99991bc5e028e --- /dev/null +++ b/rttm/many/02584.rttm @@ -0,0 +1,35 @@ +SPEAKER 02584 0 5.633880 1.277780 5 +SPEAKER 02584 0 7.467210 2.878930 5 +SPEAKER 02584 0 10.817560 1.042440 5 +SPEAKER 02584 0 13.246140 1.744900 5 +SPEAKER 02584 0 15.634000 1.031460 5 +SPEAKER 02584 0 17.726000 1.815000 5 +SPEAKER 02584 0 20.004000 0.510300 5 +SPEAKER 02584 0 21.671000 5.481000 5 +SPEAKER 02584 0 27.417000 0.518000 5 +SPEAKER 02584 0 36.727000 0.890000 5 +SPEAKER 02584 0 0.079000 0.296000 2 +SPEAKER 02584 0 0.674710 4.357140 2 +SPEAKER 02584 0 6.560000 1.000000 2 +SPEAKER 02584 0 11.967000 0.919390 2 +SPEAKER 02584 0 22.431850 2.017150 2 +SPEAKER 02584 0 30.078000 2.453850 2 +SPEAKER 02584 0 12.838000 0.574000 0 +SPEAKER 02584 0 30.115000 1.059710 0 +SPEAKER 02584 0 31.814000 3.189280 0 +SPEAKER 02584 0 37.708000 0.944000 0 +SPEAKER 02584 0 15.041000 0.410660 3 +SPEAKER 02584 0 26.893000 0.945000 3 +SPEAKER 02584 0 30.078000 3.739560 3 +SPEAKER 02584 0 36.949000 0.889000 3 +SPEAKER 02584 0 17.023000 1.592000 4 +SPEAKER 02584 0 19.223600 0.521400 4 +SPEAKER 02584 0 20.677090 0.430230 4 +SPEAKER 02584 0 25.781740 0.325580 4 +SPEAKER 02584 0 27.004000 2.482000 4 +SPEAKER 02584 0 20.560000 1.278000 h0 +SPEAKER 02584 0 37.804990 0.500000 h0 +SPEAKER 02584 0 0.046000 0.285850 1 +SPEAKER 02584 0 0.717560 4.271430 1 +SPEAKER 02584 0 30.060000 2.222000 1 +SPEAKER 02584 0 36.060000 1.333000 1 diff --git a/rttm/many/02644.rttm b/rttm/many/02644.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c0bd95cbaa7f5781a33449c7356044bc43a14894 --- /dev/null +++ b/rttm/many/02644.rttm @@ -0,0 +1,23 @@ +SPEAKER 02644 0 0.070880 1.392150 h1 +SPEAKER 02644 0 3.678720 2.500780 h1 +SPEAKER 02644 0 12.090490 1.637250 h1 +SPEAKER 02644 0 19.855190 3.390810 h1 +SPEAKER 02644 0 1.355190 1.754900 h2 +SPEAKER 02644 0 4.992450 0.843130 h2 +SPEAKER 02644 0 12.247350 0.529410 h2 +SPEAKER 02644 0 15.688520 1.343140 h2 +SPEAKER 02644 0 17.649310 0.450980 h2 +SPEAKER 02644 0 22.472840 0.599210 h2 +SPEAKER 02644 0 1.825780 1.294120 1 +SPEAKER 02644 0 3.678720 1.234280 1 +SPEAKER 02644 0 9.963030 2.029420 1 +SPEAKER 02644 0 17.257150 2.303920 1 +SPEAKER 02644 0 21.610090 1.422360 1 +SPEAKER 02644 0 5.619900 1.823530 0 +SPEAKER 02644 0 8.492450 3.893330 0 +SPEAKER 02644 0 15.061070 1.529420 0 +SPEAKER 02644 0 0.041000 0.445000 h0 +SPEAKER 02644 0 6.442640 2.061360 h0 +SPEAKER 02644 0 12.090490 0.490190 h0 +SPEAKER 02644 0 19.982640 0.941180 h0 +SPEAKER 02644 0 24.198330 1.019610 h0 diff --git a/rttm/many/02646.rttm b/rttm/many/02646.rttm new file mode 100644 index 0000000000000000000000000000000000000000..3c80ebe30e1f2212948a98fe95916622123b3c24 --- /dev/null +++ b/rttm/many/02646.rttm @@ -0,0 +1,48 @@ +SPEAKER 02646 0 0.000000 3.974860 7 +SPEAKER 02646 0 4.541530 2.640000 7 +SPEAKER 02646 0 9.338000 3.064650 7 +SPEAKER 02646 0 12.659000 0.583160 7 +SPEAKER 02646 0 15.282000 0.694140 7 +SPEAKER 02646 0 16.748330 1.034670 7 +SPEAKER 02646 0 22.050000 3.176000 7 +SPEAKER 02646 0 48.855880 0.702530 7 +SPEAKER 02646 0 57.367000 1.450000 7 +SPEAKER 02646 0 61.317000 1.583000 7 +SPEAKER 02646 0 66.067000 1.130660 7 +SPEAKER 02646 0 68.950000 0.394000 7 +SPEAKER 02646 0 0.008200 1.246660 1 +SPEAKER 02646 0 14.283000 0.850000 1 +SPEAKER 02646 0 16.033000 0.817000 1 +SPEAKER 02646 0 19.720000 0.932000 1 +SPEAKER 02646 0 22.849550 0.654450 1 +SPEAKER 02646 0 23.933000 1.017000 1 +SPEAKER 02646 0 26.064740 1.613930 1 +SPEAKER 02646 0 34.912840 1.734180 1 +SPEAKER 02646 0 39.817000 1.783000 1 +SPEAKER 02646 0 42.319000 1.568530 1 +SPEAKER 02646 0 49.014110 5.102890 1 +SPEAKER 02646 0 54.982470 0.784530 1 +SPEAKER 02646 0 65.233000 0.834000 1 +SPEAKER 02646 0 67.733000 0.550000 1 +SPEAKER 02646 0 3.954860 0.578140 3 +SPEAKER 02646 0 7.301000 1.049000 3 +SPEAKER 02646 0 13.867000 1.333000 3 +SPEAKER 02646 0 17.661910 0.925930 3 +SPEAKER 02646 0 20.957150 1.259850 3 +SPEAKER 02646 0 33.722970 0.698030 3 +SPEAKER 02646 0 34.723640 1.100600 3 +SPEAKER 02646 0 45.267000 1.216000 3 +SPEAKER 02646 0 1.788000 0.500200 0 +SPEAKER 02646 0 7.067000 0.433000 0 +SPEAKER 02646 0 8.417000 0.866000 0 +SPEAKER 02646 0 10.912000 0.601760 0 +SPEAKER 02646 0 17.050000 2.217000 0 +SPEAKER 02646 0 37.767000 1.601540 0 +SPEAKER 02646 0 42.933000 2.067000 0 +SPEAKER 02646 0 45.760680 3.172320 0 +SPEAKER 02646 0 52.017000 0.650000 0 +SPEAKER 02646 0 56.647020 1.552980 0 +SPEAKER 02646 0 59.133000 1.526680 0 +SPEAKER 02646 0 64.957150 1.056610 0 +SPEAKER 02646 0 68.717000 0.566000 0 +SPEAKER 02646 0 37.653350 1.629650 h0 diff --git a/rttm/many/02707.rttm b/rttm/many/02707.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c2ce442be817d780b3fce849797852ca13b31428 --- /dev/null +++ b/rttm/many/02707.rttm @@ -0,0 +1,45 @@ +SPEAKER 02707 0 0.000000 0.835590 5 +SPEAKER 02707 0 2.974000 0.319920 5 +SPEAKER 02707 0 5.737000 1.223590 5 +SPEAKER 02707 0 16.634000 1.284920 5 +SPEAKER 02707 0 28.623000 0.859050 5 +SPEAKER 02707 0 31.855000 0.540000 5 +SPEAKER 02707 0 33.627260 0.708330 5 +SPEAKER 02707 0 36.210590 1.020830 5 +SPEAKER 02707 0 50.598000 0.639000 5 +SPEAKER 02707 0 2.375000 0.384000 1 +SPEAKER 02707 0 3.526000 2.122090 1 +SPEAKER 02707 0 24.562000 1.002760 1 +SPEAKER 02707 0 26.774000 0.290760 1 +SPEAKER 02707 0 29.398090 0.983960 1 +SPEAKER 02707 0 37.263000 1.658000 1 +SPEAKER 02707 0 43.711000 0.428190 1 +SPEAKER 02707 0 49.440000 1.118240 1 +SPEAKER 02707 0 51.877000 0.437760 1 +SPEAKER 02707 0 3.761000 0.854380 3 +SPEAKER 02707 0 7.046000 2.581260 3 +SPEAKER 02707 0 11.019000 0.823000 3 +SPEAKER 02707 0 12.787000 0.798590 3 +SPEAKER 02707 0 14.769000 0.626000 3 +SPEAKER 02707 0 17.553000 1.303000 3 +SPEAKER 02707 0 19.289000 1.609090 3 +SPEAKER 02707 0 31.940000 0.563000 3 +SPEAKER 02707 0 33.661000 0.460000 3 +SPEAKER 02707 0 36.606000 0.708760 3 +SPEAKER 02707 0 38.976000 0.445000 3 +SPEAKER 02707 0 39.907000 0.574420 3 +SPEAKER 02707 0 41.024900 1.956520 3 +SPEAKER 02707 0 44.053470 0.918530 3 +SPEAKER 02707 0 21.197000 2.555260 0 +SPEAKER 02707 0 25.801000 2.555000 0 +SPEAKER 02707 0 31.814760 1.958330 0 +SPEAKER 02707 0 34.936000 1.000000 0 +SPEAKER 02707 0 46.102000 3.372000 0 +SPEAKER 02707 0 51.752000 1.272000 0 +SPEAKER 02707 0 30.189760 1.062500 2 +SPEAKER 02707 0 34.270000 1.000000 2 +SPEAKER 02707 0 35.892000 1.000000 2 +SPEAKER 02707 0 49.728000 0.904000 2 +SPEAKER 02707 0 51.335000 0.428000 2 +SPEAKER 02707 0 28.261000 1.225810 4 +SPEAKER 02707 0 38.815000 0.562260 4 diff --git a/rttm/many/02709.rttm b/rttm/many/02709.rttm new file mode 100644 index 0000000000000000000000000000000000000000..d9be206c8d90d21e137450d39d38de33c9ef5492 --- /dev/null +++ b/rttm/many/02709.rttm @@ -0,0 +1,22 @@ +SPEAKER 02709 0 0.041000 3.371000 0 +SPEAKER 02709 0 3.874740 0.866260 0 +SPEAKER 02709 0 5.885420 0.829790 0 +SPEAKER 02709 0 8.396060 1.808510 0 +SPEAKER 02709 0 11.247120 0.223410 0 +SPEAKER 02709 0 12.023000 1.333000 0 +SPEAKER 02709 0 17.880850 0.304880 0 +SPEAKER 02709 0 20.523000 1.148000 0 +SPEAKER 02709 0 0.000000 0.448690 2 +SPEAKER 02709 0 3.412000 2.296000 2 +SPEAKER 02709 0 6.491800 1.938200 2 +SPEAKER 02709 0 9.541000 0.297000 2 +SPEAKER 02709 0 10.430000 1.556000 2 +SPEAKER 02709 0 14.736480 0.638520 2 +SPEAKER 02709 0 18.441820 1.970180 2 +SPEAKER 02709 0 21.624750 0.759250 2 +SPEAKER 02709 0 10.096000 1.000840 1 +SPEAKER 02709 0 12.672650 1.739350 h0 +SPEAKER 02709 0 16.225850 0.655000 h0 +SPEAKER 02709 0 15.153000 0.518000 3 +SPEAKER 02709 0 17.375000 1.037000 3 +SPEAKER 02709 0 20.930180 1.277770 3 diff --git a/rttm/many/02712.rttm b/rttm/many/02712.rttm new file mode 100644 index 0000000000000000000000000000000000000000..f78a3ce370301babb50000f4b5ea302c16ddf7c5 --- /dev/null +++ b/rttm/many/02712.rttm @@ -0,0 +1,8 @@ +SPEAKER 02712 0 0.994000 5.439620 1 +SPEAKER 02712 0 9.560000 5.697150 1 +SPEAKER 02712 0 15.692000 0.529000 1 +SPEAKER 02712 0 4.689000 4.430900 2 +SPEAKER 02712 0 9.441000 0.300000 2 +SPEAKER 02712 0 10.207950 1.470770 2 +SPEAKER 02712 0 16.704000 4.680600 2 +SPEAKER 02712 0 2.629000 1.255600 0 diff --git a/rttm/many/02737.rttm b/rttm/many/02737.rttm new file mode 100644 index 0000000000000000000000000000000000000000..2b30463a01b538cf4419258c88af781726af7030 --- /dev/null +++ b/rttm/many/02737.rttm @@ -0,0 +1,29 @@ +SPEAKER 02737 0 0.000000 2.095690 0 +SPEAKER 02737 0 2.932900 1.476750 0 +SPEAKER 02737 0 7.037550 0.709300 0 +SPEAKER 02737 0 11.015270 2.013700 0 +SPEAKER 02737 0 14.857740 0.547940 0 +SPEAKER 02737 0 16.802940 1.751280 0 +SPEAKER 02737 0 20.487870 0.479460 0 +SPEAKER 02737 0 34.849100 0.609900 0 +SPEAKER 02737 0 8.009460 1.711290 3 +SPEAKER 02737 0 13.761850 0.471860 3 +SPEAKER 02737 0 15.413200 0.442800 3 +SPEAKER 02737 0 16.502940 1.168060 3 +SPEAKER 02737 0 24.467000 2.253750 3 +SPEAKER 02737 0 9.741300 2.089040 1 +SPEAKER 02737 0 12.933080 0.659610 1 +SPEAKER 02737 0 17.535820 0.541090 1 +SPEAKER 02737 0 21.689000 0.620790 1 +SPEAKER 02737 0 23.522120 1.703880 1 +SPEAKER 02737 0 26.124000 0.417400 1 +SPEAKER 02737 0 27.138560 6.384440 1 +SPEAKER 02737 0 5.001770 0.360150 2 +SPEAKER 02737 0 5.861920 0.401380 2 +SPEAKER 02737 0 7.905680 1.950320 2 +SPEAKER 02737 0 21.261850 0.472600 2 +SPEAKER 02737 0 26.905680 1.095890 2 +SPEAKER 02737 0 2.120270 0.766120 h0 +SPEAKER 02737 0 21.698000 0.659740 h0 +SPEAKER 02737 0 24.560000 1.870000 h0 +SPEAKER 02737 0 33.483000 1.299000 h0 diff --git a/rttm/many/02752.rttm b/rttm/many/02752.rttm new file mode 100644 index 0000000000000000000000000000000000000000..f472dc7622b6e461daac3bde71024537904d2a58 --- /dev/null +++ b/rttm/many/02752.rttm @@ -0,0 +1,47 @@ +SPEAKER 02752 0 0.913000 2.215000 2 +SPEAKER 02752 0 25.060000 0.370000 2 +SPEAKER 02752 0 36.099810 2.716190 2 +SPEAKER 02752 0 39.875000 1.592000 2 +SPEAKER 02752 0 0.559000 0.371000 1 +SPEAKER 02752 0 2.857000 0.589000 1 +SPEAKER 02752 0 5.893000 0.960000 1 +SPEAKER 02752 0 10.782000 0.463000 1 +SPEAKER 02752 0 12.449000 0.296000 1 +SPEAKER 02752 0 18.448690 0.814310 1 +SPEAKER 02752 0 30.356100 0.481480 1 +SPEAKER 02752 0 31.847000 0.805400 1 +SPEAKER 02752 0 38.856000 0.889000 1 +SPEAKER 02752 0 53.097000 0.370000 1 +SPEAKER 02752 0 57.137000 8.626510 1 +SPEAKER 02752 0 66.875000 0.444000 1 +SPEAKER 02752 0 68.652400 0.407600 1 +SPEAKER 02752 0 69.652000 3.500000 1 +SPEAKER 02752 0 3.134000 2.111000 0 +SPEAKER 02752 0 12.023000 0.722000 0 +SPEAKER 02752 0 15.634000 1.627000 0 +SPEAKER 02752 0 18.061000 1.903000 0 +SPEAKER 02752 0 22.170920 1.933080 0 +SPEAKER 02752 0 26.949000 0.478000 0 +SPEAKER 02752 0 28.578000 2.389000 0 +SPEAKER 02752 0 31.509000 0.643400 0 +SPEAKER 02752 0 33.653000 1.258660 0 +SPEAKER 02752 0 36.264000 0.740000 0 +SPEAKER 02752 0 38.708000 2.370320 0 +SPEAKER 02752 0 42.282000 1.204000 0 +SPEAKER 02752 0 48.671000 0.685000 0 +SPEAKER 02752 0 52.782000 0.352000 0 +SPEAKER 02752 0 55.689440 2.722220 0 +SPEAKER 02752 0 64.905000 0.896000 0 +SPEAKER 02752 0 66.282000 4.161000 0 +SPEAKER 02752 0 4.327950 7.695050 3 +SPEAKER 02752 0 12.838000 2.722000 3 +SPEAKER 02752 0 20.805000 2.292000 3 +SPEAKER 02752 0 24.356000 3.759000 3 +SPEAKER 02752 0 29.856000 5.833000 3 +SPEAKER 02752 0 38.560000 1.259000 3 +SPEAKER 02752 0 40.375000 1.074000 3 +SPEAKER 02752 0 41.838000 6.592000 3 +SPEAKER 02752 0 48.838000 5.981000 3 +SPEAKER 02752 0 64.468000 0.573000 3 +SPEAKER 02752 0 65.837000 0.519000 3 +SPEAKER 02752 0 55.504250 1.796300 h0 diff --git a/rttm/many/02790.rttm b/rttm/many/02790.rttm new file mode 100644 index 0000000000000000000000000000000000000000..bee5904224cf04b50928d5a9a1a2855528b868c5 --- /dev/null +++ b/rttm/many/02790.rttm @@ -0,0 +1,20 @@ +SPEAKER 02790 0 0.000000 2.134000 0 +SPEAKER 02790 0 18.393000 0.833000 0 +SPEAKER 02790 0 25.245000 1.870000 0 +SPEAKER 02790 0 27.578000 2.558950 0 +SPEAKER 02790 0 0.739000 0.533170 1 +SPEAKER 02790 0 8.134000 0.444320 1 +SPEAKER 02790 0 12.823460 0.328940 1 +SPEAKER 02790 0 24.634000 2.722000 1 +SPEAKER 02790 0 2.134000 1.370000 3 +SPEAKER 02790 0 4.041000 8.778000 3 +SPEAKER 02790 0 13.134000 5.241000 3 +SPEAKER 02790 0 19.190000 0.481000 3 +SPEAKER 02790 0 19.985730 3.426270 3 +SPEAKER 02790 0 23.764000 1.870000 3 +SPEAKER 02790 0 27.449000 0.579580 3 +SPEAKER 02790 0 29.836280 0.358970 3 +SPEAKER 02790 0 31.926020 0.697980 3 +SPEAKER 02790 0 23.643970 0.474360 2 +SPEAKER 02790 0 28.967000 0.407740 h0 +SPEAKER 02790 0 30.986000 0.773350 h0 diff --git a/rttm/many/02795.rttm b/rttm/many/02795.rttm new file mode 100644 index 0000000000000000000000000000000000000000..32c9397dd12b59332829be4917a40254a7eab574 --- /dev/null +++ b/rttm/many/02795.rttm @@ -0,0 +1,21 @@ +SPEAKER 02795 0 7.698330 2.225490 3 +SPEAKER 02795 0 21.051270 0.578430 3 +SPEAKER 02795 0 17.463030 0.872550 0 +SPEAKER 02795 0 20.747350 1.058820 0 +SPEAKER 02795 0 3.188520 0.509810 1 +SPEAKER 02795 0 10.943430 1.176470 1 +SPEAKER 02795 0 17.217940 3.833330 1 +SPEAKER 02795 0 2.786560 1.068630 2 +SPEAKER 02795 0 4.717940 3.117640 2 +SPEAKER 02795 0 12.953230 2.772770 2 +SPEAKER 02795 0 20.639500 1.560500 2 +SPEAKER 02795 0 0.004000 5.047270 4 +SPEAKER 02795 0 6.639500 1.215690 4 +SPEAKER 02795 0 9.423820 1.823530 4 +SPEAKER 02795 0 11.933620 1.509810 4 +SPEAKER 02795 0 14.805780 3.274900 4 +SPEAKER 02795 0 20.923820 1.265180 4 +SPEAKER 02795 0 19.580290 1.539610 6 +SPEAKER 02795 0 15.070880 0.686270 5 +SPEAKER 02795 0 17.090490 0.487830 5 +SPEAKER 02795 0 20.963030 0.794120 5 diff --git a/rttm/many/02808.rttm b/rttm/many/02808.rttm new file mode 100644 index 0000000000000000000000000000000000000000..d59a1f71cfb853227cd6ea39f985f55b5cf5d9af --- /dev/null +++ b/rttm/many/02808.rttm @@ -0,0 +1,115 @@ +SPEAKER 02808 0 3.704570 1.429670 4 +SPEAKER 02808 0 6.913000 0.388000 4 +SPEAKER 02808 0 10.162540 4.804460 4 +SPEAKER 02808 0 16.530470 1.316520 4 +SPEAKER 02808 0 19.002170 2.193710 4 +SPEAKER 02808 0 23.049330 0.443400 4 +SPEAKER 02808 0 23.986000 0.655000 4 +SPEAKER 02808 0 26.530470 1.075470 4 +SPEAKER 02808 0 30.507000 1.646660 4 +SPEAKER 02808 0 34.191440 3.148890 4 +SPEAKER 02808 0 47.285180 1.113210 4 +SPEAKER 02808 0 48.878390 0.755610 4 +SPEAKER 02808 0 56.080000 1.158010 4 +SPEAKER 02808 0 57.910000 0.928000 4 +SPEAKER 02808 0 60.307000 1.312900 4 +SPEAKER 02808 0 62.105940 0.924530 4 +SPEAKER 02808 0 63.597000 1.544000 4 +SPEAKER 02808 0 65.702000 1.575000 4 +SPEAKER 02808 0 67.719150 6.132070 4 +SPEAKER 02808 0 77.486000 3.163000 4 +SPEAKER 02808 0 83.181410 0.509430 4 +SPEAKER 02808 0 85.671000 4.704000 4 +SPEAKER 02808 0 91.353510 1.372490 4 +SPEAKER 02808 0 93.486000 1.229210 4 +SPEAKER 02808 0 96.413000 0.610000 4 +SPEAKER 02808 0 97.643670 1.224330 4 +SPEAKER 02808 0 100.464430 1.182560 4 +SPEAKER 02808 0 103.412000 0.689000 4 +SPEAKER 02808 0 0.492730 0.452830 0 +SPEAKER 02808 0 2.123670 0.953970 0 +SPEAKER 02808 0 6.822920 1.626080 0 +SPEAKER 02808 0 8.736000 0.348000 0 +SPEAKER 02808 0 13.822920 0.839620 0 +SPEAKER 02808 0 15.417260 0.528300 0 +SPEAKER 02808 0 22.162540 0.455460 0 +SPEAKER 02808 0 23.758110 0.511110 0 +SPEAKER 02808 0 24.893000 1.345010 0 +SPEAKER 02808 0 29.819000 0.613000 0 +SPEAKER 02808 0 31.557640 0.412830 0 +SPEAKER 02808 0 35.634000 0.440000 0 +SPEAKER 02808 0 45.412000 0.923880 0 +SPEAKER 02808 0 47.321790 1.002210 0 +SPEAKER 02808 0 48.605940 0.727720 0 +SPEAKER 02808 0 51.819000 0.563000 0 +SPEAKER 02808 0 55.041000 1.253620 0 +SPEAKER 02808 0 74.879520 1.811320 0 +SPEAKER 02808 0 79.189000 0.963000 0 +SPEAKER 02808 0 80.842000 2.019000 0 +SPEAKER 02808 0 86.736000 0.462110 0 +SPEAKER 02808 0 88.632000 0.817000 0 +SPEAKER 02808 0 89.819000 1.472000 0 +SPEAKER 02808 0 92.171000 2.350030 0 +SPEAKER 02808 0 95.472730 0.557740 0 +SPEAKER 02808 0 97.435000 1.390000 0 +SPEAKER 02808 0 101.405560 2.012550 0 +SPEAKER 02808 0 104.078000 0.659040 0 +SPEAKER 02808 0 105.709710 0.254720 0 +SPEAKER 02808 0 0.000000 0.596500 1 +SPEAKER 02808 0 1.300220 0.708960 1 +SPEAKER 02808 0 2.992730 3.234100 1 +SPEAKER 02808 0 8.058770 3.837290 1 +SPEAKER 02808 0 14.304050 0.440950 1 +SPEAKER 02808 0 21.247000 0.322220 1 +SPEAKER 02808 0 27.651980 0.906790 1 +SPEAKER 02808 0 30.690840 0.332460 1 +SPEAKER 02808 0 32.890000 0.829150 1 +SPEAKER 02808 0 35.039900 0.367930 1 +SPEAKER 02808 0 43.409000 0.984000 1 +SPEAKER 02808 0 46.189000 5.069110 1 +SPEAKER 02808 0 58.417260 1.753740 1 +SPEAKER 02808 0 61.269220 0.949930 1 +SPEAKER 02808 0 74.912000 2.407000 1 +SPEAKER 02808 0 79.726000 1.334000 1 +SPEAKER 02808 0 83.541000 2.187580 1 +SPEAKER 02808 0 91.193930 1.330070 1 +SPEAKER 02808 0 94.389000 2.113170 1 +SPEAKER 02808 0 96.875000 1.296000 1 +SPEAKER 02808 0 100.473860 2.188680 1 +SPEAKER 02808 0 104.317000 1.512000 1 +SPEAKER 02808 0 3.860660 0.537730 2 +SPEAKER 02808 0 21.402550 2.311110 2 +SPEAKER 02808 0 26.269220 5.166660 2 +SPEAKER 02808 0 31.879520 0.849060 2 +SPEAKER 02808 0 33.929000 0.516560 2 +SPEAKER 02808 0 35.372000 0.658470 2 +SPEAKER 02808 0 37.523000 10.537000 2 +SPEAKER 02808 0 48.856000 1.444660 2 +SPEAKER 02808 0 65.313490 0.896220 2 +SPEAKER 02808 0 67.540000 0.427000 2 +SPEAKER 02808 0 78.030470 1.113200 2 +SPEAKER 02808 0 83.069000 0.533550 2 +SPEAKER 02808 0 85.912000 0.852000 2 +SPEAKER 02808 0 89.510470 0.991700 2 +SPEAKER 02808 0 92.949000 1.129000 2 +SPEAKER 02808 0 94.577640 0.424530 2 +SPEAKER 02808 0 102.926690 0.594340 2 +SPEAKER 02808 0 104.171000 1.778000 2 +SPEAKER 02808 0 14.891440 4.288890 5 +SPEAKER 02808 0 22.002170 3.603770 5 +SPEAKER 02808 0 33.708000 1.164000 5 +SPEAKER 02808 0 50.208000 1.048880 5 +SPEAKER 02808 0 58.266320 1.652070 5 +SPEAKER 02808 0 64.051000 3.413430 5 +SPEAKER 02808 0 77.398390 0.688680 5 +SPEAKER 02808 0 84.068200 1.066040 5 +SPEAKER 02808 0 100.558770 1.188680 5 +SPEAKER 02808 0 51.224770 3.576230 3 +SPEAKER 02808 0 55.653110 2.858490 3 +SPEAKER 02808 0 61.455000 0.424520 3 +SPEAKER 02808 0 62.615370 1.018630 3 +SPEAKER 02808 0 64.077000 1.596110 3 +SPEAKER 02808 0 79.653110 2.961890 3 +SPEAKER 02808 0 95.782000 1.451000 3 +SPEAKER 02808 0 98.879000 1.407000 3 +SPEAKER 02808 0 103.370090 0.735850 3 diff --git a/rttm/many/02825.rttm b/rttm/many/02825.rttm new file mode 100644 index 0000000000000000000000000000000000000000..9a33969575422fd99b5dffdbe396b637fbb085f9 --- /dev/null +++ b/rttm/many/02825.rttm @@ -0,0 +1,30 @@ +SPEAKER 02825 0 0.583000 5.418660 0 +SPEAKER 02825 0 14.896750 13.170250 0 +SPEAKER 02825 0 53.507000 0.417000 0 +SPEAKER 02825 0 55.738450 1.636360 0 +SPEAKER 02825 0 58.002090 2.172720 0 +SPEAKER 02825 0 61.217000 4.216000 0 +SPEAKER 02825 0 66.865720 0.427280 0 +SPEAKER 02825 0 5.976000 0.911980 3 +SPEAKER 02825 0 7.580960 2.402040 3 +SPEAKER 02825 0 13.168680 1.298320 3 +SPEAKER 02825 0 28.702090 5.939140 3 +SPEAKER 02825 0 39.133030 2.866970 3 +SPEAKER 02825 0 44.133000 0.878180 3 +SPEAKER 02825 0 47.511180 2.926830 3 +SPEAKER 02825 0 66.033000 0.259380 3 +SPEAKER 02825 0 69.264000 1.669000 3 +SPEAKER 02825 0 73.202090 2.314910 3 +SPEAKER 02825 0 77.500000 2.117000 3 +SPEAKER 02825 0 87.433000 1.349670 3 +SPEAKER 02825 0 91.383000 1.434000 3 +SPEAKER 02825 0 10.433000 2.067000 1 +SPEAKER 02825 0 34.550000 4.599420 1 +SPEAKER 02825 0 42.600000 0.344500 2 +SPEAKER 02825 0 43.690410 0.729860 2 +SPEAKER 02825 0 83.192300 3.740700 2 +SPEAKER 02825 0 89.144680 1.872320 2 +SPEAKER 02825 0 92.817000 2.708630 2 +SPEAKER 02825 0 95.930390 1.626990 2 +SPEAKER 02825 0 70.367000 2.444790 4 +SPEAKER 02825 0 75.033000 2.417000 4 diff --git a/rttm/many/02846.rttm b/rttm/many/02846.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4997f569ed683146ba62de32941a02f8d6829f40 --- /dev/null +++ b/rttm/many/02846.rttm @@ -0,0 +1,32 @@ +SPEAKER 02846 0 0.000000 2.136700 3 +SPEAKER 02846 0 5.657000 1.163000 3 +SPEAKER 02846 0 11.205780 1.727270 3 +SPEAKER 02846 0 15.725110 2.407900 3 +SPEAKER 02846 0 21.725110 0.750000 3 +SPEAKER 02846 0 36.001430 0.815790 3 +SPEAKER 02846 0 37.725110 0.670890 3 +SPEAKER 02846 0 43.412000 1.102580 3 +SPEAKER 02846 0 2.309780 1.980770 1 +SPEAKER 02846 0 9.523960 1.361760 1 +SPEAKER 02846 0 35.646160 1.565790 1 +SPEAKER 02846 0 39.014580 0.763160 1 +SPEAKER 02846 0 40.341000 1.305160 1 +SPEAKER 02846 0 2.559780 0.423070 5 +SPEAKER 02846 0 6.808050 1.727270 5 +SPEAKER 02846 0 11.171690 0.692290 5 +SPEAKER 02846 0 37.369850 1.486840 5 +SPEAKER 02846 0 39.160000 0.854580 5 +SPEAKER 02846 0 2.259000 0.570010 0 +SPEAKER 02846 0 4.965000 0.671700 0 +SPEAKER 02846 0 26.935640 1.184210 0 +SPEAKER 02846 0 36.856000 0.671740 0 +SPEAKER 02846 0 44.691000 2.402530 0 +SPEAKER 02846 0 48.673000 3.117900 0 +SPEAKER 02846 0 9.844000 1.793600 4 +SPEAKER 02846 0 12.597000 2.680740 4 +SPEAKER 02846 0 20.896160 1.039480 4 +SPEAKER 02846 0 24.344000 1.617950 4 +SPEAKER 02846 0 28.488000 1.131850 4 +SPEAKER 02846 0 31.435640 0.776310 4 +SPEAKER 02846 0 33.606690 1.434210 4 +SPEAKER 02846 0 41.469000 0.321900 4 diff --git a/rttm/many/02868.rttm b/rttm/many/02868.rttm new file mode 100644 index 0000000000000000000000000000000000000000..7a629e6ec49e574d4f85042390d08965a4147b17 --- /dev/null +++ b/rttm/many/02868.rttm @@ -0,0 +1,59 @@ +SPEAKER 02868 0 0.000000 1.262000 1 +SPEAKER 02868 0 3.733710 3.266290 1 +SPEAKER 02868 0 7.522770 5.091230 1 +SPEAKER 02868 0 13.836000 0.855000 1 +SPEAKER 02868 0 15.569220 5.288890 1 +SPEAKER 02868 0 21.880330 0.383180 1 +SPEAKER 02868 0 22.893140 1.898300 1 +SPEAKER 02868 0 26.077000 3.702040 1 +SPEAKER 02868 0 31.610000 2.449810 1 +SPEAKER 02868 0 34.518000 0.726990 1 +SPEAKER 02868 0 36.896060 2.423000 1 +SPEAKER 02868 0 39.742000 2.702000 1 +SPEAKER 02868 0 45.385420 4.563830 1 +SPEAKER 02868 0 51.970530 5.422610 1 +SPEAKER 02868 0 60.193930 1.085110 1 +SPEAKER 02868 0 64.353510 2.234040 1 +SPEAKER 02868 0 67.543000 1.437330 1 +SPEAKER 02868 0 70.014000 1.582840 1 +SPEAKER 02868 0 74.580330 0.977780 1 +SPEAKER 02868 0 77.823460 6.423530 1 +SPEAKER 02868 0 84.791440 14.009110 1 +SPEAKER 02868 0 99.319000 4.111180 1 +SPEAKER 02868 0 103.893140 14.122620 1 +SPEAKER 02868 0 1.429000 2.071000 0 +SPEAKER 02868 0 7.013660 0.893040 0 +SPEAKER 02868 0 13.380330 0.422220 0 +SPEAKER 02868 0 14.680330 1.166660 0 +SPEAKER 02868 0 19.346990 0.744450 0 +SPEAKER 02868 0 20.725000 0.982950 0 +SPEAKER 02868 0 22.337580 0.442750 0 +SPEAKER 02868 0 25.004250 1.135590 0 +SPEAKER 02868 0 28.502440 0.436170 0 +SPEAKER 02868 0 29.662020 1.872340 0 +SPEAKER 02868 0 35.119460 1.968090 0 +SPEAKER 02868 0 39.544990 0.459260 0 +SPEAKER 02868 0 44.059810 1.974550 0 +SPEAKER 02868 0 47.393140 0.588020 0 +SPEAKER 02868 0 49.375000 0.723190 0 +SPEAKER 02868 0 57.332230 0.914890 0 +SPEAKER 02868 0 61.417340 1.123950 0 +SPEAKER 02868 0 67.235880 0.677780 0 +SPEAKER 02868 0 69.113660 0.372070 0 +SPEAKER 02868 0 71.868000 2.501220 0 +SPEAKER 02868 0 75.702550 0.449850 0 +SPEAKER 02868 0 76.746990 1.243130 0 +SPEAKER 02868 0 82.208070 1.205130 0 +SPEAKER 02868 0 92.725000 1.066440 0 +SPEAKER 02868 0 98.969220 0.460960 0 +SPEAKER 02868 0 109.092690 0.666660 0 +SPEAKER 02868 0 110.810630 0.397320 0 +SPEAKER 02868 0 111.938840 0.343190 0 +SPEAKER 02868 0 113.143970 0.269230 0 +SPEAKER 02868 0 58.449250 0.431750 h1 +SPEAKER 02868 0 64.234000 2.804450 h1 +SPEAKER 02868 0 102.272170 1.769230 h1 +SPEAKER 02868 0 43.513080 0.553190 h0 +SPEAKER 02868 0 62.404000 1.883000 h0 +SPEAKER 02868 0 69.119000 0.857000 h0 +SPEAKER 02868 0 64.229360 2.827270 h3 diff --git a/rttm/many/02870.rttm b/rttm/many/02870.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c7b5630252426c1f414b2ff3fa638abbde7134a4 --- /dev/null +++ b/rttm/many/02870.rttm @@ -0,0 +1,22 @@ +SPEAKER 02870 0 5.024000 1.234110 2 +SPEAKER 02870 0 6.666000 1.912320 2 +SPEAKER 02870 0 9.087000 3.250580 2 +SPEAKER 02870 0 15.226470 1.453860 2 +SPEAKER 02870 0 20.400380 2.066620 2 +SPEAKER 02870 0 24.060000 0.388690 2 +SPEAKER 02870 0 5.782000 0.431660 4 +SPEAKER 02870 0 6.875000 0.394220 4 +SPEAKER 02870 0 8.835880 0.300000 4 +SPEAKER 02870 0 10.875000 0.795920 4 +SPEAKER 02870 0 17.615000 0.592950 4 +SPEAKER 02870 0 22.467000 1.593000 4 +SPEAKER 02870 0 10.764000 1.647660 0 +SPEAKER 02870 0 16.449000 1.092400 0 +SPEAKER 02870 0 18.131150 2.557850 0 +SPEAKER 02870 0 24.245000 0.360510 0 +SPEAKER 02870 0 12.282000 4.204000 1 +SPEAKER 02870 0 16.893000 1.093000 1 +SPEAKER 02870 0 18.674000 0.534000 1 +SPEAKER 02870 0 14.946990 0.501700 3 +SPEAKER 02870 0 15.996000 1.000000 3 +SPEAKER 02870 0 22.560000 0.481290 3 diff --git a/rttm/many/02878.rttm b/rttm/many/02878.rttm new file mode 100644 index 0000000000000000000000000000000000000000..ca7a36fec0d39bde763113875a99514e2d166a73 --- /dev/null +++ b/rttm/many/02878.rttm @@ -0,0 +1,21 @@ +SPEAKER 02878 0 0.015970 0.717030 5 +SPEAKER 02878 0 3.954020 1.759790 5 +SPEAKER 02878 0 14.003000 1.092690 5 +SPEAKER 02878 0 21.296000 2.749000 5 +SPEAKER 02878 0 28.190000 0.732020 5 +SPEAKER 02878 0 33.003100 0.824330 5 +SPEAKER 02878 0 34.759860 3.355140 5 +SPEAKER 02878 0 0.738900 0.702100 1 +SPEAKER 02878 0 29.742880 1.657900 1 +SPEAKER 02878 0 36.427090 3.500000 1 +SPEAKER 02878 0 11.006040 0.736840 0 +SPEAKER 02878 0 11.502800 2.548780 2 +SPEAKER 02878 0 15.247000 0.757000 2 +SPEAKER 02878 0 17.563770 1.195130 2 +SPEAKER 02878 0 34.075970 4.426830 2 +SPEAKER 02878 0 14.213000 1.424620 4 +SPEAKER 02878 0 16.331000 5.753990 4 +SPEAKER 02878 0 24.374460 4.947370 4 +SPEAKER 02878 0 30.764000 7.092000 4 +SPEAKER 02878 0 29.190250 1.000000 6 +SPEAKER 02878 0 35.058670 3.439330 6 diff --git a/rttm/many/02895.rttm b/rttm/many/02895.rttm new file mode 100644 index 0000000000000000000000000000000000000000..8c24fe29aab52e209f196c39e5bf3da4ed2e5b7f --- /dev/null +++ b/rttm/many/02895.rttm @@ -0,0 +1,21 @@ +SPEAKER 02895 0 0.356000 1.146260 2 +SPEAKER 02895 0 3.095000 1.032260 2 +SPEAKER 02895 0 10.676000 2.626710 2 +SPEAKER 02895 0 13.943000 0.800000 2 +SPEAKER 02895 0 4.510000 1.098000 3 +SPEAKER 02895 0 23.796000 1.000000 3 +SPEAKER 02895 0 7.055000 0.822710 1 +SPEAKER 02895 0 15.052710 1.150000 1 +SPEAKER 02895 0 26.430000 1.148000 1 +SPEAKER 02895 0 1.043920 1.250000 5 +SPEAKER 02895 0 16.819000 0.578000 5 +SPEAKER 02895 0 20.853000 1.000000 5 +SPEAKER 02895 0 23.552710 1.525000 5 +SPEAKER 02895 0 26.735000 1.454000 5 +SPEAKER 02895 0 21.418000 2.034710 6 +SPEAKER 02895 0 2.002260 0.979160 0 +SPEAKER 02895 0 10.802710 1.850000 0 +SPEAKER 02895 0 17.653000 1.349710 0 +SPEAKER 02895 0 0.523090 0.937910 7 +SPEAKER 02895 0 3.190000 0.340000 7 +SPEAKER 02895 0 5.795000 0.978000 7 diff --git a/rttm/many/02904.rttm b/rttm/many/02904.rttm new file mode 100644 index 0000000000000000000000000000000000000000..46023f86ad56668c8d9a26d628b0c7d325b816d5 --- /dev/null +++ b/rttm/many/02904.rttm @@ -0,0 +1,90 @@ +SPEAKER 02904 0 0.004000 2.731230 3 +SPEAKER 02904 0 8.047320 0.897210 3 +SPEAKER 02904 0 13.084060 0.686050 3 +SPEAKER 02904 0 16.398020 3.605980 3 +SPEAKER 02904 0 26.188720 0.979280 3 +SPEAKER 02904 0 34.944530 3.041470 3 +SPEAKER 02904 0 39.572440 0.941860 3 +SPEAKER 02904 0 42.921270 0.976750 3 +SPEAKER 02904 0 44.374760 2.129240 3 +SPEAKER 02904 0 47.944530 1.593020 3 +SPEAKER 02904 0 50.177090 3.790690 3 +SPEAKER 02904 0 56.677090 1.548910 3 +SPEAKER 02904 0 59.060810 0.918600 3 +SPEAKER 02904 0 60.293370 1.895630 3 +SPEAKER 02904 0 62.801000 1.740000 3 +SPEAKER 02904 0 65.351510 2.476740 3 +SPEAKER 02904 0 68.287000 2.458000 3 +SPEAKER 02904 0 73.630580 1.767440 3 +SPEAKER 02904 0 75.936160 1.415350 3 +SPEAKER 02904 0 78.084060 0.686050 3 +SPEAKER 02904 0 79.444530 1.633470 3 +SPEAKER 02904 0 84.735230 2.465110 3 +SPEAKER 02904 0 91.549180 0.918600 3 +SPEAKER 02904 0 100.060810 0.697670 3 +SPEAKER 02904 0 103.118950 0.755810 3 +SPEAKER 02904 0 106.084060 1.662790 3 +SPEAKER 02904 0 2.444530 5.546510 1 +SPEAKER 02904 0 19.932900 2.790700 1 +SPEAKER 02904 0 23.723600 3.348840 1 +SPEAKER 02904 0 33.525920 1.423080 1 +SPEAKER 02904 0 35.932900 0.941860 1 +SPEAKER 02904 0 39.630580 3.151420 1 +SPEAKER 02904 0 52.363130 0.837210 1 +SPEAKER 02904 0 54.793370 0.709300 1 +SPEAKER 02904 0 61.084060 0.476750 1 +SPEAKER 02904 0 62.339880 0.662790 1 +SPEAKER 02904 0 64.002670 1.020330 1 +SPEAKER 02904 0 70.874760 1.825580 1 +SPEAKER 02904 0 73.223600 1.779070 1 +SPEAKER 02904 0 81.610580 0.543250 1 +SPEAKER 02904 0 82.863130 1.974870 1 +SPEAKER 02904 0 85.804990 0.644010 1 +SPEAKER 02904 0 88.127000 1.000000 1 +SPEAKER 02904 0 89.991040 1.279070 1 +SPEAKER 02904 0 92.235230 0.658770 1 +SPEAKER 02904 0 98.409650 0.744180 1 +SPEAKER 02904 0 100.956160 1.988370 1 +SPEAKER 02904 0 103.572440 0.802320 1 +SPEAKER 02904 0 107.572440 1.395340 1 +SPEAKER 02904 0 2.935000 1.000000 0 +SPEAKER 02904 0 14.095690 2.214420 0 +SPEAKER 02904 0 17.130580 0.616270 0 +SPEAKER 02904 0 24.223600 0.802320 0 +SPEAKER 02904 0 30.177090 0.441860 0 +SPEAKER 02904 0 31.700340 1.414660 0 +SPEAKER 02904 0 34.036000 1.000000 0 +SPEAKER 02904 0 36.921270 0.685730 0 +SPEAKER 02904 0 38.642200 1.009800 0 +SPEAKER 02904 0 41.211970 1.465030 0 +SPEAKER 02904 0 46.060810 1.443190 0 +SPEAKER 02904 0 48.177090 0.674420 0 +SPEAKER 02904 0 49.607320 0.895350 0 +SPEAKER 02904 0 51.171000 1.087480 0 +SPEAKER 02904 0 53.944530 1.244190 0 +SPEAKER 02904 0 55.726000 1.186000 0 +SPEAKER 02904 0 58.316620 1.395350 0 +SPEAKER 02904 0 61.456160 0.732560 0 +SPEAKER 02904 0 66.354760 1.613020 0 +SPEAKER 02904 0 68.514300 1.174420 0 +SPEAKER 02904 0 70.909650 1.744180 0 +SPEAKER 02904 0 92.235230 1.476740 0 +SPEAKER 02904 0 95.281740 1.290700 0 +SPEAKER 02904 0 97.816620 1.095380 0 +SPEAKER 02904 0 109.735230 1.441860 0 +SPEAKER 02904 0 8.572440 5.857210 2 +SPEAKER 02904 0 20.363130 0.511630 2 +SPEAKER 02904 0 24.909650 0.755810 2 +SPEAKER 02904 0 30.014300 2.302320 2 +SPEAKER 02904 0 36.727000 0.740000 2 +SPEAKER 02904 0 38.250110 1.008370 2 +SPEAKER 02904 0 50.049180 0.581400 2 +SPEAKER 02904 0 66.270110 1.895350 2 +SPEAKER 02904 0 73.095690 1.255820 2 +SPEAKER 02904 0 78.642200 0.558140 2 +SPEAKER 02904 0 82.246850 0.755820 2 +SPEAKER 02904 0 87.339880 0.779070 2 +SPEAKER 02904 0 94.886390 0.662790 2 +SPEAKER 02904 0 103.456160 1.516840 2 +SPEAKER 02904 0 89.351510 0.825580 h0 +SPEAKER 02904 0 110.944530 1.046510 h0 diff --git a/rttm/many/02913.rttm b/rttm/many/02913.rttm new file mode 100644 index 0000000000000000000000000000000000000000..e2d3ca23d7f0219f4cc099ae030047dc558c9198 --- /dev/null +++ b/rttm/many/02913.rttm @@ -0,0 +1,27 @@ +SPEAKER 02913 0 0.063000 0.795110 h0 +SPEAKER 02913 0 1.648000 1.271000 3 +SPEAKER 02913 0 3.867970 0.884030 3 +SPEAKER 02913 0 5.356000 0.701160 3 +SPEAKER 02913 0 9.669220 1.122220 3 +SPEAKER 02913 0 16.658110 0.419890 3 +SPEAKER 02913 0 25.615000 1.500000 3 +SPEAKER 02913 0 32.836000 1.538620 3 +SPEAKER 02913 0 35.836000 1.417000 3 +SPEAKER 02913 0 3.043640 1.320360 2 +SPEAKER 02913 0 6.597000 1.314660 2 +SPEAKER 02913 0 8.308000 1.000000 2 +SPEAKER 02913 0 11.491440 1.122560 2 +SPEAKER 02913 0 13.680330 1.766670 2 +SPEAKER 02913 0 16.691440 0.617560 2 +SPEAKER 02913 0 18.197000 2.149990 2 +SPEAKER 02913 0 22.142000 1.677060 2 +SPEAKER 02913 0 27.458110 1.223890 2 +SPEAKER 02913 0 29.669220 2.075780 2 +SPEAKER 02913 0 34.158110 2.150890 2 +SPEAKER 02913 0 6.614000 0.945000 0 +SPEAKER 02913 0 13.031000 0.304880 0 +SPEAKER 02913 0 15.858110 0.866890 0 +SPEAKER 02913 0 19.869220 2.022780 0 +SPEAKER 02913 0 25.596840 1.461270 0 +SPEAKER 02913 0 33.659000 0.678580 0 +SPEAKER 02913 0 17.443000 0.376060 1 diff --git a/rttm/many/02951.rttm b/rttm/many/02951.rttm new file mode 100644 index 0000000000000000000000000000000000000000..c3b46d481200d63341ad2a0729b9fe77d034fb51 --- /dev/null +++ b/rttm/many/02951.rttm @@ -0,0 +1,70 @@ +SPEAKER 02951 0 0.000000 2.129000 1 +SPEAKER 02951 0 2.798000 1.043000 1 +SPEAKER 02951 0 4.378000 2.188000 1 +SPEAKER 02951 0 9.211000 1.933000 1 +SPEAKER 02951 0 11.828580 0.777770 1 +SPEAKER 02951 0 12.921170 1.972830 1 +SPEAKER 02951 0 17.323490 1.282860 1 +SPEAKER 02951 0 21.235000 1.736000 1 +SPEAKER 02951 0 27.679000 1.738000 1 +SPEAKER 02951 0 30.538450 0.302470 1 +SPEAKER 02951 0 34.830340 0.763670 1 +SPEAKER 02951 0 38.063000 2.170000 1 +SPEAKER 02951 0 41.227600 0.920400 1 +SPEAKER 02951 0 45.917000 1.300000 1 +SPEAKER 02951 0 48.048000 0.749710 1 +SPEAKER 02951 0 52.871000 1.031000 1 +SPEAKER 02951 0 54.649000 1.228960 1 +SPEAKER 02951 0 56.956000 1.169000 1 +SPEAKER 02951 0 58.568000 0.557000 1 +SPEAKER 02951 0 59.833000 0.907000 1 +SPEAKER 02951 0 61.340000 0.646000 1 +SPEAKER 02951 0 64.671000 0.600000 1 +SPEAKER 02951 0 66.309000 0.970000 1 +SPEAKER 02951 0 70.640000 1.116000 1 +SPEAKER 02951 0 79.007590 1.358020 1 +SPEAKER 02951 0 81.217000 1.530000 1 +SPEAKER 02951 0 88.186600 2.746400 1 +SPEAKER 02951 0 92.267000 0.852000 1 +SPEAKER 02951 0 94.014000 0.535000 1 +SPEAKER 02951 0 96.844000 1.496000 1 +SPEAKER 02951 0 101.619000 0.215000 1 +SPEAKER 02951 0 1.750000 0.794000 2 +SPEAKER 02951 0 2.900000 0.771000 2 +SPEAKER 02951 0 6.638000 2.709100 2 +SPEAKER 02951 0 11.087000 0.704540 2 +SPEAKER 02951 0 19.303890 2.512110 2 +SPEAKER 02951 0 29.295000 0.922000 2 +SPEAKER 02951 0 31.279000 2.077000 2 +SPEAKER 02951 0 35.817000 0.391000 2 +SPEAKER 02951 0 51.510000 0.761000 2 +SPEAKER 02951 0 61.816230 1.969770 2 +SPEAKER 02951 0 68.452000 0.857000 2 +SPEAKER 02951 0 73.779000 1.398000 2 +SPEAKER 02951 0 78.154000 1.256000 2 +SPEAKER 02951 0 6.547000 0.462000 3 +SPEAKER 02951 0 11.531000 0.871000 3 +SPEAKER 02951 0 23.171000 0.538000 3 +SPEAKER 02951 0 24.896480 0.876540 3 +SPEAKER 02951 0 26.386000 0.415000 3 +SPEAKER 02951 0 42.264000 1.569000 3 +SPEAKER 02951 0 50.625000 1.061000 3 +SPEAKER 02951 0 69.340000 1.239000 3 +SPEAKER 02951 0 96.022120 0.480880 3 +SPEAKER 02951 0 98.747000 0.930000 3 +SPEAKER 02951 0 9.257000 0.585000 0 +SPEAKER 02951 0 37.002000 0.546000 0 +SPEAKER 02951 0 39.184000 1.000000 0 +SPEAKER 02951 0 42.871000 0.454000 0 +SPEAKER 02951 0 49.140000 1.116000 0 +SPEAKER 02951 0 53.263000 0.723000 0 +SPEAKER 02951 0 94.305000 1.512000 0 +SPEAKER 02951 0 23.825000 0.854000 h1 +SPEAKER 02951 0 44.733000 1.092000 h1 +SPEAKER 02951 0 54.056000 0.823000 h1 +SPEAKER 02951 0 56.140000 0.439000 h1 +SPEAKER 02951 0 63.559000 1.150000 h1 +SPEAKER 02951 0 71.514000 1.279000 h1 +SPEAKER 02951 0 75.328000 2.070000 h1 +SPEAKER 02951 0 84.546000 1.000000 h1 +SPEAKER 02951 0 72.014000 1.384000 h0 diff --git a/rttm/many/03010.rttm b/rttm/many/03010.rttm new file mode 100644 index 0000000000000000000000000000000000000000..388b88b7db3873fa2619b66a76da80ed7250bb81 --- /dev/null +++ b/rttm/many/03010.rttm @@ -0,0 +1,38 @@ +SPEAKER 03010 0 0.637540 3.848460 2 +SPEAKER 03010 0 6.093000 0.489000 2 +SPEAKER 03010 0 17.319280 0.523810 2 +SPEAKER 03010 0 30.366900 4.916830 2 +SPEAKER 03010 0 52.606000 3.922000 2 +SPEAKER 03010 0 1.467000 3.000000 6 +SPEAKER 03010 0 35.014000 1.046000 6 +SPEAKER 03010 0 43.184360 5.412640 6 +SPEAKER 03010 0 53.338000 3.037000 6 +SPEAKER 03010 0 1.467000 3.019000 0 +SPEAKER 03010 0 36.323090 2.340320 0 +SPEAKER 03010 0 53.338000 3.166000 0 +SPEAKER 03010 0 1.486000 3.018000 7 +SPEAKER 03010 0 12.950080 4.584920 7 +SPEAKER 03010 0 53.338000 3.148000 7 +SPEAKER 03010 0 1.486000 4.466230 4 +SPEAKER 03010 0 7.192300 3.643200 4 +SPEAKER 03010 0 41.967000 0.625000 4 +SPEAKER 03010 0 53.338000 3.148000 4 +SPEAKER 03010 0 1.486000 3.018000 1 +SPEAKER 03010 0 6.120870 0.340950 1 +SPEAKER 03010 0 38.893000 3.074000 1 +SPEAKER 03010 0 53.338000 3.185000 1 +SPEAKER 03010 0 1.486000 3.037000 5 +SPEAKER 03010 0 21.470080 8.407920 5 +SPEAKER 03010 0 53.338000 3.111000 5 +SPEAKER 03010 0 1.523000 3.000000 8 +SPEAKER 03010 0 6.454200 0.484130 8 +SPEAKER 03010 0 17.263730 4.127710 8 +SPEAKER 03010 0 35.343090 0.716910 8 +SPEAKER 03010 0 53.338000 3.148000 8 +SPEAKER 03010 0 1.486000 3.037000 3 +SPEAKER 03010 0 16.267000 0.404000 3 +SPEAKER 03010 0 29.690000 0.639000 3 +SPEAKER 03010 0 35.060000 1.106000 3 +SPEAKER 03010 0 48.799000 3.224000 3 +SPEAKER 03010 0 53.338000 3.055000 3 +SPEAKER 03010 0 57.390710 0.566980 3 diff --git a/rttm/many/03020.rttm b/rttm/many/03020.rttm new file mode 100644 index 0000000000000000000000000000000000000000..4fe9e4b249ff4a2231434b02d6f00776a5e75794 --- /dev/null +++ b/rttm/many/03020.rttm @@ -0,0 +1,48 @@ +SPEAKER 03020 0 1.024000 0.499000 1 +SPEAKER 03020 0 2.952000 0.506000 1 +SPEAKER 03020 0 12.248000 1.105000 1 +SPEAKER 03020 0 14.077000 0.795000 1 +SPEAKER 03020 0 15.338000 0.889710 1 +SPEAKER 03020 0 27.697000 1.180710 1 +SPEAKER 03020 0 36.338000 1.914710 1 +SPEAKER 03020 0 41.560000 2.129000 1 +SPEAKER 03020 0 52.563000 1.000000 1 +SPEAKER 03020 0 54.134000 1.352000 1 +SPEAKER 03020 0 56.245000 1.034000 1 +SPEAKER 03020 0 28.752710 2.899290 5 +SPEAKER 03020 0 34.546000 0.884390 5 +SPEAKER 03020 0 35.782000 0.620710 5 +SPEAKER 03020 0 39.702710 0.300000 5 +SPEAKER 03020 0 1.467000 2.060710 3 +SPEAKER 03020 0 7.802710 2.150000 3 +SPEAKER 03020 0 24.452710 0.515290 3 +SPEAKER 03020 0 29.430000 0.447710 3 +SPEAKER 03020 0 38.801000 0.777000 3 +SPEAKER 03020 0 41.527710 2.124290 3 +SPEAKER 03020 0 47.831000 1.896710 3 +SPEAKER 03020 0 29.819000 0.889000 2 +SPEAKER 03020 0 46.597000 0.505710 2 +SPEAKER 03020 0 48.801000 2.751710 2 +SPEAKER 03020 0 21.592000 0.663790 0 +SPEAKER 03020 0 41.541000 3.352000 0 +SPEAKER 03020 0 45.467000 0.460710 0 +SPEAKER 03020 0 2.238000 4.405000 4 +SPEAKER 03020 0 8.356000 1.046710 4 +SPEAKER 03020 0 18.102710 3.846290 4 +SPEAKER 03020 0 24.677710 1.567290 4 +SPEAKER 03020 0 28.502710 0.925000 4 +SPEAKER 03020 0 31.578000 1.124710 4 +SPEAKER 03020 0 34.972000 0.458000 4 +SPEAKER 03020 0 41.523000 2.148000 4 +SPEAKER 03020 0 50.983000 1.447000 4 +SPEAKER 03020 0 0.560000 0.892710 h0 +SPEAKER 03020 0 5.986000 1.650740 h0 +SPEAKER 03020 0 17.560000 0.792710 h0 +SPEAKER 03020 0 22.948000 1.625000 h0 +SPEAKER 03020 0 27.838000 0.348000 h0 +SPEAKER 03020 0 32.875000 1.552710 h0 +SPEAKER 03020 0 35.227710 0.725000 h0 +SPEAKER 03020 0 38.726000 0.676710 h0 +SPEAKER 03020 0 41.560000 2.129000 h0 +SPEAKER 03020 0 52.747000 0.850000 h0 +SPEAKER 03020 0 56.726000 0.658000 h0 diff --git a/rttm/many/03031.rttm b/rttm/many/03031.rttm new file mode 100644 index 0000000000000000000000000000000000000000..aa8ef658a1862ab36413c421c0dc0d9d323faf16 --- /dev/null +++ b/rttm/many/03031.rttm @@ -0,0 +1,44 @@ +SPEAKER 03031 0 1.014990 0.902010 4 +SPEAKER 03031 0 3.661340 2.221660 4 +SPEAKER 03031 0 12.014990 1.202010 4 +SPEAKER 03031 0 14.539380 0.627620 4 +SPEAKER 03031 0 26.551580 1.381420 4 +SPEAKER 03031 0 30.197920 1.134150 4 +SPEAKER 03031 0 46.588160 0.716100 4 +SPEAKER 03031 0 70.393040 0.658540 4 +SPEAKER 03031 0 5.807680 1.809320 1 +SPEAKER 03031 0 16.490600 0.987810 1 +SPEAKER 03031 0 34.929630 14.329270 1 +SPEAKER 03031 0 49.929630 1.048780 1 +SPEAKER 03031 0 51.650000 0.700000 1 +SPEAKER 03031 0 54.929630 0.365850 1 +SPEAKER 03031 0 56.100360 3.049640 1 +SPEAKER 03031 0 62.746700 3.853660 1 +SPEAKER 03031 0 67.072550 3.227450 1 +SPEAKER 03031 0 70.967000 0.416000 1 +SPEAKER 03031 0 7.429630 1.378050 3 +SPEAKER 03031 0 9.222310 1.341460 3 +SPEAKER 03031 0 12.222310 2.390240 3 +SPEAKER 03031 0 15.441820 3.158180 3 +SPEAKER 03031 0 24.478410 0.890240 3 +SPEAKER 03031 0 34.133000 0.650000 3 +SPEAKER 03031 0 47.458410 0.507800 3 +SPEAKER 03031 0 55.161340 0.926820 3 +SPEAKER 03031 0 70.867000 1.100000 3 +SPEAKER 03031 0 74.533000 0.667000 3 +SPEAKER 03031 0 2.612550 1.768300 0 +SPEAKER 03031 0 7.027190 0.902440 0 +SPEAKER 03031 0 14.978410 1.402440 0 +SPEAKER 03031 0 18.210120 0.951220 0 +SPEAKER 03031 0 19.563770 1.182930 0 +SPEAKER 03031 0 21.307680 2.597560 0 +SPEAKER 03031 0 25.258900 5.691100 0 +SPEAKER 03031 0 34.100360 0.682640 0 +SPEAKER 03031 0 63.759870 0.425860 0 +SPEAKER 03031 0 70.649140 3.383860 0 +SPEAKER 03031 0 31.124750 0.634150 2 +SPEAKER 03031 0 32.112550 1.470450 2 +SPEAKER 03031 0 34.088160 0.512200 2 +SPEAKER 03031 0 48.454020 3.228980 2 +SPEAKER 03031 0 53.136950 2.346050 2 +SPEAKER 03031 0 76.478410 5.390240 2 diff --git a/rttm/many/03047.rttm b/rttm/many/03047.rttm new file mode 100644 index 0000000000000000000000000000000000000000..322c9a0d72864d653325da6bd6d584699ad6b661 --- /dev/null +++ b/rttm/many/03047.rttm @@ -0,0 +1,60 @@ +SPEAKER 03047 0 0.374780 3.127660 0 +SPEAKER 03047 0 5.204570 1.829790 0 +SPEAKER 03047 0 7.906700 2.489360 0 +SPEAKER 03047 0 13.704570 3.776430 0 +SPEAKER 03047 0 19.310950 0.829790 0 +SPEAKER 03047 0 20.874780 0.638300 0 +SPEAKER 03047 0 22.502440 2.340430 0 +SPEAKER 03047 0 28.587550 1.392450 0 +SPEAKER 03047 0 32.183290 1.170220 0 +SPEAKER 03047 0 38.659110 5.225490 0 +SPEAKER 03047 0 44.904210 6.984790 0 +SPEAKER 03047 0 61.345390 0.782610 0 +SPEAKER 03047 0 4.002440 1.021280 2 +SPEAKER 03047 0 9.076910 1.426090 2 +SPEAKER 03047 0 25.896060 0.989360 2 +SPEAKER 03047 0 28.289680 0.538720 2 +SPEAKER 03047 0 49.178720 1.637260 2 +SPEAKER 03047 0 51.913000 0.893960 2 +SPEAKER 03047 0 1.470530 0.478720 4 +SPEAKER 03047 0 6.555630 1.319150 4 +SPEAKER 03047 0 33.108820 1.925540 4 +SPEAKER 03047 0 41.914010 0.441180 4 +SPEAKER 03047 0 43.198330 0.506670 4 +SPEAKER 03047 0 49.414010 1.524990 4 +SPEAKER 03047 0 52.953230 1.266770 4 +SPEAKER 03047 0 60.678720 1.235290 4 +SPEAKER 03047 0 0.832230 0.319150 1 +SPEAKER 03047 0 2.087550 0.372340 1 +SPEAKER 03047 0 9.725850 3.042550 1 +SPEAKER 03047 0 27.055630 1.849790 1 +SPEAKER 03047 0 29.878610 0.389790 1 +SPEAKER 03047 0 37.087550 0.563830 1 +SPEAKER 03047 0 38.417340 1.127650 1 +SPEAKER 03047 0 43.031660 0.500000 1 +SPEAKER 03047 0 49.227740 1.607840 1 +SPEAKER 03047 0 54.472840 0.932160 1 +SPEAKER 03047 0 58.815980 0.745090 1 +SPEAKER 03047 0 61.237540 0.754910 1 +SPEAKER 03047 0 2.215210 0.500000 3 +SPEAKER 03047 0 3.927970 0.638300 3 +SPEAKER 03047 0 5.183290 0.851070 3 +SPEAKER 03047 0 11.651380 0.978720 3 +SPEAKER 03047 0 18.034360 1.294640 3 +SPEAKER 03047 0 30.204570 0.734040 3 +SPEAKER 03047 0 31.576910 0.542550 3 +SPEAKER 03047 0 35.364140 3.106390 3 +SPEAKER 03047 0 43.717940 1.794900 3 +SPEAKER 03047 0 49.188520 1.588240 3 +SPEAKER 03047 0 55.580680 0.960790 3 +SPEAKER 03047 0 61.688520 0.455480 3 +SPEAKER 03047 0 3.013080 0.478720 5 +SPEAKER 03047 0 13.236480 0.563830 5 +SPEAKER 03047 0 31.683290 0.489360 5 +SPEAKER 03047 0 49.845390 0.647060 5 +SPEAKER 03047 0 56.805780 0.696470 5 +SPEAKER 03047 0 17.289680 0.840420 h0 +SPEAKER 03047 0 20.215210 0.393610 h0 +SPEAKER 03047 0 22.310950 1.212770 h0 +SPEAKER 03047 0 28.310950 1.191490 h0 +SPEAKER 03047 0 59.835580 2.114510 h0 diff --git a/rttm/many/03114.rttm b/rttm/many/03114.rttm new file mode 100644 index 0000000000000000000000000000000000000000..67fd1dbfb9e2f01e6e6fe2f1a9f0539c8dcc856c --- /dev/null +++ b/rttm/many/03114.rttm @@ -0,0 +1,17 @@ +SPEAKER 03114 0 0.004000 2.037470 2 +SPEAKER 03114 0 3.884600 1.403140 2 +SPEAKER 03114 0 8.708130 0.333340 2 +SPEAKER 03114 0 11.335580 0.483420 2 +SPEAKER 03114 0 19.786560 1.662440 4 +SPEAKER 03114 0 5.914010 2.715690 0 +SPEAKER 03114 0 10.443430 0.627450 0 +SPEAKER 03114 0 14.610090 3.000000 0 +SPEAKER 03114 0 21.698330 0.343140 0 +SPEAKER 03114 0 1.551270 3.558820 3 +SPEAKER 03114 0 7.561070 7.109930 3 +SPEAKER 03114 0 18.004000 1.429620 3 +SPEAKER 03114 0 22.374800 2.411760 3 +SPEAKER 03114 0 31.492450 1.522550 3 +SPEAKER 03114 0 25.031660 1.602340 1 +SPEAKER 03114 0 27.227740 0.696080 1 +SPEAKER 03114 0 28.923820 2.107840 1 diff --git a/rttm/many/03141.rttm b/rttm/many/03141.rttm new file mode 100644 index 0000000000000000000000000000000000000000..3ed842928bb49e62c86da2bc2b5a7be7d102bacc --- /dev/null +++ b/rttm/many/03141.rttm @@ -0,0 +1,45 @@ +SPEAKER 03141 0 0.588200 7.246950 6 +SPEAKER 03141 0 8.201000 0.458910 6 +SPEAKER 03141 0 10.379210 7.791790 6 +SPEAKER 03141 0 20.967210 1.721790 6 +SPEAKER 03141 0 24.230080 6.403920 6 +SPEAKER 03141 0 31.282710 1.166290 6 +SPEAKER 03141 0 33.324120 0.467370 6 +SPEAKER 03141 0 34.467000 2.834000 6 +SPEAKER 03141 0 39.835350 0.909640 6 +SPEAKER 03141 0 41.852890 2.912280 6 +SPEAKER 03141 0 46.019560 1.991230 6 +SPEAKER 03141 0 49.362000 2.605000 6 +SPEAKER 03141 0 53.096840 0.370370 6 +SPEAKER 03141 0 57.393140 0.629860 6 +SPEAKER 03141 0 0.023000 0.520640 5 +SPEAKER 03141 0 18.301000 1.610660 5 +SPEAKER 03141 0 30.337580 0.673210 5 +SPEAKER 03141 0 31.692000 0.627060 5 +SPEAKER 03141 0 40.059810 1.648140 5 +SPEAKER 03141 0 56.695000 0.513000 5 +SPEAKER 03141 0 60.300550 0.403450 5 +SPEAKER 03141 0 7.170920 0.351850 1 +SPEAKER 03141 0 10.670920 0.481480 1 +SPEAKER 03141 0 23.912000 0.415430 1 +SPEAKER 03141 0 37.291490 2.416510 1 +SPEAKER 03141 0 42.875000 0.837540 1 +SPEAKER 03141 0 44.571000 1.600000 1 +SPEAKER 03141 0 48.291490 0.973680 1 +SPEAKER 03141 0 52.004000 1.074000 1 +SPEAKER 03141 0 53.589730 1.174270 1 +SPEAKER 03141 0 55.510790 0.719290 1 +SPEAKER 03141 0 58.195000 0.587030 1 +SPEAKER 03141 0 9.045870 1.026320 4 +SPEAKER 03141 0 22.819000 1.419860 4 +SPEAKER 03141 0 24.596840 2.238510 4 +SPEAKER 03141 0 33.273940 0.815790 4 +SPEAKER 03141 0 39.801000 4.630840 4 +SPEAKER 03141 0 9.089730 1.043860 3 +SPEAKER 03141 0 14.208000 0.383000 3 +SPEAKER 03141 0 14.911660 0.388890 3 +SPEAKER 03141 0 32.561000 0.591000 3 +SPEAKER 03141 0 44.707950 0.870050 3 +SPEAKER 03141 0 47.809030 1.412280 3 +SPEAKER 03141 0 53.961000 0.377000 3 +SPEAKER 03141 0 58.978000 0.637360 3