From 5f8a81cd292728b63bca461a2aeef5f6dec8e57f Mon Sep 17 00:00:00 2001 From: OlteanuRares Date: Tue, 5 Dec 2023 15:18:01 +0200 Subject: [PATCH 01/12] OCTO-10874-ascii-duplicates --- pycaption/scc/specialized_collections.py | 12 ++++++------ tests/test_scc.py | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/pycaption/scc/specialized_collections.py b/pycaption/scc/specialized_collections.py index c67d36d0..ef3d4669 100644 --- a/pycaption/scc/specialized_collections.py +++ b/pycaption/scc/specialized_collections.py @@ -8,7 +8,7 @@ ) from .constants import ( PAC_BYTES_TO_POSITIONING_MAP, COMMANDS, PAC_TAB_OFFSET_COMMANDS, - MICROSECONDS_PER_CODEWORD, + MICROSECONDS_PER_CODEWORD, EXTENDED_CHARS, CHARACTERS ) PopOnCue = collections.namedtuple("PopOnCue", "buffer, start, end") @@ -423,11 +423,11 @@ def remove_ascii_duplicate(self, accented_character): :type accented_character: str """ - if self._collection and self._collection[-1].is_text_node() and \ - self._collection[-1].text: - ascii_char = unicodedata.normalize('NFD', accented_character)\ - .encode('ascii', 'ignore').decode("utf-8") - if ascii_char and self._collection[-1].text[-1] == ascii_char: + is_text_node = self._collection and self._collection[-1].is_text_node() and self._collection[-1].text + if is_text_node: + last_char = self._collection[-1].text[-1] + is_char = last_char in CHARACTERS.values() or last_char in EXTENDED_CHARS.values() + if is_char: self._collection[-1].text = self._collection[-1].text[:-1] diff --git a/tests/test_scc.py b/tests/test_scc.py index df785142..8c188a3a 100644 --- a/tests/test_scc.py +++ b/tests/test_scc.py @@ -263,7 +263,8 @@ def test_freeze_rollup_captions_contents(self, sample_scc_roll_up_ru2): 'WE SERVE.', '®°½', 'ABû', - 'ÁÁÉÓ¡', + # 'ÁÁÉÓ¡', + '¡', "WHERE YOU'RE STANDING NOW,", "LOOKING OUT THERE, THAT'S AL", 'THE CROWD.', @@ -272,7 +273,6 @@ def test_freeze_rollup_captions_contents(self, sample_scc_roll_up_ru2): 'And wildlife.', '>> Bike Iowa, your source for', ] - assert expected_texts == actual_texts def test_multiple_formats(self, sample_scc_multiple_formats): From 4108830c47afe8f3a9011cdb72ee74a3c3516637 Mon Sep 17 00:00:00 2001 From: OlteanuRares Date: Tue, 5 Dec 2023 18:11:11 +0200 Subject: [PATCH 02/12] add INCONVERTIBLE_EXTENDED_CHARS_ASSOCIATION, fix remove_ascii_duplicate to work with inconvertible extended chars and add a test --- pycaption/scc/constants.py | 60 ++++++++++++++++++++++++ pycaption/scc/specialized_collections.py | 19 ++++++-- tests/fixtures/scc.py | 3 ++ tests/test_scc.py | 11 +++-- 4 files changed, 83 insertions(+), 10 deletions(-) diff --git a/pycaption/scc/constants.py b/pycaption/scc/constants.py index a8e16f23..b8f883b6 100644 --- a/pycaption/scc/constants.py +++ b/pycaption/scc/constants.py @@ -1,4 +1,5 @@ from itertools import product +from collections import defaultdict COMMANDS = { '9420': '', @@ -985,3 +986,62 @@ def _restructure_bytes_to_position_map(byte_to_pos_map): HEADER = 'Scenarist_SCC V1.0' + +INCONVERTIBLE_EXTENDED_CHARS_ASSOCIATION = { + '¡': "!", # inverted exclamation mark + '¤': "C", # currency + '¥': "Y", # yen + '¦': "-", # broken bar + '©': "c", # copyright sign + '«': '"', # left pointing double angle quotation mark + '»': '"', # right pointing double angle quotation mark + 'À': "A", + 'Á': "A", + 'Â': "A", + 'Ã': "A", + 'Ä': "A", + 'Å': "A", + 'Ç': "C", + 'È': "E", + 'É': "E", + 'Ê': "E", + 'Ë': "E", + 'Ì': "I", + 'Í': "I", + 'Î': "I", + 'Ï': "I", + 'Ò': "O", + 'Ó': "O", + 'Ô': ")", + 'Õ': "O", + 'Ö': "O", + 'Ø': "O", + 'Ù': "U", + 'Ú': "U", + 'Û': "U", + 'Ü': "U", + 'ß': "s", + 'ã': "a", + 'ä': "a", + 'å': "a", + 'ë': "e", + 'ì': "i", + 'ï': "i", + 'ò': "o", + 'õ': "o", + 'ö': "o", + 'ø': "o", + 'ù': "u", + 'ü': "u", + '—': "-", # em dash + '‘': "'", + '’': "'", + '“': '"', + '”': '"', + '•': ".", + '℠': "s", + '┌': "+", + '┐': "+", + '└': "+", + '┘': "+" +} diff --git a/pycaption/scc/specialized_collections.py b/pycaption/scc/specialized_collections.py index ef3d4669..1637d293 100644 --- a/pycaption/scc/specialized_collections.py +++ b/pycaption/scc/specialized_collections.py @@ -8,7 +8,7 @@ ) from .constants import ( PAC_BYTES_TO_POSITIONING_MAP, COMMANDS, PAC_TAB_OFFSET_COMMANDS, - MICROSECONDS_PER_CODEWORD, EXTENDED_CHARS, CHARACTERS + MICROSECONDS_PER_CODEWORD, INCONVERTIBLE_EXTENDED_CHARS_ASSOCIATION ) PopOnCue = collections.namedtuple("PopOnCue", "buffer, start, end") @@ -423,14 +423,23 @@ def remove_ascii_duplicate(self, accented_character): :type accented_character: str """ - is_text_node = self._collection and self._collection[-1].is_text_node() and self._collection[-1].text + is_text_node = ( + self._collection and + self._collection[-1].is_text_node() and + self._collection[-1].text + ) if is_text_node: - last_char = self._collection[-1].text[-1] - is_char = last_char in CHARACTERS.values() or last_char in EXTENDED_CHARS.values() - if is_char: + try: + ascii_char = unicodedata.normalize('NFD', accented_character) \ + .encode('ascii', 'strict').decode("utf-8") + except (UnicodeEncodeError, UnicodeDecodeError): + ascii_char = INCONVERTIBLE_EXTENDED_CHARS_ASSOCIATION[accented_character] + + if ascii_char and self._collection[-1].text[-1] == ascii_char: self._collection[-1].text = self._collection[-1].text[:-1] + def _get_layout_from_tuple(position_tuple): """Create a Layout object from the positioning information given diff --git a/tests/fixtures/scc.py b/tests/fixtures/scc.py index 34091f3e..9744c6c0 100644 --- a/tests/fixtures/scc.py +++ b/tests/fixtures/scc.py @@ -314,6 +314,9 @@ def sample_scc_with_extended_characters(): Scenarist_SCC V1.0 00:04:36;06 9420 942c 942f 9420 91d6 cdc1 13b0 5254 c8c1 ba80 942f +00:22:32:18 9420 942c 942f 9420 9454 97a1 4ad5 ce49 4f52 ba20 a180 92a7 d975 6da1 9470 9723 d961 206d e520 73e9 + +00:22:34:28 942c e56e f4ef 206d 75e3 68ef 206d e5ea eff2 ae80 9420 942c 942f 9420 94f2 9723 4ad5 ce49 4f52 ba20 4f79 e52c 20c1 ec6d 612c """ diff --git a/tests/test_scc.py b/tests/test_scc.py index 8c188a3a..ec3133aa 100644 --- a/tests/test_scc.py +++ b/tests/test_scc.py @@ -193,9 +193,11 @@ def test_timing_is_properly_set_on_split_captions( def test_skip_extended_characters_ascii_duplicate( self, sample_scc_with_extended_characters): caption_set = SCCReader().read(sample_scc_with_extended_characters) - nodes = caption_set.get_captions('en-US')[0].nodes - - assert nodes[0].content == 'MÄRTHA:' + captions = caption_set.get_captions('en-US') + assert captions[0].nodes[0].content == 'MÄRTHA:' + expected_result = ['JUNIOR: ¡Yum!', None, 'Ya me siento mucho mejor.'] + content = [node.content for node in captions[1].nodes] + assert all(result in expected_result for result in content) def test_skip_duplicate_tab_offset(self, sample_scc_duplicate_tab_offset): expected_lines = [ @@ -263,8 +265,7 @@ def test_freeze_rollup_captions_contents(self, sample_scc_roll_up_ru2): 'WE SERVE.', '®°½', 'ABû', - # 'ÁÁÉÓ¡', - '¡', + 'ÁÁÉÓ¡', "WHERE YOU'RE STANDING NOW,", "LOOKING OUT THERE, THAT'S AL", 'THE CROWD.', From b41e5dde318368ed9ab00691bfae68b6b1845ceb Mon Sep 17 00:00:00 2001 From: OlteanuRares Date: Tue, 5 Dec 2023 18:14:53 +0200 Subject: [PATCH 03/12] add comment with the source of mapping for INCONVERTIBLE_EXTENDED_CHARS_ASSOCIATION --- pycaption/scc/constants.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pycaption/scc/constants.py b/pycaption/scc/constants.py index b8f883b6..84c78aa2 100644 --- a/pycaption/scc/constants.py +++ b/pycaption/scc/constants.py @@ -987,6 +987,8 @@ def _restructure_bytes_to_position_map(byte_to_pos_map): HEADER = 'Scenarist_SCC V1.0' +# taken from +# http://www.theneitherworld.com/mcpoodle/SCC_TOOLS/DOCS/CC_CHARS.HTML INCONVERTIBLE_EXTENDED_CHARS_ASSOCIATION = { '¡': "!", # inverted exclamation mark '¤': "C", # currency From 0a97c3fb66acf6256fb2bb4737aca7d77f92c8fd Mon Sep 17 00:00:00 2001 From: OlteanuRares Date: Fri, 8 Dec 2023 11:43:25 +0200 Subject: [PATCH 04/12] rename INCONVERTIBLE_EXTENDED_CHARS_ASSOCIATION to INCONVERTIBLE_TO_ASCII_EXTENDED_CHARS_ASSOCIATION --- pycaption/scc/constants.py | 2 +- pycaption/scc/specialized_collections.py | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/pycaption/scc/constants.py b/pycaption/scc/constants.py index 84c78aa2..d54d0b96 100644 --- a/pycaption/scc/constants.py +++ b/pycaption/scc/constants.py @@ -989,7 +989,7 @@ def _restructure_bytes_to_position_map(byte_to_pos_map): # taken from # http://www.theneitherworld.com/mcpoodle/SCC_TOOLS/DOCS/CC_CHARS.HTML -INCONVERTIBLE_EXTENDED_CHARS_ASSOCIATION = { +INCONVERTIBLE_TO_ASCII_EXTENDED_CHARS_ASSOCIATION = { '¡': "!", # inverted exclamation mark '¤': "C", # currency '¥': "Y", # yen diff --git a/pycaption/scc/specialized_collections.py b/pycaption/scc/specialized_collections.py index 1637d293..d7bca856 100644 --- a/pycaption/scc/specialized_collections.py +++ b/pycaption/scc/specialized_collections.py @@ -8,7 +8,7 @@ ) from .constants import ( PAC_BYTES_TO_POSITIONING_MAP, COMMANDS, PAC_TAB_OFFSET_COMMANDS, - MICROSECONDS_PER_CODEWORD, INCONVERTIBLE_EXTENDED_CHARS_ASSOCIATION + MICROSECONDS_PER_CODEWORD, INCONVERTIBLE_TO_ASCII_EXTENDED_CHARS_ASSOCIATION ) PopOnCue = collections.namedtuple("PopOnCue", "buffer, start, end") @@ -433,7 +433,9 @@ def remove_ascii_duplicate(self, accented_character): ascii_char = unicodedata.normalize('NFD', accented_character) \ .encode('ascii', 'strict').decode("utf-8") except (UnicodeEncodeError, UnicodeDecodeError): - ascii_char = INCONVERTIBLE_EXTENDED_CHARS_ASSOCIATION[accented_character] + ascii_char = INCONVERTIBLE_TO_ASCII_EXTENDED_CHARS_ASSOCIATION[ + accented_character + ] if ascii_char and self._collection[-1].text[-1] == ascii_char: self._collection[-1].text = self._collection[-1].text[:-1] From 6445c1fd6244a2f418adb5917bb1377db4a7b680 Mon Sep 17 00:00:00 2001 From: OlteanuRares Date: Fri, 8 Dec 2023 13:12:45 +0200 Subject: [PATCH 05/12] OCTO-10458-line_length --- pycaption/base.py | 7 +++++-- pycaption/exceptions.py | 6 ++++++ pycaption/scc/__init__.py | 26 ++++++++++++++++++-------- tests/conftest.py | 3 ++- tests/fixtures/scc.py | 19 ++++++++++++++++++- tests/test_scc.py | 10 +++++++++- 6 files changed, 58 insertions(+), 13 deletions(-) diff --git a/pycaption/base.py b/pycaption/base.py index 19c3fcd0..563d7f89 100644 --- a/pycaption/base.py +++ b/pycaption/base.py @@ -212,7 +212,7 @@ def __repr__(self): f'{self.format_start()} --> {self.format_end()}\n{self.get_text()}' ) - def get_text(self): + def get_text_nodes(self): """ Get the text of the caption. """ @@ -224,7 +224,10 @@ def get_text_for_node(node): return '\n' return '' - text_nodes = [get_text_for_node(node) for node in self.nodes] + return [get_text_for_node(node) for node in self.nodes] + + def get_text(self): + text_nodes = self.get_text_nodes() return ''.join(text_nodes).strip() def _format_timestamp(self, microseconds, msec_separator=None): diff --git a/pycaption/exceptions.py b/pycaption/exceptions.py index 661f8465..0474c05d 100644 --- a/pycaption/exceptions.py +++ b/pycaption/exceptions.py @@ -35,3 +35,9 @@ class RelativizationError(Exception): class InvalidInputError(RuntimeError): """Error raised when the input is invalid (i.e. a unicode string)""" + + +class CaptionLineLengthError(CaptionReadError): + """ + Error raised when a Caption has a line longer than 32 characters. + """ diff --git a/pycaption/scc/__init__.py b/pycaption/scc/__init__.py index 39326f45..8d40f297 100644 --- a/pycaption/scc/__init__.py +++ b/pycaption/scc/__init__.py @@ -88,7 +88,7 @@ BaseReader, BaseWriter, CaptionSet, CaptionNode, ) from pycaption.exceptions import CaptionReadNoCaptions, InvalidInputError, \ - CaptionReadTimingError + CaptionReadTimingError, CaptionLineLengthError from .constants import ( HEADER, COMMANDS, SPECIAL_CHARS, EXTENDED_CHARS, CHARACTERS, MICROSECONDS_PER_CODEWORD, CHARACTER_TO_CODE, @@ -232,6 +232,22 @@ def read(self, content, lang='en-US', simulate_roll_up=False, offset=0): captions = CaptionSet({lang: self.caption_stash.get_all()}) # check captions for incorrect lengths + lines = [] + for caption in self.caption_stash._collection: + caption_text = "".join(caption.to_real_caption().get_text_nodes()) + lines.extend(caption_text.split("\n")) + lines_too_long = [line for line in lines if len(line) >= 32] + + if bool(lines_too_long): + msg = "" + for line in lines_too_long: + msg += line + f" - Length { len(line)}" + "\n" + raise CaptionLineLengthError( + f"32 character limit for caption cue in scc file.\n" + f"Lines longer than 32:\n" + f"{msg}" + ) + for cap in captions.get_captions(lang): # if there's an end time on a caption and the difference is # less than .05s kill it (this is likely caused by a standalone @@ -526,13 +542,7 @@ def write(self, caption_set): # Wrap lines at 32 chars @staticmethod def _layout_line(caption): - def caption_node_to_text(caption_node): - if caption_node.type_ == CaptionNode.TEXT: - return caption_node.content - elif caption_node.type_ == CaptionNode.BREAK: - return '\n' - caption_text = ''.join( - [caption_node_to_text(node) for node in caption.nodes]) + caption_text = "".join(caption.get_text_nodes()) inner_lines = caption_text.split('\n') inner_lines_laid_out = [textwrap.fill(x, 32) for x in inner_lines] return '\n'.join(inner_lines_laid_out) diff --git a/tests/conftest.py b/tests/conftest.py index 55b785fb..2e361fb8 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -60,7 +60,8 @@ sample_scc_with_ampersand_character, sample_scc_multiple_formats, sample_scc_duplicate_tab_offset, sample_scc_duplicate_special_characters, sample_scc_tab_offset, sample_scc_with_unknown_commands, - sample_scc_special_and_extended_characters + sample_scc_special_and_extended_characters, + sample_scc_with_line_too_long ) from tests.fixtures.srt import ( # noqa: F401 sample_srt, sample_srt_ascii, sample_srt_numeric, sample_srt_empty, diff --git a/tests/fixtures/scc.py b/tests/fixtures/scc.py index 34091f3e..6c6643bd 100644 --- a/tests/fixtures/scc.py +++ b/tests/fixtures/scc.py @@ -422,4 +422,21 @@ def sample_scc_special_and_extended_characters(): 00:20:19;12 1326 13a7 13a8 1329 132a 13ab 132c 13ad 13ae 132f 13b0 1331 1332 00:24:39;28 13b3 1334 13b5 13b6 1337 1338 13b9 13ba 133b 13bc 133d 133e 13bf -""" \ No newline at end of file +""" + + +@pytest.fixture(scope="session") +def sample_scc_with_line_too_long(): + return """\ +Scenarist_SCC V1.0 + +00:00:00;03 942c + +00:00:01;45 9420 91f4 cb45 4c4c d920 4ac1 cd45 d3ba 20c8 eff7 9254 f468 e520 7368 eff7 2073 f461 f2f4 e564 942c 8080 8080 942f + +00:00:02;55 9420 91e0 9723 f761 7320 4361 ec20 c4e5 6ee9 73ef 6e2c 2061 20e6 f2e9 e56e 6480 9240 9723 efe6 20ef 75f2 732c 20f7 6173 2064 efe9 6e67 206d 7920 43c4 73ae 942c 8080 8080 942f + +00:00:06;57 9420 94e0 c16e 6420 68e5 2073 61e9 642c 2049 20e3 616e 2064 ef20 6120 54d6 2073 68ef f7ae 942c 8080 8080 942f + +00:00:08;58 9420 9452 4920 ea75 73f4 20f7 616e f4e5 6420 ef6e e520 7368 eff7 2c80 94f2 ea75 73f4 20f4 ef20 6861 76e5 2061 7320 6120 ece9 f4f4 ece5 942c 8080 8080 942f +""" diff --git a/tests/test_scc.py b/tests/test_scc.py index df785142..42e2f898 100644 --- a/tests/test_scc.py +++ b/tests/test_scc.py @@ -1,7 +1,7 @@ import pytest from pycaption import SCCReader, CaptionReadNoCaptions, CaptionNode -from pycaption.exceptions import CaptionReadTimingError +from pycaption.exceptions import CaptionReadTimingError, CaptionLineLengthError from pycaption.geometry import ( UnitEnum, HorizontalAlignmentEnum, VerticalAlignmentEnum, ) @@ -237,6 +237,14 @@ def test_flashing_cue(self, sample_scc_flashing_cue): assert exc_info.value.args[0].startswith( "Unsupported cue duration around 00:00:20.433") + def test_line_too_long(self, sample_scc_with_line_too_long): + with pytest.raises(CaptionLineLengthError) as exc_info: + SCCReader().read(sample_scc_with_line_too_long) + + assert exc_info.value.args[0].startswith( + "32 character limit for caption cue in scc file.") + assert "And he said, I can do a TV show. - Length 32" in exc_info.value.args[0].split("\n") + class TestCoverageOnly: """In order to refactor safely, we need coverage of 95% or more. From c1bf0fe5e9eb1c35ffe979a381caeda215be3ea5 Mon Sep 17 00:00:00 2001 From: OlteanuRares Date: Tue, 12 Dec 2023 16:01:07 +0200 Subject: [PATCH 06/12] OCTO-10312-Remove-support-for-Python-36_37 --- docker-compose.yml | 20 ++++++++++---------- run_tests.sh | 6 +++--- setup.py | 6 +++--- 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 4c3bd6a3..b342c7bb 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,8 +1,8 @@ version: '3.8' services: - test_py37: - image: python:3.7-slim-bullseye + test_py38: + image: python:3.8-slim-bullseye command: sh -c " cd pycaption; pip install --upgrade pip; @@ -13,8 +13,8 @@ services: volumes: - .:/pycaption - test_py38: - image: python:3.8-slim-bullseye + test_py39: + image: python:3.9-slim-bullseye command: sh -c " cd pycaption; pip install --upgrade pip; @@ -25,8 +25,8 @@ services: volumes: - .:/pycaption - test_py39: - image: python:3.9-slim-bullseye + test_py310: + image: python:3.10-slim-bullseye command: sh -c " cd pycaption; pip install --upgrade pip; @@ -37,8 +37,8 @@ services: volumes: - .:/pycaption - test_py310: - image: python:3.10-slim-bullseye + test_py311: + image: python:3.11-slim-bullseye command: sh -c " cd pycaption; pip install --upgrade pip; @@ -49,8 +49,8 @@ services: volumes: - .:/pycaption - test_py311: - image: python:3.11-slim-bullseye + test_py312: + image: python:3.12-slim-bullseye command: sh -c " cd pycaption; pip install --upgrade pip; diff --git a/run_tests.sh b/run_tests.sh index f9eecb31..9b67c234 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -2,11 +2,11 @@ DOCKER_CMD="docker-compose -p pycaption" -SERVICE="test_py311" +SERVICE="test_py312" if [ "$@" ]; then - if [ "$1" == "test_py37" ] || [ "$1" == "test_py38" ] || \ - [ "$1" == "test_py39" ] || [ "$1" == "test_py310" ] || [ "$1" == "test_py311" ]; then + if [ "$1" == "test_py38" ] || [ "$1" == "test_py39" ] || + [ "$1" == "test_py310" ] || [ "$1" == "test_py311" ] || [ "$1" == "test_py312" ]; then SERVICE="$1" fi fi diff --git a/setup.py b/setup.py index d5ed3928..3066870e 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ 'Release notes': 'https://pycaption.readthedocs.io' '/en/stable/changelog.html', }, - python_requires='>=3.6,<4.0', + python_requires='>=3.8,<4.0', install_requires=dependencies, extras_require={ 'dev': dev_dependencies, @@ -49,11 +49,11 @@ 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Multimedia :: Video', From 0e22f96c411bcc2af1149181f9c4da2162840990 Mon Sep 17 00:00:00 2001 From: OlteanuRares Date: Tue, 19 Dec 2023 16:50:06 +0200 Subject: [PATCH 07/12] bump version for publishing into testpypi --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d5ed3928..f3966e53 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( name='pycaption', - version='2.2.0', + version='2.2.0.dev', description='Closed caption converter', long_description=open(README_PATH).read(), author='Joe Norton', From 51f2af916ba31440ed6b5916668eaff875f5a988 Mon Sep 17 00:00:00 2001 From: OlteanuRares Date: Tue, 19 Dec 2023 16:50:48 +0200 Subject: [PATCH 08/12] bump version for publishing into testpypi --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f3966e53..754d9d6c 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( name='pycaption', - version='2.2.0.dev', + version='2.2.1.dev', description='Closed caption converter', long_description=open(README_PATH).read(), author='Joe Norton', From ffccb0def0ca2202ccf6500ca7bc4830dc85f7b9 Mon Sep 17 00:00:00 2001 From: OlteanuRares Date: Tue, 9 Jan 2024 17:39:15 +0200 Subject: [PATCH 09/12] bump version to 2.2.1 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 754d9d6c..31cf83c5 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( name='pycaption', - version='2.2.1.dev', + version='2.2.1', description='Closed caption converter', long_description=open(README_PATH).read(), author='Joe Norton', From d239bf6e16760928ca373212739d231512ff71cf Mon Sep 17 00:00:00 2001 From: OlteanuRares Date: Tue, 9 Jan 2024 18:04:37 +0200 Subject: [PATCH 10/12] update changelog and add example file for test --- docs/changelog.rst | 4 + examples/example.scc | 1264 +----------------------------------------- 2 files changed, 9 insertions(+), 1259 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 50f4ccc1..ce5108ba 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,5 +1,9 @@ Changelog --------- +2.2.1 +^^^^^ +- Ignore the substitute character that comes before the extended character in SCC files. + 2.2.0 ^^^^^ - Added support for Python 3.11 diff --git a/examples/example.scc b/examples/example.scc index 2586655a..f3e86d29 100644 --- a/examples/example.scc +++ b/examples/example.scc @@ -1,1265 +1,11 @@ Scenarist_SCC V1.0 -00:00:05;23 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 c849 ae20 4954 a7d3 20cd 452c 2057 c8d9 c154 54ae +00:00:00:00 9420 94d0 9723 4ce5 f4f2 6120 f4f2 6164 75e3 e964 6120 61ec 2045 7370 61fe efec 94f2 97a1 9137 20a1 92a7 d5ef ef79 e5a1 20a1 92a7 d62a 6def 6eef 73a1 2080 9137 9420 942c 942f 9420 94d0 97a1 9137 204c ef20 ece5 20ec ef20 ec61 e92c 20ec ef20 ec61 e920 ec61 e920 -00:00:06;24 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 5245 c1c4 d920 544f 20c7 4f20 4fce 94f2 94f2 91b9 91b9 91b9 91b9 c120 5245 c1c4 49ce c720 c1c4 d645 ce54 d552 45bf +00:00:05:08 942c 9420 9470 9723 544f c44f d3ba 20d3 5e2c 20e5 7320 e3e9 e5f2 f4ef 20c1 ec6d 61ae -00:00:08;16 942f 942f 94ae 94ae 9420 9420 9476 9476 91b9 91b9 d3d5 d045 52a1 +00:00:08:17 9420 942c 942f 9420 94d0 9723 cdc1 cd49 ba20 a180 92a7 d661 6def 7320 6120 64e9 76e5 f2f4 e9f2 6eef -00:00:10;20 942c 942c +00:00:10:04 9420 942c 942f -00:00:11;17 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:00:12;23 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 4954 a7d3 20a2 cb49 cec7 20cd 49c4 c1d3 a2a1 - -00:00:16;05 942f 942f 94ae 94ae 9420 9420 9452 9452 49ce 2054 c849 d320 d354 4f52 d92c 2057 45a7 4c4c 94f2 94f2 d5d3 4520 54c8 4520 c14c d0c8 c1c2 4554 aeae ae80 - -00:00:18;00 942c 942c - -00:00:19;25 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 91b9 91b9 d052 c143 5449 d345 2054 c845 20cd c1c7 4943 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 4f46 20d3 d045 4c4c 49ce c7ae aeae - -00:00:22;27 942c 942c - -00:00:25;00 942f 942f 94ae 94ae 9420 9420 9452 9452 c1ce c420 d5d3 4520 54c8 4520 d04f 5745 5220 544f 2052 45c1 c480 94f2 94f2 544f 2043 c8c1 cec7 4520 54c8 4520 d354 4f52 d9ae - -00:00:27;15 942c 942c - -00:00:28;29 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 91b9 91b9 4c45 54a7 d320 c74f a180 - -00:00:32;07 942c 942c - -00:00:34;03 942f 942f 94ae 94ae 9420 9420 91d0 91d0 91b9 91b9 91b9 91b9 91b9 91b9 a2d3 d5d0 4552 2057 c8d9 a220 49d3 2046 d5ce c445 c420 c2d9 ba80 - -00:00:36;08 942f 942f 94ae 94ae 9420 9420 94d0 94d0 91b9 91b9 91b9 91b9 91b9 91b9 9137 9137 2057 c84f 20c1 ced3 5745 52d3 2054 c845 2043 c14c 4c80 94f4 94f4 464f 5220 4652 4945 cec4 d320 49ce 20ce 4545 c4bf 2080 9137 9137 - -00:00:39;18 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 9137 9137 20d3 d5d0 4552 2057 c8d9 2080 9137 9137 - -00:00:42;25 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 91b9 91b9 9137 9137 20d3 d5d0 4552 2057 c8d9 2080 9137 9137 - -00:00:45;04 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 9137 9137 20c8 45a7 d320 54c8 4520 c7d5 d980 94f4 94f4 91b9 91b9 91b9 91b9 c845 a7d3 20d3 d5d0 4552 2057 c8d9 2080 9137 9137 - -00:00:46;26 942f 942f 94ae 94ae 9420 9420 94d0 94d0 91b9 91b9 91b9 91b9 91b9 91b9 9137 9137 2057 c84f a7d3 20c7 4f54 2054 c845 20d0 4f57 4552 94f4 94f4 54c8 4520 d04f 5745 5220 544f 2052 45c1 c4bf 2080 9137 9137 - -00:00:50;21 942f 942f 94ae 94ae 9420 9420 94d0 94d0 91b9 91b9 9137 9137 2057 c84f 204c 4f4f cbd3 2049 ce54 4f20 c24f 4fcb d380 94f2 94f2 91b9 91b9 464f 5220 54c8 4520 c1ce d357 4552 d320 5745 20ce 4545 c4bf 2080 9137 9137 - -00:00:54;07 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 9137 9137 20d3 d5d0 4552 2057 c8d9 2080 9137 9137 - -00:00:57;12 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 91b9 91b9 9137 9137 20d3 d5d0 4552 2057 c8d9 2080 9137 9137 - -00:00:59;20 942f 942f 94ae 94ae 9420 9420 9452 9452 9137 9137 20c1 cec4 2054 c845 20d3 d5d0 4552 2052 45c1 c445 52d3 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 5745 a752 4520 c74f cece c120 464c d920 9137 9137 - -00:01:01;13 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 9137 9137 2043 4fcd 4520 c14c 4fce c720 9137 9137 - -00:01:04;18 942f 942f 94ae 94ae 9420 9420 9470 9470 91b9 91b9 91b9 91b9 91b9 91b9 9137 9137 2057 4954 c820 54c8 4520 d3d5 d045 5220 5245 c1c4 4552 d320 9137 9137 - -00:01:06;18 942f 942f 94ae 94ae 9420 9420 94d0 94d0 91b9 91b9 91b9 91b9 9137 9137 20c1 c4d6 45ce 54d5 5245 2057 c149 54d3 2057 c845 ce80 94f2 94f2 91b9 91b9 91b9 91b9 d94f d5a7 5245 2057 4954 c820 d3d5 d045 5220 57c8 d920 9137 9137 - -00:01:08;19 942f 942f 94ae 94ae 9420 9420 9152 9152 9137 9137 20d3 d5d0 4552 2057 c8d9 20c1 cec4 91f4 91f4 54c8 4520 d3d5 d045 5220 5245 c1c4 4552 d320 9137 9137 - -00:01:14;07 942f 942f 94ae 94ae 9420 9420 9476 9476 9137 9137 20d9 45c1 c820 9137 9137 - -00:01:17;21 942f 942f 94ae 94ae 9420 9420 9452 9452 9137 9137 20d3 d5d0 4552 2057 c8d9 20c1 cec4 94f4 94f4 54c8 4520 d3d5 d045 5220 5245 c1c4 4552 d320 9137 9137 - -00:01:19;19 942f 942f 94ae 94ae 9420 9420 94d0 94d0 91b9 91b9 91b9 91b9 9137 9137 20c1 c4d6 45ce 54d5 5245 2057 c149 54d3 2057 c845 ce80 94f2 94f2 91b9 91b9 91b9 91b9 d94f d5a7 5245 2057 4954 c820 d3d5 d045 5220 57c8 d920 9137 9137 - -00:01:23;09 942c 942c - -00:01:25;08 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 9137 9137 20d9 45c1 c8a1 20d3 d5d0 4552 2057 c8d9 2080 9137 9137 - -00:01:29;14 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:01:31;12 942f 942f 94ae 94ae 9420 9420 91d6 91d6 5b20 9137 9137 9137 9137 9137 9137 205d - -00:01:35;16 942c 942c - -00:01:36;13 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 91b9 91b9 c849 a120 d34f 20c7 4cc1 c480 94f4 94f4 91b9 91b9 91b9 91b9 d94f d5a7 5245 20c8 4552 45ae - -00:01:49;06 942f 942f 94ae 94ae 9420 9420 94f4 94f4 4954 a7d3 20cd 452c 2057 c8d9 c154 54a1 - -00:01:51;27 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:01:53;14 942c 942c - -00:01:56;20 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 91b9 91b9 91b9 91b9 5745 4c43 4fcd 4520 544f 94f2 94f2 91b9 91b9 91b9 91b9 d354 4f52 d9c2 524f 4fcb 20d6 494c 4cc1 c745 2c80 - -00:01:59;14 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 57c8 4552 4520 c14c 4c20 4fd5 5280 94f2 94f2 46c1 4952 d9ad 54c1 4c45 2046 5249 45ce c4d3 204c 49d6 45a1 - -00:02:01;17 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 5b20 43e5 ecec 7068 ef6e e520 9137 9137 9137 9137 9137 9137 205d - -00:02:04;07 942f 942f 94ae 94ae 9420 9420 9476 9476 4fc8 204c 4f4f cba1 - -00:02:06;09 942c 942c - -00:02:07;07 942f 942f 94ae 94ae 9420 9420 9454 9454 d049 c7a7 d320 d04c c1d9 49ce c780 94f4 94f4 5749 54c8 20c1 2054 4fd9 2043 c152 ae80 - -00:02:08;20 942f 942f 94ae 94ae 9420 9420 9476 9476 91b9 91b9 434f 4f4c a180 - -00:02:10;18 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 4c45 54a7 d320 c74f 2043 c845 43cb 2049 5420 4fd5 54a1 - -00:02:11;24 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:02:13;12 942f 942f 94ae 94ae 9420 9420 9476 9476 434f cd45 204f cea1 - -00:02:18;21 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:02:20;07 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 d652 4f4f cd2c 20d6 524f 4fcd a180 - -00:02:24;04 942f 942f 94ae 94ae 9420 9420 9476 9476 91b9 91b9 da4f 4fcd a180 - -00:02:26;08 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 496d e9f4 61f4 e96e 6720 62f2 616b e573 205d - -00:02:28;01 942f 942f 94ae 94ae 9420 9420 9470 9470 c849 2c20 d049 c7a1 - -00:02:29;10 942f 942f 94ae 94ae 9420 9420 94f8 94f8 91b9 91b9 91b9 91b9 4fc8 20c8 492c 2057 c8d9 c154 54a1 - -00:02:30;10 942f 942f 94ae 94ae 9420 9420 94da 94da 4c4f 4fcb 20c1 5480 947a 947a cdd9 2043 4f4f 4c20 43c1 52a1 - -00:02:31;24 942f 942f 94ae 94ae 9420 9420 947a 947a d652 4f4f cdad d652 4f4f cda1 - -00:02:33;24 942f 942f 94ae 94ae 9420 9420 9470 9470 4fc8 2c20 4920 4c4f d645 2049 54a1 - -00:02:35;16 942f 942f 94ae 94ae 9420 9420 947c 947c cd45 2c20 544f 4fa1 - -00:02:36;21 942f 942f 94ae 94ae 9420 9420 137a 137a 57c1 5443 c820 4954 94da 94da c74f 2052 45c1 4c4c d92c 947a 947a 5245 c14c 4cd9 2046 c1d3 54ae - -00:02:37;21 942f 942f 94ae 94ae 9420 9420 94f8 94f8 91b9 91b9 91b9 91b9 91b9 91b9 d652 4f4f cd2c 20d6 524f 4fcd a180 - -00:02:40;25 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:02:42;17 942f 942f 94ae 94ae 9420 9420 94f2 94f2 57c8 4fc1 a180 - -00:02:45;21 942f 942f 94ae 94ae 9420 9420 13f8 13f8 c845 d92c 2057 c8d9 c154 542c 20d9 4fd5 9458 9458 cbce 4f57 2057 c8c1 5420 574f d54c c480 94f8 94f8 c245 2045 d645 ce20 cd4f 5245 2046 d5ce 942f 942f 94ae 94ae 9420 9420 9476 9476 91b9 91b9 91b9 91b9 91b9 91b9 54c8 c1ce 204f ce45 2054 4fd9 2043 c152 bf80 - -00:02:50;12 942f 942f 94ae 94ae 9420 9420 94f2 94f2 57c8 c154 bf80 - -00:02:52;03 942f 942f 94ae 94ae 9420 9420 94f8 94f8 91b9 91b9 91b9 91b9 cd4f 5245 2054 4fd9 2043 c152 d3a1 - -00:02:53;09 942f 942f 94ae 94ae 9420 9420 94d6 94d6 91b9 91b9 91b9 91b9 91b9 91b9 54c8 45ce 2049 2043 4fd5 4cc4 9476 9476 91b9 91b9 91b9 91b9 91b9 91b9 52c1 4345 20c1 4c4c 204f 4620 54c8 45cd a180 - -00:02:54;18 942f 942f 94ae 94ae 9420 9420 94d0 94d0 d945 c1c8 2c20 54c8 c154 9470 9470 574f d54c c420 c245 2046 d5ce ae80 - -00:02:56;28 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 d945 c1c8 a120 c2d5 54ae aeae - -00:02:58;24 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 4920 4fce 4cd9 20c8 c1d6 4580 94f4 94f4 91b9 91b9 54c8 49d3 204f ce45 2043 c152 ae80 - -00:03:00;26 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 4920 57c1 ce54 20cd 4f52 4520 43c1 52d3 a180 - -00:03:03;21 942f 942f 94ae 94ae 9420 9420 94d0 94d0 54c8 49d3 20d3 4fd5 cec4 d320 4c49 cb45 9470 9470 c120 d3d5 d045 5220 c249 c720 d052 4fc2 4c45 cdae - -00:03:06;07 942c 942c - -00:03:07;07 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 c1ce c420 c120 d3d5 d045 5220 c249 c780 94f2 94f2 91b9 91b9 91b9 91b9 d052 4fc2 4c45 cd20 ce45 45c4 d320 d5d3 aeae ae80 - -00:03:09;27 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 54c8 4520 d3d5 d045 5220 5245 c1c4 4552 d3a1 - -00:03:12;17 942f 942f 94ae 94ae 9420 9420 9452 9452 5745 20ce 4545 c420 544f 2043 c14c 4c20 54c8 4520 5245 d354 94f2 94f2 4f46 2054 c845 20d3 d5d0 4552 2052 45c1 c445 52d3 ae80 - -00:03:14;14 942f 942f 94ae 94ae 9420 9420 13f2 13f2 91b9 91b9 91b9 91b9 91b9 91b9 43c1 4c4c 2054 c845 cd20 5749 54c8 20cd 45a1 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 5b20 43e5 ecec 7068 ef6e e520 9137 9137 9137 9137 9137 9137 205d - -00:03:17;08 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 91b9 91b9 d3c1 d92c 20a2 43c1 4c4c 49ce c720 c14c 4c80 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 d3d5 d045 5220 5245 c1c4 4552 d3a1 a280 - -00:03:19;01 942f 942f 94ae 94ae 9420 9420 13f2 13f2 91b9 91b9 4368 e9ec 64f2 e56e ba20 5b20 496e 2061 7564 e9e5 6ee3 e520 5d80 9454 9454 91ae 91ae 43c1 4c4c 49ce c720 c14c 4c80 94f4 94f4 91ae 91ae d3d5 d045 5220 5245 c1c4 4552 d3a1 - -00:03:21;23 942f 942f 94ae 94ae 9420 9420 1352 1352 5b20 52e5 6def f4e5 2070 68ef 6ee5 20f2 e96e 67e9 6e67 205d 9452 9452 91b9 91b9 91b9 91b9 91b9 91b9 544f 2054 c845 20c2 4f4f cb20 434c d5c2 a180 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 544f 2054 c845 20c2 4f4f cb20 434c d5c2 a180 - -00:03:23;23 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 91b9 91b9 91b9 91b9 4368 e9ec 64f2 e56e ba80 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 91ae 91ae 544f 2054 c845 20c2 4f4f cb20 434c d5c2 a180 - -00:03:26;00 942f 942f 94ae 94ae 9420 9420 94d6 94d6 434f cd45 204f ce2c 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 544f 2054 c845 20c2 4f4f cb20 434c d5c2 a180 - -00:03:27;16 942c 942c - -00:03:28;18 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:03:30;17 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 57c8 d9c1 5454 20c8 4552 45ae - -00:03:37;06 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:03:38;14 942f 942f 94ae 94ae 9420 9420 94f4 94f4 a2d0 a220 49d3 2046 4f52 20d0 49c7 a180 - -00:03:42;12 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:03:43;29 942f 942f 94ae 94ae 9420 9420 9454 9454 5245 c420 5249 c449 cec7 20c8 4f4f c480 94f4 94f4 524f 4c4c 49ce a720 49ce a180 - -00:03:46;10 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:03:48;18 942f 942f 94ae 94ae 9420 9420 9454 9454 d052 49ce 4345 d3d3 20d0 45c1 94f4 94f4 c154 20d9 4fd5 5220 d345 52d6 4943 45a1 - -00:03:52;21 942f 942f 94ae 94ae 9420 9420 94f4 94f4 c1ce c420 d94f d52c - -00:03:55;20 942c 942c - -00:03:59;07 942f 942f 94ae 94ae 9420 9420 94f2 94f2 d3c1 d920 d94f d552 20ce c1cd 45ae - -00:04:00;11 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 91b9 91b9 c752 45c1 54ae 2057 45a7 5245 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 c14c 4c20 c845 5245 ae80 - -00:04:02;01 942c 942c - -00:04:04;09 942f 942f 94ae 94ae 9420 9420 9452 9452 544f c745 54c8 4552 2c20 5745 2057 494c 4c80 94f2 94f2 d34f 4cd6 4520 d049 c7a7 d320 d052 4fc2 4c45 cda1 - -00:04:06;08 942f 942f 94ae 94ae 9420 9420 94f4 94f4 4c45 54a7 d320 c74f a180 - -00:04:09;04 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:04:10;08 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 5b20 45ec e5e3 f4f2 ef6e e9e3 2062 e5e5 7073 205d - -00:04:19;26 942f 942f 94ae 94ae 9420 9420 94f2 94f2 4fcb c1d9 2c20 d049 c7ae aeae - -00:04:21;15 942f 942f 94ae 94ae 9420 9420 9452 9452 d354 c154 4520 d94f d552 94f2 94f2 d052 4fc2 4c45 cdae - -00:04:22;23 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 91b9 91b9 91b9 91b9 4920 c8c1 d645 204f ce45 94f2 94f2 91b9 91b9 91b9 91b9 5245 c14c 4cd9 2046 d5ce 2054 4fd9 2043 c152 2c80 - -00:04:24;06 942c 942c - -00:04:25;23 942f 942f 94ae 94ae 9420 9420 94f4 94f4 c2d5 5420 4920 57c1 ce54 20cd 4f52 45ae - -00:04:29;01 942f 942f 94ae 94ae 9420 9420 1370 1370 cd4f 5245 2043 c152 d3bf 947a 947a 91b9 91b9 91b9 91b9 cd4f 5245 2043 c152 d3bf - -00:04:31;06 942f 942f 94ae 94ae 9420 9420 13f8 13f8 57c8 c154 20c4 4f20 4980 9458 9458 c44f 2049 4620 4920 57c1 ce54 94f8 94f8 cd4f 5245 2054 4fd9 2043 c152 d3bf - -00:04:33;11 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 c74f 4fc4 2051 d545 d354 494f ceae - -00:04:36;23 942f 942f 94ae 94ae 9420 9420 94f2 94f2 57c8 45ce 2057 4520 c8c1 d645 20c1 2051 d545 d354 494f ce2c - -00:04:38;20 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 91b9 91b9 5745 204c 4f4f cbae aeae - -00:04:39;25 942f 942f 94ae 94ae 9420 9420 94d6 94d6 91b9 91b9 91b9 91b9 c1ec ecba 94f4 94f4 91b9 91b9 91b9 91b9 91b9 91b9 49ce 20c1 20c2 4f4f cba1 - -00:04:40;25 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 91b9 91b9 91b9 91b9 57c8 4943 c820 c24f 4fcb 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 d3c8 4fd5 4cc4 2057 4520 4c4f 4fcb 2049 cebf - -00:04:42;11 942f 942f 94ae 94ae 9420 9420 9454 9454 d045 c1d3 20c1 cec4 2043 c152 524f 54d3 2c80 94f4 94f4 43c1 5252 4f54 d320 c1ce c420 d045 c1d3 ae80 - -00:04:44;10 942c 942c - -00:04:45;15 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 c24f 4fcb 2043 4fcd 4520 4fd5 542c 94f2 94f2 d04c 45c1 d345 2c20 d04c 45c1 d345 2c20 d04c 45c1 d345 a180 - -00:04:48;15 942c 942c - -00:04:49;28 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 4c45 54a7 d320 5245 c1c4 2054 c845 2054 4954 4c45 94f4 94f4 91b9 91b9 4f46 2054 c849 d320 c24f 4fcb ae80 - -00:04:52;18 942c 942c - -00:04:56;24 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 5745 20cb ce4f 5720 57c8 c154 2054 4f20 c44f ae80 - -00:04:58;22 942c 942c - -00:05:02;01 942f 942f 94ae 94ae 9420 9420 9454 9454 5745 20ce 4545 c420 544f 204a d5cd d080 94f4 94f4 49ce 544f 2054 c849 d320 c24f 4fcb aeae ae80 - -00:05:03;12 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 c1ce c420 4649 cec4 2054 c845 20c1 ced3 5745 5280 94f2 94f2 91b9 91b9 91b9 91b9 544f 20d0 49c7 a7d3 2051 d545 d354 494f ceae - -00:05:05;10 942c 942c - -00:05:07;00 942f 942f 94ae 94ae 9420 9420 9454 9454 4649 52d3 542c 2057 4520 4c4f 4fcb 94f4 94f4 464f 5220 d3d5 d045 5220 4c45 5454 4552 d3ae - -00:05:09;11 942c 942c - -00:05:10;12 942f 942f 94ae 94ae 9420 9420 94f2 94f2 c1ce c420 54c8 45ce 2c20 d0d5 5420 54c8 45cd 2049 ceae aeae - -00:05:13;15 942c 942c - -00:05:14;25 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 4fd5 5220 d3d5 d045 5220 c4d5 d045 52ae aeae - -00:05:17;08 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 91b9 91b9 434f cdd0 d554 4552 a180 - -00:05:18;24 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 d3d5 d045 5220 c4d5 d045 5220 434f cdd0 d554 4552 2c80 - -00:05:21;11 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 c84f 5720 cdc1 ced9 20d3 d5d0 4552 204c 4554 5445 52d3 94f4 94f4 91b9 91b9 91b9 91b9 c44f 2057 4520 ce45 45c4 bf80 - -00:05:23;05 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 5b20 c2e5 e570 e96e 6720 5d80 - -00:05:25;13 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 4fc8 a120 49ce 2054 c849 d320 d354 4f52 d92c - -00:05:27;15 942c 942c - -00:05:29;05 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 5745 20ce 4545 c420 4549 c7c8 5480 94f4 94f4 91b9 91b9 d3d5 d045 5220 4c45 5454 4552 d3a1 - -00:05:31;10 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 c1ce c420 54c8 45ce 2057 45a7 4c4c 20c7 4554 aeae ae80 - -00:05:33;22 942f 942f 94ae 94ae 9420 9420 13f2 13f2 91b9 91b9 91b9 91b9 91b9 91b9 5b20 54f2 e975 6d70 6861 6ef4 2080 9137 9137 9137 9137 9137 9137 205d 94f2 94f2 4fd5 5220 d3d5 d045 5220 d354 4f52 d920 c1ce d357 4552 a180 942f 942f 94ae 94ae 9420 9420 94f2 94f2 4954 a7d3 2054 49cd 4520 544f 2054 52c1 ced3 464f 52cd ae80 - -00:05:38;17 942c 942c - -00:05:43;03 942f 942f 94ae 94ae 9420 9420 9476 9476 91b9 91b9 5245 c1c4 d9bf - -00:05:45;15 942f 942f 94ae 94ae 9420 9420 94d6 94d6 c1ec ecba 9476 9476 5245 c1c4 d9a1 - -00:05:47;01 942f 942f 94ae 94ae 9420 9420 94f8 94f8 c152 cdd3 2049 cea1 - -00:05:48;21 942f 942f 94ae 94ae 9420 9420 9476 9476 d0d5 5420 d94f d552 20c1 52cd 2049 ceae - -00:05:50;20 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:05:52;03 942f 942f 94ae 94ae 9420 9420 94d6 94d6 5768 7961 f4f4 ba80 94f4 94f4 d3d5 d045 5220 5245 c1c4 4552 d3ae aeae - -00:05:55;24 942f 942f 94ae 94ae 9420 9420 94d6 94d6 91b9 91b9 91b9 91b9 c1ec ecba 94f4 94f4 91b9 91b9 544f 2054 c845 2052 45d3 43d5 45a1 - -00:05:57;16 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:05:59;25 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 91b9 91b9 c14c d0c8 c120 d049 c7a1 - -00:06:01;19 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 5749 54c8 20c1 4cd0 c8c1 c245 5420 d04f 5745 52a1 - -00:06:03;03 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:06:05;11 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 574f cec4 4552 2052 45c4 a180 - -00:06:08;17 942f 942f 94ae 94ae 9420 9420 94f4 94f4 5749 54c8 2057 4f52 c420 d04f 5745 52a1 - -00:06:10;15 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:06:12;12 942f 942f 94ae 94ae 9420 9420 94f4 94f4 d052 49ce 4345 d3d3 20d0 5245 d354 4f80 - -00:06:15;19 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 5749 54c8 20d3 d045 4c4c 49ce c720 d04f 5745 52a1 - -00:06:17;13 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:06:19;15 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 91b9 91b9 91b9 91b9 d3d5 d045 5220 57c8 d92c 94f2 94f2 5749 54c8 2054 c845 20d0 4f57 4552 2054 4f20 5245 c1c4 a180 - -00:06:25;15 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:06:28;11 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 c1ce c420 d3d5 d045 5220 d94f d580 - -00:06:33;00 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 5749 54c8 2054 c845 20d0 4f57 4552 94f4 94f4 91b9 91b9 544f 20c8 454c d0a1 - -00:06:34;17 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:06:36;01 942f 942f 94ae 94ae 9420 9420 9458 9458 91b9 91b9 544f c745 54c8 4552 2c80 94f8 94f8 91b9 91b9 5745 20c1 5245 aeae ae80 - -00:06:39;10 942f 942f 94ae 94ae 9420 9420 94d6 94d6 91b9 91b9 91b9 91b9 c1ec ecba 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 54c8 4520 d3d5 d045 5220 5245 c1c4 4552 d3a1 - -00:06:40;26 942f 942f 94ae 94ae 9420 9420 9476 9476 91b9 91b9 57c8 d9ad 464c d945 52d3 a180 - -00:06:43;01 942c 942c - -00:06:44;03 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 91b9 91b9 5745 a752 4520 5245 c1c4 d920 544f 2046 4cd9 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 49ce 544f 2054 c849 d320 c24f 4fcb a180 942c 942c - -00:06:47;04 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:06:50;01 942f 942f 94ae 94ae 9420 9420 13f2 13f2 91b9 91b9 91b9 91b9 91b9 91b9 9137 9137 20d3 d5d0 4552 2052 45c1 c445 52d3 2080 9137 9137 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 9137 9137 91ae 91ae 544f 2054 c845 2052 45d3 43d5 45a1 9120 9120 9137 9137 - -00:06:53;17 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 91b9 91b9 9137 9137 2049 54a7 d320 5449 cd45 2054 4f20 464c d980 94f2 94f2 5749 54c8 2054 c845 20d3 d5d0 4552 2052 45c1 c445 52d3 2080 9137 9137 - -00:06:57;13 942f 942f 94ae 94ae 9420 9420 9452 9452 9137 9137 20a7 43c1 d5d3 4520 5745 a7d6 4520 c74f 5480 94f4 94f4 c120 d052 4fc2 4c45 cd20 544f 20d3 4f4c d645 2080 9137 9137 - -00:07:02;10 942f 942f 94ae 94ae 9420 9420 13f2 13f2 91b9 91b9 91b9 91b9 91b9 91b9 9137 9137 20d3 d5d0 4552 2052 45c1 c445 52d3 2080 9137 9137 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 9137 9137 91ae 91ae 544f 2054 c845 2052 45d3 43d5 45a1 9120 9120 9137 9137 - -00:07:04;28 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 9137 9137 20d3 d5d0 4552 2052 45c1 c445 52d3 2080 9137 9137 - -00:07:08;26 942f 942f 94ae 94ae 9420 9420 94d0 94d0 91b9 91b9 91b9 91b9 91b9 91b9 9137 9137 2057 4f52 cb49 cec7 2054 4fc7 4554 c845 5280 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 5749 54c8 20d0 4f57 4552 d320 544f 2052 45c1 c420 9137 9137 - -00:07:11;24 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 9137 9137 2049 ce54 4f20 c24f 4fcb d320 5745 2046 4cd9 2080 9137 9137 - -00:07:15;28 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 91b9 91b9 91b9 91b9 9137 9137 2054 4f20 4649 cec4 94f2 94f2 54c8 4520 d3d5 d045 5220 d354 4f52 d920 c1ce d357 4552 2080 9137 9137 - -00:07:18;19 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 9137 9137 2057 4954 c820 d3d5 d045 5220 57c8 d920 9137 9137 - -00:07:21;24 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 9137 9137 20d3 d5d0 4552 2052 45c1 c445 52d3 94f4 94f4 91b9 91b9 91b9 91b9 91b9 91b9 544f 2054 c845 2052 45d3 43d5 45a1 2080 9137 9137 - -00:07:25;02 942f 942f 94ae 94ae 9420 9420 94f2 94f2 d052 45d3 544f a180 - -00:07:29;21 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 4fc8 a180 - -00:07:31;16 942f 942f 94ae 94ae 9420 9420 9452 9452 5745 a752 4520 49ce 2054 c845 94f2 94f2 a2cb 49ce c720 cd49 c4c1 d3a2 20c2 4f4f cba1 - -00:07:32;15 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 4c45 54a7 d320 5245 c1c4 ae80 - -00:07:35;02 942c 942c - -00:07:38;26 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 57c8 d920 5752 4954 4552 aeae ae80 94f4 94f4 91b9 91b9 c849 c7c8 4c49 c7c8 54a1 - -00:07:40;07 942c 942c - -00:07:42;26 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 5245 c1c4 2057 4954 c820 cd45 ae80 - -00:07:44;25 942c 942c - -00:07:45;29 942f 942f 94ae 94ae 9420 9420 9154 9154 91b9 91b9 91b9 91b9 4920 4c4f d645 20c7 4f4c c4a1 - -00:07:47;01 942c 942c - -00:07:52;16 942f 942f 94ae 94ae 9420 9420 9154 9154 91b9 91b9 c1ce c420 4920 4c49 cb45 2049 54a1 - -00:07:55;06 942c 942c - -00:08:01;01 942f 942f 94ae 94ae 9420 9420 9154 9154 91b9 91b9 91b9 91b9 91b9 91b9 5b20 d36d 61e3 6b20 5d80 - -00:08:04;02 942f 942f 94ae 94ae 9420 9420 9152 9152 91b9 91b9 91b9 91b9 91b9 91b9 4920 57c1 ce54 20cd 4f52 4520 c74f 4cc4 a180 - -00:08:05;05 942c 942c - -00:08:12;16 942f 942f 94ae 94ae 9420 9420 9154 9154 91b9 91b9 91b9 91b9 91b9 91b9 d945 d3a1 20d9 45c1 c8a1 - -00:08:15;17 942f 942f 94ae 94ae 9420 9420 94d6 94d6 5b20 c761 7370 205d 9470 9470 91b9 91b9 91b9 91b9 cb49 cec7 20cd 49c4 c1d3 2057 c1ce 54d3 20cd 4f52 4520 c74f 4cc4 2c80 - -00:08:17;07 942c 942c - -00:08:18;08 942f 942f 94ae 94ae 9420 9420 9454 9454 4ad5 d354 204c 49cb 4520 4920 57c1 ce54 94f4 94f4 cd4f 5245 2054 4fd9 2043 c152 d3a1 - -00:08:21;14 942f 942f 94ae 94ae 9420 9420 9458 9458 91b9 91b9 91b9 91b9 c1ce c420 54c8 c154 2c80 94f8 94f8 91b9 91b9 91b9 91b9 d3d5 d045 5220 5245 c1c4 4552 d32c - -00:08:24;28 942f 942f 94ae 94ae 9420 9420 9458 9458 91b9 91b9 91b9 91b9 91b9 91b9 49d3 2057 c8d9 2057 4520 c152 4580 94f8 94f8 91b9 91b9 91b9 91b9 91b9 91b9 49ce 2054 c849 d320 c24f 4fcb ae80 - -00:08:26;26 942f 942f 94ae 94ae 9420 9420 94d6 94d6 91b9 91b9 91b9 91b9 d049 c720 c1ce c420 cb49 cec7 20cd 49c4 c1d3 9476 9476 91b9 91b9 91b9 91b9 c24f 54c8 2057 c1ce 5420 cd4f 5245 ae80 - -00:08:29;01 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 544f 20cb 49ce c720 cd49 c4c1 d3a1 - -00:08:32;26 942c 942c - -00:08:34;02 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 4c45 54a7 d320 524f 4c4c a180 - -00:08:35;29 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:08:37;11 942f 942f 94ae 94ae 9420 9420 94d0 94d0 c849 a120 5745 a752 4520 54c8 4580 9470 9470 d3d5 d045 5220 5245 c1c4 4552 d3ae - -00:08:44;24 942f 942f 94ae 94ae 9420 9420 94f8 94f8 4920 c1cd 20cb 49ce c720 cd49 c4c1 d32c - -00:08:47;03 942f 942f 94ae 94ae 9420 9420 94f8 94f8 c1ce c420 4920 4c4f d645 20c7 4f4c c4a1 - -00:08:50;23 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 4c4f 54d3 20c1 cec4 204c 4f54 d320 4f46 20c7 4f4c c4a1 - -00:08:53;14 942f 942f 94ae 94ae 9420 9420 9476 9476 c1c8 45cd aeae ae80 - -00:08:56;20 942f 942f 94ae 94ae 9420 9420 94f4 94f4 49ce 2046 c143 542c 2049 2057 49d3 c880 - -00:08:57;20 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 54c8 c154 2045 d645 52d9 54c8 49ce c720 4980 94f2 94f2 91b9 91b9 544f d543 c820 5749 54c8 2054 c849 d320 4649 cec7 4552 - -00:09:00;05 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 54d5 52ce d320 544f 20c7 4f4c c4a1 - -00:09:04;19 942f 942f 94ae 94ae 9420 9420 94f4 94f4 5b20 4661 6ee6 61f2 e520 9137 9137 9137 9137 9137 9137 205d - -00:09:07;16 942f 942f 94ae 94ae 9420 9420 94da 94da 91b9 91b9 91b9 91b9 4f4c c420 d6c1 d345 2c80 947a 947a 91b9 91b9 91b9 91b9 c74f 4cc4 20d6 c1d3 45bf - -00:09:09;18 942c 942c - -00:09:11;07 942f 942f 94ae 94ae 9420 9420 1370 1370 d661 f2e9 ef75 73ba 94d0 94d0 574f 57a1 20c1 5745 d34f cd45 a180 9470 9470 57c8 4fc1 a180 - -00:09:15;02 942f 942f 94ae 94ae 9420 9420 947a 947a 91b9 91b9 91b9 91b9 4954 2057 4f52 cb45 c4a1 - -00:09:17;19 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 ce4f 572c 2054 c8c1 cecb d320 544f 20cd d980 94f2 94f2 91b9 91b9 d3d0 4543 49c1 4c20 c74f 4cc4 45ce 2046 49ce c745 522c - -00:09:19;01 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 91b9 91b9 45d6 4552 d954 c849 cec7 2049 2054 4fd5 43c8 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 5749 4c4c 2054 d552 ce20 544f 20c7 4f4c c42c - -00:09:22;12 942f 942f 94ae 94ae 9420 9420 9454 9454 c1ce c420 49a7 4c4c 20c8 c1d6 4580 94f4 94f4 4c4f 54d3 20cd 4f52 4520 c74f 4cc4 ae80 - -00:09:25;13 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 91b9 91b9 4c49 cb45 20d5 cdae aeae - -00:09:29;19 942f 942f 94ae 94ae 9420 9420 94d6 94d6 91b9 91b9 4f4f c82c 2054 c845 20d0 c154 c82c 9476 9476 91b9 91b9 54c8 4520 d0c1 54c8 2c20 54c8 4520 d0c1 54c8 ae80 - -00:09:30;25 942f 942f 94ae 94ae 9420 9420 94da 94da 91b9 91b9 91b9 91b9 4f4c c420 d0c1 54c8 2c80 947a 947a 91b9 91b9 91b9 91b9 c74f 4cc4 20d0 c154 c8a1 - -00:09:32;13 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 d375 70e5 f220 52e5 6164 e5f2 73ba 9476 9476 91b9 91b9 57c8 4fc1 a180 - -00:09:35;28 942f 942f 94ae 94ae 9420 9420 94d0 94d0 5b20 4361 e36b ece5 205d 9470 9470 4c4f 4fcb 20c1 5420 cd45 a180 - -00:09:37;03 942f 942f 94ae 94ae 9420 9420 94d0 94d0 49a7 cd20 57c1 4ccb 49ce c780 9470 9470 4fce 20c7 4f4c c4a1 - -00:09:39;13 942f 942f 94ae 94ae 9420 9420 94d0 94d0 5b20 c7e9 6767 ece5 205d 9470 9470 c1ce c420 4920 4c49 cb45 2049 54a1 - -00:09:41;13 942f 942f 94ae 94ae 9420 9420 94f4 94f4 57c8 4545 a120 cd4f 5245 20c7 4f4c c4a1 - -00:09:44;23 942c 942c - -00:09:47;21 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 4f4c c420 5452 4545 2c20 c74f 4cc4 2054 5245 45a1 - -00:09:50;01 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 d945 d3a1 20c8 c1c8 adc8 c1c8 a180 - -00:09:52;23 942c 942c - -00:09:55;16 942f 942f 94ae 94ae 9420 9420 94f4 94f4 49a7 cd20 c74f 4cc4 adc8 c1d0 d0d9 a180 - -00:09:57;23 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 c1ce c420 4920 4c49 cb45 2049 54a1 - -00:10:00;04 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 91b9 91b9 57c8 4557 ae80 - -00:10:02;20 942f 942f 94ae 94ae 9420 9420 9476 9476 91b9 91b9 91b9 91b9 91b9 91b9 57c8 4557 ae80 - -00:10:03;27 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 c14c 4c20 4f46 2054 c849 d320 54d5 52ce 49ce c780 94f2 94f2 91b9 91b9 91b9 91b9 54c8 49ce c7d3 2054 4f20 c74f 4cc4 - -00:10:05;12 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 c8c1 d320 cdc1 c445 20cd 4520 54c8 4952 d354 d9ae - -00:10:07;18 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 49a7 c420 4c49 cb45 20c1 20c2 49c7 2c80 94f2 94f2 91b9 91b9 91b9 91b9 54c1 4c4c 20c7 4cc1 d3d3 204f 4620 cd49 4ccb ae80 - -00:10:09;21 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:10:13;23 942f 942f 94ae 94ae 9420 9420 9476 9476 c1c8 2c20 d945 d3ae - -00:10:15;13 942c 942c - -00:10:19;29 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 c2d5 5420 c44f 20d9 4fd5 20cb ce4f 5720 57c8 c154 94f2 94f2 91b9 91b9 574f d54c c420 c245 2045 d645 ce20 c245 5454 4552 bf80 - -00:10:21;17 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 91b9 91b9 5b20 c7e9 6767 ece5 205d - -00:10:24;14 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 4f4c c420 cd49 4ccb 2c20 c74f 4cc4 20cd 494c cba1 - -00:10:25;24 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 c24f 5454 4fcd d320 d5d0 a180 - -00:10:29;00 942c 942c - -00:10:31;11 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 5b20 43ec 756e 6be9 6e67 205d - -00:10:32;18 942f 942f 94ae 94ae 9420 9420 94f8 94f8 d5c8 2c20 49ce 5445 5245 d354 49ce c7ae - -00:10:34;19 942c 942c - -00:10:36;13 942f 942f 94ae 94ae 9420 9420 94da 94da 91b9 91b9 91b9 91b9 c74f 4cc4 20cd 494c cb80 947a 947a 91b9 91b9 91b9 91b9 49d3 20d6 4552 d9ae aeae - -00:10:39;06 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 d5c8 aeae ae20 c8c1 52c4 ae80 - -00:10:41;13 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 4fc8 2c20 57c8 c154 2043 c1ce 2049 20c4 4fbf - -00:10:43;21 942f 942f 94ae 94ae 9420 9420 94f2 94f2 c14c d0c8 c120 d049 c720 544f 2054 c845 2052 45d3 43d5 45a1 - -00:10:46;20 942c 942c - -00:10:48;06 942f 942f 94ae 94ae 9420 9420 91d0 91d0 5749 54c8 20cd d920 c1cd c1da 49ce c780 9170 9170 c14c d0c8 c1c2 4554 2054 4f4f 4cd3 2c80 - -00:10:52;20 942c 942c - -00:10:54;06 942f 942f 94ae 94ae 9420 9420 91d0 91d0 4920 43c1 ce20 4649 cec4 2054 c845 204c 4554 5445 52d3 9170 9170 49ce 2054 c845 2057 4f52 c420 a2cd 494c cba2 - -00:10:57;06 942f 942f 94ae 94ae 9420 9420 91d0 91d0 c1ce c420 43c8 c1ce c745 2054 c845 20c7 4f4c c480 9170 9170 c2c1 43cb 2049 ce54 4f20 cd49 4ccb a180 - -00:10:59;24 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 c1ad c2ad 432c 20d3 49ce c720 5749 54c8 20cd 45a1 - -00:11:02;21 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:11:05;21 942f 942f 94ae 94ae 9420 9420 94f4 94f4 9137 9137 20d3 49ce c720 5749 54c8 20cd 4520 9137 9137 - -00:11:20;23 942c 942c - -00:11:21;29 942f 942f 94ae 94ae 9420 9420 94d0 94d0 c1cd c1da 49ce c780 9470 9470 c14c d0c8 c1c2 4554 20d3 49ce c749 cec7 a180 - -00:11:23;25 942c 942c - -00:11:24;27 942f 942f 94ae 94ae 9420 9420 9470 9470 c8cd cdae aeae - -00:11:27;19 942f 942f 94ae 94ae 9420 9420 137a 137a 91b9 91b9 ce4f 5720 57c8 4552 45a7 d380 94da 94da 91b9 91b9 54c8 4520 4c45 5454 4552 947a 947a 91b9 91b9 a2cd a2bf 942f 942f 94ae 94ae 9420 9420 94da 94da 91b9 91b9 91b9 91b9 2043 68e9 ec64 f2e5 6eba 947a 947a 91b9 91b9 91b9 91b9 91ae 91ae 54c8 4552 45a1 - -00:11:32;06 942c 942c - -00:11:35;15 942f 942f 94ae 94ae 9420 9420 137a 137a 91b9 91b9 91b9 91b9 c1ec 7068 6120 d0e9 67ba 94da 94da 91b9 91b9 91b9 91b9 54c8 4552 45a7 d380 947a 947a 91b9 91b9 91b9 91b9 54c8 4520 a2cd a2a1 - -00:11:37;00 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 5b20 d3ec ef73 68e9 6e67 205d - -00:11:38;18 942c 942c - -00:11:42;18 942f 942f 94ae 94ae 9420 9420 9454 9454 ce4f 5720 5745 20ce 4545 c480 94f4 94f4 54c8 4520 4c45 5454 4552 20a2 49a2 ae80 - -00:11:43;20 942c 942c - -00:11:44;18 942f 942f 94ae 94ae 9420 9420 94dc 94dc 57c8 4552 45a7 d380 947c 947c 54c8 4520 a249 a2bf - -00:11:47;15 942f 942f 94ae 94ae 9420 9420 94da 94da 91b9 91b9 91b9 91b9 2043 68e9 ec64 f2e5 6eba 947a 947a 91b9 91b9 91b9 91b9 91ae 91ae 54c8 4552 45a1 - -00:11:49;19 942c 942c - -00:11:53;04 942f 942f 94ae 94ae 9420 9420 137a 137a 91b9 91b9 91b9 91b9 c1ec 7068 6120 d0e9 67ba 94da 94da 91b9 91b9 91b9 91b9 54c8 4552 45a7 d380 947a 947a 91b9 91b9 91b9 91b9 54c8 4520 a249 a2a1 - -00:11:54;25 942f 942f 94ae 94ae 9420 9420 9454 9454 ce45 5854 2057 4520 ce45 45c4 94f4 94f4 54c8 4520 4c45 5454 4552 20a2 4ca2 ae80 - -00:11:56;25 942c 942c - -00:12:01;17 942f 942f 94ae 94ae 9420 9420 94dc 94dc 57c8 4552 45a7 d380 947c 947c 54c8 4520 a24c a2bf - -00:12:04;03 942c 942c - -00:12:05;00 942f 942f 94ae 94ae 9420 9420 94da 94da 91b9 91b9 91b9 91b9 2043 68e9 ec64 f2e5 6eba 947a 947a 91b9 91b9 91b9 91b9 91ae 91ae 54c8 4552 45a1 - -00:12:07;02 942c 942c - -00:12:09;23 942f 942f 94ae 94ae 9420 9420 137a 137a 91b9 91b9 91b9 91b9 c1ec 7068 6120 d0e9 67ba 94da 94da 91b9 91b9 91b9 91b9 54c8 4552 45a7 d380 947a 947a 91b9 91b9 91b9 91b9 54c8 4520 a24c a2a1 - -00:12:11;22 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 c761 7370 205d - -00:12:13;10 942c 942c - -00:12:14;28 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 4fce 4cd9 204f ce45 20cd 4f52 4580 94f4 94f4 91b9 91b9 4c45 5454 4552 2054 4f20 c74f a180 - -00:12:16;01 942c 942c - -00:12:18;14 942f 942f 94ae 94ae 9420 9420 94da 94da 91b9 91b9 ce4f 5720 57c8 4552 4580 947a 947a 91b9 91b9 49d3 2054 c845 20a2 cba2 bf80 - -00:12:21;03 942f 942f 94ae 94ae 9420 9420 947c 947c c8cd cdae - -00:12:24;11 942f 942f 94ae 94ae 9420 9420 137a 137a 91b9 91b9 91b9 91b9 2043 68e9 ec64 f2e5 6eba 94da 94da 91b9 91b9 91b9 91b9 91ae 91ae 54c8 4552 4580 947a 947a 91b9 91b9 91b9 91b9 91ae 91ae 4954 2049 d3a1 942c 942c - -00:12:28;26 942f 942f 94ae 94ae 9420 9420 137a 137a 91b9 91b9 91b9 91b9 c1ec 7068 6120 d0e9 67ba 94da 94da 91b9 91b9 91b9 91b9 54c8 4552 45a7 d380 947a 947a 91b9 91b9 91b9 91b9 54c8 4520 a2cb a2a1 - -00:12:30;06 942f 942f 94ae 94ae 9420 9420 947c 947c 57c8 4fc1 a180 - -00:12:32;26 942c 942c - -00:12:39;29 942f 942f 94ae 94ae 9420 9420 9470 9470 4c49 43cb 4554 d920 4c45 5454 4552 d3a1 - -00:12:40;29 942f 942f 94ae 94ae 9420 9420 94d0 94d0 5745 2054 d552 ce45 c420 54c8 4520 c74f 4cc4 9470 9470 c2c1 43cb 2049 ce54 4f20 cd49 4ccb a180 - -00:12:42;18 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 4c45 54a7 d320 c749 d645 204f d552 d345 4cd6 45d3 94f2 94f2 91b9 91b9 91b9 91b9 c120 c249 c720 54c8 d5cd c2d3 20d5 d0a1 - -00:12:45;12 942f 942f 94ae 94ae 9420 9420 1370 1370 c245 20d3 d552 4520 544f 20cb 4545 d080 94d0 94d0 d94f d552 2045 d945 d320 4fd5 5480 9470 9470 464f 5220 d3d5 d045 5220 4c45 5454 4552 d3a1 - -00:12:49;25 942c 942c - -00:12:53;00 942f 942f 94ae 94ae 9420 9420 9458 9458 91b9 91b9 91b9 91b9 54c8 c1ce cbd3 2c80 94f8 94f8 91b9 91b9 91b9 91b9 d3d5 d045 5220 5245 c1c4 4552 d3a1 - -00:12:55;20 942c 942c - -00:12:57;20 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 ce4f 20d0 524f c24c 45cd ae80 - -00:12:59;02 942f 942f 94ae 94ae 9420 9420 947a 947a 5b20 d3ec 75f2 70e9 6e67 205d - -00:13:00;21 942f 942f 94ae 94ae 9420 9420 947a 947a c1c8 2c20 d34f 20ce 4943 45ae - -00:13:03;00 942f 942f 94ae 94ae 9420 9420 9458 9458 ce4f 5720 49a7 cd20 5245 c1c4 d920 544f 94f8 94f8 cdc1 cb45 20cd 4f52 4520 c74f 4cc4 a180 - -00:13:05;18 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 57ef 6e64 e5f2 2052 e564 ba80 94f4 94f4 91b9 91b9 54c8 4552 4520 c845 20c7 4f45 d3a1 - -00:13:08;24 942c 942c - -00:13:10;03 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 5b20 5768 efef 70e9 6e67 205d - -00:13:11;23 942c 942c - -00:13:13;02 942f 942f 94ae 94ae 9420 9420 94f2 94f2 c74f 4cc4 a180 - -00:13:14;22 942f 942f 94ae 94ae 9420 9420 947c 947c c74f 4cc4 a180 - -00:13:17;11 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:13:18;12 942c 942c - -00:13:21;25 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 d94f d520 d345 4520 d3d5 d045 5220 4c45 5454 4552 d3bf - -00:13:23;10 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 57c8 4943 c820 4c45 5454 4552 d380 94f4 94f4 91b9 91b9 c449 c420 d94f d520 4649 cec4 bf80 - -00:13:25;03 942f 942f 94ae 94ae 9420 9420 9454 9454 4368 e9ec 64f2 e56e ba80 94f4 94f4 91b9 91b9 91b9 91b9 91b9 91b9 91ae 91ae a2c8 a2a1 20a2 cea2 a180 - -00:13:27;16 942c 942c - -00:13:29;29 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 a2c8 a22c 20a2 cea2 ae20 4fc8 20d9 45c1 c8a1 - -00:13:33;10 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 91b9 91b9 4c45 54a7 d320 d0d5 5420 54c8 45cd 2049 ce80 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 4fd5 5220 d3d5 d045 5220 c4d5 d045 52ae aeae - -00:13:36;08 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 91b9 91b9 434f cdd0 d554 4552 a180 - -00:13:39;24 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 d349 5820 cd4f 5245 20d3 d5d0 4552 204c 4554 5445 52d3 - -00:13:41;19 942c 942c - -00:13:49;05 942f 942f 94ae 94ae 9420 9420 9452 9452 c1ce c420 54c8 45ce 2057 45a7 4c4c 20c7 4554 94f2 94f2 4fd5 5220 d3d5 d045 5220 d354 4f52 d920 c1ce d357 4552 a180 - -00:13:50;26 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 d3d5 d045 5220 c4d5 d045 52a1 - -00:13:54;18 942c 942c - -00:13:56;04 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:13:57;16 942f 942f 94ae 94ae 9420 9420 94da 94da 4f4c c420 d354 c154 d545 2c80 947a 947a c74f 4cc4 20d3 54c1 54d5 45a1 - -00:14:01;16 942f 942f 94ae 94ae 9420 9420 9454 9454 cb49 cec7 20cd 49c4 c1d3 2c80 94f4 94f4 c44f cea7 5420 d94f d520 54c8 49ce cb80 - -00:14:05;04 942c 942c - -00:14:06;16 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 d94f d520 cd49 c7c8 5420 c8c1 d645 94f4 94f4 91b9 91b9 45ce 4fd5 c7c8 20c7 4f4c c4bf - -00:14:08;10 942f 942f 94ae 94ae 9420 9420 9452 9452 d94f d520 c44f 20c8 c1d6 4580 94f2 94f2 c120 4c4f 5420 4f46 20c7 4f4c c4ae - -00:14:10;11 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 c2d5 5420 4920 57c1 ce54 20cd 4f52 4520 c74f 4cc4 a180 - -00:14:14;09 942c 942c - -00:14:15;14 942f 942f 94ae 94ae 9420 9420 9476 9476 91b9 91b9 cd4f 5245 a180 - -00:14:17;17 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 c146 5445 5220 c14c 4c2c 2049 204c 49cb 4520 4954 a180 - -00:14:18;20 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 4f4f c8a1 20d6 49d3 4954 4f52 d3a1 - -00:14:21;27 942c 942c - -00:14:23;13 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 91b9 91b9 5b20 c7f2 756e f473 205d - -00:14:25;21 942f 942f 94ae 94ae 9420 9420 94da 94da 91b9 91b9 91b9 91b9 c2ef f468 ba80 947a 947a 91b9 91b9 91b9 91b9 c849 2c20 cd49 c4c1 d3a1 - -00:14:27;01 942c 942c - -00:14:28;10 942f 942f 94ae 94ae 9420 9420 94d6 94d6 91b9 91b9 5745 20c8 45c1 52c4 20d9 4fd5 a7d6 4520 c74f 5480 9476 9476 91b9 91b9 54c8 4520 a2c7 4f4c c445 ce20 544f d543 c8a2 a180 - -00:14:29;19 942f 942f 94ae 94ae 9420 9420 9470 9470 4920 d3d5 5245 20c4 4fa1 - -00:14:32;07 942f 942f 94ae 94ae 9420 9420 94d0 94d0 434f cd45 2054 4f20 cdd9 9470 9470 4649 d3c8 d920 464f d5ce 54c1 49ce - -00:14:33;17 942f 942f 94ae 94ae 9420 9420 94d0 94d0 c1ce c420 49a7 4c4c 9470 9470 d3c8 4f57 20d9 4fd5 a180 - -00:14:35;00 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:14:37;07 942f 942f 94ae 94ae 9420 9420 94d0 94d0 54c8 49d3 2049 d320 cdd9 9470 9470 4649 d3c8 d920 464f d5ce 54c1 49ce a180 - -00:14:40;12 942f 942f 94ae 94ae 9420 9420 94dc 94dc c2ef f468 ba80 947a 947a 91b9 91b9 4f4f c82c 20c1 c1c8 aeae ae80 - -00:14:43;11 942f 942f 94ae 94ae 9420 9420 94d0 94d0 c745 5420 c120 4c4f c1c4 9470 9470 4f46 2054 c849 d3ae - -00:14:47;04 942f 942f 94ae 94ae 9420 9420 9470 9470 4f4c c420 464f d5ce 54c1 49ce aeae ae80 - -00:14:48;15 942f 942f 94ae 94ae 9420 9420 9470 9470 c74f 4cc4 2046 4fd5 ce54 c149 cea1 - -00:14:50;19 942f 942f 94ae 94ae 9420 9420 94da 94da 91b9 91b9 c2ef f468 ba80 947a 947a 91b9 91b9 4f4f c82c 20d3 c849 ced9 ae80 - -00:14:52;15 942c 942c - -00:14:54;06 942f 942f 94ae 94ae 9420 9420 9470 9470 4c45 54a7 d320 d357 49cd a180 - -00:14:57;18 942f 942f 94ae 94ae 9420 9420 137a 137a c2ef f468 ba80 94da 94da 57c8 4545 a120 57c1 c84f 4fa1 947a 947a 57c8 c154 2046 d5ce a180 - -00:14:59;17 942c 942c - -00:15:01;02 942f 942f 94ae 94ae 9420 9420 947a 947a 5b20 4c61 7567 68f4 e5f2 205d - -00:15:05;24 942f 942f 94ae 94ae 9420 9420 9452 9452 4fc8 2c20 4920 4ad5 d354 204c 4fd6 4520 d357 49cd cd49 cec7 94f2 94f2 49ce 20cd d920 4649 d3c8 d920 464f d5ce 54c1 49ce a180 - -00:15:07;25 942f 942f 94ae 94ae 9420 9420 9476 9476 91b9 91b9 c845 d9ae aeae - -00:15:12;03 942f 942f 94ae 94ae 9420 9420 9454 9454 d94f d520 cbce 4f57 2057 c8c1 54a7 d380 94f4 94f4 45d6 45ce 20c2 4554 5445 5280 - -00:15:13;22 942f 942f 94ae 94ae 9420 9420 9454 9454 54c8 c1ce 20c1 20c7 4f4c c480 94f4 94f4 4649 d3c8 d920 464f d5ce 54c1 49ce bf80 - -00:15:15;06 942f 942f 94ae 94ae 9420 9420 94d0 94d0 4f4c c420 57c1 5445 52ae aeae 9470 9470 57c1 4954 2046 4f52 2049 54ae - -00:15:17;13 942f 942f 94ae 94ae 9420 9420 9470 9470 c74f 4cc4 2057 c154 4552 a180 - -00:15:21;16 942f 942f 94ae 94ae 9420 9420 94d0 94d0 4fc8 2c20 cdd9 2043 c849 cece d9ad 9470 9470 43c8 49ce ad43 c849 cea1 - -00:15:24;08 942f 942f 94ae 94ae 9420 9420 947a 947a 91b9 91b9 91b9 91b9 5b20 c7f2 756e f473 205d - -00:15:26;29 942f 942f 94ae 94ae 9420 9420 94da 94da 91b9 91b9 c2ef f468 ba80 9476 9476 91b9 91b9 91b9 91b9 cd49 c4c1 d32c 2057 4520 43c1 cea7 54ae aeae - -00:15:28;03 942f 942f 94ae 94ae 9420 9420 9458 9458 91b9 91b9 91b9 91b9 91b9 91b9 5b20 d3f4 f261 e96e e96e 6720 5d80 94f8 94f8 91b9 91b9 91b9 91b9 91b9 91b9 cd4f d645 a180 - -00:15:30;06 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 5b20 c7f2 756e f4e9 6e67 205d - -00:15:32;02 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 91b9 91b9 d5c8 ad4f c8ae 2049 aeae ae20 4980 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 43c1 cea7 5420 cd4f d645 20c1 5420 c14c 4ca1 - -00:15:34;10 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 91b9 91b9 49a7 d645 2054 d552 ce45 c480 94f2 94f2 91b9 91b9 91b9 91b9 54c8 4520 57c1 5445 5220 49ce 544f 20c7 4f4c c480 - -00:15:38;11 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 c1ce c420 ce4f 5720 5745 a752 4520 5452 c1d0 d045 c4a1 - -00:15:40;10 942f 942f 94ae 94ae 9420 9420 94f4 94f4 4920 c44f cea7 5420 4c49 cb45 2049 54a1 - -00:15:41;28 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 57c8 c154 2043 c1ce 2049 20c4 4fbf - -00:15:44;23 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:15:46;26 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 43d5 4520 54c8 4520 d3d0 c152 cb4c 45d3 a180 - -00:15:48;15 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 43d5 4520 54c8 4520 cdd5 d349 43a1 - -00:15:50;00 942f 942f 94ae 94ae 9420 9420 9454 9454 d052 49ce 4345 d3d3 20d0 5245 d354 4f80 94f4 94f4 544f 2054 c845 2052 45d3 43d5 45a1 - -00:15:51;18 942f 942f 94ae 94ae 9420 9420 94d0 94d0 5749 54c8 20cd d920 cdc1 c749 4380 9470 9470 d3d0 454c 4c49 cec7 2057 c1ce c42c - -00:15:55;00 942f 942f 94ae 94ae 9420 9420 94d0 94d0 4920 43c1 ce20 d3d0 454c 4c80 9470 9470 54c8 4520 574f 52c4 20a2 57c1 5445 52a2 - -00:15:57;14 942f 942f 94ae 94ae 9420 9420 94d0 94d0 c1ce c420 54d5 52ce 2054 c845 20c7 4f4c c480 9470 9470 c2c1 43cb 2054 4f20 57c1 5445 52ae - -00:15:59;21 942f 942f 94ae 94ae 9420 9420 94d0 94d0 54c1 cb45 204f d554 20d9 4fd5 5220 cdc1 c749 4380 9470 9470 d3d0 454c 4c49 cec7 2057 c1ce c4d3 a180 - -00:16:02;08 942f 942f 94ae 94ae 9420 9420 9470 9470 5245 c1c4 d9bf - -00:16:05;00 942f 942f 94ae 94ae 9420 9420 9470 9470 57c1 cec4 d320 d5d0 a180 - -00:16:06;01 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 d3d0 454c 4c20 5749 54c8 20cd 45a1 - -00:16:08;05 942f 942f 94ae 94ae 9420 9420 9476 9476 91b9 91b9 91b9 91b9 c8cd cdae - -00:16:10;10 942f 942f 94ae 94ae 9420 9420 9454 9454 57c8 c154 20cd c1cb 45d3 94f4 94f4 54c8 4520 d34f d5ce c420 a257 d5c8 a2bf - -00:16:11;27 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 91b9 91b9 91b9 91b9 4368 e9ec 64f2 e56e ba80 9476 9476 91b9 91b9 91ae 91ae a257 a2a1 - -00:16:14;21 942c 942c - -00:16:17;14 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 a257 a2a1 2057 5249 5445 94f4 94f4 91b9 91b9 c120 a257 a220 5749 54c8 20cd 45a1 - -00:16:18;29 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 ce4f 572c 2057 4520 ce45 45c4 20c1 ce20 a2c1 a2a1 - -00:16:22;04 942c 942c - -00:16:25;11 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 5752 4954 4520 c1ce 20a2 c1a2 2057 4954 c820 cd45 ae80 - -00:16:28;00 942f 942f 94ae 94ae 9420 9420 94d0 94d0 5b20 c761 7370 205d 9470 9470 4954 a7d3 2057 4f52 cb49 cec7 a180 - -00:16:29;20 942c 942c - -00:16:33;01 942f 942f 94ae 94ae 9420 9420 9470 9470 4c45 54a7 d320 cb45 45d0 20c7 4f49 cec7 a180 - -00:16:34;21 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 91b9 91b9 57c8 c154 204c 4554 5445 5220 cdc1 cb45 d380 94f2 94f2 54c8 4520 d34f d5ce c420 a254 d5c8 ad54 d5c8 ad54 d5c8 a2bf - -00:16:36;12 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 91b9 91b9 91b9 91b9 4368 e9ec 64f2 e56e ba80 9476 9476 91b9 91b9 91ae 91ae a254 a2a1 - -00:16:39;20 942c 942c - -00:16:42;24 942f 942f 94ae 94ae 9420 9420 94f2 94f2 a254 a2a1 204c 4554 a7d3 2057 5249 5445 20c1 20a2 54a2 a180 - -00:16:44;02 942f 942f 94ae 94ae 9420 9420 9470 9470 c752 45c1 54a1 - -00:16:47;12 942c 942c - -00:16:50;20 942f 942f 94ae 94ae 9420 9420 94f2 94f2 5457 4f20 cd4f 5245 204c 4554 5445 52d3 2054 4f20 c74f ae80 - -00:16:52;10 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 54c8 4520 a245 a220 c1ce c420 54c8 4520 a252 a280 - -00:16:54;03 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 91b9 91b9 cdc1 cb45 2054 c845 20a2 4552 52a2 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 d34f d5ce c420 49ce 20a2 57c1 5445 52a2 ae80 - -00:16:55;17 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 5752 4954 4520 c1ce 20a2 45a2 2057 4954 c820 cd45 ae80 - -00:16:58;10 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 91b9 91b9 91b9 91b9 ce4f 5720 5752 4954 4580 94f4 94f4 54c8 4520 a252 a220 5749 54c8 20cd 45ae - -00:17:00;10 942c 942c - -00:17:03;20 942f 942f 94ae 94ae 9420 9420 9470 9470 d052 45d3 544f a180 - -00:17:05;23 942c 942c - -00:17:18;21 942f 942f 94ae 94ae 9420 9420 947c 947c c84f 4f52 c1d9 a180 - -00:17:21;00 942c 942c - -00:17:22;07 942f 942f 94ae 94ae 9420 9420 947a 947a 91b9 91b9 5b20 c7e9 6767 ece5 7320 5d80 - -00:17:23;26 942f 942f 94ae 94ae 9420 9420 1370 1370 5b20 c761 7370 205d 94d0 94d0 d3d0 4543 54c1 43d5 4cc1 5280 9470 9470 d3d0 454c 4c49 cec7 a180 - -00:17:25;05 942f 942f 94ae 94ae 9420 9420 94d0 94d0 5745 20d3 d045 4c4c 45c4 9470 9470 a257 c154 4552 a280 - -00:17:27;25 942f 942f 94ae 94ae 9420 9420 94d0 94d0 c1ce c420 54d5 52ce 45c4 2054 c845 20c7 4f4c c480 9470 9470 c2c1 43cb 2054 4f20 57c1 5445 52ae - -00:17:29;23 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 4c45 54a7 d320 54c1 cb45 20c1 20c2 4f57 ae80 - -00:17:33;13 942f 942f 94ae 94ae 9420 9420 94d0 94d0 4920 c8c1 d645 9470 9470 cdd9 2057 c154 4552 20c2 c143 cbae - -00:17:35;23 942c 942c - -00:17:38;08 942f 942f 94ae 94ae 9420 9420 94d0 94d0 ce4f 5720 5745 2043 c1ce 9470 9470 d357 49cd 20c1 c7c1 49ce a180 - -00:17:40;08 942f 942f 94ae 94ae 9420 9420 94dc 94dc c2ef f468 ba80 947c 947c 4fc8 2c20 ce4f ae80 - -00:17:42;12 942f 942f 94ae 94ae 9420 9420 94d6 94d6 91b9 91b9 91b9 91b9 91b9 91b9 d94f d520 cd49 c7c8 5420 54d5 52ce 2049 5480 9476 9476 91b9 91b9 91b9 91b9 91b9 91b9 c2c1 43cb 2049 ce54 4f20 c74f 4cc4 a180 - -00:17:44;04 942f 942f 94ae 94ae 9420 9420 94d0 94d0 5745 4c4c 2c20 4920 c44f 9470 9470 4c49 cb45 20c7 4f4c c4ae aeae - -00:17:46;16 942c 942c - -00:17:47;29 942f 942f 94ae 94ae 9420 9420 9470 9470 d3c1 d92c 2057 c84f a7d3 20c8 d5ce c752 d9bf - -00:17:51;12 942f 942f 94ae 94ae 9420 9420 94d0 94d0 d5c8 2c20 4c45 54a7 d320 c74f 9470 9470 c745 5420 d34f cd45 2046 4f4f c4a1 - -00:17:53;23 942f 942f 94ae 94ae 9420 9420 1370 1370 c2ef f468 ba80 94d0 94d0 d9d5 cda1 2057 45a7 5245 9470 9470 d354 c152 d649 cec7 a180 - -00:17:55;23 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:17:58;10 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 5745 a7c4 20c2 4554 5445 5280 94f4 94f4 91b9 91b9 464f 4c4c 4f57 20cd 49c4 c1d3 ae80 - -00:18:00;27 942f 942f 94ae 94ae 9420 9420 9476 9476 434f cd45 204f cea1 - -00:18:02;25 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:18:04;03 942c 942c - -00:18:09;00 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 d94f d520 d345 4520 cd4f 5245 94f4 94f4 91b9 91b9 d3d5 d045 5220 4c45 5454 4552 d3bf - -00:18:10;22 942c 942c - -00:18:11;19 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 57c8 4943 c820 4c45 5454 4552 d3bf - -00:18:13;29 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 91b9 91b9 91b9 91b9 4368 e9ec 64f2 e56e ba80 94f4 94f4 91ae 91ae a2c1 a2a1 20a2 4ca2 a120 a2d5 a2a1 - -00:18:15;27 942c 942c - -00:18:18;10 942f 942f 94ae 94ae 9420 9420 94f2 94f2 4fc8 2c20 d945 c1c8 a120 a2c1 a22c 20a2 4ca2 2c20 a2d5 a2ae - -00:18:22;00 942f 942f 94ae 94ae 9420 9420 9452 9452 ce4f 5720 5745 20ce 4545 c420 544f 20d0 d554 2054 c845 cd80 94f2 94f2 49ce 204f d552 20d3 d5d0 4552 20c4 d5d0 4552 aeae ae80 - -00:18:25;21 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 91b9 91b9 434f cdd0 d554 4552 a180 - -00:18:29;18 942c 942c - -00:18:30;15 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 54c8 5245 4520 cd4f 5245 94f4 94f4 91b9 91b9 d3d5 d045 5220 4c45 5454 4552 d32c - -00:18:32;04 942c 942c - -00:18:37;10 942f 942f 94ae 94ae 9420 9420 9452 9452 c1ce c420 54c8 45ce 2057 45a7 4c4c 20c7 4554 2080 94f2 94f2 4fd5 5220 d3d5 d045 5220 d354 4f52 d920 c1ce d357 4552 a180 - -00:18:39;01 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 5249 c7c8 5420 4fce 2c20 5245 c1c4 4552 d3a1 - -00:18:43;00 942c 942c - -00:18:44;29 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:18:46;15 942f 942f 94ae 94ae 9420 9420 9458 9458 c1c8 2c20 c449 cece 4552 94f8 94f8 5749 54c8 2046 5249 45ce c4d3 ae80 - -00:18:51;19 942f 942f 94ae 94ae 9420 9420 94f8 94f8 c2d5 542c 20d5 c8ae aeae - -00:18:54;16 942f 942f 94ae 94ae 9420 9420 1376 1376 91b9 91b9 91b9 91b9 d94f d520 cbce 4f57 2057 c8c1 5480 94d6 94d6 91b9 91b9 91b9 91b9 574f d54c c420 c245 20c2 4554 5445 5280 9476 9476 91b9 91b9 91b9 91b9 54c8 c1ce 2054 c849 d320 464f 4fc4 bf80 - -00:18:56;24 942f 942f 94ae 94ae 9420 9420 94f8 94f8 5b20 c7e9 6767 ece5 205d - -00:19:01;03 942f 942f 94ae 94ae 9420 9420 94d0 94d0 d375 70e5 f220 52e5 6164 e5f2 73ba 94f2 94f2 d5c8 ad4f c8ae - -00:19:02;04 942f 942f 94ae 94ae 9420 9420 9458 9458 c74f 4cc4 2046 4f4f c4a1 94f8 94f8 5b20 4361 e36b ece5 205d - -00:19:03;14 942f 942f 94ae 94ae 9420 9420 94d0 94d0 4f4c c420 d34f d5d0 2c80 9470 9470 c74f 4cc4 20d3 4fd5 d0a1 - -00:19:05;29 942f 942f 94ae 94ae 9420 9420 13f4 13f4 91b9 91b9 91b9 91b9 91b9 91b9 5b20 43ec 616e 6720 5d80 947c 947c 4fc8 a180 - -00:19:08;26 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 91b9 91b9 4f4c c420 54d5 52cb 45d9 2c80 94f4 94f4 91b9 91b9 91b9 91b9 c74f 4cc4 2054 d552 cb45 d9a1 - -00:19:10;09 942c 942c - -00:19:11;24 942f 942f 94ae 94ae 9420 9420 13f4 13f4 91b9 91b9 91b9 91b9 91b9 91b9 5b20 43ec 756e 6b20 5d80 947c 947c 4fd5 43c8 a180 - -00:19:15;15 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 d34f 2c20 4652 4945 cec4 d32c - -00:19:17;03 942c 942c - -00:19:18;02 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 c44f 20d9 4fd5 204c 49cb 4580 94f4 94f4 91b9 91b9 cdd9 20c7 4f4c c420 464f 4fc4 bf80 - -00:19:19;20 942f 942f 94ae 94ae 9420 9420 94d6 94d6 46f2 e9e5 6e64 73ba 94f4 94f4 91b9 91b9 ce4f 2c20 5745 20c4 4fce a754 a180 - -00:19:22;17 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 5745 2043 c1ce a754 2045 c154 2046 4f4f c480 94f2 94f2 91b9 91b9 91b9 91b9 54c8 c154 a7d3 20cd c1c4 4520 4f46 20c7 4f4c c4a1 - -00:19:24;05 942f 942f 94ae 94ae 9420 9420 9470 9470 46ad 4652 4945 cec4 d32c 2057 c149 54a1 - -00:19:27;04 942f 942f 94ae 94ae 9420 9420 1370 1370 5745 20c8 c1d6 45ce a754 94d0 94d0 45d6 45ce 2046 49ce 49d3 c845 c480 9470 9470 4fd5 5220 c74f 4cc4 20c4 49ce ce45 52a1 - -00:19:28;27 942f 942f 94ae 94ae 9420 9420 94dc 94dc 46f2 e9e5 6e64 73ba 947c 947c c74f 4fc4 c2d9 45a1 - -00:19:31;27 942f 942f 94ae 94ae 9420 9420 9470 9470 4fc8 2c20 c44f cea7 5420 c74f a180 - -00:19:33;13 942f 942f 94ae 94ae 9420 9420 94d0 94d0 4f4c c420 4652 4945 cec4 d32c 9470 9470 c74f 4cc4 2046 5249 45ce c4d3 a180 - -00:19:35;00 942f 942f 94ae 94ae 9420 9420 9470 9470 d5c8 2c20 c845 4c4c 4fbf - -00:19:38;19 942c 942c - -00:19:39;17 942f 942f 94ae 94ae 9420 9420 9470 9470 c74f 4cc4 2046 5249 45ce c4bf - -00:19:41;09 942f 942f 94ae 94ae 9420 9420 9470 9470 c84f 4f2c 20c8 c1c8 a180 - -00:19:43;02 942f 942f 94ae 94ae 9420 9420 9470 9470 c849 c7c8 ad46 49d6 45d3 bf80 - -00:19:44;07 942f 942f 94ae 94ae 9420 9420 9470 9470 4fc8 20ce 4fa1 - -00:19:45;25 942f 942f 94ae 94ae 9420 9420 94d0 94d0 4920 43c1 cea7 5420 54c1 4ccb 20c1 cec4 20d0 4cc1 d980 9470 9470 5749 54c8 20cd d920 c74f 4cc4 2046 5249 45ce c4d3 ae80 - -00:19:47;25 942f 942f 94ae 94ae 9420 9420 94d0 94d0 cdc1 d9c2 4520 49a7 4c4c 204a d5d3 5480 9470 9470 c8c1 d645 20c1 204c 4954 544c 4520 d3ce c143 cbae - -00:19:51;19 942f 942f 94ae 94ae 9420 9420 13f4 13f4 91b9 91b9 91b9 91b9 91b9 91b9 5b20 43ec 756e 6b20 5d80 94f2 94f2 c1c8 a180 - -00:19:54;20 942f 942f 94ae 94ae 9420 9420 94d0 94d0 4920 43c1 cea7 5420 45c1 5480 9470 9470 cdd9 20c7 4f4c c420 464f 4fc4 a180 - -00:19:56;08 942f 942f 94ae 94ae 9420 9420 94d0 94d0 4920 c44f cea7 5420 57c1 ce54 9470 9470 c14c 4c20 54c8 49d3 20c7 4f4c c4ae - -00:19:59;18 942f 942f 94ae 94ae 9420 9420 94d0 94d0 c2d5 5420 c14c c1d3 2c80 9470 9470 4954 2049 d320 cdd9 20d3 544f 52d9 ae80 - -00:20:03;24 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 c2d5 5420 4954 a7d3 20ce 4f54 2054 52d5 45ae - -00:20:07;00 942c 942c - -00:20:11;21 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 57c8 c154 2043 c1ce 2049 20c4 4fbf - -00:20:14;02 942f 942f 94ae 94ae 9420 9420 94f2 94f2 d3d5 d045 5220 57c8 d920 544f 2054 c845 2052 45d3 43d5 45a1 - -00:20:15;29 942c 942c - -00:20:17;14 942f 942f 94ae 94ae 9420 9420 94f2 94f2 5749 54c8 2054 c845 20d0 4f57 4552 2054 4f20 5245 c1c4 2c80 - -00:20:20;00 942f 942f 94ae 94ae 9420 9420 9452 9452 4920 43c1 ce20 43c8 c1ce c745 2054 c849 d320 d354 4f52 d980 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 c1ce c420 d3c1 d645 2054 c845 20c4 c1d9 a180 - -00:20:21;23 942f 942f 94ae 94ae 9420 9420 91d0 91d0 4c45 54a7 d320 43c8 c1ce c745 9170 9170 54c8 4520 574f 52c4 20a2 cd4f 5245 a280 - -00:20:24;25 942c 942c - -00:20:27;07 942f 942f 94ae 94ae 9420 9420 91d0 91d0 49ce 2054 c849 d320 d345 ce54 45ce 4345 ae80 - -00:20:28;14 942f 942f 94ae 94ae 9420 9420 91d0 91d0 daad dac1 d0a1 - -00:20:29;23 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 57c8 d920 5752 4954 4552 2c20 5752 4954 45a1 - -00:20:31;08 942c 942c - -00:20:33;17 942f 942f 94ae 94ae 9420 9420 9452 9452 d3d5 d045 5220 5245 c1c4 4552 d32c 2057 c8c1 5420 49d3 94f2 94f2 54c8 4520 4fd0 d04f d349 5445 204f 4620 a2cd 4f52 45a2 bf80 - -00:20:35;20 942c 942c - -00:20:37;00 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 4c45 54a7 d320 5452 d920 a24c 45d3 d3a2 ae80 - -00:20:40;09 942c 942c - -00:20:47;18 942f 942f 94ae 94ae 9420 9420 94f2 94f2 57c8 4552 45a7 d320 54c8 4520 574f 52c4 20a2 4c45 d3d3 a2bf - -00:20:50;16 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 4954 20d3 54c1 5254 d320 5749 54c8 20c1 ce20 a24c a2ae - -00:20:52;29 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 91b9 91b9 91b9 91b9 2043 68e9 ec64 f2e5 6eba 94f4 94f4 91b9 91b9 91b9 91b9 91b9 91b9 91ae 91ae 54c8 4552 45a1 - -00:20:54;12 942c 942c - -00:20:57;02 942f 942f 94ae 94ae 9420 9420 9476 9476 91b9 91b9 54c8 4552 45a1 - -00:20:59;18 942f 942f 94ae 94ae 9420 9420 91d0 91d0 daad dac1 d0a1 - -00:21:01;07 942c 942c - -00:21:03;03 942f 942f 94ae 94ae 9420 9420 91d0 91d0 4c45 54a7 d320 5245 c1c4 2049 5420 c1ce c480 9170 9170 d345 4520 57c8 c154 20c8 c1d0 d045 ced3 ae80 - -00:21:05;07 942f 942f 94ae 94ae 9420 9420 91dc 91dc 46f2 e9e5 6e64 73ba 917c 917c cd49 c4c1 d3a1 - -00:21:07;09 942c 942c - -00:21:15;02 942f 942f 94ae 94ae 9420 9420 94d6 94d6 5b20 c761 7370 205d 9476 9476 4652 4945 cec4 d3a1 - -00:21:17;10 942f 942f 94ae 94ae 9420 9420 9476 9476 91b9 91b9 464f 4fc4 a180 - -00:21:19;10 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 ce4f 5720 4920 c8c1 d645 204c 45d3 d320 c74f 4cc4 2c80 - -00:21:20;21 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 c1ce c420 4920 4c49 cb45 2049 54a1 - -00:21:22;24 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 91b9 91b9 5b20 4c61 7567 6820 5d80 - -00:21:26;03 942f 942f 94ae 94ae 9420 9420 91d0 91d0 c449 c420 4c45 d3d3 20c7 4f4c c480 9170 9170 c845 4cd0 20cb 49ce c720 cd49 c4c1 d3bf - -00:21:27;03 942f 942f 94ae 94ae 9420 9420 9154 9154 91b9 91b9 91b9 91b9 91b9 91b9 4368 e9ec 64f2 e56e ba80 9176 9176 91b9 91b9 91ae 91ae d945 d3a1 - -00:21:30;26 942c 942c - -00:21:32;05 942f 942f 94ae 94ae 9420 9420 91d0 91d0 d945 d3a1 20d3 d5d0 4552 204a 4fc2 2c80 9170 9170 d3d5 d045 5220 5245 c1c4 4552 d3ae - -00:21:33;07 942f 942f 94ae 94ae 9420 9420 91d0 91d0 5745 2043 c8c1 cec7 45c4 2054 c845 20d3 544f 52d9 - -00:21:36;15 942f 942f 94ae 94ae 9420 9420 91d0 91d0 c1ce c420 cb49 cec7 20cd 49c4 c1d3 9170 9170 c8c1 d320 4c45 d3d3 20c7 4f4c c4a1 - -00:21:37;23 942f 942f 94ae 94ae 9420 9420 94d0 94d0 ce4f 5720 4920 43c1 ce20 45ce 4a4f d980 9470 9470 45d6 4552 d954 c849 cec7 - -00:21:40;17 942f 942f 94ae 94ae 9420 9420 94d0 94d0 54c8 4520 57c1 d920 4980 9470 9470 c449 c420 c245 464f 5245 ae80 - -00:21:42;28 942f 942f 94ae 94ae 9420 9420 94d0 94d0 d945 d320 49ce c445 45c4 2c80 9470 9470 4920 c1cd 2054 c8c1 cecb 46d5 4c80 - -00:21:44;18 942f 942f 94ae 94ae 9420 9420 94d0 94d0 464f 5220 cdd9 204f ce45 9470 9470 d049 4543 4520 4f46 20c7 4f4c c4ae - -00:21:47;10 942f 942f 94ae 94ae 9420 9420 9476 9476 4954 a7d3 20d3 d045 4349 c14c ae80 - -00:21:49;03 942f 942f 94ae 94ae 9420 9420 9476 9476 c1ce c420 4920 4c49 cb45 2049 54a1 - -00:21:50;23 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 91b9 91b9 5b20 4368 e5e5 f273 205d - -00:21:53;02 942f 942f 94ae 94ae 9420 9420 94d0 94d0 ce4f 57ae aeae 9470 9470 4c45 54a7 d320 45c1 54a1 - -00:21:54;19 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:21:57;10 942c 942c - -00:22:02;23 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 d94f d520 d345 4520 d3d5 d045 5220 4c45 5454 4552 d3bf - -00:22:04;19 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 57c8 4943 c820 4fce 45d3 bf80 - -00:22:06;18 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 91b9 91b9 91b9 91b9 4368 e9ec 64f2 e56e ba80 94f4 94f4 91ae 91ae a254 a2a1 20a2 cba2 a120 a246 a2a1 - -00:22:07;24 942c 942c - -00:22:10;27 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 a254 a22c 20a2 cba2 20c1 cec4 20a2 46a2 bf80 - -00:22:15;06 942f 942f 94ae 94ae 9420 9420 9476 9476 4fc8 20d9 45c1 c8a1 - -00:22:17;15 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 91b9 91b9 4c45 54a7 d320 d0d5 5420 54c8 45cd 2049 ce80 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 4fd5 5220 d3d5 d045 5220 c4d5 d045 52ae aeae - -00:22:19;04 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 91b9 91b9 434f cdd0 d554 4552 a180 - -00:22:22;09 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 91b9 91b9 5745 2046 4fd5 cec4 20c1 4c4c 204f 4680 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 4fd5 5220 d3d5 d045 5220 4c45 5454 4552 d3ae - -00:22:24;22 942c 942c - -00:22:28;12 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 ce4f 5720 5745 2043 c1ce 20c7 4554 94f2 94f2 4fd5 5220 d3d5 d045 5220 d354 4f52 d920 c1ce d357 4552 a180 - -00:22:30;29 942f 942f 94ae 94ae 9420 9420 13f8 13f8 cde9 6461 7320 2620 e6f2 e9e5 6e64 73ba 9458 9458 c74f 4fc4 c2d9 452c 94f8 94f8 d3d5 d045 5220 5245 c1c4 4552 d3ae - -00:22:35;20 942c 942c - -00:22:40;02 942f 942f 94ae 94ae 9420 9420 1370 1370 d375 70e5 f220 52e5 6164 e5f2 73ba 94d0 94d0 c74f 4fc4 c2d9 452c 20cb 49ce c720 cd49 c4c1 d3a1 9470 9470 c74f 4fc4 c2d9 452c 2046 5249 45ce c4d3 a180 - -00:22:41;28 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 91b9 91b9 91b9 91b9 434f cd45 20c2 c143 cb80 94f4 94f4 91b9 91b9 91b9 91b9 91b9 91b9 c1ce d920 5449 cd45 a180 - -00:22:45;05 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 49a7 c420 4c49 cb45 2054 c8c1 54a1 - -00:22:46;28 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 57c8 d9ad 464c d945 52d3 2c80 - -00:22:49;08 942c 942c - -00:22:52;05 942f 942f 94ae 94ae 9420 9420 94d6 94d6 c2c1 43cb 2054 4f80 94f4 94f4 91b9 91b9 54c8 4520 c24f 4fcb 2043 4cd5 c2a1 - -00:22:54;18 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:22:56;17 942f 942f 94ae 94ae 9420 9420 9452 9452 9137 9137 2057 4520 464f d5ce c420 54c8 4580 94f4 94f4 d3d5 d045 5220 d354 4f52 d920 c1ce d357 4552 2080 9137 9137 - -00:22:59;10 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 9137 9137 2057 4954 c820 d3d5 d045 5220 57c8 d920 9137 9137 - -00:23:02;21 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:23:04;17 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 5b20 45ec e5e3 f4f2 ef6e e9e3 2062 e5e5 7073 205d - -00:23:15;14 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 d3d5 d045 5220 c4d5 d045 5220 434f cdd0 d554 4552 2c80 - -00:23:16;25 942c 942c - -00:23:17;24 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 91b9 91b9 c749 d645 20d5 d320 4fd5 5280 94f2 94f2 91b9 91b9 91b9 91b9 d3d5 d045 5220 d354 4f52 d920 c1ce d357 4552 a180 - -00:23:20;07 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:23:22;23 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 5245 c1c4 2057 4954 c820 cd45 ae80 - -00:23:29;13 942c 942c - -00:23:30;18 942f 942f 94ae 94ae 9420 9420 9454 9454 54c8 4520 d3d5 d045 5220 d354 4f52 d980 94f4 94f4 c1ce d357 4552 2049 d3ae aeae - -00:23:31;28 942c 942c - -00:23:42;10 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 5b20 54f2 e975 6d70 6861 6ef4 2080 9137 9137 9137 9137 9137 9137 205d - -00:23:44;21 942c 942c - -00:23:46;01 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 c2d5 54ae aeae 2057 c8d9 bf80 - -00:23:48;03 942c 942c - -00:23:49;28 942f 942f 94ae 94ae 9420 9420 91d6 91d6 91b9 91b9 91b9 91b9 52e5 64ba 91f2 91f2 91b9 91b9 91b9 91b9 91b9 91b9 c245 43c1 d5d3 4520 cb49 cec7 20cd 49c4 c1d3 - -00:23:51;22 942f 942f 94ae 94ae 9420 9420 9152 9152 5245 c14c 49da 45c4 20c8 4520 c449 c4ce a754 20ce 4545 c480 91f2 91f2 c120 57c8 4f4c 4520 cb49 cec7 c44f cd20 4f46 20c7 4f4c c480 - -00:23:53;14 942f 942f 94ae 94ae 9420 9420 9154 9154 91b9 91b9 91b9 91b9 544f 20c2 4520 c8c1 d0d0 d9ae - -00:23:56;18 942f 942f 94ae 94ae 9420 9420 9154 9154 c845 2057 c1d3 2054 c8c1 cecb 46d5 4c80 - -00:23:57;20 942f 942f 94ae 94ae 9420 9420 9152 9152 91b9 91b9 91b9 91b9 464f 5220 c849 d320 4fce 4520 d3d0 4543 49c1 4c80 91f2 91f2 91b9 91b9 91b9 91b9 d049 4543 4520 4f46 20c7 4f4c c4ae - -00:23:58;27 942f 942f 94ae 94ae 9420 9420 94da 94da d34f 20cd d980 947a 947a 51d5 45d3 5449 4fce 2049 d3ba - -00:24:01;06 942f 942f 94ae 94ae 9420 9420 13f8 13f8 91b9 91b9 91b9 91b9 57c8 c154 20d3 c84f d54c c480 9458 9458 91b9 91b9 91b9 91b9 4920 c44f 2049 4620 4920 57c1 ce54 94f8 94f8 91b9 91b9 91b9 91b9 cd4f 5245 2054 4fd9 2043 c152 d3bf - -00:24:04;00 942f 942f 94ae 94ae 9420 9420 94d0 94d0 c1ce c420 54c8 4580 9470 9470 c1ce d357 4552 2049 d3ae aeae - -00:24:08;09 942f 942f 94ae 94ae 9420 9420 94d6 94d6 91b9 91b9 91b9 91b9 c1ec ecba 94f4 94f4 91b9 91b9 91b9 91b9 91b9 91b9 54c8 c1ce cb46 d54c a180 - -00:24:10;05 942f 942f 94ae 94ae 9420 9420 9476 9476 91b9 91b9 91b9 91b9 4fc8 a180 - -00:24:12;04 942c 942c - -00:24:13;03 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 4920 d3c8 4fd5 4cc4 20c2 4520 54c8 c1ce cb46 d54c 94f2 94f2 91b9 91b9 91b9 91b9 464f 5220 cdd9 204f ce45 2054 4fd9 2043 c152 ae80 - -00:24:14;12 942f 942f 94ae 94ae 9420 9420 94f4 94f4 4920 5245 c14c 4cd9 20d3 c84f d54c c4ae - -00:24:17;05 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 434f cd45 204f ce2c 204c 4554 a7d3 20c7 4fa1 - -00:24:18;20 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:24:21;00 942f 942f 94ae 94ae 9420 9420 94da 94da c845 d9a1 2057 c154 43c8 94f8 94f8 91b9 91b9 cdd9 2043 c152 20c4 4f20 54c8 49d3 a180 - -00:24:29;05 942f 942f 94ae 94ae 9420 9420 94f8 94f8 91b9 91b9 91b9 91b9 91b9 91b9 d652 4f4f cd2c 20d6 524f 4fcd a180 - -00:24:32;20 942f 942f 94ae 94ae 9420 9420 13d6 13d6 c157 45d3 4fcd 452c 1376 1376 4c4f 4fcb 20c1 5420 4954 20c7 4fa1 9470 9470 4fc8 2c20 4c4f 4fcb 20c1 5420 54c8 c154 a180 - -00:24:34;12 942f 942f 94ae 94ae 9420 9420 947a 947a 5b20 c7e9 6767 ece9 6e67 205d - -00:24:36;24 942f 942f 94ae 94ae 9420 9420 94d0 94d0 4920 c7d5 45d3 d320 4fce 4520 43c1 5220 43c1 ce80 9470 9470 d354 494c 4c20 c245 20d0 5245 5454 d920 46d5 ceae - -00:24:38;26 942c 942c - -00:24:39;25 942f 942f 94ae 94ae 9420 9420 94d0 94d0 d94f d520 5245 c14c 4cd9 20c4 4fce a754 9470 9470 57c1 ce54 20cd 4f52 452c 20c8 d5c8 bf80 - -00:24:41;22 942f 942f 94ae 94ae 9420 9420 9458 9458 91b9 91b9 91b9 91b9 d94f d520 cbce 4f57 2057 c8c1 54bf 94f8 94f8 91b9 91b9 91b9 91b9 4920 c44f cea7 54a1 - -00:24:44;07 942f 942f 94ae 94ae 9420 9420 13f8 13f8 91b9 91b9 49a7 cd20 54c8 c1ce cb46 d54c 9458 9458 91b9 91b9 464f 5220 54c8 4520 4fce 4580 94f8 94f8 91b9 91b9 544f d920 43c1 5220 4920 c8c1 d645 ae80 - -00:24:46;13 942f 942f 94ae 94ae 9420 9420 94da 94da 91b9 91b9 a743 c1d5 d345 2049 54a7 d380 947a 947a 91b9 91b9 d3d0 4543 49c1 4cae - -00:24:49;12 942f 942f 94ae 94ae 9420 9420 9470 9470 c849 d02c 20c8 49d0 2c20 c84f 4f52 c1d9 a180 - -00:24:51;03 942f 942f 94ae 94ae 9420 9420 94d0 94d0 54c8 4520 d3d5 d045 5220 5245 c1c4 4552 d380 9470 9470 d3c1 d645 2054 c845 20c4 c1d9 a180 - -00:24:53;02 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:24:56;04 942f 942f 94ae 94ae 9420 9420 13f2 13f2 91b9 91b9 91b9 91b9 9137 9137 20c8 49d0 2c20 c849 d02c 20c8 4f4f 52c1 d920 9137 9137 94f4 94f4 91b9 91b9 91b9 91b9 9137 9137 91ae 91ae c84f 4f52 c1d9 a180 9120 9120 9137 9137 - -00:24:59;22 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 9137 9137 2054 c845 20d3 d5d0 4552 2052 45c1 c445 52d3 94f4 94f4 91b9 91b9 d3c1 d645 2054 c845 20c4 c1d9 2080 9137 9137 - -00:25:02;12 942f 942f 94ae 94ae 9420 9420 9152 9152 9137 9137 2057 4520 43c8 c1ce c745 c420 54c8 4520 d354 4f52 d920 9137 9137 - -00:25:05;29 942c 942c - -00:25:06;27 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 91b9 91b9 9137 9137 2057 4520 d34f 4cd6 45c4 94f4 94f4 91b9 91b9 91b9 91b9 91b9 91b9 54c8 4520 d052 4fc2 4c45 cd20 9137 9137 - -00:25:08;18 942f 942f 94ae 94ae 9420 9420 94d0 94d0 91b9 91b9 91b9 91b9 91b9 91b9 9137 9137 2057 4520 574f 52cb 45c4 2054 4fc7 4554 c845 5280 94f2 94f2 91b9 91b9 91b9 91b9 91b9 91b9 d34f 20c8 49d0 2c20 c849 d02c 20c8 4f4f 52c1 d9a1 2080 9137 9137 - -00:25:10;19 942f 942f 94ae 94ae 9420 9420 13f2 13f2 91b9 91b9 91b9 91b9 9137 9137 20c8 49d0 2c20 c849 d02c 20c8 4f4f 52c1 d920 9137 9137 94f4 94f4 91b9 91b9 91b9 91b9 9137 9137 91ae 91ae c84f 4f52 c1d9 a180 9120 9120 9137 9137 - -00:25:14;17 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 9137 9137 2054 c845 20d3 d5d0 4552 2052 45c1 c445 52d3 94f4 94f4 91b9 91b9 d3c1 d645 2054 c845 20c4 c1d9 2080 9137 9137 - -00:25:17;08 942f 942f 94ae 94ae 9420 9420 13f2 13f2 91b9 91b9 9137 9137 20c8 49d0 2c20 c849 d02c 20c8 4f4f 52c1 d920 9137 9137 94f4 94f4 91b9 91b9 9137 9137 91ae 91ae c84f 4f52 c1d9 a180 9120 9120 9137 9137 - -00:25:20;09 942c 942c - -00:25:21;15 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 9137 9137 2054 c845 20d3 d5d0 4552 2052 45c1 c445 52d3 94f4 94f4 d3c1 d645 2054 c845 20c4 c1d9 a120 9137 9137 - -00:25:24;16 942f 942f 94ae 94ae 9420 9420 9476 9476 5b20 9137 9137 9137 9137 9137 9137 205d - -00:25:28;07 942c 942c - -00:25:29;15 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 9137 9137 2049 204c 4fd6 4520 544f 20d3 d045 4c4c 2080 9137 9137 - -00:25:30;13 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 91b9 91b9 91b9 91b9 9137 9137 2049 2052 45c1 4c4c d980 94f4 94f4 4c4f d645 2054 4f20 d3d0 454c 4c20 9137 9137 - -00:25:33;11 942c 942c - -00:25:36;22 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 9137 9137 91ae 91ae 4920 5245 c14c 4cd9 94f4 94f4 91b9 91b9 91b9 91b9 91ae 91ae 4c4f d645 2054 4f20 d3d0 454c 4c80 9120 9120 9137 9137 - -00:25:39;04 942c 942c - -00:25:41;18 942f 942f 94ae 94ae 9420 9420 9452 9452 9137 9137 2057 c8c1 5420 4c45 5454 4552 20cd c1cb 45d3 94f4 94f4 91b9 91b9 c120 a2c2 d5c8 a220 d34f d5ce c4bf 2080 9137 9137 - -00:25:42;24 942f 942f 94ae 94ae 9420 9420 9452 9452 9137 9137 2057 c8c1 5420 4c45 5454 4552 20cd c1cb 45d3 94f4 94f4 91b9 91b9 c1ce 20a2 45c8 a220 d34f d5ce c4bf 2080 9137 9137 - -00:25:44;22 942c 942c - -00:25:45;26 942f 942f 94ae 94ae 9420 9420 9454 9454 91b9 91b9 9137 9137 2057 c8c1 5420 4c45 5454 4552 94f2 94f2 91b9 91b9 cdc1 cb45 d320 c120 a24c d5c8 a220 d34f d5ce c4bf 2080 9137 9137 - -00:25:47;29 942c 942c - -00:25:49;02 942f 942f 94ae 94ae 9420 9420 9452 9452 9137 9137 2057 c8c1 5420 4c45 5454 4552 20cd c1cb 45d3 94f4 94f4 91b9 91b9 91b9 91b9 c120 a24c d5c8 a220 d34f d5ce c4bf 2080 9137 9137 - -00:25:51;02 942c 942c - -00:25:52;04 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 54c8 c154 a7d3 20a2 4ca2 a180 - -00:25:54;11 942f 942f 94ae 94ae 9420 9420 94d0 94d0 91b9 91b9 9137 9137 20d0 d554 2049 5420 c14c 4c20 544f c745 54c8 4552 94f2 94f2 91b9 91b9 c1ce c420 57c8 c154 20c4 4f45 d320 4954 20d3 d045 4c4c bf20 9137 9137 - -00:25:55;23 942f 942f 94ae 94ae 9420 9420 94f4 94f4 91b9 91b9 91b9 91b9 91b9 91b9 5b20 4368 e96d e573 205d - -00:25:58;21 942c 942c - -00:26:01;13 942f 942f 94ae 94ae 9420 9420 9476 9476 9137 9137 20c2 454c 4c20 9137 9137 - -00:26:03;16 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 9137 9137 2049 204c 4fd6 4520 544f 20d3 d045 4c4c 2080 9137 9137 - -00:26:04;29 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 9137 9137 2049 2052 45c1 4c4c d980 94f4 94f4 91b9 91b9 91b9 91b9 4c4f d645 2054 4f20 d3d0 454c 4c20 9137 9137 - -00:26:07;23 942c 942c - -00:26:11;09 942f 942f 94ae 94ae 9420 9420 9454 9454 9137 9137 91ae 91ae 4920 5245 c14c 4cd9 204c 4fd6 4580 94f4 94f4 91b9 91b9 91b9 91b9 91ae 91ae 544f 20d3 d045 4c4c 9120 9120 9137 9137 - -00:26:13;12 942c 942c - -00:26:16;05 942f 942f 94ae 94ae 9420 9420 94f2 94f2 91b9 91b9 91b9 91b9 9137 9137 2049 204c 4fd6 4520 544f 20d3 d045 4c4c 2080 9137 9137 - -00:26:17;16 942f 942f 94ae 94ae 9420 9420 9452 9452 91b9 91b9 91b9 91b9 9137 9137 2049 2052 45c1 4c4c d980 94f4 94f4 91b9 91b9 91b9 91b9 4c4f d645 2054 4f20 d3d0 454c 4c20 9137 9137 - -00:26:20;06 942c 942c - -00:26:23;26 942f 942f 94ae 94ae 9420 9420 94f2 94f2 9137 9137 2054 c845 5245 a7d3 20d0 5249 ce43 45d3 d320 d045 c120 9137 9137 - -00:26:26;23 942c 942c - -00:26:30;15 942f 942f 94ae 94ae 9420 9420 91d0 91d0 91b9 91b9 91b9 91b9 91b9 91b9 a2d3 d5d0 4552 2057 c8d9 a220 49d3 2046 d5ce c445 c420 c2d9 ba80 - -00:26:35;27 942c 942c +00:00:11:03 942c From e2f98d169bf07ed20b3b224bb903f56ccfd6b3a1 Mon Sep 17 00:00:00 2001 From: OlteanuRares Date: Wed, 10 Jan 2024 11:32:37 +0200 Subject: [PATCH 11/12] update changelog and bump version to 2.2.2.dev --- docs/changelog.rst | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index ce5108ba..698fa116 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,5 +1,10 @@ Changelog --------- +2.2.2 +^^^^^ +- Remove support for Python 3.6 & 3.7 +- Restrict SCC source files to 31 characters per line (32 will throw an exception) + 2.2.1 ^^^^^ - Ignore the substitute character that comes before the extended character in SCC files. diff --git a/setup.py b/setup.py index 64708b0c..1a778c19 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( name='pycaption', - version='2.2.1', + version='2.2.2.dev', description='Closed caption converter', long_description=open(README_PATH).read(), author='Joe Norton', From f4cc9538c03ab58534a4c2d2e2e54031934cbde0 Mon Sep 17 00:00:00 2001 From: OlteanuRares Date: Wed, 10 Jan 2024 11:40:14 +0200 Subject: [PATCH 12/12] remove python 3.7 and add 3.12 to unit tests --- .github/workflows/unit_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 8b3b70f2..b28029a6 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -20,7 +20,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["py37", "py38", "py39", "py310", "py311"] + python-version: ["py38", "py39", "py310", "py311", "py312"] steps: - uses: actions/checkout@v2