diff --git a/athenasub/include/athenasub/interfaces.h b/athenasub/include/athenasub/interfaces.h index 273da412d..ef20d6252 100644 --- a/athenasub/include/athenasub/interfaces.h +++ b/athenasub/include/athenasub/interfaces.h @@ -49,8 +49,6 @@ namespace Athenasub { // Forward references class Range; - class Reader; - class Writer; class ISelection; class IController; class IView; @@ -65,6 +63,8 @@ namespace Athenasub { class ISection; class IDeltaCoder; class IAction; + class IReader; + class IWriter; // Smart pointers @@ -83,6 +83,8 @@ namespace Athenasub { typedef shared_ptr Section; typedef shared_ptr DeltaCoder; typedef shared_ptr Action; + typedef shared_ptr Reader; + typedef shared_ptr Writer; // Const smart pointers @@ -106,7 +108,7 @@ namespace Athenasub { virtual Controller CreateController() = 0; virtual void AddListener(View listener) = 0; - virtual void Save(Writer &output,Format format=Format()) const = 0; + virtual void Save(Writer output,Format format=Format()) const = 0; virtual String GetUndoMessage(const String owner="") const = 0; virtual String GetRedoMessage(const String owner="") const = 0; @@ -121,15 +123,6 @@ namespace Athenasub { }; - // View - class IView { - public: - virtual ~IView() {} - - virtual void OnNotify(Notification notification) = 0; - }; - - // Controller class IController { public: @@ -158,6 +151,15 @@ namespace Athenasub { }; + // View + class IView { + public: + virtual ~IView() {} + + virtual void OnNotify(Notification notification) = 0; + }; + + // Selection class ISelection { public: @@ -308,8 +310,8 @@ namespace Athenasub { public: virtual ~IFormatHandler() {} - virtual void Load(IModel &model,Reader &file) = 0; - virtual void Save(const IModel &model,Writer &file) const = 0; + virtual void Load(IModel &model,Reader file) = 0; + virtual void Save(const IModel &model,Writer file) const = 0; }; @@ -382,6 +384,29 @@ namespace Athenasub { }; + // File reader + class IReader { + public: + virtual ~IReader() {} + + virtual String GetFileName() = 0; + virtual void Rewind() = 0; + + virtual bool HasMoreLines() = 0; + virtual String ReadLineFromFile() = 0; + virtual String GetCurrentEncoding() = 0; + }; + + + // File writer + class IWriter { + public: + virtual ~IWriter() {} + virtual void WriteLineToFile(String line,bool addLineBreak=true) = 0; + virtual void Flush() = 0; + }; + + // Library class ILibAthenaSub { public: diff --git a/athenasub/src/controller.cpp b/athenasub/src/controller.cpp index b10e8080f..f758759b4 100644 --- a/athenasub/src/controller.cpp +++ b/athenasub/src/controller.cpp @@ -63,7 +63,7 @@ ActionList CController::CreateActionList(const String title,const String owner,b // Load a file void CController::LoadFile(const String filename,const String encoding) { - Reader reader(filename,encoding); + Reader reader(new CReader(filename,encoding)); std::vector handlers = FormatManager::GetCompatibleFormatList(reader); size_t len = handlers.size(); bool success = false; @@ -89,7 +89,7 @@ void CController::LoadFile(const String filename,const String encoding) void CController::SaveFile(const String filename,const String encoding) { Format handler = FormatManager::GetFormatFromFilename(filename,true); - Writer writer(filename,encoding); + Writer writer(new CWriter(filename,encoding)); model->Save(writer,handler); } diff --git a/athenasub/src/format_handler.h b/athenasub/src/format_handler.h index 065562c3e..b84bd01af 100644 --- a/athenasub/src/format_handler.h +++ b/athenasub/src/format_handler.h @@ -55,8 +55,8 @@ namespace Athenasub { public: //CFormatHandler(IModel& _model) : model(_model) {} - virtual void Load(IModel &model,Reader &file) = 0; - virtual void Save(const IModel &model,Writer &file) const = 0; + virtual void Load(IModel &model,Reader file) = 0; + virtual void Save(const IModel &model,Writer file) const = 0; }; } diff --git a/athenasub/src/format_manager.cpp b/athenasub/src/format_manager.cpp index 7062d35be..45be13712 100644 --- a/athenasub/src/format_manager.cpp +++ b/athenasub/src/format_manager.cpp @@ -42,9 +42,10 @@ using namespace Athenasub; -//////// -// List +/////////// +// Statics std::vector FormatManager::formats; +bool FormatManager::formatsInitialized = false; //////////////// @@ -66,9 +67,13 @@ void FormatManager::AddFormat(Format format) // Initialize all built-in formats void FormatManager::InitializeFormats() { - AddFormat(Format(new FormatASS())); - AddFormat(Format(new FormatSSA())); - AddFormat(Format(new FormatASS2())); + if (!formatsInitialized) { + AddFormat(Format(new FormatASS())); + AddFormat(Format(new FormatSSA())); + AddFormat(Format(new FormatASS2())); + + formatsInitialized = true; + } } @@ -77,6 +82,7 @@ void FormatManager::InitializeFormats() void FormatManager::ClearFormats() { formats.clear(); + formatsInitialized = false; } @@ -133,14 +139,14 @@ Format FormatManager::GetFormatFromName(const String &name) /////////////////////////////////////////////////////// // Get a list of all formats compatible with this file -std::vector FormatManager::GetCompatibleFormatList(Reader &reader) +std::vector FormatManager::GetCompatibleFormatList(Reader reader) { // Find all compatible formats and store them with their certainty std::vector > results; size_t len = formats.size(); for (size_t i=0;iRewind(); // Check how certain it is that it can read the format float certainty = formats[i]->CanReadFile(reader); @@ -148,7 +154,7 @@ std::vector FormatManager::GetCompatibleFormatList(Reader &reader) // Compare to extension StringArray exts = formats[i]->GetReadExtensions(); for (size_t j=0;jGetFileName().EndsWith(exts[j],false)) { certainty *= 2.0f; break; } @@ -176,6 +182,14 @@ std::vector FormatManager::GetCompatibleFormatList(Reader &reader) } // Reset reader again and return results - reader.Rewind(); + reader->Rewind(); return finalResults; } + + +////////////////////////////////////// +// Same as above, but from a filename +std::vector FormatManager::GetCompatibleFormatList(const String &filename,const String &encoding) +{ + return GetCompatibleFormatList(Reader(new CReader(filename,encoding))); +} diff --git a/athenasub/src/format_manager.h b/athenasub/src/format_manager.h index 1996cf4d0..c729af448 100644 --- a/athenasub/src/format_manager.h +++ b/athenasub/src/format_manager.h @@ -38,11 +38,10 @@ namespace Athenasub { - class Reader; - // Format manager class class FormatManager { private: + static bool formatsInitialized; static std::vector formats; FormatManager() {} @@ -55,7 +54,8 @@ namespace Athenasub { static Format GetFormatByIndex(const int index); static Format GetFormatFromFilename(const String &filename,bool read); static Format GetFormatFromName(const String &name); - static std::vector GetCompatibleFormatList(Reader &reader); + static std::vector GetCompatibleFormatList(Reader reader); + static std::vector GetCompatibleFormatList(const String &filename,const String &encoding=""); }; } diff --git a/athenasub/src/formats/format_ass.cpp b/athenasub/src/formats/format_ass.cpp index c713d18c9..f03d5f7c3 100644 --- a/athenasub/src/formats/format_ass.cpp +++ b/athenasub/src/formats/format_ass.cpp @@ -93,10 +93,8 @@ StringArray FormatASS2::GetWriteExtensions() const ////////////////////////////////// // Check if it can read this file -float FormatASSFamily::CanReadFile(Reader &reader) const +float FormatASSFamily::CanReadFile(Reader &file) const { - shared_ptr file = reader.GetTextReader(); - // Check header if (!file->HasMoreLines()) return 0.0f; String line = file->ReadLineFromFile(); @@ -106,7 +104,7 @@ float FormatASSFamily::CanReadFile(Reader &reader) const float version = 0.0f; float sections = 0.25f; String section = line; - while (file->HasMoreLines()) { + for (int i=0; i < 100 && file->HasMoreLines(); i++) { // Get line line = file->ReadLineFromFile(); line.AsciiMakeLower(); @@ -116,7 +114,7 @@ float FormatASSFamily::CanReadFile(Reader &reader) const // Check version if (section == "[script info]") { - if (line.StartsWith("ScriptType")) { + if (line.StartsWith("scripttype")) { int formatVersion = GetVersion(); String expected = ""; switch (formatVersion) { @@ -158,11 +156,8 @@ FormatHandlerASS::~FormatHandlerASS() /////////////// // Load a file -void FormatHandlerASS::Load(IModel &model,Reader &file) +void FormatHandlerASS::Load(IModel &model,Reader reader) { - // Get text file reader - shared_ptr reader = file.GetTextReader(); - // Variables int version = 1; String curGroup = "-"; @@ -201,11 +196,8 @@ void FormatHandlerASS::Load(IModel &model,Reader &file) ///////////////////// // Save file to disc -void FormatHandlerASS::Save(const IModel& model,Writer &file) const +void FormatHandlerASS::Save(const IModel& model,Writer writer) const { - // Make text file writer - shared_ptr writer = file.GetTextWriter(); - // Set up list of sections to write StringArray sections; sections.push_back("Script Info"); @@ -389,7 +381,7 @@ void FormatHandlerASS::ProcessGroup(String cur,String &curGroup,int &version) { /////////////////////////////// // Write a section to the file -void FormatHandlerASS::WriteSection(shared_ptr writer,ConstSection section) const +void FormatHandlerASS::WriteSection(Writer writer,ConstSection section) const { // Write name String name = section->GetName(); diff --git a/athenasub/src/formats/format_ass.h b/athenasub/src/formats/format_ass.h index bdfe93488..810af883b 100644 --- a/athenasub/src/formats/format_ass.h +++ b/athenasub/src/formats/format_ass.h @@ -55,15 +55,15 @@ namespace Athenasub { Entry MakeEntry(const String &data,Section section,int version); void ProcessGroup(String cur,String &curGroup,int &version); - void WriteSection(shared_ptr writer,ConstSection section) const; + void WriteSection(Writer writer,ConstSection section) const; void MakeValid(IModel &model); public: FormatHandlerASS(int version); ~FormatHandlerASS(); - void Load(IModel &model,Reader &file); - void Save(const IModel &model,Writer &file) const; + void Load(IModel &model,Reader file); + void Save(const IModel &model,Writer file) const; }; // Advanced Substation Alpha format base class diff --git a/athenasub/src/model.cpp b/athenasub/src/model.cpp index 20d56c498..c6c44d46c 100644 --- a/athenasub/src/model.cpp +++ b/athenasub/src/model.cpp @@ -136,7 +136,7 @@ void CModel::Load(Reader &input,const Format _format) ////////////////// // Save subtitles -void CModel::Save(Writer &output,const Format _format) const +void CModel::Save(Writer output,const Format _format) const { // Use another format if (_format && _format != format) { diff --git a/athenasub/src/model.h b/athenasub/src/model.h index e6b264add..e3a2ffd9b 100644 --- a/athenasub/src/model.h +++ b/athenasub/src/model.h @@ -93,7 +93,7 @@ namespace Athenasub { Format GetFormat() const { return format; } void AddListener(View listener); - void Save(Writer &output,Format format=Format()) const; + void Save(Writer output,Format format=Format()) const; ConstSection GetSection(String name) const; ConstSection GetSectionByIndex(size_t index) const; diff --git a/athenasub/src/reader.cpp b/athenasub/src/reader.cpp index 3f297fcc0..890a006b8 100644 --- a/athenasub/src/reader.cpp +++ b/athenasub/src/reader.cpp @@ -40,30 +40,40 @@ using namespace Athenasub; -Reader::Reader(String fn,String encoding) +CReader::CReader(String fn,String encoding) : filename(fn) { stream = shared_ptr(new wxFFileInputStream(filename.GetWxString())); text = TextReader::GetReader(*stream,encoding); } -shared_ptr Athenasub::Reader::GetTextReader() -{ - return text; -} - -Athenasub::String Athenasub::Reader::GetFileName() +String CReader::GetFileName() { return filename; } -Athenasub::Reader::~Reader() +CReader::~CReader() { text = shared_ptr(); stream = shared_ptr(); } -void Reader::Rewind() +void CReader::Rewind() { text->Rewind(); -} \ No newline at end of file +} + +bool CReader::HasMoreLines() +{ + return text->HasMoreLines(); +} + +String CReader::ReadLineFromFile() +{ + return text->ReadLineFromFile(); +} + +String CReader::GetCurrentEncoding() +{ + THROW_ATHENA_EXCEPTION(Exception::TODO); +} diff --git a/athenasub/src/reader.h b/athenasub/src/reader.h index 0579bd57b..62ff3c361 100644 --- a/athenasub/src/reader.h +++ b/athenasub/src/reader.h @@ -44,18 +44,20 @@ class wxFFileInputStream; namespace Athenasub { class TextReader; - class Reader { + class CReader : public IReader { private: shared_ptr text; String filename; shared_ptr stream; public: - Reader(String filename,String encoding=""); - ~Reader(); + CReader(String filename,String encoding=""); + ~CReader(); - shared_ptr GetTextReader(); - String GetFileName(); - void Rewind(); + virtual String GetFileName(); + virtual void Rewind(); + virtual bool HasMoreLines(); + virtual String ReadLineFromFile(); + virtual String GetCurrentEncoding(); }; } diff --git a/athenasub/src/writer.cpp b/athenasub/src/writer.cpp index 95dd288ff..536e571c8 100644 --- a/athenasub/src/writer.cpp +++ b/athenasub/src/writer.cpp @@ -40,21 +40,25 @@ using namespace Athenasub; -Writer::Writer(String filename,String encoding) +CWriter::CWriter(String filename,String encoding) { stream = shared_ptr(new wxFFileOutputStream(filename.GetWxString())); text = TextWriter::GetWriter(*stream,encoding); } -Writer::~Writer() +CWriter::~CWriter() { text = shared_ptr(); stream = shared_ptr(); } - -shared_ptr Writer::GetTextWriter() +void CWriter::WriteLineToFile(String line,bool addLineBreak) { - return text; + text->WriteLineToFile(line,addLineBreak); +} + +void CWriter::Flush() +{ + text->Flush(); } diff --git a/athenasub/src/writer.h b/athenasub/src/writer.h index 15194cfd5..b0293ca0e 100644 --- a/athenasub/src/writer.h +++ b/athenasub/src/writer.h @@ -45,15 +45,16 @@ class wxFFileOutputStream; namespace Athenasub { class TextWriter; - class Writer { + class CWriter : public IWriter { private: shared_ptr text; shared_ptr stream; public: - Writer(String filename,String encoding=""); - ~Writer(); + CWriter(String filename,String encoding=""); + ~CWriter(); - shared_ptr GetTextWriter(); + void WriteLineToFile(String line,bool addLineBreak=true); + void Flush(); }; } diff --git a/unit_test/src/athenasub/test_formats.cpp b/unit_test/src/athenasub/test_formats.cpp new file mode 100644 index 000000000..2f5c0e6d0 --- /dev/null +++ b/unit_test/src/athenasub/test_formats.cpp @@ -0,0 +1,85 @@ +// Copyright (c) 2008, Rodrigo Braz Monteiro +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are met: +// +// * Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// * Neither the name of the Aegisub Group nor the names of its contributors +// may be used to endorse or promote products derived from this software +// without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +// POSSIBILITY OF SUCH DAMAGE. +// +// ----------------------------------------------------------------------------- +// +// AEGISUB +// +// Website: http://aegisub.cellosoft.com +// Contact: mailto:zeratul@cellosoft.com +// + +#include "../suites.h" +#include "../utils.h" +#if ATHENASUB_TEST == 1 + +#include +#include +#include +#include "athenasub/athenasub.h" +#include "format_manager.h" +using namespace Athenasub; + + +class AthenasubFormatsTest : public CppUnit::TestFixture { + CPPUNIT_TEST_SUITE(AthenasubFormatsTest); + CPPUNIT_TEST(testIdentifyFormat); + CPPUNIT_TEST_SUITE_END(); + +private: + String getFormatName(String file) + { + String fileFolder = "test_files/"; + std::vector formats = FormatManager::GetCompatibleFormatList(fileFolder+file,"UTF-8"); + if (formats.size() == 0) return ""; + return formats[0]->GetName(); + } + +public: + void setUp() + { + } + + void tearDown() + { + } + + void testIdentifyFormat() + { + std::vector formats; + CPPUNIT_ASSERT_NO_THROW(FormatManager::InitializeFormats()); + + CPPUNIT_ASSERT(getFormatName("format_ssa.ssa") == "Substation Alpha"); + CPPUNIT_ASSERT(getFormatName("format_ass.ass") == "Advanced Substation Alpha"); + CPPUNIT_ASSERT(getFormatName("format_ass2.ass") == "Advanced Substation Alpha 2"); + //CPPUNIT_ASSERT(getFormatName("format_srt.srt") == "SubRip Text"); + } +}; + +CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(AthenasubFormatsTest,AegisubSuites::athenasub()); + +#endif diff --git a/unit_test/test_files/format_ass.ass b/unit_test/test_files/format_ass.ass new file mode 100644 index 000000000..d831ede7a --- /dev/null +++ b/unit_test/test_files/format_ass.ass @@ -0,0 +1,389 @@ +[Script Info] +; Script generated by Aegisub v2.00 PRE-RELEASE (SVN r886, ArchMageZeratuL) +; http://www.aegisub.net +Title: +Original Script: +ScriptType: v4.00+ +Video Aspect Ratio: 0 +Video Zoom: 8 +Video Position: 11067 +Last Style Storage: evangelion +PlayResX: 704 +PlayResY: 480 +Video File: ..\Shin.Seiki.Evangelion.[KAA].DVD.(h.264-AC3).[05B4E07C]_RC1.mkv +Audio File: ..\Shin.Seiki.Evangelion.[KAA].DVD.(h.264-AC3).[05B4E07C]_RC1_Track2.ac3 + +[V4+ Styles] +Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut, ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, Encoding +Style: eva main,Sui Generis,27,&H00F1E4D3,&H0000FFFF,&H008E4830,&H00000000,0,0,0,0,100,100,0,0,1,2,1,2,18,18,17,0 +Style: eva alternate,Sui Generis,27,&H00C4A377,&H0000FFFF,&H008E4830,&H00000000,0,0,0,0,100,100,0,0,1,2,1,2,18,18,17,0 +Style: eva bg broadcast,Sui Generis,24,&H00C1C1C1,&H0000FFFF,&H008E3230,&H00000000,0,0,0,0,100,100,0,0,1,2,1,8,18,18,17,0 +Style: eva broadcast,Sui Generis,27,&H00C1C1C1,&H0000FFFF,&H008E3230,&H00000000,0,0,0,0,100,100,0,0,1,2,1,2,18,18,17,0 +Style: eva notes,Tw Cen MT,28,&H00FFFFFF,&H0000FFFF,&H00D2D2D2,&H00000000,0,0,0,0,100,100,0,0,1,0,0,9,18,18,17,0 +Style: eva other fo,Lucida Sans,20,&H00FFFFFF,&H0000FFFF,&H00000000,&H00000000,0,0,0,0,100,100,0,0,1,0,0,2,10,10,10,0 +Style: eva titles,Angsana New,80,&H00FFFFFF,&H0000FFFF,&H00000000,&H00000000,-1,0,0,0,100,100,0,0,1,0,0,2,10,10,10,0 + +[Events] +Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text +Dialogue: 0,0:01:30.40,0:01:32.73,eva titles,Comment,0000,0000,0000,,{\fsp-3\pos(352,345)}The year is 2015 A.D. +Dialogue: 0,0:01:55.10,0:01:59.03,eva broadcast,Comment,0000,0000,0000,,As of 12:30 PM today, a special state\nof emergency has been declared +Dialogue: 0,0:01:59.13,0:02:03.26,eva broadcast,Comment,0000,0000,0000,,for the Kanto and Chubu regions\nsurrounding the Tokai district. +Dialogue: 0,0:02:03.77,0:02:07.80,eva broadcast,Comment,0000,0000,0000,,All residents must evacuate to their\ndesignated shelters immediately. +Dialogue: 0,0:02:08.24,0:02:12.55,eva broadcast,Comment,0000,0000,0000,,Repeating: As of 12:30 PM today, +Dialogue: 0,0:02:11.65,0:02:14.07,eva other fo,Comment,0000,0000,0000,,{\pos(488,124)\bord0\shad0\fs30\frz322.539\frx24\fry41}All Lines Stopped +Dialogue: 0,0:02:12.55,0:02:16.17,eva broadcast,Comment,0000,0000,0000,,the Kanto and Chubu regions\nsurrounding the Tokai district +Dialogue: 0,0:02:16.25,0:02:19.31,eva broadcast,Comment,0000,0000,0000,,have been declared to be under\na state of emergency. +Dialogue: 0,0:02:19.39,0:02:20.92,eva broadcast,Comment,0000,0000,0000,,All residents must evacuate... +Dialogue: 0,0:02:20.92,0:02:24.39,eva main,Comment,0000,0000,0000,,Why did I have to lose sight of him now? +Dialogue: 0,0:02:24.39,0:02:26.23,eva main,Comment,0000,0000,0000,,Oh, man! +Dialogue: 0,0:02:26.11,0:02:28.75,eva other fo,Comment,0000,0000,0000,,{\c&H071413&\bord0\shad0\pos(154,432)\frz-5\fs22}Ikari Shinji +Dialogue: 0,0:02:27.26,0:02:29.96,eva main,Comment,0000,0000,0000,,Due to the special emergency, +Dialogue: 0,0:02:30.03,0:02:33.30,eva main,Comment,0000,0000,0000,,all lines are currently unavailable. +Dialogue: 0,0:02:34.74,0:02:35.73,eva main,Comment,0000,0000,0000,,It's no use. +Dialogue: 0,0:02:36.77,0:02:39.07,eva main,Comment,0000,0000,0000,,I shouldn't have come here after all. +Dialogue: 0,0:02:42.84,0:02:45.26,eva main,Comment,0000,0000,0000,,{\fnhomework normal\fs40\shad0\bord1\3a&H80&\c&H21150C&\frz10\3c&HFFFFFF&\4c&HFFFFFF&\pos(160,179)}To Shinji-kun +Dialogue: 0,0:02:42.84,0:02:45.26,eva main,Comment,0000,0000,0000,,{\fnhomework normal\fs40\shad0\bord1\3a&H80&\c&H21150C&\frz10\3c&HFFFFFF&\4c&HFFFFFF&\pos(592,123)}I'll be coming to\N\Nget you, so wait +Dialogue: 0,0:02:42.84,0:02:45.26,eva main,Comment,0000,0000,0000,,{\fnhomework normal\fs40\shad0\bord1\3a&H80&\c&H21150C&\frz10\3c&HFFFFFF&\4c&HFFFFFF&\pos(211,250)}Attention here!! +Dialogue: 0,0:02:42.84,0:02:45.26,eva main,Comment,0000,0000,0000,,{\fnhomework normal\fs40\shad0\bord1\3a&H80&\c&H21150C&\frz10\3c&HFFFFFF&\4c&HFFFFFF&\pos(628,197)}for me.{\fnWebdings}♥ +Dialogue: 0,0:02:43.38,0:02:45.74,eva main,Comment,0000,0000,0000,,Well, I guess we won't be meeting here. +Dialogue: 0,0:02:46.88,0:02:49.48,eva main,Comment,0000,0000,0000,,Can't be helped. I'll go to a shelter. +Dialogue: 0,0:03:14.63,0:03:18.55,eva titles,Comment,0000,0000,0000,,{\fs21\fsp-1\bord0\shad0\c&HE3EDFC&\fnTw Cen MT\pos(612,415)}ESTIMATED PATH +Dialogue: 0,0:03:15.14,0:03:18.60,eva main,Comment,0000,0000,0000,,The unidentified mobile object is still\nadvancing on our position. +Dialogue: 0,0:03:19.38,0:03:22.61,eva main,Comment,0000,0000,0000,,We've got visual confirmation.\NI'm putting it on the main screen. +Dialogue: 0,0:03:24.29,0:03:26.12,eva main,Comment,0000,0000,0000,,It's been fifteen years, hasn't it? +Dialogue: 0,0:03:26.19,0:03:28.31,eva main,Comment,0000,0000,0000,,Yes, there's no doubt. +Dialogue: 0,0:03:29.29,0:03:30.52,eva main,Comment,0000,0000,0000,,It's an Angel. +Dialogue: 0,0:03:30.52,0:03:33.19,eva titles,Comment,0000,0000,0000,,{\pos(476,263)\fs130\fsp-6}Angel Attack +Dialogue: 0,0:03:30.52,0:03:33.19,eva titles,Comment,0000,0000,0000,,{\fsp-3\pos(193,61)}Episode One +Dialogue: 0,0:03:42.50,0:03:44.34,eva broadcast,Comment,0000,0000,0000,,Every missile hit the target! +Dialogue: 0,0:04:03.53,0:04:05.12,eva main,Comment,0000,0000,0000,,I'm sorry! Thanks for waiting! +Dialogue: 0,0:04:22.11,0:04:26.71,eva broadcast,Comment,0000,0000,0000,,The target is still operational.\NIt's still heading towards New Tokyo-3. +Dialogue: 0,0:04:26.78,0:04:29.31,eva broadcast,Comment,0000,0000,0000,,The Air Defense Force doesn't have\nthe firepower to stop it! +Dialogue: 0,0:04:30.12,0:04:31.29,eva main,Comment,0000,0000,0000,,Hit it with everything we've got! +Dialogue: 0,0:04:31.29,0:04:33.25,eva main,Comment,0000,0000,0000,,Mobilize all of Atsugi and Iruma as well! +Dialogue: 0,0:04:33.32,0:04:36.72,eva main,Comment,0000,0000,0000,,Don't hold anything back!\NDestroy the target at any cost! +Dialogue: 0,0:04:50.05,0:04:52.17,eva main,Comment,0000,0000,0000,,Why?! That was a direct hit! +Dialogue: 0,0:04:52.64,0:04:55.04,eva main,Comment,0000,0000,0000,,The tank battalion's been annihilated. +Dialogue: 0,0:04:55.04,0:04:57.98,eva main,Comment,0000,0000,0000,,Guided missiles and artillery\nhave no effect either. +Dialogue: 0,0:04:57.98,0:05:01.52,eva main,Comment,0000,0000,0000,,It's no good! We'll never get anywhere\nwith the firepower we've got! +Dialogue: 0,0:05:01.52,0:05:03.39,eva main,Comment,0000,0000,0000,,Is it an AT field after all? +Dialogue: 0,0:05:01.52,0:05:04.52,eva notes,Comment,0000,0000,0000,,{\fad(400,400)\1a&H70&}AT field: absolute terror field +Dialogue: 0,0:05:03.39,0:05:07.34,eva main,Comment,0000,0000,0000,,Yes. Conventional weapons are\nuseless against Angels. +Dialogue: 0,0:05:10.76,0:05:13.99,eva main,Comment,0000,0000,0000,,I understand. We'll activate it as planned. +Dialogue: 0,0:05:18.80,0:05:20.29,eva main,Comment,0000,0000,0000,,Hey, don't tell me... +Dialogue: 0,0:05:20.37,0:05:22.23,eva main,Comment,0000,0000,0000,,They're going to use an N{\fnLucida Sans}²{\r} mine?! +Dialogue: 0,0:05:22.74,0:05:23.76,eva main,Comment,0000,0000,0000,,Get down! +Dialogue: 0,0:05:46.56,0:05:47.43,eva main,Comment,0000,0000,0000,,We did it! +Dialogue: 0,0:05:48.80,0:05:51.89,eva main,Comment,0000,0000,0000,,Sorry, but it looks like you won't be\ngetting a shot at it. +Dialogue: 0,0:05:51.97,0:05:54.16,eva broadcast,Comment,0000,0000,0000,,Shock wave approaching. +Dialogue: 0,0:05:55.37,0:05:56.70,eva main,Comment,0000,0000,0000,,Are you all right? +Dialogue: 0,0:05:56.77,0:06:00.11,eva main,Comment,0000,0000,0000,,Yeah, but my mouth is full of dirt. +Dialogue: 0,0:06:00.11,0:06:04.07,eva main,Comment,0000,0000,0000,,That's okay. Now then, here we go! +Dialogue: 0,0:06:04.75,0:06:06.08,eva main,Comment,0000,0000,0000,,One, two! +Dialogue: 0,0:06:09.88,0:06:11.44,eva main,Comment,0000,0000,0000,,There. +Dialogue: 0,0:06:14.79,0:06:16.88,eva main,Comment,0000,0000,0000,,Thanks for the hand. I really appreciate it. +Dialogue: 0,0:06:16.96,0:06:19.95,eva main,Comment,0000,0000,0000,,Thank you too, Katsuragi-san. +Dialogue: 0,0:06:20.03,0:06:22.09,eva main,Comment,0000,0000,0000,,Just Misato is fine. +Dialogue: 0,0:06:22.56,0:06:25.90,eva main,Comment,0000,0000,0000,,I'm glad we've met at last, Ikari Shinji-kun. +Dialogue: 0,0:06:26.20,0:06:27.02,eva main,Comment,0000,0000,0000,,Yeah... +Dialogue: 0,0:06:27.57,0:06:28.83,eva broadcast,Comment,0000,0000,0000,,What's the target's status? +Dialogue: 0,0:06:28.90,0:06:31.80,eva broadcast,Comment,0000,0000,0000,,We're unable to confirm due to\nall the EMP interference. +Dialogue: 0,0:06:31.87,0:06:34.64,eva main,Comment,0000,0000,0000,,You saw the size of the explosion. It's over. +Dialogue: 0,0:06:34.71,0:06:36.14,eva broadcast,Comment,0000,0000,0000,,Sensors restored. +Dialogue: 0,0:06:37.45,0:06:39.28,eva broadcast,Comment,0000,0000,0000,,We've got an energy reading\nat the explosion's epicenter! +Dialogue: 0,0:06:39.35,0:06:40.47,eva main,Comment,0000,0000,0000,,What the hell?! +Dialogue: 0,0:06:40.55,0:06:42.18,eva broadcast,Comment,0000,0000,0000,,Visual display restored. +Dialogue: 0,0:06:46.45,0:06:48.68,eva main,Comment,0000,0000,0000,,That was our last resort. +Dialogue: 0,0:06:49.62,0:06:51.53,eva main,Comment,0000,0000,0000,,How can this be? +Dialogue: 0,0:06:51.53,0:06:53.15,eva main,Comment,0000,0000,0000,,Damned monster! +Dialogue: 0,0:07:03.10,0:07:05.50,eva main,Comment,0000,0000,0000,,Yes. Don't worry about it. +Dialogue: 0,0:07:05.57,0:07:09.63,eva main,Comment,0000,0000,0000,,His safety is my top priority,\nso could you get a car train ready for us? +Dialogue: 0,0:07:09.71,0:07:10.94,eva main,Comment,0000,0000,0000,,A direct one. +Dialogue: 0,0:07:11.81,0:07:12.78,eva main,Comment,0000,0000,0000,,Right. +Dialogue: 0,0:07:13.15,0:07:15.48,eva main,Comment,0000,0000,0000,,Well, I volunteered to pick him up, +Dialogue: 0,0:07:15.48,0:07:18.18,eva main,Comment,0000,0000,0000,,so I'll make sure he gets there. See ya! +Dialogue: 0,0:07:20.52,0:07:26.95,eva main,Comment,0000,0000,0000,,Man, this sucks! I just had my car restored\nand it's a total wreck already! +Dialogue: 0,0:07:27.44,0:07:30.56,eva main,Comment,0000,0000,0000,,33 more loan payments to go,\nplus the cost of repairs. +Dialogue: 0,0:07:30.63,0:07:33.16,eva main,Comment,0000,0000,0000,,And look! My best dress has been ruined! +Dialogue: 0,0:07:33.54,0:07:37.30,eva main,Comment,0000,0000,0000,,And I was looking and feeling so nice. +Dialogue: 0,0:07:32.97,0:07:34.79,eva alternate,Comment,0000,0000,0000,,Excuse me, Misato-san? +Dialogue: 0,0:07:37.30,0:07:38.98,eva main,Comment,0000,0000,0000,,Excuse me, Misato-san? +Dialogue: 0,0:07:39.17,0:07:40.66,eva main,Comment,0000,0000,0000,,What? +Dialogue: 0,0:07:40.74,0:07:43.40,eva main,Comment,0000,0000,0000,,Are you sure you can just take those? +Dialogue: 0,0:07:45.25,0:07:46.21,eva main,Comment,0000,0000,0000,,Never mind about that! +Dialogue: 0,0:07:46.28,0:07:50.05,eva main,Comment,0000,0000,0000,,It's an emergency, and we need\na working car right now, right? +Dialogue: 0,0:07:50.12,0:07:53.61,eva main,Comment,0000,0000,0000,,And I'm an international government\nofficial, after all, +Dialogue: 0,0:07:53.69,0:07:55.28,eva main,Comment,0000,0000,0000,,so everything's going to be\nperfectly fine, okay? +Dialogue: 0,0:07:56.66,0:07:59.29,eva main,Comment,0000,0000,0000,,I don't think anyone will buy that. +Dialogue: 0,0:07:59.36,0:08:03.46,eva main,Comment,0000,0000,0000,,You're no fun. You look cute,\nbut you're kind of a cold fish. +Dialogue: 0,0:08:04.40,0:08:05.73,eva main,Comment,0000,0000,0000,,You think so? +Dialogue: 0,0:08:05.80,0:08:07.53,eva main,Comment,0000,0000,0000,,Oh, did I upset you? +Dialogue: 0,0:08:08.27,0:08:11.67,eva main,Comment,0000,0000,0000,,Sorry about that! You are a boy, after all. +Dialogue: 0,0:08:11.74,0:08:15.04,eva main,Comment,0000,0000,0000,,And you're pretty childish for your age. +Dialogue: 0,0:08:20.75,0:08:23.68,eva main,Comment,0000,0000,0000,,As we predicted, it's regenerating itself. +Dialogue: 0,0:08:23.99,0:08:27.85,eva main,Comment,0000,0000,0000,,If it couldn't, it wouldn't be\na practical autonomous weapon. +Dialogue: 0,0:08:31.49,0:08:35.09,eva main,Comment,0000,0000,0000,,Impressive. It appears it can even upgrade\nits own operational functions. +Dialogue: 0,0:08:35.43,0:08:37.69,eva main,Comment,0000,0000,0000,,And it seems to have gotten smarter. +Dialogue: 0,0:08:38.73,0:08:41.63,eva main,Comment,0000,0000,0000,,It's only a matter of time before\nit resumes attacking. +Dialogue: 0,0:08:43.04,0:08:46.61,eva bg broadcast,Comment,0000,0000,0000,,The gates are now closing.\NPlease stand clear. +Dialogue: 0,0:08:46.30,0:08:48.03,eva main,,0000,0000,0000,,The special duty organization Nerv? +Dialogue: 0,0:08:46.61,0:08:48.34,eva bg broadcast,Comment,0000,0000,0000,,Now departing. +Dialogue: 0,0:08:48.14,0:08:51.45,eva main,Comment,0000,0000,0000,,Yes, it's a secret organization under\nthe control of the United Nations. +Dialogue: 0,0:08:48.34,0:08:56.75,eva bg broadcast,Comment,0000,0000,0000,,This is the C-22 Special Express\ndeparting directly for G33-1. +Dialogue: 0,0:08:51.95,0:08:53.58,eva main,Comment,0000,0000,0000,,That's where my father is, right? +Dialogue: 0,0:08:53.58,0:08:54.75,eva main,Comment,0000,0000,0000,,Well, yeah. +Dialogue: 0,0:08:54.75,0:08:56.75,eva main,Comment,0000,0000,0000,,Do you know what he does? +Dialogue: 0,0:08:58.09,0:09:01.92,eva bg broadcast,Comment,0000,0000,0000,,This train will bypass all other stations.\NPlease stand back. +Dialogue: 0,0:09:00.69,0:09:04.52,eva main,Comment,0000,0000,0000,,My teacher told me his work is vital\nfor the protection of the human race. +Dialogue: 0,0:09:07.66,0:09:10.83,eva main,Comment,0000,0000,0000,,From this point forward, command of this\noperation will be entrusted to you. +Dialogue: 0,0:09:10.90,0:09:12.53,eva main,Comment,0000,0000,0000,,Show us what you're capable of. +Dialogue: 0,0:09:12.60,0:09:13.69,eva main,Comment,0000,0000,0000,,Yes, Sir. +Dialogue: 0,0:09:14.27,0:09:20.37,eva main,Comment,0000,0000,0000,,Ikari-kun, we will admit that our weapons\nhave no effect on the target. +Dialogue: 0,0:09:21.28,0:09:23.68,eva main,Comment,0000,0000,0000,,But are you sure you can beat this thing? +Dialogue: 0,0:09:24.15,0:09:25.83,eva main,Comment,0000,0000,0000,,It's what Nerv was created for. +Dialogue: 0,0:09:26.65,0:09:28.14,eva main,Comment,0000,0000,0000,,Let's hope you're correct. +Dialogue: 0,0:09:29.78,0:09:31.91,eva broadcast,Comment,0000,0000,0000,,The target is still stationary. +Dialogue: 0,0:09:31.99,0:09:35.35,eva broadcast,Comment,0000,0000,0000,,Our intercept system is currently\N7.5% operational. +Dialogue: 0,0:09:37.03,0:09:39.36,eva main,Comment,0000,0000,0000,,So, even the UN forces have retired. +Dialogue: 0,0:09:39.43,0:09:41.02,eva main,Comment,0000,0000,0000,,What are you going to do? +Dialogue: 0,0:09:41.53,0:09:43.52,eva main,Comment,0000,0000,0000,,I intend to activate Unit 01. +Dialogue: 0,0:09:43.77,0:09:46.86,eva main,Comment,0000,0000,0000,,Unit 01? But we have no pilot. +Dialogue: 0,0:09:47.50,0:09:51.10,eva main,Comment,0000,0000,0000,,That's not a problem. Another spare\nwill be delivered soon. +Dialogue: 0,0:09:52.07,0:09:54.80,eva main,Comment,0000,0000,0000,,Are you taking me to my father? +Dialogue: 0,0:09:55.31,0:09:57.40,eva main,Comment,0000,0000,0000,,Yes. Pretty much. +Dialogue: 0,0:10:01.25,0:10:02.51,eva main,Comment,0000,0000,0000,,Father... +Dialogue: 0,0:10:04.09,0:10:07.45,eva main,Comment,0000,0000,0000,,Oh, that's right. Did you get\nan ID card from your father? +Dialogue: 0,0:10:09.36,0:10:10.35,eva main,Comment,0000,0000,0000,,Yes. +Dialogue: 0,0:10:12.03,0:10:13.05,eva main,Comment,0000,0000,0000,,Here it is. +Dialogue: 0,0:10:13.13,0:10:14.43,eva main,Comment,0000,0000,0000,,Thanks. +Dialogue: 0,0:10:13.88,0:10:15.09,eva main,Comment,0000,0000,0000,,{\fnParla\fs35\b1\c&H293132&\frz9.564\bord2\shad0\3c&HBECAC1&\3a&H80&\pos(420,396)}Come. +Dialogue: 0,0:10:13.88,0:10:15.09,eva main,Comment,0000,0000,0000,,{\fnParla\b1\c&H293132&\frz9.564\bord2\shad0\3c&HBECAC1&\3a&H80&\pos(485,459)}Ikari Gendo +Dialogue: 0,0:10:15.80,0:10:18.20,eva main,Comment,0000,0000,0000,,Then read this. +Dialogue: 0,0:10:18.09,0:10:19.76,eva titles,Comment,0000,0000,0000,,{\frz2.561\bord0\shad0\c&H03100B&\pos(380,320)}Welcome to +Dialogue: 0,0:10:18.09,0:10:19.76,eva titles,Comment,0000,0000,0000,,{\frz2.561\bord0\shad0\c&H03100B&\i1\pos(380,353)}Nerv +Dialogue: 0,0:10:18.93,0:10:20.13,eva main,Comment,0000,0000,0000,,Nerv... +Dialogue: 0,0:10:21.00,0:10:22.26,eva main,Comment,0000,0000,0000,,My father's agency. +Dialogue: 0,0:10:23.00,0:10:25.06,eva main,Comment,0000,0000,0000,,Am I going to work for them too? +Dialogue: 0,0:10:27.01,0:10:28.50,eva main,Comment,0000,0000,0000,,Of course. +Dialogue: 0,0:10:28.68,0:10:32.81,eva main,Comment,0000,0000,0000,,He wouldn't have sent me a letter unless\nhe needed me for something. +Dialogue: 0,0:10:33.27,0:10:36.24,eva main,Comment,0000,0000,0000,,I see. So you don't get along with your father. +Dialogue: 0,0:10:37.65,0:10:39.24,eva main,Comment,0000,0000,0000,,It's the same with me. +Dialogue: 0,0:10:45.23,0:10:46.49,eva main,Comment,0000,0000,0000,,Awesome! +Dialogue: 0,0:10:47.70,0:10:49.39,eva main,Comment,0000,0000,0000,,It's the real Geo-Front! +Dialogue: 0,0:10:49.46,0:10:50.36,eva main,Comment,0000,0000,0000,,That's right. +Dialogue: 0,0:10:50.43,0:10:53.87,eva main,Comment,0000,0000,0000,,This is our secret base.\NNerv Headquarters. +Dialogue: 0,0:10:54.26,0:10:55.80,eva main,Comment,0000,0000,0000,,This is the key to rebuilding our world. +Dialogue: 0,0:10:55.87,0:10:58.34,eva main,Comment,0000,0000,0000,,A fortress for all mankind. +Dialogue: 1,0:11:04.91,0:11:10.18,eva main,Comment,0000,0000,0000,,That's strange. Isn't this the right way? +Dialogue: 0,0:11:07.10,0:11:08.64,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,90)}Nerv{\i0} Headquarters +Dialogue: 0,0:11:07.10,0:11:08.64,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,143)}Central Dogma +Dialogue: 0,0:11:07.10,0:11:08.64,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\pos(273,118)\bord0\shad0\c&H3B2C71&}Around here +Dialogue: 0,0:11:08.60,0:11:08.64,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,90)}Nerv{\i0} Headquarters +Dialogue: 0,0:11:08.64,0:11:08.68,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,99)}Nerv{\i0} Headquarters +Dialogue: 0,0:11:08.68,0:11:08.73,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,109)}Nerv{\i0} Headquarters +Dialogue: 0,0:11:08.73,0:11:08.77,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,125)}Nerv{\i0} Headquarters +Dialogue: 0,0:11:08.77,0:11:08.81,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,145)}Nerv{\i0} Headquarters +Dialogue: 0,0:11:08.81,0:11:08.85,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,186)}Nerv{\i0} Headquarters +Dialogue: 0,0:11:08.85,0:11:08.89,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,235)}Nerv{\i0} Headquarters +Dialogue: 0,0:11:08.89,0:11:08.93,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,285)}Nerv{\i0} Headquarters +Dialogue: 0,0:11:08.93,0:11:08.98,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,333)}Nerv{\i0} Headquarters +Dialogue: 0,0:11:08.98,0:11:09.02,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,394)}Nerv{\i0} Headquarters +Dialogue: 0,0:11:09.02,0:11:09.06,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,457)}Nerv{\i0} Headquarters +Dialogue: 0,0:11:08.60,0:11:08.64,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,143)}Central Dogma +Dialogue: 0,0:11:08.64,0:11:08.68,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,152)}Central Dogma +Dialogue: 0,0:11:08.68,0:11:08.73,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,162)}Central Dogma +Dialogue: 0,0:11:08.73,0:11:08.77,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,178)}Central Dogma +Dialogue: 0,0:11:08.77,0:11:08.81,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,198)}Central Dogma +Dialogue: 0,0:11:08.81,0:11:08.85,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,240)}Central Dogma +Dialogue: 0,0:11:08.85,0:11:08.89,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,287)}Central Dogma +Dialogue: 0,0:11:08.89,0:11:08.93,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,339)}Central Dogma +Dialogue: 0,0:11:08.93,0:11:08.98,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,384)}Central Dogma +Dialogue: 0,0:11:08.98,0:11:09.02,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,447)}Central Dogma +Dialogue: 0,0:11:08.64,0:11:08.68,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,128)}Around here +Dialogue: 0,0:11:08.68,0:11:08.73,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,138)}Around here +Dialogue: 0,0:11:08.73,0:11:08.77,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,154)}Around here +Dialogue: 0,0:11:08.77,0:11:08.81,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,171)}Around here +Dialogue: 0,0:11:08.81,0:11:08.85,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,213)}Around here +Dialogue: 0,0:11:08.85,0:11:08.89,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,262)}Around here +Dialogue: 0,0:11:08.89,0:11:08.93,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(276,312)}Around here +Dialogue: 0,0:11:08.93,0:11:08.98,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,358)}Around here +Dialogue: 0,0:11:08.98,0:11:09.02,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(273,420)}Around here +Dialogue: 0,0:11:09.02,0:11:09.06,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(281,480)}Around here +Dialogue: 0,0:11:10.89,0:11:12.49,eva bg broadcast,Comment,0000,0000,0000,,Central Dogma's closed passages\nremain sealed. +Dialogue: 0,0:11:12.49,0:11:15.29,eva main,Comment,0000,0000,0000,,This is why I hate wearing skirts here. +Dialogue: 0,0:11:12.92,0:11:17.76,eva bg broadcast,Comment,0000,0000,0000,,Opening block B-26 in sequence. +Dialogue: 0,0:11:15.79,0:11:18.56,eva main,Comment,0000,0000,0000,,But where the heck did Ritsuko go? +Dialogue: 0,0:11:18.63,0:11:21.42,eva main,Comment,0000,0000,0000,,I'm sorry. I'm just not used to this place yet. +Dialogue: 0,0:11:21.50,0:11:23.49,eva main,Comment,0000,0000,0000,,We passed this spot just a little while ago. +Dialogue: 0,0:11:24.87,0:11:26.30,eva main,Comment,0000,0000,0000,,But don't worry about it. +Dialogue: 0,0:11:26.37,0:11:29.24,eva main,Comment,0000,0000,0000,,They make these systems\nto be used, you know. +Dialogue: 0,0:11:29.24,0:11:31.97,eva bg broadcast,Comment,0000,0000,0000,,Would the head of Project E,\NTechnical Department Division 1, +Dialogue: 0,0:11:31.97,0:11:34.84,eva bg broadcast,Comment,0000,0000,0000,,Dr. Akagi Ritsuko, Dr. Akagi Ritsuko, +Dialogue: 0,0:11:34.84,0:11:39.48,eva bg broadcast,Comment,0000,0000,0000,,please contact Captain Katsuragi Misato\nof Operations, Division 1, immediately. +Dialogue: 0,0:11:39.61,0:11:41.45,eva main,Comment,0000,0000,0000,,I don't believe it. +Dialogue: 0,0:11:41.45,0:11:42.42,eva main,Comment,0000,0000,0000,,She got lost again, didn't she? +Dialogue: 0,0:11:46.89,0:11:48.95,eva main,Comment,0000,0000,0000,,Uh, hiya, Ritsuko. +Dialogue: 0,0:11:53.63,0:11:55.99,eva main,Comment,0000,0000,0000,,What were you doing, Captain Katsuragi? +Dialogue: 0,0:11:56.10,0:11:58.33,eva main,Comment,0000,0000,0000,,We're short on both time\nand manpower, you know. +Dialogue: 0,0:11:58.83,0:11:59.86,eva main,Comment,0000,0000,0000,,Sorry! +Dialogue: 0,0:12:03.14,0:12:04.97,eva main,Comment,0000,0000,0000,,So this is the boy? +Dialogue: 0,0:12:05.04,0:12:08.98,eva main,Comment,0000,0000,0000,,Right. According to the Marduk report,\nhe's the "Third Child". +Dialogue: 0,0:12:09.68,0:12:10.77,eva main,Comment,0000,0000,0000,,I'm glad to meet you. +Dialogue: 0,0:12:10.85,0:12:12.68,eva main,Comment,0000,0000,0000,,Huh? Sure. +Dialogue: 0,0:12:13.00,0:12:17.88,eva main,Comment,0000,0000,0000,,He's just like his father.\NLike how he's unendearing. +Dialogue: 0,0:12:18.25,0:12:19.51,eva main,Comment,0000,0000,0000,,I'll leave the rest to you. +Dialogue: 0,0:12:23.96,0:12:26.19,eva main,Comment,0000,0000,0000,,Their first meeting in over three years. +Dialogue: 0,0:12:27.23,0:12:30.89,eva main,Comment,0000,0000,0000,,Vice Commander, the target\nhas started moving again. +Dialogue: 0,0:12:30.97,0:12:34.37,eva main,Comment,0000,0000,0000,,Right. All personnel, assume\nbattle stations, Level One. +Dialogue: 0,0:12:34.54,0:12:37.91,eva bg broadcast,Comment,0000,0000,0000,,Repeat. All personnel, assume\nbattle stations, Level One. +Dialogue: 0,0:12:37.91,0:12:39.30,eva bg broadcast,Comment,0000,0000,0000,,Prepare for ground-unit interception. +Dialogue: 0,0:12:39.81,0:12:41.04,eva main,Comment,0000,0000,0000,,Here we go. +Dialogue: 0,0:12:41.04,0:12:42.27,eva main,Comment,0000,0000,0000,,It sounds pretty serious. +Dialogue: 0,0:12:43.41,0:12:45.58,eva main,Comment,0000,0000,0000,,So, how's Unit 01 doing? +Dialogue: 0,0:12:45.58,0:12:47.95,eva main,Comment,0000,0000,0000,,It's currently in refrigeration,\nusing the B-type equipment. +Dialogue: 0,0:12:47.95,0:12:51.95,eva main,Comment,0000,0000,0000,,Does it really work?\NIt's never worked before, right? +Dialogue: 0,0:12:51.95,0:12:56.89,eva main,Comment,0000,0000,0000,,The possibility of activation is 0.000000001%. +Dialogue: 0,0:12:57.49,0:12:59.99,eva main,Comment,0000,0000,0000,,We call it, pathetically enough,\nthe O-9 System. +Dialogue: 0,0:12:59.99,0:13:02.66,eva main,Comment,0000,0000,0000,,Does that mean it doesn't work? +Dialogue: 0,0:13:02.66,0:13:05.13,eva main,Comment,0000,0000,0000,,Oh, don't be insulting. It's not zero. +Dialogue: 0,0:13:05.13,0:13:06.83,eva main,Comment,0000,0000,0000,,Well, it's just a number. +Dialogue: 0,0:13:06.90,0:13:11.43,eva main,Comment,0000,0000,0000,,Anyway, it's a bit too late to be saying,\N"Sorry, it didn't work". +Dialogue: 0,0:13:20.05,0:13:22.81,eva main,Comment,0000,0000,0000,,Huh? It's completely dark. +Dialogue: 0,0:13:26.39,0:13:29.15,eva main,Comment,0000,0000,0000,,A face? A giant robot? +Dialogue: 0,0:13:30.86,0:13:33.02,eva main,Comment,0000,0000,0000,,You won't find this in the manual. +Dialogue: 0,0:13:34.16,0:13:38.13,eva main,Comment,0000,0000,0000,,This is mankind's ultimate\nmultipurpose decisive weapon, +Dialogue: 0,0:13:38.13,0:13:42.04,eva main,Comment,0000,0000,0000,,the synthetic human Evangelion, Unit 01. +Dialogue: 0,0:13:42.04,0:13:47.28,eva main,Comment,0000,0000,0000,,Built in absolute secrecy,\nit is mankind's trump card. +Dialogue: 0,0:13:47.28,0:13:49.28,eva main,Comment,0000,0000,0000,,Is this part of what my father's been doing? +Dialogue: 0,0:13:49.28,0:13:50.18,eva broadcast,Comment,0000,0000,0000,,Correct. +Dialogue: 0,0:13:52.15,0:13:53.48,eva main,Comment,0000,0000,0000,,It's been a while. +Dialogue: 0,0:13:54.55,0:13:55.68,eva main,Comment,0000,0000,0000,,Father... +Dialogue: 0,0:13:58.75,0:13:59.52,eva main,Comment,0000,0000,0000,,We're moving out! +Dialogue: 0,0:14:00.02,0:14:03.48,eva main,Comment,0000,0000,0000,,Moving out?! Unit 00's still in\ncryo-stasis, isn't it? +Dialogue: 0,0:14:05.43,0:14:07.62,eva main,Comment,0000,0000,0000,,You're not planning to use Unit 01?! +Dialogue: 0,0:14:08.43,0:14:09.96,eva main,Comment,0000,0000,0000,,There's no other way. +Dialogue: 0,0:14:09.96,0:14:12.83,eva main,Comment,0000,0000,0000,,Hold on! Rei can't do it yet, can she? +Dialogue: 0,0:14:13.77,0:14:15.17,eva main,Comment,0000,0000,0000,,We've got no pilot! +Dialogue: 0,0:14:16.10,0:14:17.26,eva main,Comment,0000,0000,0000,,A pilot has just been delivered. +Dialogue: 0,0:14:18.54,0:14:19.56,eva main,Comment,0000,0000,0000,,Are you serious? +Dialogue: 0,0:14:20.54,0:14:21.61,eva main,Comment,0000,0000,0000,,Ikari Shinji-kun... +Dialogue: 0,0:14:21.61,0:14:22.71,eva main,Comment,0000,0000,0000,,Yes? +Dialogue: 0,0:14:22.71,0:14:23.73,eva main,Comment,0000,0000,0000,,You will pilot it. +Dialogue: 0,0:14:24.45,0:14:29.44,eva main,Comment,0000,0000,0000,,But even Ayanami Rei took seven months\nto synchronize with her Eva. +Dialogue: 0,0:14:29.62,0:14:32.25,eva main,Comment,0000,0000,0000,,It's impossible for him to do it!\NHe just got here! +Dialogue: 0,0:14:32.32,0:14:35.12,eva main,Comment,0000,0000,0000,,He just has to sit in the seat.\NWe don't expect more than that. +Dialogue: 0,0:14:35.19,0:14:36.18,eva main,Comment,0000,0000,0000,,But... +Dialogue: 0,0:14:36.26,0:14:38.92,eva main,Comment,0000,0000,0000,,Repelling that Angel is our ultimate priority. +Dialogue: 0,0:14:39.43,0:14:43.02,eva main,Comment,0000,0000,0000,,To do that, we have no choice but to put\naboard the Eva whomever has the chance +Dialogue: 0,0:14:43.10,0:14:45.62,eva main,Comment,0000,0000,0000,,to synchronize with it, no matter how slight. +Dialogue: 0,0:14:46.87,0:14:48.80,eva main,Comment,0000,0000,0000,,I believe you know that, Captain Katsuragi. +Dialogue: 0,0:14:51.27,0:14:52.60,eva main,Comment,0000,0000,0000,,I suppose... +Dialogue: 0,0:14:54.21,0:14:56.61,eva main,Comment,0000,0000,0000,,Father, why did you send for me? +Dialogue: 0,0:14:56.61,0:14:58.75,eva main,Comment,0000,0000,0000,,You know exactly why. +Dialogue: 0,0:14:58.75,0:15:02.65,eva main,Comment,0000,0000,0000,,So, you're asking me to take this thing\nand fight that thing? +Dialogue: 0,0:15:03.35,0:15:04.35,eva main,Comment,0000,0000,0000,,That's right. +Dialogue: 0,0:15:04.35,0:15:08.02,eva main,Comment,0000,0000,0000,,No way! Why are you doing this now?! +Dialogue: 0,0:15:08.02,0:15:10.63,eva main,Comment,0000,0000,0000,,I thought you didn't need me! +Dialogue: 0,0:15:10.63,0:15:12.82,eva main,Comment,0000,0000,0000,,I called you because I have a need for you. +Dialogue: 0,0:15:15.40,0:15:16.83,eva main,Comment,0000,0000,0000,,Why me? +Dialogue: 0,0:15:17.47,0:15:19.70,eva main,Comment,0000,0000,0000,,Because no one else can. +Dialogue: 0,0:15:20.37,0:15:22.06,eva main,Comment,0000,0000,0000,,No, I can't... +Dialogue: 0,0:15:22.50,0:15:26.03,eva main,Comment,0000,0000,0000,,I've never even seen anything\nlike this before! I can't do this! +Dialogue: 0,0:15:27.01,0:15:28.41,eva main,Comment,0000,0000,0000,,You will be instructed. +Dialogue: 0,0:15:29.04,0:15:32.88,eva main,Comment,0000,0000,0000,,But there's no way I can do this! +Dialogue: 0,0:15:33.71,0:15:35.74,eva main,Comment,0000,0000,0000,,I can't pilot it! +Dialogue: 0,0:15:37.22,0:15:40.24,eva main,Comment,0000,0000,0000,,If you're going to pilot it, do it now\nand quickly. If not, leave! +Dialogue: 0,0:15:51.93,0:15:54.46,eva main,Comment,0000,0000,0000,,It must have detected our location. +Dialogue: 0,0:15:58.11,0:16:00.04,eva main,Comment,0000,0000,0000,,Shinji-kun, we don't have time. +Dialogue: 0,0:16:05.08,0:16:06.24,eva main,Comment,0000,0000,0000,,Get into it. +Dialogue: 0,0:16:07.31,0:16:11.98,eva main,Comment,0000,0000,0000,,No! I didn't come for this! This isn't fair! +Dialogue: 0,0:16:13.25,0:16:16.69,eva main,Comment,0000,0000,0000,,Shinji-kun, just why did you come here? +Dialogue: 0,0:16:18.59,0:16:22.69,eva main,Comment,0000,0000,0000,,You mustn't run! Not from your father,\nand most of all not from yourself. +Dialogue: 0,0:16:23.33,0:16:27.39,eva main,Comment,0000,0000,0000,,I know that! But there's no way I can do it! +Dialogue: 0,0:16:35.54,0:16:36.53,eva main,Comment,0000,0000,0000,,Fuyutsuki... +Dialogue: 0,0:16:37.85,0:16:39.25,eva main,Comment,0000,0000,0000,,Wake up Rei. +Dialogue: 0,0:16:39.25,0:16:40.75,eva broadcast,Comment,0000,0000,0000,,Can we use her? +Dialogue: 0,0:16:40.75,0:16:42.31,eva main,Comment,0000,0000,0000,,She isn't dead. +Dialogue: 0,0:16:43.45,0:16:44.58,eva broadcast,Comment,0000,0000,0000,,I understand. +Dialogue: 0,0:16:46.39,0:16:47.25,eva main,Comment,0000,0000,0000,,Rei. +Dialogue: 0,0:16:47.25,0:16:48.39,eva main,Comment,0000,0000,0000,,Yes? +Dialogue: 0,0:16:48.39,0:16:51.26,eva main,Comment,0000,0000,0000,,Our spare is unusable. You will do it again. +Dialogue: 0,0:16:51.26,0:16:52.23,eva main,Comment,0000,0000,0000,,Yes, Sir. +Dialogue: 0,0:16:54.50,0:16:57.93,eva main,Comment,0000,0000,0000,,Reconfigure Unit 01's system to Rei,\nthen re-activate! +Dialogue: 0,0:16:57.93,0:17:00.99,eva broadcast,Comment,0000,0000,0000,,Roger. Call off the present work,\nand begin re-activation. +Dialogue: 0,0:17:02.97,0:17:06.80,eva main,Comment,0000,0000,0000,,I knew it. I'm not needed after all. +Dialogue: 0,0:17:40.67,0:17:41.70,eva main,Comment,0000,0000,0000,,Watch out! +Dialogue: 0,0:17:51.32,0:17:52.89,eva broadcast,Comment,0000,0000,0000,,The Eva moved! +Dialogue: 0,0:17:52.89,0:17:54.09,eva broadcast,Comment,0000,0000,0000,,What's going on?! +Dialogue: 0,0:17:54.09,0:17:56.46,eva broadcast,Comment,0000,0000,0000,,It broke the right arm restraint! +Dialogue: 0,0:17:56.46,0:17:58.02,eva main,Comment,0000,0000,0000,,No, that's impossible! +Dialogue: 0,0:17:58.53,0:18:00.73,eva main,Comment,0000,0000,0000,,It didn't even have an entry plug inserted! +Dialogue: 0,0:18:00.73,0:18:01.96,eva main,Comment,0000,0000,0000,,There's no way it could have moved! +Dialogue: 0,0:18:03.10,0:18:05.33,eva main,Comment,0000,0000,0000,,It reacted without any interface?! +Dialogue: 0,0:18:06.13,0:18:08.20,eva main,Comment,0000,0000,0000,,Or was it protecting... +Dialogue: 0,0:18:08.20,0:18:09.23,eva main,Comment,0000,0000,0000,,him? +Dialogue: 0,0:18:10.54,0:18:11.53,eva main,Comment,0000,0000,0000,,We can do it. +Dialogue: 0,0:18:32.56,0:18:37.16,eva main,Comment,0000,0000,0000,,I mustn't run away. I mustn't run away.\NI mustn't run away. I mustn't run away. +Dialogue: 0,0:18:37.16,0:18:38.32,eva main,Comment,0000,0000,0000,,I mustn't run away! +Dialogue: 0,0:18:39.77,0:18:40.67,eva main,Comment,0000,0000,0000,,I'll do it. +Dialogue: 0,0:18:41.37,0:18:42.49,eva main,Comment,0000,0000,0000,,I'll pilot it! +Dialogue: 0,0:18:46.04,0:18:47.34,eva broadcast,Comment,0000,0000,0000,,Cooling process, completed. +Dialogue: 0,0:18:47.34,0:18:48.88,eva broadcast,Comment,0000,0000,0000,,Right arm re-secured. +Dialogue: 0,0:18:48.88,0:18:50.91,eva broadcast,Comment,0000,0000,0000,,Cage contents now in position for docking. +Dialogue: 0,0:18:50.91,0:18:51.85,eva main,Comment,0000,0000,0000,,Roger. +Dialogue: 0,0:18:51.85,0:18:54.68,eva main,Comment,0000,0000,0000,,Signal terminator plug has been ejected. +Dialogue: 0,0:18:55.22,0:18:57.82,eva broadcast,Comment,0000,0000,0000,,Roger. Inserting entry plug. +Dialogue: 0,0:18:57.82,0:19:00.88,eva broadcast,Comment,0000,0000,0000,,Direct hydro-transmission system,\nconnection prepared. +Dialogue: 0,0:19:04.93,0:19:06.43,eva broadcast,Comment,0000,0000,0000,,Plug fixed in place. +Dialogue: 0,0:19:06.43,0:19:08.16,eva broadcast,Comment,0000,0000,0000,,First stage connection initiated. +Dialogue: 0,0:19:13.07,0:19:14.90,eva broadcast,Comment,0000,0000,0000,,Filling the entry plug. +Dialogue: 0,0:19:16.07,0:19:17.47,eva main,Comment,0000,0000,0000,,What is this stuff? +Dialogue: 0,0:19:21.41,0:19:24.45,eva main,Comment,0000,0000,0000,,Don't worry. Once your lungs\nare filled with LCL, +Dialogue: 0,0:19:24.45,0:19:27.21,eva main,Comment,0000,0000,0000,,your blood will be oxygenated directly. +Dialogue: 0,0:19:27.21,0:19:28.55,eva broadcast,Comment,0000,0000,0000,,You'll get used to it. +Dialogue: 0,0:19:32.02,0:19:33.45,eva main,Comment,0000,0000,0000,,I feel nauseous. +Dialogue: 0,0:19:33.45,0:19:35.72,eva main,Comment,0000,0000,0000,,Stop whining! You're a boy, aren't you?! +Dialogue: 0,0:19:37.02,0:19:38.16,eva broadcast,Comment,0000,0000,0000,,Connecting main power. +Dialogue: 0,0:19:38.16,0:19:40.86,eva broadcast,Comment,0000,0000,0000,,All circuits transmitting power. +Dialogue: 0,0:19:40.86,0:19:41.70,eva broadcast,Comment,0000,0000,0000,,Roger. +Dialogue: 0,0:19:41.70,0:19:43.36,eva broadcast,Comment,0000,0000,0000,,Commencing secondary contacts. +Dialogue: 0,0:19:44.93,0:19:47.37,eva broadcast,Comment,0000,0000,0000,,A-10 nerve connection, normal. +Dialogue: 0,0:19:47.37,0:19:52.57,eva broadcast,Comment,0000,0000,0000,,Set the thought configuration to Japanese. +Dialogue: 0,0:19:53.44,0:19:55.88,eva broadcast,Comment,0000,0000,0000,,All preliminary contacts established.\NPerformance nominal. +Dialogue: 0,0:19:55.88,0:19:57.67,eva broadcast,Comment,0000,0000,0000,,Bi-directional circuits are open. +Dialogue: 0,0:19:58.21,0:20:00.74,eva broadcast,Comment,0000,0000,0000,,Synchronization rate at 41.3%. +Dialogue: 0,0:20:01.38,0:20:02.62,eva main,Comment,0000,0000,0000,,Amazing. +Dialogue: 0,0:20:02.62,0:20:06.21,eva main,Comment,0000,0000,0000,,Harmonics are all normal.\NNo disturbances identified. +Dialogue: 0,0:20:06.99,0:20:08.01,eva main,Comment,0000,0000,0000,,We can do it. +Dialogue: 0,0:20:09.39,0:20:10.62,eva main,Comment,0000,0000,0000,,Prepare to launch! +Dialogue: 0,0:20:12.59,0:20:14.13,eva broadcast,Comment,0000,0000,0000,,Prepare to launch! +Dialogue: 0,0:20:14.13,0:20:15.60,eva broadcast,Comment,0000,0000,0000,,Disengage primary lock bolts! +Dialogue: 0,0:20:17.13,0:20:20.29,eva broadcast,Comment,0000,0000,0000,,Disengage confirmed.\NDisengaging the umbilical bridge. +Dialogue: 0,0:20:22.70,0:20:24.10,eva broadcast,Comment,0000,0000,0000,,Disengage secondary lock bolts. +Dialogue: 0,0:20:26.44,0:20:28.38,eva broadcast,Comment,0000,0000,0000,,Disengage primary restraints. +Dialogue: 0,0:20:28.38,0:20:30.81,eva broadcast,Comment,0000,0000,0000,,Likewise, disengage secondary restraints. +Dialogue: 0,0:20:34.28,0:20:37.22,eva broadcast,Comment,0000,0000,0000,,Release safety locks numbers\none through fifteen. +Dialogue: 0,0:20:37.22,0:20:38.24,eva broadcast,Comment,0000,0000,0000,,Release confirmed. +Dialogue: 0,0:20:38.65,0:20:40.79,eva broadcast,Comment,0000,0000,0000,,Currently, Unit 01's condition is free. +Dialogue: 0,0:20:40.79,0:20:42.42,eva broadcast,Comment,0000,0000,0000,,Internal batteries fully charged. +Dialogue: 0,0:20:42.42,0:20:44.45,eva broadcast,Comment,0000,0000,0000,,External battery outlet, normal. +Dialogue: 0,0:20:45.03,0:20:47.96,eva main,Comment,0000,0000,0000,,Roger. Move Eva Unit 01\nto the ejector pad. +Dialogue: 0,0:21:03.54,0:21:05.44,eva main,Comment,0000,0000,0000,,Launch path is clear. All systems green. +Dialogue: 0,0:21:05.85,0:21:07.18,eva main,Comment,0000,0000,0000,,Ready for launch. +Dialogue: 0,0:21:08.25,0:21:09.18,eva main,Comment,0000,0000,0000,,Roger. +Dialogue: 0,0:21:10.02,0:21:11.12,eva main,Comment,0000,0000,0000,,Can we really do this? +Dialogue: 0,0:21:11.12,0:21:12.18,eva main,Comment,0000,0000,0000,,Of course. +Dialogue: 0,0:21:13.05,0:21:15.61,eva main,Comment,0000,0000,0000,,Unless we defeat the Angels,\nwe have no future. +Dialogue: 0,0:21:17.19,0:21:20.18,eva main,Comment,0000,0000,0000,,Ikari, you're really sure about this? +Dialogue: 0,0:21:21.83,0:21:22.80,eva main,Comment,0000,0000,0000,,Launch! +Dialogue: 0,0:21:56.76,0:21:58.86,eva main,Comment,0000,0000,0000,,Shinji-kun, don't get killed out there. +Dialogue: 0,0:21:58.83,0:22:00.46,eva titles,Comment,0000,0000,0000,,{\fsp-3\fs80\pos(531,377)}To Be Continued +Dialogue: 0,0:23:05.86,0:23:06.77,eva titles,Comment,0000,0000,0000,,{\pos(352,487)\fsp-3}Preview +Dialogue: 0,0:23:06.77,0:23:08.14,eva main,Comment,0000,0000,0000,,Eva triumphs over the Angel! +Dialogue: 0,0:23:08.14,0:23:10.40,eva main,Comment,0000,0000,0000,,However, that was just the beginning. +Dialogue: 0,0:23:10.64,0:23:12.27,eva main,Comment,0000,0000,0000,,Shinji runs away from his father. +Dialogue: 0,0:23:12.27,0:23:15.67,eva main,Comment,0000,0000,0000,,Misato's arrogance leads her\nto try to save him. +Dialogue: 0,0:23:16.04,0:23:18.41,eva main,Comment,0000,0000,0000,,Next Evangelion: "Unfamiliar Ceiling" +Dialogue: 0,0:23:18.41,0:23:20.45,eva main,Comment,0000,0000,0000,,I'll give you fan service next time too! +Dialogue: 0,0:23:18.83,0:23:20.87,eva titles,Comment,0000,0000,0000,,{\c&H071914&\fsp-3\pos(353,389)}Unfamiliar Ceiling +Dialogue: 0,0:23:18.83,0:23:20.87,eva titles,Comment,0000,0000,0000,,{\c&H071914&\fs60\fsp-2\pos(343,85)}Next Episode diff --git a/unit_test/test_files/format_ass2.ass b/unit_test/test_files/format_ass2.ass new file mode 100644 index 000000000..93afccf91 --- /dev/null +++ b/unit_test/test_files/format_ass2.ass @@ -0,0 +1,389 @@ +[Script Info] +; Script generated by Aegisub v2.00 PRE-RELEASE (SVN r886, ArchMageZeratuL) +; http://www.aegisub.net +Title: +Original Script: +ScriptType: v4.00++ +Video Aspect Ratio: 0 +Video Zoom: 8 +Video Position: 11067 +Last Style Storage: evangelion +PlayResX: 704 +PlayResY: 480 +Video File: ..\Shin.Seiki.Evangelion.[KAA].DVD.(h.264-AC3).[05B4E07C]_RC1.mkv +Audio File: ..\Shin.Seiki.Evangelion.[KAA].DVD.(h.264-AC3).[05B4E07C]_RC1_Track2.ac3 + +[V4++ Styles] +Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut, ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, Encoding +Style: eva main,Sui Generis,27,&H00F1E4D3,&H0000FFFF,&H008E4830,&H00000000,0,0,0,0,100,100,0,0,1,2,1,2,18,18,17,0 +Style: eva alternate,Sui Generis,27,&H00C4A377,&H0000FFFF,&H008E4830,&H00000000,0,0,0,0,100,100,0,0,1,2,1,2,18,18,17,0 +Style: eva bg broadcast,Sui Generis,24,&H00C1C1C1,&H0000FFFF,&H008E3230,&H00000000,0,0,0,0,100,100,0,0,1,2,1,8,18,18,17,0 +Style: eva broadcast,Sui Generis,27,&H00C1C1C1,&H0000FFFF,&H008E3230,&H00000000,0,0,0,0,100,100,0,0,1,2,1,2,18,18,17,0 +Style: eva notes,Tw Cen MT,28,&H00FFFFFF,&H0000FFFF,&H00D2D2D2,&H00000000,0,0,0,0,100,100,0,0,1,0,0,9,18,18,17,0 +Style: eva other fo,Lucida Sans,20,&H00FFFFFF,&H0000FFFF,&H00000000,&H00000000,0,0,0,0,100,100,0,0,1,0,0,2,10,10,10,0 +Style: eva titles,Angsana New,80,&H00FFFFFF,&H0000FFFF,&H00000000,&H00000000,-1,0,0,0,100,100,0,0,1,0,0,2,10,10,10,0 + +[Events] +Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text +Dialogue: 0,0:01:30.40,0:01:32.73,eva titles,Comment,0000,0000,0000,,{\fsp-3\pos(352,345)}The year is 2015 A.D. +Dialogue: 0,0:01:55.10,0:01:59.03,eva broadcast,Comment,0000,0000,0000,,As of 12:30 PM today, a special state\nof emergency has been declared +Dialogue: 0,0:01:59.13,0:02:03.26,eva broadcast,Comment,0000,0000,0000,,for the Kanto and Chubu regions\nsurrounding the Tokai district. +Dialogue: 0,0:02:03.77,0:02:07.80,eva broadcast,Comment,0000,0000,0000,,All residents must evacuate to their\ndesignated shelters immediately. +Dialogue: 0,0:02:08.24,0:02:12.55,eva broadcast,Comment,0000,0000,0000,,Repeating: As of 12:30 PM today, +Dialogue: 0,0:02:11.65,0:02:14.07,eva other fo,Comment,0000,0000,0000,,{\pos(488,124)\bord0\shad0\fs30\frz322.539\frx24\fry41}All Lines Stopped +Dialogue: 0,0:02:12.55,0:02:16.17,eva broadcast,Comment,0000,0000,0000,,the Kanto and Chubu regions\nsurrounding the Tokai district +Dialogue: 0,0:02:16.25,0:02:19.31,eva broadcast,Comment,0000,0000,0000,,have been declared to be under\na state of emergency. +Dialogue: 0,0:02:19.39,0:02:20.92,eva broadcast,Comment,0000,0000,0000,,All residents must evacuate... +Dialogue: 0,0:02:20.92,0:02:24.39,eva main,Comment,0000,0000,0000,,Why did I have to lose sight of him now? +Dialogue: 0,0:02:24.39,0:02:26.23,eva main,Comment,0000,0000,0000,,Oh, man! +Dialogue: 0,0:02:26.11,0:02:28.75,eva other fo,Comment,0000,0000,0000,,{\c&H071413&\bord0\shad0\pos(154,432)\frz-5\fs22}Ikari Shinji +Dialogue: 0,0:02:27.26,0:02:29.96,eva main,Comment,0000,0000,0000,,Due to the special emergency, +Dialogue: 0,0:02:30.03,0:02:33.30,eva main,Comment,0000,0000,0000,,all lines are currently unavailable. +Dialogue: 0,0:02:34.74,0:02:35.73,eva main,Comment,0000,0000,0000,,It's no use. +Dialogue: 0,0:02:36.77,0:02:39.07,eva main,Comment,0000,0000,0000,,I shouldn't have come here after all. +Dialogue: 0,0:02:42.84,0:02:45.26,eva main,Comment,0000,0000,0000,,{\fnhomework normal\fs40\shad0\bord1\3a&H80&\c&H21150C&\frz10\3c&HFFFFFF&\4c&HFFFFFF&\pos(160,179)}To Shinji-kun +Dialogue: 0,0:02:42.84,0:02:45.26,eva main,Comment,0000,0000,0000,,{\fnhomework normal\fs40\shad0\bord1\3a&H80&\c&H21150C&\frz10\3c&HFFFFFF&\4c&HFFFFFF&\pos(592,123)}I'll be coming to\N\Nget you, so wait +Dialogue: 0,0:02:42.84,0:02:45.26,eva main,Comment,0000,0000,0000,,{\fnhomework normal\fs40\shad0\bord1\3a&H80&\c&H21150C&\frz10\3c&HFFFFFF&\4c&HFFFFFF&\pos(211,250)}Attention here!! +Dialogue: 0,0:02:42.84,0:02:45.26,eva main,Comment,0000,0000,0000,,{\fnhomework normal\fs40\shad0\bord1\3a&H80&\c&H21150C&\frz10\3c&HFFFFFF&\4c&HFFFFFF&\pos(628,197)}for me.{\fnWebdings}♥ +Dialogue: 0,0:02:43.38,0:02:45.74,eva main,Comment,0000,0000,0000,,Well, I guess we won't be meeting here. +Dialogue: 0,0:02:46.88,0:02:49.48,eva main,Comment,0000,0000,0000,,Can't be helped. I'll go to a shelter. +Dialogue: 0,0:03:14.63,0:03:18.55,eva titles,Comment,0000,0000,0000,,{\fs21\fsp-1\bord0\shad0\c&HE3EDFC&\fnTw Cen MT\pos(612,415)}ESTIMATED PATH +Dialogue: 0,0:03:15.14,0:03:18.60,eva main,Comment,0000,0000,0000,,The unidentified mobile object is still\nadvancing on our position. +Dialogue: 0,0:03:19.38,0:03:22.61,eva main,Comment,0000,0000,0000,,We've got visual confirmation.\NI'm putting it on the main screen. +Dialogue: 0,0:03:24.29,0:03:26.12,eva main,Comment,0000,0000,0000,,It's been fifteen years, hasn't it? +Dialogue: 0,0:03:26.19,0:03:28.31,eva main,Comment,0000,0000,0000,,Yes, there's no doubt. +Dialogue: 0,0:03:29.29,0:03:30.52,eva main,Comment,0000,0000,0000,,It's an Angel. +Dialogue: 0,0:03:30.52,0:03:33.19,eva titles,Comment,0000,0000,0000,,{\pos(476,263)\fs130\fsp-6}Angel Attack +Dialogue: 0,0:03:30.52,0:03:33.19,eva titles,Comment,0000,0000,0000,,{\fsp-3\pos(193,61)}Episode One +Dialogue: 0,0:03:42.50,0:03:44.34,eva broadcast,Comment,0000,0000,0000,,Every missile hit the target! +Dialogue: 0,0:04:03.53,0:04:05.12,eva main,Comment,0000,0000,0000,,I'm sorry! Thanks for waiting! +Dialogue: 0,0:04:22.11,0:04:26.71,eva broadcast,Comment,0000,0000,0000,,The target is still operational.\NIt's still heading towards New Tokyo-3. +Dialogue: 0,0:04:26.78,0:04:29.31,eva broadcast,Comment,0000,0000,0000,,The Air Defense Force doesn't have\nthe firepower to stop it! +Dialogue: 0,0:04:30.12,0:04:31.29,eva main,Comment,0000,0000,0000,,Hit it with everything we've got! +Dialogue: 0,0:04:31.29,0:04:33.25,eva main,Comment,0000,0000,0000,,Mobilize all of Atsugi and Iruma as well! +Dialogue: 0,0:04:33.32,0:04:36.72,eva main,Comment,0000,0000,0000,,Don't hold anything back!\NDestroy the target at any cost! +Dialogue: 0,0:04:50.05,0:04:52.17,eva main,Comment,0000,0000,0000,,Why?! That was a direct hit! +Dialogue: 0,0:04:52.64,0:04:55.04,eva main,Comment,0000,0000,0000,,The tank battalion's been annihilated. +Dialogue: 0,0:04:55.04,0:04:57.98,eva main,Comment,0000,0000,0000,,Guided missiles and artillery\nhave no effect either. +Dialogue: 0,0:04:57.98,0:05:01.52,eva main,Comment,0000,0000,0000,,It's no good! We'll never get anywhere\nwith the firepower we've got! +Dialogue: 0,0:05:01.52,0:05:03.39,eva main,Comment,0000,0000,0000,,Is it an AT field after all? +Dialogue: 0,0:05:01.52,0:05:04.52,eva notes,Comment,0000,0000,0000,,{\fad(400,400)\1a&H70&}AT field: absolute terror field +Dialogue: 0,0:05:03.39,0:05:07.34,eva main,Comment,0000,0000,0000,,Yes. Conventional weapons are\nuseless against Angels. +Dialogue: 0,0:05:10.76,0:05:13.99,eva main,Comment,0000,0000,0000,,I understand. We'll activate it as planned. +Dialogue: 0,0:05:18.80,0:05:20.29,eva main,Comment,0000,0000,0000,,Hey, don't tell me... +Dialogue: 0,0:05:20.37,0:05:22.23,eva main,Comment,0000,0000,0000,,They're going to use an N{\fnLucida Sans}²{\r} mine?! +Dialogue: 0,0:05:22.74,0:05:23.76,eva main,Comment,0000,0000,0000,,Get down! +Dialogue: 0,0:05:46.56,0:05:47.43,eva main,Comment,0000,0000,0000,,We did it! +Dialogue: 0,0:05:48.80,0:05:51.89,eva main,Comment,0000,0000,0000,,Sorry, but it looks like you won't be\ngetting a shot at it. +Dialogue: 0,0:05:51.97,0:05:54.16,eva broadcast,Comment,0000,0000,0000,,Shock wave approaching. +Dialogue: 0,0:05:55.37,0:05:56.70,eva main,Comment,0000,0000,0000,,Are you all right? +Dialogue: 0,0:05:56.77,0:06:00.11,eva main,Comment,0000,0000,0000,,Yeah, but my mouth is full of dirt. +Dialogue: 0,0:06:00.11,0:06:04.07,eva main,Comment,0000,0000,0000,,That's okay. Now then, here we go! +Dialogue: 0,0:06:04.75,0:06:06.08,eva main,Comment,0000,0000,0000,,One, two! +Dialogue: 0,0:06:09.88,0:06:11.44,eva main,Comment,0000,0000,0000,,There. +Dialogue: 0,0:06:14.79,0:06:16.88,eva main,Comment,0000,0000,0000,,Thanks for the hand. I really appreciate it. +Dialogue: 0,0:06:16.96,0:06:19.95,eva main,Comment,0000,0000,0000,,Thank you too, Katsuragi-san. +Dialogue: 0,0:06:20.03,0:06:22.09,eva main,Comment,0000,0000,0000,,Just Misato is fine. +Dialogue: 0,0:06:22.56,0:06:25.90,eva main,Comment,0000,0000,0000,,I'm glad we've met at last, Ikari Shinji-kun. +Dialogue: 0,0:06:26.20,0:06:27.02,eva main,Comment,0000,0000,0000,,Yeah... +Dialogue: 0,0:06:27.57,0:06:28.83,eva broadcast,Comment,0000,0000,0000,,What's the target's status? +Dialogue: 0,0:06:28.90,0:06:31.80,eva broadcast,Comment,0000,0000,0000,,We're unable to confirm due to\nall the EMP interference. +Dialogue: 0,0:06:31.87,0:06:34.64,eva main,Comment,0000,0000,0000,,You saw the size of the explosion. It's over. +Dialogue: 0,0:06:34.71,0:06:36.14,eva broadcast,Comment,0000,0000,0000,,Sensors restored. +Dialogue: 0,0:06:37.45,0:06:39.28,eva broadcast,Comment,0000,0000,0000,,We've got an energy reading\nat the explosion's epicenter! +Dialogue: 0,0:06:39.35,0:06:40.47,eva main,Comment,0000,0000,0000,,What the hell?! +Dialogue: 0,0:06:40.55,0:06:42.18,eva broadcast,Comment,0000,0000,0000,,Visual display restored. +Dialogue: 0,0:06:46.45,0:06:48.68,eva main,Comment,0000,0000,0000,,That was our last resort. +Dialogue: 0,0:06:49.62,0:06:51.53,eva main,Comment,0000,0000,0000,,How can this be? +Dialogue: 0,0:06:51.53,0:06:53.15,eva main,Comment,0000,0000,0000,,Damned monster! +Dialogue: 0,0:07:03.10,0:07:05.50,eva main,Comment,0000,0000,0000,,Yes. Don't worry about it. +Dialogue: 0,0:07:05.57,0:07:09.63,eva main,Comment,0000,0000,0000,,His safety is my top priority,\nso could you get a car train ready for us? +Dialogue: 0,0:07:09.71,0:07:10.94,eva main,Comment,0000,0000,0000,,A direct one. +Dialogue: 0,0:07:11.81,0:07:12.78,eva main,Comment,0000,0000,0000,,Right. +Dialogue: 0,0:07:13.15,0:07:15.48,eva main,Comment,0000,0000,0000,,Well, I volunteered to pick him up, +Dialogue: 0,0:07:15.48,0:07:18.18,eva main,Comment,0000,0000,0000,,so I'll make sure he gets there. See ya! +Dialogue: 0,0:07:20.52,0:07:26.95,eva main,Comment,0000,0000,0000,,Man, this sucks! I just had my car restored\nand it's a total wreck already! +Dialogue: 0,0:07:27.44,0:07:30.56,eva main,Comment,0000,0000,0000,,33 more loan payments to go,\nplus the cost of repairs. +Dialogue: 0,0:07:30.63,0:07:33.16,eva main,Comment,0000,0000,0000,,And look! My best dress has been ruined! +Dialogue: 0,0:07:33.54,0:07:37.30,eva main,Comment,0000,0000,0000,,And I was looking and feeling so nice. +Dialogue: 0,0:07:32.97,0:07:34.79,eva alternate,Comment,0000,0000,0000,,Excuse me, Misato-san? +Dialogue: 0,0:07:37.30,0:07:38.98,eva main,Comment,0000,0000,0000,,Excuse me, Misato-san? +Dialogue: 0,0:07:39.17,0:07:40.66,eva main,Comment,0000,0000,0000,,What? +Dialogue: 0,0:07:40.74,0:07:43.40,eva main,Comment,0000,0000,0000,,Are you sure you can just take those? +Dialogue: 0,0:07:45.25,0:07:46.21,eva main,Comment,0000,0000,0000,,Never mind about that! +Dialogue: 0,0:07:46.28,0:07:50.05,eva main,Comment,0000,0000,0000,,It's an emergency, and we need\na working car right now, right? +Dialogue: 0,0:07:50.12,0:07:53.61,eva main,Comment,0000,0000,0000,,And I'm an international government\nofficial, after all, +Dialogue: 0,0:07:53.69,0:07:55.28,eva main,Comment,0000,0000,0000,,so everything's going to be\nperfectly fine, okay? +Dialogue: 0,0:07:56.66,0:07:59.29,eva main,Comment,0000,0000,0000,,I don't think anyone will buy that. +Dialogue: 0,0:07:59.36,0:08:03.46,eva main,Comment,0000,0000,0000,,You're no fun. You look cute,\nbut you're kind of a cold fish. +Dialogue: 0,0:08:04.40,0:08:05.73,eva main,Comment,0000,0000,0000,,You think so? +Dialogue: 0,0:08:05.80,0:08:07.53,eva main,Comment,0000,0000,0000,,Oh, did I upset you? +Dialogue: 0,0:08:08.27,0:08:11.67,eva main,Comment,0000,0000,0000,,Sorry about that! You are a boy, after all. +Dialogue: 0,0:08:11.74,0:08:15.04,eva main,Comment,0000,0000,0000,,And you're pretty childish for your age. +Dialogue: 0,0:08:20.75,0:08:23.68,eva main,Comment,0000,0000,0000,,As we predicted, it's regenerating itself. +Dialogue: 0,0:08:23.99,0:08:27.85,eva main,Comment,0000,0000,0000,,If it couldn't, it wouldn't be\na practical autonomous weapon. +Dialogue: 0,0:08:31.49,0:08:35.09,eva main,Comment,0000,0000,0000,,Impressive. It appears it can even upgrade\nits own operational functions. +Dialogue: 0,0:08:35.43,0:08:37.69,eva main,Comment,0000,0000,0000,,And it seems to have gotten smarter. +Dialogue: 0,0:08:38.73,0:08:41.63,eva main,Comment,0000,0000,0000,,It's only a matter of time before\nit resumes attacking. +Dialogue: 0,0:08:43.04,0:08:46.61,eva bg broadcast,Comment,0000,0000,0000,,The gates are now closing.\NPlease stand clear. +Dialogue: 0,0:08:46.30,0:08:48.03,eva main,,0000,0000,0000,,The special duty organization Nerv? +Dialogue: 0,0:08:46.61,0:08:48.34,eva bg broadcast,Comment,0000,0000,0000,,Now departing. +Dialogue: 0,0:08:48.14,0:08:51.45,eva main,Comment,0000,0000,0000,,Yes, it's a secret organization under\nthe control of the United Nations. +Dialogue: 0,0:08:48.34,0:08:56.75,eva bg broadcast,Comment,0000,0000,0000,,This is the C-22 Special Express\ndeparting directly for G33-1. +Dialogue: 0,0:08:51.95,0:08:53.58,eva main,Comment,0000,0000,0000,,That's where my father is, right? +Dialogue: 0,0:08:53.58,0:08:54.75,eva main,Comment,0000,0000,0000,,Well, yeah. +Dialogue: 0,0:08:54.75,0:08:56.75,eva main,Comment,0000,0000,0000,,Do you know what he does? +Dialogue: 0,0:08:58.09,0:09:01.92,eva bg broadcast,Comment,0000,0000,0000,,This train will bypass all other stations.\NPlease stand back. +Dialogue: 0,0:09:00.69,0:09:04.52,eva main,Comment,0000,0000,0000,,My teacher told me his work is vital\nfor the protection of the human race. +Dialogue: 0,0:09:07.66,0:09:10.83,eva main,Comment,0000,0000,0000,,From this point forward, command of this\noperation will be entrusted to you. +Dialogue: 0,0:09:10.90,0:09:12.53,eva main,Comment,0000,0000,0000,,Show us what you're capable of. +Dialogue: 0,0:09:12.60,0:09:13.69,eva main,Comment,0000,0000,0000,,Yes, Sir. +Dialogue: 0,0:09:14.27,0:09:20.37,eva main,Comment,0000,0000,0000,,Ikari-kun, we will admit that our weapons\nhave no effect on the target. +Dialogue: 0,0:09:21.28,0:09:23.68,eva main,Comment,0000,0000,0000,,But are you sure you can beat this thing? +Dialogue: 0,0:09:24.15,0:09:25.83,eva main,Comment,0000,0000,0000,,It's what Nerv was created for. +Dialogue: 0,0:09:26.65,0:09:28.14,eva main,Comment,0000,0000,0000,,Let's hope you're correct. +Dialogue: 0,0:09:29.78,0:09:31.91,eva broadcast,Comment,0000,0000,0000,,The target is still stationary. +Dialogue: 0,0:09:31.99,0:09:35.35,eva broadcast,Comment,0000,0000,0000,,Our intercept system is currently\N7.5% operational. +Dialogue: 0,0:09:37.03,0:09:39.36,eva main,Comment,0000,0000,0000,,So, even the UN forces have retired. +Dialogue: 0,0:09:39.43,0:09:41.02,eva main,Comment,0000,0000,0000,,What are you going to do? +Dialogue: 0,0:09:41.53,0:09:43.52,eva main,Comment,0000,0000,0000,,I intend to activate Unit 01. +Dialogue: 0,0:09:43.77,0:09:46.86,eva main,Comment,0000,0000,0000,,Unit 01? But we have no pilot. +Dialogue: 0,0:09:47.50,0:09:51.10,eva main,Comment,0000,0000,0000,,That's not a problem. Another spare\nwill be delivered soon. +Dialogue: 0,0:09:52.07,0:09:54.80,eva main,Comment,0000,0000,0000,,Are you taking me to my father? +Dialogue: 0,0:09:55.31,0:09:57.40,eva main,Comment,0000,0000,0000,,Yes. Pretty much. +Dialogue: 0,0:10:01.25,0:10:02.51,eva main,Comment,0000,0000,0000,,Father... +Dialogue: 0,0:10:04.09,0:10:07.45,eva main,Comment,0000,0000,0000,,Oh, that's right. Did you get\nan ID card from your father? +Dialogue: 0,0:10:09.36,0:10:10.35,eva main,Comment,0000,0000,0000,,Yes. +Dialogue: 0,0:10:12.03,0:10:13.05,eva main,Comment,0000,0000,0000,,Here it is. +Dialogue: 0,0:10:13.13,0:10:14.43,eva main,Comment,0000,0000,0000,,Thanks. +Dialogue: 0,0:10:13.88,0:10:15.09,eva main,Comment,0000,0000,0000,,{\fnParla\fs35\b1\c&H293132&\frz9.564\bord2\shad0\3c&HBECAC1&\3a&H80&\pos(420,396)}Come. +Dialogue: 0,0:10:13.88,0:10:15.09,eva main,Comment,0000,0000,0000,,{\fnParla\b1\c&H293132&\frz9.564\bord2\shad0\3c&HBECAC1&\3a&H80&\pos(485,459)}Ikari Gendo +Dialogue: 0,0:10:15.80,0:10:18.20,eva main,Comment,0000,0000,0000,,Then read this. +Dialogue: 0,0:10:18.09,0:10:19.76,eva titles,Comment,0000,0000,0000,,{\frz2.561\bord0\shad0\c&H03100B&\pos(380,320)}Welcome to +Dialogue: 0,0:10:18.09,0:10:19.76,eva titles,Comment,0000,0000,0000,,{\frz2.561\bord0\shad0\c&H03100B&\i1\pos(380,353)}Nerv +Dialogue: 0,0:10:18.93,0:10:20.13,eva main,Comment,0000,0000,0000,,Nerv... +Dialogue: 0,0:10:21.00,0:10:22.26,eva main,Comment,0000,0000,0000,,My father's agency. +Dialogue: 0,0:10:23.00,0:10:25.06,eva main,Comment,0000,0000,0000,,Am I going to work for them too? +Dialogue: 0,0:10:27.01,0:10:28.50,eva main,Comment,0000,0000,0000,,Of course. +Dialogue: 0,0:10:28.68,0:10:32.81,eva main,Comment,0000,0000,0000,,He wouldn't have sent me a letter unless\nhe needed me for something. +Dialogue: 0,0:10:33.27,0:10:36.24,eva main,Comment,0000,0000,0000,,I see. So you don't get along with your father. +Dialogue: 0,0:10:37.65,0:10:39.24,eva main,Comment,0000,0000,0000,,It's the same with me. +Dialogue: 0,0:10:45.23,0:10:46.49,eva main,Comment,0000,0000,0000,,Awesome! +Dialogue: 0,0:10:47.70,0:10:49.39,eva main,Comment,0000,0000,0000,,It's the real Geo-Front! +Dialogue: 0,0:10:49.46,0:10:50.36,eva main,Comment,0000,0000,0000,,That's right. +Dialogue: 0,0:10:50.43,0:10:53.87,eva main,Comment,0000,0000,0000,,This is our secret base.\NNerv Headquarters. +Dialogue: 0,0:10:54.26,0:10:55.80,eva main,Comment,0000,0000,0000,,This is the key to rebuilding our world. +Dialogue: 0,0:10:55.87,0:10:58.34,eva main,Comment,0000,0000,0000,,A fortress for all mankind. +Dialogue: 1,0:11:04.91,0:11:10.18,eva main,Comment,0000,0000,0000,,That's strange. Isn't this the right way? +Dialogue: 0,0:11:07.10,0:11:08.64,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,90)}Nerv{\i0} Headquarters +Dialogue: 0,0:11:07.10,0:11:08.64,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,143)}Central Dogma +Dialogue: 0,0:11:07.10,0:11:08.64,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\pos(273,118)\bord0\shad0\c&H3B2C71&}Around here +Dialogue: 0,0:11:08.60,0:11:08.64,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,90)}Nerv{\i0} Headquarters +Dialogue: 0,0:11:08.64,0:11:08.68,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,99)}Nerv{\i0} Headquarters +Dialogue: 0,0:11:08.68,0:11:08.73,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,109)}Nerv{\i0} Headquarters +Dialogue: 0,0:11:08.73,0:11:08.77,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,125)}Nerv{\i0} Headquarters +Dialogue: 0,0:11:08.77,0:11:08.81,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,145)}Nerv{\i0} Headquarters +Dialogue: 0,0:11:08.81,0:11:08.85,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,186)}Nerv{\i0} Headquarters +Dialogue: 0,0:11:08.85,0:11:08.89,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,235)}Nerv{\i0} Headquarters +Dialogue: 0,0:11:08.89,0:11:08.93,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,285)}Nerv{\i0} Headquarters +Dialogue: 0,0:11:08.93,0:11:08.98,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,333)}Nerv{\i0} Headquarters +Dialogue: 0,0:11:08.98,0:11:09.02,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,394)}Nerv{\i0} Headquarters +Dialogue: 0,0:11:09.02,0:11:09.06,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,457)}Nerv{\i0} Headquarters +Dialogue: 0,0:11:08.60,0:11:08.64,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,143)}Central Dogma +Dialogue: 0,0:11:08.64,0:11:08.68,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,152)}Central Dogma +Dialogue: 0,0:11:08.68,0:11:08.73,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,162)}Central Dogma +Dialogue: 0,0:11:08.73,0:11:08.77,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,178)}Central Dogma +Dialogue: 0,0:11:08.77,0:11:08.81,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,198)}Central Dogma +Dialogue: 0,0:11:08.81,0:11:08.85,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,240)}Central Dogma +Dialogue: 0,0:11:08.85,0:11:08.89,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,287)}Central Dogma +Dialogue: 0,0:11:08.89,0:11:08.93,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,339)}Central Dogma +Dialogue: 0,0:11:08.93,0:11:08.98,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,384)}Central Dogma +Dialogue: 0,0:11:08.98,0:11:09.02,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,447)}Central Dogma +Dialogue: 0,0:11:08.64,0:11:08.68,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,128)}Around here +Dialogue: 0,0:11:08.68,0:11:08.73,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,138)}Around here +Dialogue: 0,0:11:08.73,0:11:08.77,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,154)}Around here +Dialogue: 0,0:11:08.77,0:11:08.81,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,171)}Around here +Dialogue: 0,0:11:08.81,0:11:08.85,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,213)}Around here +Dialogue: 0,0:11:08.85,0:11:08.89,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,262)}Around here +Dialogue: 0,0:11:08.89,0:11:08.93,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(276,312)}Around here +Dialogue: 0,0:11:08.93,0:11:08.98,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,358)}Around here +Dialogue: 0,0:11:08.98,0:11:09.02,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(273,420)}Around here +Dialogue: 0,0:11:09.02,0:11:09.06,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(281,480)}Around here +Dialogue: 0,0:11:10.89,0:11:12.49,eva bg broadcast,Comment,0000,0000,0000,,Central Dogma's closed passages\nremain sealed. +Dialogue: 0,0:11:12.49,0:11:15.29,eva main,Comment,0000,0000,0000,,This is why I hate wearing skirts here. +Dialogue: 0,0:11:12.92,0:11:17.76,eva bg broadcast,Comment,0000,0000,0000,,Opening block B-26 in sequence. +Dialogue: 0,0:11:15.79,0:11:18.56,eva main,Comment,0000,0000,0000,,But where the heck did Ritsuko go? +Dialogue: 0,0:11:18.63,0:11:21.42,eva main,Comment,0000,0000,0000,,I'm sorry. I'm just not used to this place yet. +Dialogue: 0,0:11:21.50,0:11:23.49,eva main,Comment,0000,0000,0000,,We passed this spot just a little while ago. +Dialogue: 0,0:11:24.87,0:11:26.30,eva main,Comment,0000,0000,0000,,But don't worry about it. +Dialogue: 0,0:11:26.37,0:11:29.24,eva main,Comment,0000,0000,0000,,They make these systems\nto be used, you know. +Dialogue: 0,0:11:29.24,0:11:31.97,eva bg broadcast,Comment,0000,0000,0000,,Would the head of Project E,\NTechnical Department Division 1, +Dialogue: 0,0:11:31.97,0:11:34.84,eva bg broadcast,Comment,0000,0000,0000,,Dr. Akagi Ritsuko, Dr. Akagi Ritsuko, +Dialogue: 0,0:11:34.84,0:11:39.48,eva bg broadcast,Comment,0000,0000,0000,,please contact Captain Katsuragi Misato\nof Operations, Division 1, immediately. +Dialogue: 0,0:11:39.61,0:11:41.45,eva main,Comment,0000,0000,0000,,I don't believe it. +Dialogue: 0,0:11:41.45,0:11:42.42,eva main,Comment,0000,0000,0000,,She got lost again, didn't she? +Dialogue: 0,0:11:46.89,0:11:48.95,eva main,Comment,0000,0000,0000,,Uh, hiya, Ritsuko. +Dialogue: 0,0:11:53.63,0:11:55.99,eva main,Comment,0000,0000,0000,,What were you doing, Captain Katsuragi? +Dialogue: 0,0:11:56.10,0:11:58.33,eva main,Comment,0000,0000,0000,,We're short on both time\nand manpower, you know. +Dialogue: 0,0:11:58.83,0:11:59.86,eva main,Comment,0000,0000,0000,,Sorry! +Dialogue: 0,0:12:03.14,0:12:04.97,eva main,Comment,0000,0000,0000,,So this is the boy? +Dialogue: 0,0:12:05.04,0:12:08.98,eva main,Comment,0000,0000,0000,,Right. According to the Marduk report,\nhe's the "Third Child". +Dialogue: 0,0:12:09.68,0:12:10.77,eva main,Comment,0000,0000,0000,,I'm glad to meet you. +Dialogue: 0,0:12:10.85,0:12:12.68,eva main,Comment,0000,0000,0000,,Huh? Sure. +Dialogue: 0,0:12:13.00,0:12:17.88,eva main,Comment,0000,0000,0000,,He's just like his father.\NLike how he's unendearing. +Dialogue: 0,0:12:18.25,0:12:19.51,eva main,Comment,0000,0000,0000,,I'll leave the rest to you. +Dialogue: 0,0:12:23.96,0:12:26.19,eva main,Comment,0000,0000,0000,,Their first meeting in over three years. +Dialogue: 0,0:12:27.23,0:12:30.89,eva main,Comment,0000,0000,0000,,Vice Commander, the target\nhas started moving again. +Dialogue: 0,0:12:30.97,0:12:34.37,eva main,Comment,0000,0000,0000,,Right. All personnel, assume\nbattle stations, Level One. +Dialogue: 0,0:12:34.54,0:12:37.91,eva bg broadcast,Comment,0000,0000,0000,,Repeat. All personnel, assume\nbattle stations, Level One. +Dialogue: 0,0:12:37.91,0:12:39.30,eva bg broadcast,Comment,0000,0000,0000,,Prepare for ground-unit interception. +Dialogue: 0,0:12:39.81,0:12:41.04,eva main,Comment,0000,0000,0000,,Here we go. +Dialogue: 0,0:12:41.04,0:12:42.27,eva main,Comment,0000,0000,0000,,It sounds pretty serious. +Dialogue: 0,0:12:43.41,0:12:45.58,eva main,Comment,0000,0000,0000,,So, how's Unit 01 doing? +Dialogue: 0,0:12:45.58,0:12:47.95,eva main,Comment,0000,0000,0000,,It's currently in refrigeration,\nusing the B-type equipment. +Dialogue: 0,0:12:47.95,0:12:51.95,eva main,Comment,0000,0000,0000,,Does it really work?\NIt's never worked before, right? +Dialogue: 0,0:12:51.95,0:12:56.89,eva main,Comment,0000,0000,0000,,The possibility of activation is 0.000000001%. +Dialogue: 0,0:12:57.49,0:12:59.99,eva main,Comment,0000,0000,0000,,We call it, pathetically enough,\nthe O-9 System. +Dialogue: 0,0:12:59.99,0:13:02.66,eva main,Comment,0000,0000,0000,,Does that mean it doesn't work? +Dialogue: 0,0:13:02.66,0:13:05.13,eva main,Comment,0000,0000,0000,,Oh, don't be insulting. It's not zero. +Dialogue: 0,0:13:05.13,0:13:06.83,eva main,Comment,0000,0000,0000,,Well, it's just a number. +Dialogue: 0,0:13:06.90,0:13:11.43,eva main,Comment,0000,0000,0000,,Anyway, it's a bit too late to be saying,\N"Sorry, it didn't work". +Dialogue: 0,0:13:20.05,0:13:22.81,eva main,Comment,0000,0000,0000,,Huh? It's completely dark. +Dialogue: 0,0:13:26.39,0:13:29.15,eva main,Comment,0000,0000,0000,,A face? A giant robot? +Dialogue: 0,0:13:30.86,0:13:33.02,eva main,Comment,0000,0000,0000,,You won't find this in the manual. +Dialogue: 0,0:13:34.16,0:13:38.13,eva main,Comment,0000,0000,0000,,This is mankind's ultimate\nmultipurpose decisive weapon, +Dialogue: 0,0:13:38.13,0:13:42.04,eva main,Comment,0000,0000,0000,,the synthetic human Evangelion, Unit 01. +Dialogue: 0,0:13:42.04,0:13:47.28,eva main,Comment,0000,0000,0000,,Built in absolute secrecy,\nit is mankind's trump card. +Dialogue: 0,0:13:47.28,0:13:49.28,eva main,Comment,0000,0000,0000,,Is this part of what my father's been doing? +Dialogue: 0,0:13:49.28,0:13:50.18,eva broadcast,Comment,0000,0000,0000,,Correct. +Dialogue: 0,0:13:52.15,0:13:53.48,eva main,Comment,0000,0000,0000,,It's been a while. +Dialogue: 0,0:13:54.55,0:13:55.68,eva main,Comment,0000,0000,0000,,Father... +Dialogue: 0,0:13:58.75,0:13:59.52,eva main,Comment,0000,0000,0000,,We're moving out! +Dialogue: 0,0:14:00.02,0:14:03.48,eva main,Comment,0000,0000,0000,,Moving out?! Unit 00's still in\ncryo-stasis, isn't it? +Dialogue: 0,0:14:05.43,0:14:07.62,eva main,Comment,0000,0000,0000,,You're not planning to use Unit 01?! +Dialogue: 0,0:14:08.43,0:14:09.96,eva main,Comment,0000,0000,0000,,There's no other way. +Dialogue: 0,0:14:09.96,0:14:12.83,eva main,Comment,0000,0000,0000,,Hold on! Rei can't do it yet, can she? +Dialogue: 0,0:14:13.77,0:14:15.17,eva main,Comment,0000,0000,0000,,We've got no pilot! +Dialogue: 0,0:14:16.10,0:14:17.26,eva main,Comment,0000,0000,0000,,A pilot has just been delivered. +Dialogue: 0,0:14:18.54,0:14:19.56,eva main,Comment,0000,0000,0000,,Are you serious? +Dialogue: 0,0:14:20.54,0:14:21.61,eva main,Comment,0000,0000,0000,,Ikari Shinji-kun... +Dialogue: 0,0:14:21.61,0:14:22.71,eva main,Comment,0000,0000,0000,,Yes? +Dialogue: 0,0:14:22.71,0:14:23.73,eva main,Comment,0000,0000,0000,,You will pilot it. +Dialogue: 0,0:14:24.45,0:14:29.44,eva main,Comment,0000,0000,0000,,But even Ayanami Rei took seven months\nto synchronize with her Eva. +Dialogue: 0,0:14:29.62,0:14:32.25,eva main,Comment,0000,0000,0000,,It's impossible for him to do it!\NHe just got here! +Dialogue: 0,0:14:32.32,0:14:35.12,eva main,Comment,0000,0000,0000,,He just has to sit in the seat.\NWe don't expect more than that. +Dialogue: 0,0:14:35.19,0:14:36.18,eva main,Comment,0000,0000,0000,,But... +Dialogue: 0,0:14:36.26,0:14:38.92,eva main,Comment,0000,0000,0000,,Repelling that Angel is our ultimate priority. +Dialogue: 0,0:14:39.43,0:14:43.02,eva main,Comment,0000,0000,0000,,To do that, we have no choice but to put\naboard the Eva whomever has the chance +Dialogue: 0,0:14:43.10,0:14:45.62,eva main,Comment,0000,0000,0000,,to synchronize with it, no matter how slight. +Dialogue: 0,0:14:46.87,0:14:48.80,eva main,Comment,0000,0000,0000,,I believe you know that, Captain Katsuragi. +Dialogue: 0,0:14:51.27,0:14:52.60,eva main,Comment,0000,0000,0000,,I suppose... +Dialogue: 0,0:14:54.21,0:14:56.61,eva main,Comment,0000,0000,0000,,Father, why did you send for me? +Dialogue: 0,0:14:56.61,0:14:58.75,eva main,Comment,0000,0000,0000,,You know exactly why. +Dialogue: 0,0:14:58.75,0:15:02.65,eva main,Comment,0000,0000,0000,,So, you're asking me to take this thing\nand fight that thing? +Dialogue: 0,0:15:03.35,0:15:04.35,eva main,Comment,0000,0000,0000,,That's right. +Dialogue: 0,0:15:04.35,0:15:08.02,eva main,Comment,0000,0000,0000,,No way! Why are you doing this now?! +Dialogue: 0,0:15:08.02,0:15:10.63,eva main,Comment,0000,0000,0000,,I thought you didn't need me! +Dialogue: 0,0:15:10.63,0:15:12.82,eva main,Comment,0000,0000,0000,,I called you because I have a need for you. +Dialogue: 0,0:15:15.40,0:15:16.83,eva main,Comment,0000,0000,0000,,Why me? +Dialogue: 0,0:15:17.47,0:15:19.70,eva main,Comment,0000,0000,0000,,Because no one else can. +Dialogue: 0,0:15:20.37,0:15:22.06,eva main,Comment,0000,0000,0000,,No, I can't... +Dialogue: 0,0:15:22.50,0:15:26.03,eva main,Comment,0000,0000,0000,,I've never even seen anything\nlike this before! I can't do this! +Dialogue: 0,0:15:27.01,0:15:28.41,eva main,Comment,0000,0000,0000,,You will be instructed. +Dialogue: 0,0:15:29.04,0:15:32.88,eva main,Comment,0000,0000,0000,,But there's no way I can do this! +Dialogue: 0,0:15:33.71,0:15:35.74,eva main,Comment,0000,0000,0000,,I can't pilot it! +Dialogue: 0,0:15:37.22,0:15:40.24,eva main,Comment,0000,0000,0000,,If you're going to pilot it, do it now\nand quickly. If not, leave! +Dialogue: 0,0:15:51.93,0:15:54.46,eva main,Comment,0000,0000,0000,,It must have detected our location. +Dialogue: 0,0:15:58.11,0:16:00.04,eva main,Comment,0000,0000,0000,,Shinji-kun, we don't have time. +Dialogue: 0,0:16:05.08,0:16:06.24,eva main,Comment,0000,0000,0000,,Get into it. +Dialogue: 0,0:16:07.31,0:16:11.98,eva main,Comment,0000,0000,0000,,No! I didn't come for this! This isn't fair! +Dialogue: 0,0:16:13.25,0:16:16.69,eva main,Comment,0000,0000,0000,,Shinji-kun, just why did you come here? +Dialogue: 0,0:16:18.59,0:16:22.69,eva main,Comment,0000,0000,0000,,You mustn't run! Not from your father,\nand most of all not from yourself. +Dialogue: 0,0:16:23.33,0:16:27.39,eva main,Comment,0000,0000,0000,,I know that! But there's no way I can do it! +Dialogue: 0,0:16:35.54,0:16:36.53,eva main,Comment,0000,0000,0000,,Fuyutsuki... +Dialogue: 0,0:16:37.85,0:16:39.25,eva main,Comment,0000,0000,0000,,Wake up Rei. +Dialogue: 0,0:16:39.25,0:16:40.75,eva broadcast,Comment,0000,0000,0000,,Can we use her? +Dialogue: 0,0:16:40.75,0:16:42.31,eva main,Comment,0000,0000,0000,,She isn't dead. +Dialogue: 0,0:16:43.45,0:16:44.58,eva broadcast,Comment,0000,0000,0000,,I understand. +Dialogue: 0,0:16:46.39,0:16:47.25,eva main,Comment,0000,0000,0000,,Rei. +Dialogue: 0,0:16:47.25,0:16:48.39,eva main,Comment,0000,0000,0000,,Yes? +Dialogue: 0,0:16:48.39,0:16:51.26,eva main,Comment,0000,0000,0000,,Our spare is unusable. You will do it again. +Dialogue: 0,0:16:51.26,0:16:52.23,eva main,Comment,0000,0000,0000,,Yes, Sir. +Dialogue: 0,0:16:54.50,0:16:57.93,eva main,Comment,0000,0000,0000,,Reconfigure Unit 01's system to Rei,\nthen re-activate! +Dialogue: 0,0:16:57.93,0:17:00.99,eva broadcast,Comment,0000,0000,0000,,Roger. Call off the present work,\nand begin re-activation. +Dialogue: 0,0:17:02.97,0:17:06.80,eva main,Comment,0000,0000,0000,,I knew it. I'm not needed after all. +Dialogue: 0,0:17:40.67,0:17:41.70,eva main,Comment,0000,0000,0000,,Watch out! +Dialogue: 0,0:17:51.32,0:17:52.89,eva broadcast,Comment,0000,0000,0000,,The Eva moved! +Dialogue: 0,0:17:52.89,0:17:54.09,eva broadcast,Comment,0000,0000,0000,,What's going on?! +Dialogue: 0,0:17:54.09,0:17:56.46,eva broadcast,Comment,0000,0000,0000,,It broke the right arm restraint! +Dialogue: 0,0:17:56.46,0:17:58.02,eva main,Comment,0000,0000,0000,,No, that's impossible! +Dialogue: 0,0:17:58.53,0:18:00.73,eva main,Comment,0000,0000,0000,,It didn't even have an entry plug inserted! +Dialogue: 0,0:18:00.73,0:18:01.96,eva main,Comment,0000,0000,0000,,There's no way it could have moved! +Dialogue: 0,0:18:03.10,0:18:05.33,eva main,Comment,0000,0000,0000,,It reacted without any interface?! +Dialogue: 0,0:18:06.13,0:18:08.20,eva main,Comment,0000,0000,0000,,Or was it protecting... +Dialogue: 0,0:18:08.20,0:18:09.23,eva main,Comment,0000,0000,0000,,him? +Dialogue: 0,0:18:10.54,0:18:11.53,eva main,Comment,0000,0000,0000,,We can do it. +Dialogue: 0,0:18:32.56,0:18:37.16,eva main,Comment,0000,0000,0000,,I mustn't run away. I mustn't run away.\NI mustn't run away. I mustn't run away. +Dialogue: 0,0:18:37.16,0:18:38.32,eva main,Comment,0000,0000,0000,,I mustn't run away! +Dialogue: 0,0:18:39.77,0:18:40.67,eva main,Comment,0000,0000,0000,,I'll do it. +Dialogue: 0,0:18:41.37,0:18:42.49,eva main,Comment,0000,0000,0000,,I'll pilot it! +Dialogue: 0,0:18:46.04,0:18:47.34,eva broadcast,Comment,0000,0000,0000,,Cooling process, completed. +Dialogue: 0,0:18:47.34,0:18:48.88,eva broadcast,Comment,0000,0000,0000,,Right arm re-secured. +Dialogue: 0,0:18:48.88,0:18:50.91,eva broadcast,Comment,0000,0000,0000,,Cage contents now in position for docking. +Dialogue: 0,0:18:50.91,0:18:51.85,eva main,Comment,0000,0000,0000,,Roger. +Dialogue: 0,0:18:51.85,0:18:54.68,eva main,Comment,0000,0000,0000,,Signal terminator plug has been ejected. +Dialogue: 0,0:18:55.22,0:18:57.82,eva broadcast,Comment,0000,0000,0000,,Roger. Inserting entry plug. +Dialogue: 0,0:18:57.82,0:19:00.88,eva broadcast,Comment,0000,0000,0000,,Direct hydro-transmission system,\nconnection prepared. +Dialogue: 0,0:19:04.93,0:19:06.43,eva broadcast,Comment,0000,0000,0000,,Plug fixed in place. +Dialogue: 0,0:19:06.43,0:19:08.16,eva broadcast,Comment,0000,0000,0000,,First stage connection initiated. +Dialogue: 0,0:19:13.07,0:19:14.90,eva broadcast,Comment,0000,0000,0000,,Filling the entry plug. +Dialogue: 0,0:19:16.07,0:19:17.47,eva main,Comment,0000,0000,0000,,What is this stuff? +Dialogue: 0,0:19:21.41,0:19:24.45,eva main,Comment,0000,0000,0000,,Don't worry. Once your lungs\nare filled with LCL, +Dialogue: 0,0:19:24.45,0:19:27.21,eva main,Comment,0000,0000,0000,,your blood will be oxygenated directly. +Dialogue: 0,0:19:27.21,0:19:28.55,eva broadcast,Comment,0000,0000,0000,,You'll get used to it. +Dialogue: 0,0:19:32.02,0:19:33.45,eva main,Comment,0000,0000,0000,,I feel nauseous. +Dialogue: 0,0:19:33.45,0:19:35.72,eva main,Comment,0000,0000,0000,,Stop whining! You're a boy, aren't you?! +Dialogue: 0,0:19:37.02,0:19:38.16,eva broadcast,Comment,0000,0000,0000,,Connecting main power. +Dialogue: 0,0:19:38.16,0:19:40.86,eva broadcast,Comment,0000,0000,0000,,All circuits transmitting power. +Dialogue: 0,0:19:40.86,0:19:41.70,eva broadcast,Comment,0000,0000,0000,,Roger. +Dialogue: 0,0:19:41.70,0:19:43.36,eva broadcast,Comment,0000,0000,0000,,Commencing secondary contacts. +Dialogue: 0,0:19:44.93,0:19:47.37,eva broadcast,Comment,0000,0000,0000,,A-10 nerve connection, normal. +Dialogue: 0,0:19:47.37,0:19:52.57,eva broadcast,Comment,0000,0000,0000,,Set the thought configuration to Japanese. +Dialogue: 0,0:19:53.44,0:19:55.88,eva broadcast,Comment,0000,0000,0000,,All preliminary contacts established.\NPerformance nominal. +Dialogue: 0,0:19:55.88,0:19:57.67,eva broadcast,Comment,0000,0000,0000,,Bi-directional circuits are open. +Dialogue: 0,0:19:58.21,0:20:00.74,eva broadcast,Comment,0000,0000,0000,,Synchronization rate at 41.3%. +Dialogue: 0,0:20:01.38,0:20:02.62,eva main,Comment,0000,0000,0000,,Amazing. +Dialogue: 0,0:20:02.62,0:20:06.21,eva main,Comment,0000,0000,0000,,Harmonics are all normal.\NNo disturbances identified. +Dialogue: 0,0:20:06.99,0:20:08.01,eva main,Comment,0000,0000,0000,,We can do it. +Dialogue: 0,0:20:09.39,0:20:10.62,eva main,Comment,0000,0000,0000,,Prepare to launch! +Dialogue: 0,0:20:12.59,0:20:14.13,eva broadcast,Comment,0000,0000,0000,,Prepare to launch! +Dialogue: 0,0:20:14.13,0:20:15.60,eva broadcast,Comment,0000,0000,0000,,Disengage primary lock bolts! +Dialogue: 0,0:20:17.13,0:20:20.29,eva broadcast,Comment,0000,0000,0000,,Disengage confirmed.\NDisengaging the umbilical bridge. +Dialogue: 0,0:20:22.70,0:20:24.10,eva broadcast,Comment,0000,0000,0000,,Disengage secondary lock bolts. +Dialogue: 0,0:20:26.44,0:20:28.38,eva broadcast,Comment,0000,0000,0000,,Disengage primary restraints. +Dialogue: 0,0:20:28.38,0:20:30.81,eva broadcast,Comment,0000,0000,0000,,Likewise, disengage secondary restraints. +Dialogue: 0,0:20:34.28,0:20:37.22,eva broadcast,Comment,0000,0000,0000,,Release safety locks numbers\none through fifteen. +Dialogue: 0,0:20:37.22,0:20:38.24,eva broadcast,Comment,0000,0000,0000,,Release confirmed. +Dialogue: 0,0:20:38.65,0:20:40.79,eva broadcast,Comment,0000,0000,0000,,Currently, Unit 01's condition is free. +Dialogue: 0,0:20:40.79,0:20:42.42,eva broadcast,Comment,0000,0000,0000,,Internal batteries fully charged. +Dialogue: 0,0:20:42.42,0:20:44.45,eva broadcast,Comment,0000,0000,0000,,External battery outlet, normal. +Dialogue: 0,0:20:45.03,0:20:47.96,eva main,Comment,0000,0000,0000,,Roger. Move Eva Unit 01\nto the ejector pad. +Dialogue: 0,0:21:03.54,0:21:05.44,eva main,Comment,0000,0000,0000,,Launch path is clear. All systems green. +Dialogue: 0,0:21:05.85,0:21:07.18,eva main,Comment,0000,0000,0000,,Ready for launch. +Dialogue: 0,0:21:08.25,0:21:09.18,eva main,Comment,0000,0000,0000,,Roger. +Dialogue: 0,0:21:10.02,0:21:11.12,eva main,Comment,0000,0000,0000,,Can we really do this? +Dialogue: 0,0:21:11.12,0:21:12.18,eva main,Comment,0000,0000,0000,,Of course. +Dialogue: 0,0:21:13.05,0:21:15.61,eva main,Comment,0000,0000,0000,,Unless we defeat the Angels,\nwe have no future. +Dialogue: 0,0:21:17.19,0:21:20.18,eva main,Comment,0000,0000,0000,,Ikari, you're really sure about this? +Dialogue: 0,0:21:21.83,0:21:22.80,eva main,Comment,0000,0000,0000,,Launch! +Dialogue: 0,0:21:56.76,0:21:58.86,eva main,Comment,0000,0000,0000,,Shinji-kun, don't get killed out there. +Dialogue: 0,0:21:58.83,0:22:00.46,eva titles,Comment,0000,0000,0000,,{\fsp-3\fs80\pos(531,377)}To Be Continued +Dialogue: 0,0:23:05.86,0:23:06.77,eva titles,Comment,0000,0000,0000,,{\pos(352,487)\fsp-3}Preview +Dialogue: 0,0:23:06.77,0:23:08.14,eva main,Comment,0000,0000,0000,,Eva triumphs over the Angel! +Dialogue: 0,0:23:08.14,0:23:10.40,eva main,Comment,0000,0000,0000,,However, that was just the beginning. +Dialogue: 0,0:23:10.64,0:23:12.27,eva main,Comment,0000,0000,0000,,Shinji runs away from his father. +Dialogue: 0,0:23:12.27,0:23:15.67,eva main,Comment,0000,0000,0000,,Misato's arrogance leads her\nto try to save him. +Dialogue: 0,0:23:16.04,0:23:18.41,eva main,Comment,0000,0000,0000,,Next Evangelion: "Unfamiliar Ceiling" +Dialogue: 0,0:23:18.41,0:23:20.45,eva main,Comment,0000,0000,0000,,I'll give you fan service next time too! +Dialogue: 0,0:23:18.83,0:23:20.87,eva titles,Comment,0000,0000,0000,,{\c&H071914&\fsp-3\pos(353,389)}Unfamiliar Ceiling +Dialogue: 0,0:23:18.83,0:23:20.87,eva titles,Comment,0000,0000,0000,,{\c&H071914&\fs60\fsp-2\pos(343,85)}Next Episode diff --git a/unit_test/test_files/format_encore.txt b/unit_test/test_files/format_encore.txt new file mode 100644 index 000000000..aa50d842f --- /dev/null +++ b/unit_test/test_files/format_encore.txt @@ -0,0 +1,515 @@ +1 00;01;30;11 00;01;32;21The year is 2015 A.D. +2 00;01;55;02 00;01;59;00As of 12:30 PM today, a special state +of emergency has been declared +3 00;01;59;03 00;02;03;07for the Kanto and Chubu regions +surrounding the Tokai district. +4 00;02;03;23 00;02;07;23All residents must evacuate to their +designated shelters immediately. +5 00;02;08;07 00;02;11;19Repeating: As of 12:30 PM today, +6 00;02;11;19 00;02;12;16All Lines Stopped +Repeating: As of 12:30 PM today, +7 00;02;12;16 00;02;14;02the Kanto and Chubu regions +surrounding the Tokai district +All Lines Stopped +8 00;02;14;02 00;02;16;05the Kanto and Chubu regions +surrounding the Tokai district +9 00;02;16;07 00;02;19;09have been declared to be under +a state of emergency. +10 00;02;19;11 00;02;20;27All residents must evacuate... +11 00;02;20;27 00;02;24;11Why did I have to lose sight of him now? +12 00;02;24;11 00;02;26;03Oh, man! +13 00;02;26;03 00;02;26;06Ikari Shinji +Oh, man! +14 00;02;26;06 00;02;27;07Ikari Shinji +15 00;02;27;07 00;02;28;22Due to the special emergency, +Ikari Shinji +16 00;02;28;22 00;02;29;28Due to the special emergency, +17 00;02;30;00 00;02;33;08all lines are currently unavailable. +18 00;02;34;22 00;02;35;21It's no use. +19 00;02;36;23 00;02;39;02I shouldn't have come here after all. +20 00;02;42;25 00;02;43;11for me.♥ +Attention here!! +I'll be coming to +get you, so wait +To Shinji-kun +21 00;02;43;11 00;02;45;07Well, I guess we won't be meeting here. +for me.♥ +Attention here!! +I'll be coming to +get you, so wait +To Shinji-kun +22 00;02;45;07 00;02;45;22Well, I guess we won't be meeting here. +23 00;02;46;26 00;02;49;14Can't be helped. I'll go to a shelter. +24 00;03;14;18 00;03;15;04ESTIMATED PATH +25 00;03;15;04 00;03;18;16The unidentified mobile object is still +advancing on our position. +ESTIMATED PATH +26 00;03;18;16 00;03;18;17The unidentified mobile object is still +advancing on our position. +27 00;03;19;11 00;03;22;18We've got visual confirmation. +I'm putting it on the main screen. +28 00;03;24;08 00;03;26;03It's been fifteen years, hasn't it? +29 00;03;26;05 00;03;28;09Yes, there's no doubt. +30 00;03;29;08 00;03;30;15It's an Angel. +31 00;03;30;15 00;03;33;05Episode One +Angel Attack +32 00;03;42;14 00;03;44;10Every missile hit the target! +33 00;04;03;15 00;04;05;03I'm sorry! Thanks for waiting! +34 00;04;22;03 00;04;26;21The target is still operational. +It's still heading towards New Tokyo-3. +35 00;04;26;23 00;04;29;09The Air Defense Force doesn't have +the firepower to stop it! +36 00;04;30;03 00;04;31;08Hit it with everything we've got! +37 00;04;31;08 00;04;33;07Mobilize all of Atsugi and Iruma as well! +38 00;04;33;09 00;04;36;21Don't hold anything back! +Destroy the target at any cost! +39 00;04;50;01 00;04;52;05Why?! That was a direct hit! +40 00;04;52;19 00;04;55;01The tank battalion's been annihilated. +41 00;04;55;01 00;04;57;29Guided missiles and artillery +have no effect either. +42 00;04;57;29 00;05;01;15It's no good! We'll never get anywhere +with the firepower we've got! +43 00;05;01;15 00;05;03;11AT field: absolute terror field +Is it an AT field after all? +44 00;05;03;11 00;05;04;15Yes. Conventional weapons are +useless against Angels. +AT field: absolute terror field +45 00;05;04;15 00;05;07;10Yes. Conventional weapons are +useless against Angels. +46 00;05;10;22 00;05;13;29I understand. We'll activate it as planned. +47 00;05;18;23 00;05;20;08Hey, don't tell me... +48 00;05;20;11 00;05;22;06They're going to use an N² mine?! +49 00;05;22;22 00;05;23;22Get down! +50 00;05;46;16 00;05;47;12We did it! +51 00;05;48;23 00;05;51;26Sorry, but it looks like you won't be +getting a shot at it. +52 00;05;51;29 00;05;54;04Shock wave approaching. +53 00;05;55;11 00;05;56;20Are you all right? +54 00;05;56;23 00;06;00;03Yeah, but my mouth is full of dirt. +55 00;06;00;03 00;06;04;02That's okay. Now then, here we go! +56 00;06;04;22 00;06;06;02One, two! +57 00;06;09;26 00;06;11;13There. +58 00;06;14;23 00;06;16;26Thanks for the hand. I really appreciate it. +59 00;06;16;28 00;06;19;28Thank you too, Katsuragi-san. +60 00;06;20;00 00;06;22;02Just Misato is fine. +61 00;06;22;16 00;06;25;26I'm glad we've met at last, Ikari Shinji-kun. +62 00;06;26;05 00;06;27;00Yeah... +63 00;06;27;17 00;06;28;24What's the target's status? +64 00;06;28;26 00;06;31;23We're unable to confirm due to +all the EMP interference. +65 00;06;31;26 00;06;34;19You saw the size of the explosion. It's over. +66 00;06;34;21 00;06;36;04Sensors restored. +67 00;06;37;13 00;06;39;08We've got an energy reading +at the explosion's epicenter! +68 00;06;39;10 00;06;40;14What the hell?! +69 00;06;40;16 00;06;42;05Visual display restored. +70 00;06;46;13 00;06;48;20That was our last resort. +71 00;06;49;18 00;06;51;15How can this be? +72 00;06;51;15 00;06;53;04Damned monster! +73 00;07;03;02 00;07;05;14Yes. Don't worry about it. +74 00;07;05;17 00;07;09;18His safety is my top priority, +so could you get a car train ready for us? +75 00;07;09;21 00;07;10;28A direct one. +76 00;07;11;24 00;07;12;23Right. +77 00;07;13;04 00;07;15;14Well, I volunteered to pick him up, +78 00;07;15;14 00;07;18;05so I'll make sure he gets there. See ya! +79 00;07;20;15 00;07;26;28Man, this sucks! I just had my car restored +and it's a total wreck already! +80 00;07;27;13 00;07;30;1633 more loan payments to go, +plus the cost of repairs. +81 00;07;30;18 00;07;32;29And look! My best dress has been ruined! +82 00;07;32;29 00;07;33;04Excuse me, Misato-san? +And look! My best dress has been ruined! +83 00;07;33;04 00;07;33;16Excuse me, Misato-san? +84 00;07;33;16 00;07;34;23And I was looking and feeling so nice. +Excuse me, Misato-san? +85 00;07;34;23 00;07;37;08And I was looking and feeling so nice. +86 00;07;37;08 00;07;38;29Excuse me, Misato-san? +87 00;07;39;05 00;07;40;19What? +88 00;07;40;22 00;07;43;11Are you sure you can just take those? +89 00;07;45;07 00;07;46;06Never mind about that! +90 00;07;46;08 00;07;50;01It's an emergency, and we need +a working car right now, right? +91 00;07;50;03 00;07;53;18And I'm an international government +official, after all, +92 00;07;53;20 00;07;55;08so everything's going to be +perfectly fine, okay? +93 00;07;56;19 00;07;59;08I don't think anyone will buy that. +94 00;07;59;10 00;08;03;13You're no fun. You look cute, +but you're kind of a cold fish. +95 00;08;04;11 00;08;05;21You think so? +96 00;08;05;23 00;08;07;15Oh, did I upset you? +97 00;08;08;08 00;08;11;20Sorry about that! You are a boy, after all. +98 00;08;11;22 00;08;15;01And you're pretty childish for your age. +99 00;08;20;22 00;08;23;20As we predicted, it's regenerating itself. +100 00;08;23;29 00;08;27;25If it couldn't, it wouldn't be +a practical autonomous weapon. +101 00;08;31;14 00;08;35;02Impressive. It appears it can even upgrade +its own operational functions. +102 00;08;35;12 00;08;37;20And it seems to have gotten smarter. +103 00;08;38;21 00;08;41;18It's only a matter of time before +it resumes attacking. +104 00;08;43;01 00;08;46;08The gates are now closing. +Please stand clear. +105 00;08;46;08 00;08;46;18The special duty organization Nerv? +The gates are now closing. +Please stand clear. +106 00;08;46;18 00;08;48;00Now departing. +The special duty organization Nerv? +107 00;08;48;00 00;08;48;04Now departing. +108 00;08;48;04 00;08;48;10Yes, it's a secret organization under +the control of the United Nations. +Now departing. +109 00;08;48;10 00;08;51;13This is the C-22 Special Express +departing directly for G33-1. +Yes, it's a secret organization under +the control of the United Nations. +110 00;08;51;13 00;08;51;28This is the C-22 Special Express +departing directly for G33-1. +111 00;08;51;28 00;08;53;17That's where my father is, right? +This is the C-22 Special Express +departing directly for G33-1. +112 00;08;53;17 00;08;54;22Well, yeah. +This is the C-22 Special Express +departing directly for G33-1. +113 00;08;54;22 00;08;56;22Do you know what he does? +This is the C-22 Special Express +departing directly for G33-1. +114 00;08;58;02 00;09;00;20This train will bypass all other stations. +Please stand back. +115 00;09;00;20 00;09;01;27My teacher told me his work is vital +for the protection of the human race. +This train will bypass all other stations. +Please stand back. +116 00;09;01;27 00;09;04;15My teacher told me his work is vital +for the protection of the human race. +117 00;09;07;19 00;09;10;24From this point forward, command of this +operation will be entrusted to you. +118 00;09;10;26 00;09;12;15Show us what you're capable of. +119 00;09;12;17 00;09;13;20Yes, Sir. +120 00;09;14;08 00;09;20;11Ikari-kun, we will admit that our weapons +have no effect on the target. +121 00;09;21;08 00;09;23;20But are you sure you can beat this thing? +122 00;09;24;04 00;09;25;24It's what Nerv was created for. +123 00;09;26;19 00;09;28;04Let's hope you're correct. +124 00;09;29;23 00;09;31;27The target is still stationary. +125 00;09;31;29 00;09;35;10Our intercept system is currently +7.5% operational. +126 00;09;37;00 00;09;39;10So, even the UN forces have retired. +127 00;09;39;12 00;09;41;00What are you going to do? +128 00;09;41;15 00;09;43;15I intend to activate Unit 01. +129 00;09;43;23 00;09;46;25Unit 01? But we have no pilot. +130 00;09;47;14 00;09;51;02That's not a problem. Another spare +will be delivered soon. +131 00;09;52;02 00;09;54;23Are you taking me to my father? +132 00;09;55;09 00;09;57;11Yes. Pretty much. +133 00;10;01;07 00;10;02;15Father... +134 00;10;04;02 00;10;07;13Oh, that's right. Did you get +an ID card from your father? +135 00;10;09;10 00;10;10;10Yes. +136 00;10;12;00 00;10;13;01Here it is. +137 00;10;13;03 00;10;13;26Thanks. +138 00;10;13;26 00;10;14;12Ikari Gendo +Come. +Thanks. +139 00;10;14;12 00;10;15;02Come. +Ikari Gendo +140 00;10;15;23 00;10;18;02Then read this. +141 00;10;18;02 00;10;18;05Nerv +Welcome to +Then read this. +142 00;10;18;05 00;10;18;27Welcome to +Nerv +143 00;10;18;27 00;10;19;22Nerv... +Welcome to +Nerv +144 00;10;19;22 00;10;20;03Nerv... +145 00;10;21;00 00;10;22;07My father's agency. +146 00;10;23;00 00;10;25;01Am I going to work for them too? +147 00;10;27;00 00;10;28;14Of course. +148 00;10;28;20 00;10;32;24He wouldn't have sent me a letter unless +he needed me for something. +149 00;10;33;08 00;10;36;07I see. So you don't get along with your father. +150 00;10;37;19 00;10;39;07It's the same with me. +151 00;10;45;06 00;10;46;14Awesome! +152 00;10;47;20 00;10;49;11It's the real Geo-Front! +153 00;10;49;13 00;10;50;10That's right. +154 00;10;50;12 00;10;53;26This is our secret base. +Nerv Headquarters. +155 00;10;54;07 00;10;55;23This is the key to rebuilding our world. +156 00;10;55;26 00;10;58;10A fortress for all mankind. +157 00;11;04;27 00;11;07;02That's strange. Isn't this the right way? +158 00;11;07;02 00;11;08;17Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? +159 00;11;08;17 00;11;08;19Central Dogma +Nerv Headquarters +Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? +160 00;11;08;19 00;11;08;20Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? +161 00;11;08;20 00;11;08;21Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? +162 00;11;08;21 00;11;08;23Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? +163 00;11;08;23 00;11;08;24Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? +164 00;11;08;24 00;11;08;25Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? +165 00;11;08;25 00;11;08;26Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? +166 00;11;08;26 00;11;08;27Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? +167 00;11;08;27 00;11;08;29Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? +168 00;11;08;29 00;11;09;00Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? +169 00;11;09;00 00;11;09;01Around here +Nerv Headquarters +That's strange. Isn't this the right way? +170 00;11;09;01 00;11;10;05That's strange. Isn't this the right way? +171 00;11;10;26 00;11;12;14Central Dogma's closed passages +remain sealed. +172 00;11;12;14 00;11;12;27This is why I hate wearing skirts here. +173 00;11;12;27 00;11;15;08Opening block B-26 in sequence. +This is why I hate wearing skirts here. +174 00;11;15;08 00;11;15;23Opening block B-26 in sequence. +175 00;11;15;23 00;11;17;22But where the heck did Ritsuko go? +Opening block B-26 in sequence. +176 00;11;17;22 00;11;18;16But where the heck did Ritsuko go? +177 00;11;18;18 00;11;21;12I'm sorry. I'm just not used to this place yet. +178 00;11;21;14 00;11;23;14We passed this spot just a little while ago. +179 00;11;24;26 00;11;26;08But don't worry about it. +180 00;11;26;11 00;11;29;07They make these systems +to be used, you know. +181 00;11;29;07 00;11;31;29Would the head of Project E, +Technical Department Division 1, +182 00;11;31;29 00;11;34;25Dr. Akagi Ritsuko, Dr. Akagi Ritsuko, +183 00;11;34;25 00;11;39;14please contact Captain Katsuragi Misato +of Operations, Division 1, immediately. +184 00;11;39;18 00;11;41;13I don't believe it. +185 00;11;41;13 00;11;42;12She got lost again, didn't she? +186 00;11;46;26 00;11;48;28Uh, hiya, Ritsuko. +187 00;11;53;18 00;11;55;29What were you doing, Captain Katsuragi? +188 00;11;56;02 00;11;58;09We're short on both time +and manpower, you know. +189 00;11;58;24 00;11;59;25Sorry! +190 00;12;03;04 00;12;04;29So this is the boy? +191 00;12;05;01 00;12;08;29Right. According to the Marduk report, +he's the "Third Child". +192 00;12;09;20 00;12;10;23I'm glad to meet you. +193 00;12;10;25 00;12;12;20Huh? Sure. +194 00;12;13;00 00;12;17;26He's just like his father. +Like how he's unendearing. +195 00;12;18;07 00;12;19;15I'll leave the rest to you. +196 00;12;23;28 00;12;26;05Their first meeting in over three years. +197 00;12;27;06 00;12;30;26Vice Commander, the target +has started moving again. +198 00;12;30;29 00;12;34;11Right. All personnel, assume +battle stations, Level One. +199 00;12;34;16 00;12;37;27Repeat. All personnel, assume +battle stations, Level One. +200 00;12;37;27 00;12;39;08Prepare for ground-unit interception. +201 00;12;39;24 00;12;41;01Here we go. +202 00;12;41;01 00;12;42;08It sounds pretty serious. +203 00;12;43;12 00;12;45;17So, how's Unit 01 doing? +204 00;12;45;17 00;12;47;28It's currently in refrigeration, +using the B-type equipment. +205 00;12;47;28 00;12;51;28Does it really work? +It's never worked before, right? +206 00;12;51;28 00;12;56;26The possibility of activation is 0.000000001%. +207 00;12;57;14 00;12;59;29We call it, pathetically enough, +the O-9 System. +208 00;12;59;29 00;13;02;19Does that mean it doesn't work? +209 00;13;02;19 00;13;05;03Oh, don't be insulting. It's not zero. +210 00;13;05;03 00;13;06;24Well, it's just a number. +211 00;13;06;26 00;13;11;12Anyway, it's a bit too late to be saying, +"Sorry, it didn't work". +212 00;13;20;01 00;13;22;24Huh? It's completely dark. +213 00;13;26;11 00;13;29;04A face? A giant robot? +214 00;13;30;25 00;13;33;00You won't find this in the manual. +215 00;13;34;04 00;13;38;03This is mankind's ultimate +multipurpose decisive weapon, +216 00;13;38;03 00;13;42;01the synthetic human Evangelion, Unit 01. +217 00;13;42;01 00;13;47;08Built in absolute secrecy, +it is mankind's trump card. +218 00;13;47;08 00;13;49;08Is this part of what my father's been doing? +219 00;13;49;08 00;13;50;05Correct. +220 00;13;52;04 00;13;53;14It's been a while. +221 00;13;54;16 00;13;55;20Father... +222 00;13;58;22 00;13;59;15We're moving out! +223 00;14;00;00 00;14;03;14Moving out?! Unit 00's still in +cryo-stasis, isn't it? +224 00;14;05;12 00;14;07;18You're not planning to use Unit 01?! +225 00;14;08;12 00;14;09;28There's no other way. +226 00;14;09;28 00;14;12;24Hold on! Rei can't do it yet, can she? +227 00;14;13;23 00;14;15;05We've got no pilot! +228 00;14;16;02 00;14;17;07A pilot has just been delivered. +229 00;14;18;16 00;14;19;16Are you serious? +230 00;14;20;16 00;14;21;18Ikari Shinji-kun... +231 00;14;21;18 00;14;22;21Yes? +232 00;14;22;21 00;14;23;21You will pilot it. +233 00;14;24;13 00;14;29;13But even Ayanami Rei took seven months +to synchronize with her Eva. +234 00;14;29;18 00;14;32;07It's impossible for him to do it! +He just got here! +235 00;14;32;09 00;14;35;03He just has to sit in the seat. +We don't expect more than that. +236 00;14;35;05 00;14;36;05But... +237 00;14;36;07 00;14;38;27Repelling that Angel is our ultimate priority. +238 00;14;39;12 00;14;43;00To do that, we have no choice but to put +aboard the Eva whomever has the chance +239 00;14;43;02 00;14;45;18to synchronize with it, no matter how slight. +240 00;14;46;26 00;14;48;23I believe you know that, Captain Katsuragi. +241 00;14;51;08 00;14;52;17I suppose... +242 00;14;54;06 00;14;56;18Father, why did you send for me? +243 00;14;56;18 00;14;58;22You know exactly why. +244 00;14;58;22 00;15;02;19So, you're asking me to take this thing +and fight that thing? +245 00;15;03;10 00;15;04;10That's right. +246 00;15;04;10 00;15;08;00No way! Why are you doing this now?! +247 00;15;08;00 00;15;10;18I thought you didn't need me! +248 00;15;10;18 00;15;12;24I called you because I have a need for you. +249 00;15;15;11 00;15;16;24Why me? +250 00;15;17;14 00;15;19;20Because no one else can. +251 00;15;20;11 00;15;22;01No, I can't... +252 00;15;22;14 00;15;26;00I've never even seen anything +like this before! I can't do this! +253 00;15;27;00 00;15;28;12You will be instructed. +254 00;15;29;01 00;15;32;26But there's no way I can do this! +255 00;15;33;21 00;15;35;22I can't pilot it! +256 00;15;37;06 00;15;40;07If you're going to pilot it, do it now +and quickly. If not, leave! +257 00;15;51;27 00;15;54;13It must have detected our location. +258 00;15;58;03 00;16;00;01Shinji-kun, we don't have time. +259 00;16;05;02 00;16;06;07Get into it. +260 00;16;07;09 00;16;11;29No! I didn't come for this! This isn't fair! +261 00;16;13;07 00;16;16;20Shinji-kun, just why did you come here? +262 00;16;18;17 00;16;22;20You mustn't run! Not from your father, +and most of all not from yourself. +263 00;16;23;09 00;16;27;11I know that! But there's no way I can do it! +264 00;16;35;16 00;16;36;15Fuyutsuki... +265 00;16;37;25 00;16;39;07Wake up Rei. +266 00;16;39;07 00;16;40;22Can we use her? +267 00;16;40;22 00;16;42;09She isn't dead. +268 00;16;43;13 00;16;44;17I understand. +269 00;16;46;11 00;16;47;07Rei. +270 00;16;47;07 00;16;48;11Yes? +271 00;16;48;11 00;16;51;07Our spare is unusable. You will do it again. +272 00;16;51;07 00;16;52;06Yes, Sir. +273 00;16;54;14 00;16;57;27Reconfigure Unit 01's system to Rei, +then re-activate! +274 00;16;57;27 00;17;00;29Roger. Call off the present work, +and begin re-activation. +275 00;17;02;29 00;17;06;23I knew it. I'm not needed after all. +276 00;17;40;20 00;17;41;20Watch out! +277 00;17;51;09 00;17;52;26The Eva moved! +278 00;17;52;26 00;17;54;02What's going on?! +279 00;17;54;02 00;17;56;13It broke the right arm restraint! +280 00;17;56;13 00;17;58;00No, that's impossible! +281 00;17;58;15 00;18;00;21It didn't even have an entry plug inserted! +282 00;18;00;21 00;18;01;28There's no way it could have moved! +283 00;18;03;02 00;18;05;09It reacted without any interface?! +284 00;18;06;03 00;18;08;05Or was it protecting... +285 00;18;08;05 00;18;09;06him? +286 00;18;10;16 00;18;11;15We can do it. +287 00;18;32;16 00;18;37;04I mustn't run away. I mustn't run away. +I mustn't run away. I mustn't run away. +288 00;18;37;04 00;18;38;09I mustn't run away! +289 00;18;39;23 00;18;40;20I'll do it. +290 00;18;41;11 00;18;42;14I'll pilot it! +291 00;18;46;01 00;18;47;10Cooling process, completed. +292 00;18;47;10 00;18;48;26Right arm re-secured. +293 00;18;48;26 00;18;50;27Cage contents now in position for docking. +294 00;18;50;27 00;18;51;25Roger. +295 00;18;51;25 00;18;54;20Signal terminator plug has been ejected. +296 00;18;55;06 00;18;57;24Roger. Inserting entry plug. +297 00;18;57;24 00;19;00;26Direct hydro-transmission system, +connection prepared. +298 00;19;04;27 00;19;06;12Plug fixed in place. +299 00;19;06;12 00;19;08;04First stage connection initiated. +300 00;19;13;02 00;19;14;26Filling the entry plug. +301 00;19;16;02 00;19;17;14What is this stuff? +302 00;19;21;12 00;19;24;13Don't worry. Once your lungs +are filled with LCL, +303 00;19;24;13 00;19;27;06your blood will be oxygenated directly. +304 00;19;27;06 00;19;28;16You'll get used to it. +305 00;19;32;00 00;19;33;13I feel nauseous. +306 00;19;33;13 00;19;35;21Stop whining! You're a boy, aren't you?! +307 00;19;37;00 00;19;38;04Connecting main power. +308 00;19;38;04 00;19;40;25All circuits transmitting power. +309 00;19;40;25 00;19;41;20Roger. +310 00;19;41;20 00;19;43;10Commencing secondary contacts. +311 00;19;44;27 00;19;47;11A-10 nerve connection, normal. +312 00;19;47;11 00;19;52;17Set the thought configuration to Japanese. +313 00;19;53;13 00;19;55;26All preliminary contacts established. +Performance nominal. +314 00;19;55;26 00;19;57;20Bi-directional circuits are open. +315 00;19;58;06 00;20;00;22Synchronization rate at 41.3%. +316 00;20;01;11 00;20;02;18Amazing. +317 00;20;02;18 00;20;06;06Harmonics are all normal. +No disturbances identified. +318 00;20;06;29 00;20;08;00We can do it. +319 00;20;09;11 00;20;10;18Prepare to launch! +320 00;20;12;17 00;20;14;03Prepare to launch! +321 00;20;14;03 00;20;15;17Disengage primary lock bolts! +322 00;20;17;03 00;20;20;08Disengage confirmed. +Disengaging the umbilical bridge. +323 00;20;22;20 00;20;24;02Disengage secondary lock bolts. +324 00;20;26;13 00;20;28;11Disengage primary restraints. +325 00;20;28;11 00;20;30;24Likewise, disengage secondary restraints. +326 00;20;34;08 00;20;37;06Release safety locks numbers +one through fifteen. +327 00;20;37;06 00;20;38;07Release confirmed. +328 00;20;38;19 00;20;40;23Currently, Unit 01's condition is free. +329 00;20;40;23 00;20;42;12Internal batteries fully charged. +330 00;20;42;12 00;20;44;13External battery outlet, normal. +331 00;20;45;00 00;20;47;28Roger. Move Eva Unit 01 +to the ejector pad. +332 00;21;03;16 00;21;05;13Launch path is clear. All systems green. +333 00;21;05;25 00;21;07;05Ready for launch. +334 00;21;08;07 00;21;09;05Roger. +335 00;21;10;00 00;21;11;03Can we really do this? +336 00;21;11;03 00;21;12;05Of course. +337 00;21;13;01 00;21;15;18Unless we defeat the Angels, +we have no future. +338 00;21;17;05 00;21;20;05Ikari, you're really sure about this? +339 00;21;21;24 00;21;22;23Launch! +340 00;21;56;22 00;21;58;24Shinji-kun, don't get killed out there. +341 00;21;58;24 00;21;58;25To Be Continued +Shinji-kun, don't get killed out there. +342 00;21;58;25 00;22;00;13To Be Continued +343 00;23;05;25 00;23;06;23Preview +344 00;23;06;23 00;23;08;04Eva triumphs over the Angel! +345 00;23;08;04 00;23;10;11However, that was just the beginning. +346 00;23;10;19 00;23;12;08Shinji runs away from his father. +347 00;23;12;08 00;23;15;20Misato's arrogance leads her +to try to save him. +348 00;23;16;01 00;23;18;12Next Evangelion: "Unfamiliar Ceiling" +349 00;23;18;12 00;23;18;24I'll give you fan service next time too! +350 00;23;18;24 00;23;20;13Next Episode +Unfamiliar Ceiling +I'll give you fan service next time too! +351 00;23;20;13 00;23;20;26Unfamiliar Ceiling +Next Episode diff --git a/unit_test/test_files/format_microdvd.sub b/unit_test/test_files/format_microdvd.sub new file mode 100644 index 000000000..8b0ae0770 --- /dev/null +++ b/unit_test/test_files/format_microdvd.sub @@ -0,0 +1,352 @@ +{1}{1}29.970030 +{2710}{2779}The year is 2015 A.D. +{3450}{3567}As of 12:30 PM today, a special state|of emergency has been declared +{3571}{3694}for the Kanto and Chubu regions|surrounding the Tokai district. +{3710}{3830}All residents must evacuate to their|designated shelters immediately. +{3844}{3945}Repeating: As of 12:30 PM today, +{3946}{3972}All Lines Stopped|Repeating: As of 12:30 PM today, +{3973}{4018}the Kanto and Chubu regions|surrounding the Tokai district|All Lines Stopped +{4019}{4081}the Kanto and Chubu regions|surrounding the Tokai district +{4084}{4175}have been declared to be under|a state of emergency. +{4178}{4223}All residents must evacuate... +{4224}{4327}Why did I have to lose sight of him now? +{4328}{4378}Oh, man! +{4379}{4382}Ikari Shinji|Oh, man! +{4383}{4413}Ikari Shinji +{4414}{4458}Due to the special emergency,|Ikari Shinji +{4459}{4494}Due to the special emergency, +{4497}{4594}all lines are currently unavailable. +{4638}{4667}It's no use. +{4699}{4767}I shouldn't have come here after all. +{4881}{4896}for me.♥|Attention here!!|I'll be coming to|get you, so wait|To Shinji-kun +{4897}{4952}Well, I guess we won't be meeting here.|for me.♥|Attention here!!|I'll be coming to|get you, so wait|To Shinji-kun +{4953}{4967}Well, I guess we won't be meeting here. +{5002}{5079}Can't be helped. I'll go to a shelter. +{5834}{5848}ESTIMATED PATH +{5849}{5950}The unidentified mobile object is still|advancing on our position.|ESTIMATED PATH +{5951}{5952}The unidentified mobile object is still|advancing on our position. +{5976}{6072}We've got visual confirmation.|I'm putting it on the main screen. +{6123}{6177}It's been fifteen years, hasn't it? +{6180}{6243}Yes, there's no doubt. +{6273}{6309}It's an Angel. +{6310}{6389}Episode One|Angel Attack +{6669}{6723}Every missile hit the target! +{7299}{7346}I'm sorry! Thanks for waiting! +{7856}{7993}The target is still operational.|It's still heading towards New Tokyo-3. +{7996}{8071}The Air Defense Force doesn't have|the firepower to stop it! +{8096}{8130}Hit it with everything we've got! +{8131}{8189}Mobilize all of Atsugi and Iruma as well! +{8192}{8293}Don't hold anything back!|Destroy the target at any cost! +{8693}{8756}Why?! That was a direct hit! +{8771}{8842}The tank battalion's been annihilated. +{8843}{8930}Guided missiles and artillery|have no effect either. +{8931}{9036}It's no good! We'll never get anywhere|with the firepower we've got! +{9037}{9092}AT field: absolute terror field|Is it an AT field after all? +{9093}{9126}Yes. Conventional weapons are|useless against Angels.|AT field: absolute terror field +{9127}{9210}Yes. Conventional weapons are|useless against Angels. +{9314}{9410}I understand. We'll activate it as planned. +{9555}{9599}Hey, don't tell me... +{9602}{9657}They're going to use an N² mine?! +{9673}{9703}Get down! +{10387}{10412}We did it! +{10454}{10546}Sorry, but it looks like you won't be|getting a shot at it. +{10549}{10614}Shock wave approaching. +{10651}{10690}Are you all right? +{10693}{10792}Yeah, but my mouth is full of dirt. +{10793}{10911}That's okay. Now then, here we go! +{10932}{10971}One, two! +{11086}{11132}There. +{11233}{11295}Thanks for the hand. I really appreciate it. +{11298}{11387}Thank you too, Katsuragi-san. +{11390}{11451}Just Misato is fine. +{11466}{11565}I'm glad we've met at last, Ikari Shinji-kun. +{11575}{11599}Yeah... +{11616}{11653}What's the target's status? +{11656}{11742}We're unable to confirm due to|all the EMP interference. +{11745}{11827}You saw the size of the explosion. It's over. +{11830}{11872}Sensors restored. +{11912}{11966}We've got an energy reading|at the explosion's epicenter! +{11969}{12002}What the hell?! +{12005}{12053}Visual display restored. +{12182}{12248}That was our last resort. +{12277}{12333}How can this be? +{12334}{12382}Damned monster! +{12681}{12752}Yes. Don't worry about it. +{12755}{12876}His safety is my top priority,|so could you get a car train ready for us? +{12879}{12915}A direct one. +{12942}{12970}Right. +{12982}{13051}Well, I volunteered to pick him up, +{13052}{13132}so I'll make sure he gets there. See ya! +{13203}{13395}Man, this sucks! I just had my car restored|and it's a total wreck already! +{13410}{13503}33 more loan payments to go,|plus the cost of repairs. +{13506}{13575}And look! My best dress has been ruined! +{13576}{13581}Excuse me, Misato-san?|And look! My best dress has been ruined! +{13582}{13592}Excuse me, Misato-san? +{13593}{13630}And I was looking and feeling so nice.|Excuse me, Misato-san? +{13631}{13705}And I was looking and feeling so nice. +{13706}{13755}Excuse me, Misato-san? +{13762}{13805}What? +{13809}{13888}Are you sure you can just take those? +{13944}{13972}Never mind about that! +{13975}{14087}It's an emergency, and we need|a working car right now, right? +{14090}{14194}And I'm an international government|official, after all, +{14197}{14244}so everything's going to be|perfectly fine, okay? +{14286}{14364}I don't think anyone will buy that. +{14367}{14489}You're no fun. You look cute,|but you're kind of a cold fish. +{14518}{14557}You think so? +{14560}{14611}Oh, did I upset you? +{14634}{14735}Sorry about that! You are a boy, after all. +{14738}{14836}And you're pretty childish for your age. +{15008}{15095}As we predicted, it's regenerating itself. +{15105}{15220}If it couldn't, it wouldn't be|a practical autonomous weapon. +{15330}{15437}Impressive. It appears it can even upgrade|its own operational functions. +{15448}{15515}And it seems to have gotten smarter. +{15547}{15633}It's only a matter of time before|it resumes attacking. +{15676}{15773}The gates are now closing.|Please stand clear. +{15774}{15782}The special duty organization Nerv?|The gates are now closing.|Please stand clear. +{15783}{15825}Now departing.|The special duty organization Nerv? +{15826}{15828}Now departing. +{15829}{15834}Yes, it's a secret organization under|the control of the United Nations.|Now departing. +{15835}{15927}This is the C-22 Special Express|departing directly for G33-1.|Yes, it's a secret organization under|the control of the United Nations. +{15928}{15942}This is the C-22 Special Express|departing directly for G33-1. +{15943}{15991}That's where my father is, right?|This is the C-22 Special Express|departing directly for G33-1. +{15992}{16026}Well, yeah.|This is the C-22 Special Express|departing directly for G33-1. +{16027}{16086}Do you know what he does?|This is the C-22 Special Express|departing directly for G33-1. +{16127}{16204}This train will bypass all other stations.|Please stand back. +{16205}{16241}My teacher told me his work is vital|for the protection of the human race.|This train will bypass all other stations.|Please stand back. +{16242}{16319}My teacher told me his work is vital|for the protection of the human race. +{16414}{16508}From this point forward, command of this|operation will be entrusted to you. +{16511}{16559}Show us what you're capable of. +{16562}{16594}Yes, Sir. +{16612}{16794}Ikari-kun, we will admit that our weapons|have no effect on the target. +{16822}{16893}But are you sure you can beat this thing? +{16908}{16957}It's what Nerv was created for. +{16983}{17027}Let's hope you're correct. +{17077}{17140}The target is still stationary. +{17143}{17243}Our intercept system is currently|7.5% operational. +{17294}{17363}So, even the UN forces have retired. +{17366}{17413}What are you going to do? +{17429}{17488}I intend to activate Unit 01. +{17496}{17588}Unit 01? But we have no pilot. +{17608}{17715}That's not a problem. Another spare|will be delivered soon. +{17745}{17826}Are you taking me to my father? +{17842}{17904}Yes. Pretty much. +{18020}{18057}Father... +{18105}{18205}Oh, that's right. Did you get|an ID card from your father? +{18263}{18292}Yes. +{18343}{18373}Here it is. +{18376}{18398}Thanks. +{18399}{18414}Ikari Gendo|Come.|Thanks. +{18415}{18434}Come.|Ikari Gendo +{18456}{18524}Then read this. +{18525}{18527}Nerv|Welcome to|Then read this. +{18528}{18549}Welcome to|Nerv +{18550}{18574}Nerv...|Welcome to|Nerv +{18575}{18585}Nerv... +{18612}{18649}My father's agency. +{18672}{18733}Am I going to work for them too? +{18792}{18836}Of course. +{18842}{18965}He wouldn't have sent me a letter unless|he needed me for something. +{18980}{19068}I see. So you don't get along with your father. +{19111}{19158}It's the same with me. +{19338}{19375}Awesome! +{19412}{19462}It's the real Geo-Front! +{19465}{19491}That's right. +{19494}{19596}This is our secret base.|Nerv Headquarters. +{19609}{19654}This is the key to rebuilding our world. +{19657}{19730}A fortress for all mankind. +{19928}{19993}That's strange. Isn't this the right way? +{19994}{20037}Around here|Central Dogma|Nerv Headquarters|That's strange. Isn't this the right way? +{20038}{20039}Central Dogma|Nerv Headquarters|Around here|Central Dogma|Nerv Headquarters|That's strange. Isn't this the right way? +{20040}{20040}Around here|Central Dogma|Nerv Headquarters|That's strange. Isn't this the right way? +{20041}{20041}Around here|Central Dogma|Nerv Headquarters|That's strange. Isn't this the right way? +{20042}{20043}Around here|Central Dogma|Nerv Headquarters|That's strange. Isn't this the right way? +{20044}{20044}Around here|Central Dogma|Nerv Headquarters|That's strange. Isn't this the right way? +{20045}{20045}Around here|Central Dogma|Nerv Headquarters|That's strange. Isn't this the right way? +{20046}{20046}Around here|Central Dogma|Nerv Headquarters|That's strange. Isn't this the right way? +{20047}{20047}Around here|Central Dogma|Nerv Headquarters|That's strange. Isn't this the right way? +{20048}{20049}Around here|Central Dogma|Nerv Headquarters|That's strange. Isn't this the right way? +{20050}{20050}Around here|Central Dogma|Nerv Headquarters|That's strange. Isn't this the right way? +{20051}{20051}Around here|Nerv Headquarters|That's strange. Isn't this the right way? +{20052}{20085}That's strange. Isn't this the right way? +{20107}{20154}Central Dogma's closed passages|remain sealed. +{20155}{20167}This is why I hate wearing skirts here. +{20168}{20238}Opening block B-26 in sequence.|This is why I hate wearing skirts here. +{20239}{20253}Opening block B-26 in sequence. +{20254}{20312}But where the heck did Ritsuko go?|Opening block B-26 in sequence. +{20313}{20336}But where the heck did Ritsuko go? +{20339}{20422}I'm sorry. I'm just not used to this place yet. +{20425}{20484}We passed this spot just a little while ago. +{20526}{20568}But don't worry about it. +{20571}{20656}They make these systems|to be used, you know. +{20657}{20738}Would the head of Project E,|Technical Department Division 1, +{20739}{20824}Dr. Akagi Ritsuko, Dr. Akagi Ritsuko, +{20825}{20963}please contact Captain Katsuragi Misato|of Operations, Division 1, immediately. +{20968}{21022}I don't believe it. +{21023}{21051}She got lost again, didn't she? +{21186}{21247}Uh, hiya, Ritsuko. +{21388}{21458}What were you doing, Captain Katsuragi? +{21462}{21528}We're short on both time|and manpower, you know. +{21544}{21574}Sorry! +{21673}{21727}So this is the boy? +{21730}{21847}Right. According to the Marduk report,|he's the "Third Child". +{21869}{21901}I'm glad to meet you. +{21904}{21958}Huh? Sure. +{21969}{22114}He's just like his father.|Like how he's unendearing. +{22126}{22163}I'll leave the rest to you. +{22297}{22363}Their first meeting in over three years. +{22395}{22504}Vice Commander, the target|has started moving again. +{22507}{22608}Right. All personnel, assume|battle stations, Level One. +{22614}{22714}Repeat. All personnel, assume|battle stations, Level One. +{22715}{22756}Prepare for ground-unit interception. +{22772}{22808}Here we go. +{22809}{22845}It sounds pretty serious. +{22880}{22944}So, how's Unit 01 doing? +{22945}{23015}It's currently in refrigeration,|using the B-type equipment. +{23016}{23135}Does it really work?|It's never worked before, right? +{23136}{23283}The possibility of activation is 0.000000001%. +{23302}{23376}We call it, pathetically enough,|the O-9 System. +{23377}{23456}Does that mean it doesn't work? +{23457}{23530}Oh, don't be insulting. It's not zero. +{23531}{23581}Well, it's just a number. +{23584}{23719}Anyway, it's a bit too late to be saying,|"Sorry, it didn't work". +{23978}{24060}Huh? It's completely dark. +{24168}{24250}A face? A giant robot? +{24302}{24366}You won't find this in the manual. +{24401}{24519}This is mankind's ultimate|multipurpose decisive weapon, +{24520}{24636}the synthetic human Evangelion, Unit 01. +{24637}{24793}Built in absolute secrecy,|it is mankind's trump card. +{24794}{24853}Is this part of what my father's been doing? +{24854}{24880}Correct. +{24940}{24979}It's been a while. +{25012}{25045}Father... +{25138}{25160}We're moving out! +{25176}{25279}Moving out?! Unit 00's still in|cryo-stasis, isn't it? +{25338}{25403}You're not planning to use Unit 01?! +{25428}{25473}There's no other way. +{25474}{25559}Hold on! Rei can't do it yet, can she? +{25588}{25629}We've got no pilot! +{25658}{25692}A pilot has just been delivered. +{25731}{25761}Are you serious? +{25791}{25822}Ikari Shinji-kun... +{25823}{25855}Yes? +{25856}{25886}You will pilot it. +{25908}{26057}But even Ayanami Rei took seven months|to synchronize with her Eva. +{26063}{26141}It's impossible for him to do it!|He just got here! +{26144}{26227}He just has to sit in the seat.|We don't expect more than that. +{26230}{26259}But... +{26262}{26341}Repelling that Angel is our ultimate priority. +{26357}{26464}To do that, we have no choice but to put|aboard the Eva whomever has the chance +{26467}{26542}to synchronize with it, no matter how slight. +{26580}{26637}I believe you know that, Captain Katsuragi. +{26712}{26751}I suppose... +{26800}{26871}Father, why did you send for me? +{26872}{26935}You know exactly why. +{26936}{27052}So, you're asking me to take this thing|and fight that thing? +{27074}{27103}That's right. +{27104}{27213}No way! Why are you doing this now?! +{27214}{27291}I thought you didn't need me! +{27292}{27357}I called you because I have a need for you. +{27435}{27477}Why me? +{27497}{27563}Because no one else can. +{27584}{27634}No, I can't... +{27648}{27753}I've never even seen anything|like this before! I can't do this! +{27783}{27824}You will be instructed. +{27844}{27958}But there's no way I can do this! +{27984}{28044}I can't pilot it! +{28089}{28179}If you're going to pilot it, do it now|and quickly. If not, leave! +{28530}{28605}It must have detected our location. +{28715}{28772}Shinji-kun, we don't have time. +{28924}{28958}Get into it. +{28991}{29130}No! I didn't come for this! This isn't fair! +{29169}{29271}Shinji-kun, just why did you come here? +{29329}{29451}You mustn't run! Not from your father,|and most of all not from yourself. +{29471}{29592}I know that! But there's no way I can do it! +{29837}{29866}Fuyutsuki... +{29906}{29947}Wake up Rei. +{29948}{29992}Can we use her? +{29993}{30039}She isn't dead. +{30074}{30107}I understand. +{30162}{30187}Rei. +{30188}{30221}Yes? +{30222}{30307}Our spare is unusable. You will do it again. +{30308}{30336}Yes, Sir. +{30405}{30507}Reconfigure Unit 01's system to Rei,|then re-activate! +{30508}{30599}Roger. Call off the present work,|and begin re-activation. +{30659}{30773}I knew it. I'm not needed after all. +{31789}{31819}Watch out! +{32108}{32154}The Eva moved! +{32155}{32190}What's going on?! +{32191}{32261}It broke the right arm restraint! +{32262}{32308}No, that's impossible! +{32324}{32389}It didn't even have an entry plug inserted! +{32390}{32426}There's no way it could have moved! +{32461}{32527}It reacted without any interface?! +{32552}{32613}Or was it protecting... +{32614}{32644}him? +{32684}{32713}We can do it. +{33344}{33481}I mustn't run away. I mustn't run away.|I mustn't run away. I mustn't run away. +{33482}{33516}I mustn't run away! +{33560}{33586}I'll do it. +{33608}{33641}I'll pilot it! +{33748}{33786}Cooling process, completed. +{33787}{33832}Right arm re-secured. +{33833}{33893}Cage contents now in position for docking. +{33894}{33921}Roger. +{33922}{34006}Signal terminator plug has been ejected. +{34023}{34100}Roger. Inserting entry plug. +{34101}{34192}Direct hydro-transmission system,|connection prepared. +{34314}{34358}Plug fixed in place. +{34359}{34410}First stage connection initiated. +{34558}{34612}Filling the entry plug. +{34648}{34689}What is this stuff? +{34808}{34898}Don't worry. Once your lungs|are filled with LCL, +{34899}{34981}your blood will be oxygenated directly. +{34982}{35021}You'll get used to it. +{35126}{35168}I feel nauseous. +{35169}{35236}Stop whining! You're a boy, aren't you?! +{35276}{35309}Connecting main power. +{35310}{35390}All circuits transmitting power. +{35391}{35415}Roger. +{35416}{35465}Commencing secondary contacts. +{35513}{35585}A-10 nerve connection, normal. +{35586}{35741}Set the thought configuration to Japanese. +{35768}{35840}All preliminary contacts established.|Performance nominal. +{35841}{35894}Bi-directional circuits are open. +{35911}{35986}Synchronization rate at 41.3%. +{36006}{36042}Amazing. +{36043}{36150}Harmonics are all normal.|No disturbances identified. +{36174}{36204}We can do it. +{36246}{36282}Prepare to launch! +{36342}{36387}Prepare to launch! +{36388}{36431}Disengage primary lock bolts! +{36478}{36572}Disengage confirmed.|Disengaging the umbilical bridge. +{36645}{36686}Disengage secondary lock bolts. +{36757}{36814}Disengage primary restraints. +{36815}{36887}Likewise, disengage secondary restraints. +{36992}{37079}Release safety locks numbers|one through fifteen. +{37080}{37110}Release confirmed. +{37123}{37186}Currently, Unit 01's condition is free. +{37187}{37235}Internal batteries fully charged. +{37236}{37296}External battery outlet, normal. +{37314}{37401}Roger. Move Eva Unit 01|to the ejector pad. +{37869}{37925}Launch path is clear. All systems green. +{37938}{37977}Ready for launch. +{38010}{38037}Roger. +{38063}{38095}Can we really do this? +{38096}{38127}Of course. +{38154}{38230}Unless we defeat the Angels,|we have no future. +{38278}{38367}Ikari, you're really sure about this? +{38417}{38445}Launch! +{39464}{39525}Shinji-kun, don't get killed out there. +{39526}{39526}To Be Continued|Shinji-kun, don't get killed out there. +{39527}{39574}To Be Continued +{41535}{41561}Preview +{41562}{41602}Eva triumphs over the Angel! +{41603}{41670}However, that was just the beginning. +{41678}{41726}Shinji runs away from his father. +{41727}{41828}Misato's arrogance leads her|to try to save him. +{41840}{41910}Next Evangelion: "Unfamiliar Ceiling" +{41911}{41922}I'll give you fan service next time too! +{41923}{41971}Next Episode|Unfamiliar Ceiling|I'll give you fan service next time too! +{41972}{41984}Unfamiliar Ceiling|Next Episode diff --git a/unit_test/test_files/format_srt.srt b/unit_test/test_files/format_srt.srt new file mode 100644 index 000000000..187a94a3f --- /dev/null +++ b/unit_test/test_files/format_srt.srt @@ -0,0 +1,1568 @@ +1 +00:01:30,400 --> 00:01:32,730 +The year is 2015 A.D. + +2 +00:01:55,100 --> 00:01:59,030 +As of 12:30 PM today, a special state +of emergency has been declared + +3 +00:01:59,130 --> 00:02:03,260 +for the Kanto and Chubu regions +surrounding the Tokai district. + +4 +00:02:03,770 --> 00:02:07,800 +All residents must evacuate to their +designated shelters immediately. + +5 +00:02:08,240 --> 00:02:11,650 +Repeating: As of 12:30 PM today, + +6 +00:02:11,650 --> 00:02:12,550 +All Lines Stopped +Repeating: As of 12:30 PM today, + +7 +00:02:12,550 --> 00:02:14,070 +the Kanto and Chubu regions +surrounding the Tokai district +All Lines Stopped + +8 +00:02:14,070 --> 00:02:16,170 +the Kanto and Chubu regions +surrounding the Tokai district + +9 +00:02:16,250 --> 00:02:19,310 +have been declared to be under +a state of emergency. + +10 +00:02:19,390 --> 00:02:20,920 +All residents must evacuate... + +11 +00:02:20,920 --> 00:02:24,390 +Why did I have to lose sight of him now? + +12 +00:02:24,390 --> 00:02:26,110 +Oh, man! + +13 +00:02:26,110 --> 00:02:26,230 +Ikari Shinji +Oh, man! + +14 +00:02:26,230 --> 00:02:27,260 +Ikari Shinji + +15 +00:02:27,260 --> 00:02:28,750 +Due to the special emergency, +Ikari Shinji + +16 +00:02:28,750 --> 00:02:29,960 +Due to the special emergency, + +17 +00:02:30,030 --> 00:02:33,300 +all lines are currently unavailable. + +18 +00:02:34,740 --> 00:02:35,730 +It's no use. + +19 +00:02:36,770 --> 00:02:39,070 +I shouldn't have come here after all. + +20 +00:02:42,840 --> 00:02:43,380 +for me.♥ +Attention here!! +I'll be coming to +get you, so wait +To Shinji-kun + +21 +00:02:43,380 --> 00:02:45,260 +Well, I guess we won't be meeting here. +for me.♥ +Attention here!! +I'll be coming to +get you, so wait +To Shinji-kun + +22 +00:02:45,260 --> 00:02:45,740 +Well, I guess we won't be meeting here. + +23 +00:02:46,880 --> 00:02:49,480 +Can't be helped. I'll go to a shelter. + +24 +00:03:14,630 --> 00:03:15,140 +ESTIMATED PATH + +25 +00:03:15,140 --> 00:03:18,550 +The unidentified mobile object is still +advancing on our position. +ESTIMATED PATH + +26 +00:03:18,550 --> 00:03:18,600 +The unidentified mobile object is still +advancing on our position. + +27 +00:03:19,380 --> 00:03:22,610 +We've got visual confirmation. +I'm putting it on the main screen. + +28 +00:03:24,290 --> 00:03:26,120 +It's been fifteen years, hasn't it? + +29 +00:03:26,190 --> 00:03:28,310 +Yes, there's no doubt. + +30 +00:03:29,290 --> 00:03:30,520 +It's an Angel. + +31 +00:03:30,520 --> 00:03:33,190 +Episode One +Angel Attack + +32 +00:03:42,500 --> 00:03:44,340 +Every missile hit the target! + +33 +00:04:03,530 --> 00:04:05,120 +I'm sorry! Thanks for waiting! + +34 +00:04:22,110 --> 00:04:26,710 +The target is still operational. +It's still heading towards New Tokyo-3. + +35 +00:04:26,780 --> 00:04:29,310 +The Air Defense Force doesn't have +the firepower to stop it! + +36 +00:04:30,120 --> 00:04:31,290 +Hit it with everything we've got! + +37 +00:04:31,290 --> 00:04:33,250 +Mobilize all of Atsugi and Iruma as well! + +38 +00:04:33,320 --> 00:04:36,720 +Don't hold anything back! +Destroy the target at any cost! + +39 +00:04:50,050 --> 00:04:52,170 +Why?! That was a direct hit! + +40 +00:04:52,640 --> 00:04:55,040 +The tank battalion's been annihilated. + +41 +00:04:55,040 --> 00:04:57,980 +Guided missiles and artillery +have no effect either. + +42 +00:04:57,980 --> 00:05:01,520 +It's no good! We'll never get anywhere +with the firepower we've got! + +43 +00:05:01,520 --> 00:05:03,390 +AT field: absolute terror field +Is it an AT field after all? + +44 +00:05:03,390 --> 00:05:04,520 +Yes. Conventional weapons are +useless against Angels. +AT field: absolute terror field + +45 +00:05:04,520 --> 00:05:07,340 +Yes. Conventional weapons are +useless against Angels. + +46 +00:05:10,760 --> 00:05:13,990 +I understand. We'll activate it as planned. + +47 +00:05:18,800 --> 00:05:20,290 +Hey, don't tell me... + +48 +00:05:20,370 --> 00:05:22,230 +They're going to use an N² mine?! + +49 +00:05:22,740 --> 00:05:23,760 +Get down! + +50 +00:05:46,560 --> 00:05:47,430 +We did it! + +51 +00:05:48,800 --> 00:05:51,890 +Sorry, but it looks like you won't be +getting a shot at it. + +52 +00:05:51,970 --> 00:05:54,160 +Shock wave approaching. + +53 +00:05:55,370 --> 00:05:56,700 +Are you all right? + +54 +00:05:56,770 --> 00:06:00,110 +Yeah, but my mouth is full of dirt. + +55 +00:06:00,110 --> 00:06:04,070 +That's okay. Now then, here we go! + +56 +00:06:04,750 --> 00:06:06,080 +One, two! + +57 +00:06:09,880 --> 00:06:11,440 +There. + +58 +00:06:14,790 --> 00:06:16,880 +Thanks for the hand. I really appreciate it. + +59 +00:06:16,960 --> 00:06:19,950 +Thank you too, Katsuragi-san. + +60 +00:06:20,030 --> 00:06:22,090 +Just Misato is fine. + +61 +00:06:22,560 --> 00:06:25,900 +I'm glad we've met at last, Ikari Shinji-kun. + +62 +00:06:26,200 --> 00:06:27,020 +Yeah... + +63 +00:06:27,570 --> 00:06:28,830 +What's the target's status? + +64 +00:06:28,900 --> 00:06:31,800 +We're unable to confirm due to +all the EMP interference. + +65 +00:06:31,870 --> 00:06:34,640 +You saw the size of the explosion. It's over. + +66 +00:06:34,710 --> 00:06:36,140 +Sensors restored. + +67 +00:06:37,450 --> 00:06:39,280 +We've got an energy reading +at the explosion's epicenter! + +68 +00:06:39,350 --> 00:06:40,470 +What the hell?! + +69 +00:06:40,550 --> 00:06:42,180 +Visual display restored. + +70 +00:06:46,450 --> 00:06:48,680 +That was our last resort. + +71 +00:06:49,620 --> 00:06:51,530 +How can this be? + +72 +00:06:51,530 --> 00:06:53,150 +Damned monster! + +73 +00:07:03,100 --> 00:07:05,500 +Yes. Don't worry about it. + +74 +00:07:05,570 --> 00:07:09,630 +His safety is my top priority, +so could you get a car train ready for us? + +75 +00:07:09,710 --> 00:07:10,940 +A direct one. + +76 +00:07:11,810 --> 00:07:12,780 +Right. + +77 +00:07:13,150 --> 00:07:15,480 +Well, I volunteered to pick him up, + +78 +00:07:15,480 --> 00:07:18,180 +so I'll make sure he gets there. See ya! + +79 +00:07:20,520 --> 00:07:26,950 +Man, this sucks! I just had my car restored +and it's a total wreck already! + +80 +00:07:27,440 --> 00:07:30,560 +33 more loan payments to go, +plus the cost of repairs. + +81 +00:07:30,630 --> 00:07:32,970 +And look! My best dress has been ruined! + +82 +00:07:32,970 --> 00:07:33,160 +Excuse me, Misato-san? +And look! My best dress has been ruined! + +83 +00:07:33,160 --> 00:07:33,540 +Excuse me, Misato-san? + +84 +00:07:33,540 --> 00:07:34,790 +And I was looking and feeling so nice. +Excuse me, Misato-san? + +85 +00:07:34,790 --> 00:07:37,300 +And I was looking and feeling so nice. + +86 +00:07:37,300 --> 00:07:38,980 +Excuse me, Misato-san? + +87 +00:07:39,170 --> 00:07:40,660 +What? + +88 +00:07:40,740 --> 00:07:43,400 +Are you sure you can just take those? + +89 +00:07:45,250 --> 00:07:46,210 +Never mind about that! + +90 +00:07:46,280 --> 00:07:50,050 +It's an emergency, and we need +a working car right now, right? + +91 +00:07:50,120 --> 00:07:53,610 +And I'm an international government +official, after all, + +92 +00:07:53,690 --> 00:07:55,280 +so everything's going to be +perfectly fine, okay? + +93 +00:07:56,660 --> 00:07:59,290 +I don't think anyone will buy that. + +94 +00:07:59,360 --> 00:08:03,460 +You're no fun. You look cute, +but you're kind of a cold fish. + +95 +00:08:04,400 --> 00:08:05,730 +You think so? + +96 +00:08:05,800 --> 00:08:07,530 +Oh, did I upset you? + +97 +00:08:08,270 --> 00:08:11,670 +Sorry about that! You are a boy, after all. + +98 +00:08:11,740 --> 00:08:15,040 +And you're pretty childish for your age. + +99 +00:08:20,750 --> 00:08:23,680 +As we predicted, it's regenerating itself. + +100 +00:08:23,990 --> 00:08:27,850 +If it couldn't, it wouldn't be +a practical autonomous weapon. + +101 +00:08:31,490 --> 00:08:35,090 +Impressive. It appears it can even upgrade +its own operational functions. + +102 +00:08:35,430 --> 00:08:37,690 +And it seems to have gotten smarter. + +103 +00:08:38,730 --> 00:08:41,630 +It's only a matter of time before +it resumes attacking. + +104 +00:08:43,040 --> 00:08:46,300 +The gates are now closing. +Please stand clear. + +105 +00:08:46,300 --> 00:08:46,610 +The special duty organization Nerv? +The gates are now closing. +Please stand clear. + +106 +00:08:46,610 --> 00:08:48,030 +Now departing. +The special duty organization Nerv? + +107 +00:08:48,030 --> 00:08:48,140 +Now departing. + +108 +00:08:48,140 --> 00:08:48,340 +Yes, it's a secret organization under +the control of the United Nations. +Now departing. + +109 +00:08:48,340 --> 00:08:51,450 +This is the C-22 Special Express +departing directly for G33-1. +Yes, it's a secret organization under +the control of the United Nations. + +110 +00:08:51,450 --> 00:08:51,950 +This is the C-22 Special Express +departing directly for G33-1. + +111 +00:08:51,950 --> 00:08:53,580 +That's where my father is, right? +This is the C-22 Special Express +departing directly for G33-1. + +112 +00:08:53,580 --> 00:08:54,750 +Well, yeah. +This is the C-22 Special Express +departing directly for G33-1. + +113 +00:08:54,750 --> 00:08:56,750 +Do you know what he does? +This is the C-22 Special Express +departing directly for G33-1. + +114 +00:08:58,090 --> 00:09:00,690 +This train will bypass all other stations. +Please stand back. + +115 +00:09:00,690 --> 00:09:01,920 +My teacher told me his work is vital +for the protection of the human race. +This train will bypass all other stations. +Please stand back. + +116 +00:09:01,920 --> 00:09:04,520 +My teacher told me his work is vital +for the protection of the human race. + +117 +00:09:07,660 --> 00:09:10,830 +From this point forward, command of this +operation will be entrusted to you. + +118 +00:09:10,900 --> 00:09:12,530 +Show us what you're capable of. + +119 +00:09:12,600 --> 00:09:13,690 +Yes, Sir. + +120 +00:09:14,270 --> 00:09:20,370 +Ikari-kun, we will admit that our weapons +have no effect on the target. + +121 +00:09:21,280 --> 00:09:23,680 +But are you sure you can beat this thing? + +122 +00:09:24,150 --> 00:09:25,830 +It's what Nerv was created for. + +123 +00:09:26,650 --> 00:09:28,140 +Let's hope you're correct. + +124 +00:09:29,780 --> 00:09:31,910 +The target is still stationary. + +125 +00:09:31,990 --> 00:09:35,350 +Our intercept system is currently +7.5% operational. + +126 +00:09:37,030 --> 00:09:39,360 +So, even the UN forces have retired. + +127 +00:09:39,430 --> 00:09:41,020 +What are you going to do? + +128 +00:09:41,530 --> 00:09:43,520 +I intend to activate Unit 01. + +129 +00:09:43,770 --> 00:09:46,860 +Unit 01? But we have no pilot. + +130 +00:09:47,500 --> 00:09:51,100 +That's not a problem. Another spare +will be delivered soon. + +131 +00:09:52,070 --> 00:09:54,800 +Are you taking me to my father? + +132 +00:09:55,310 --> 00:09:57,400 +Yes. Pretty much. + +133 +00:10:01,250 --> 00:10:02,510 +Father... + +134 +00:10:04,090 --> 00:10:07,450 +Oh, that's right. Did you get +an ID card from your father? + +135 +00:10:09,360 --> 00:10:10,350 +Yes. + +136 +00:10:12,030 --> 00:10:13,050 +Here it is. + +137 +00:10:13,130 --> 00:10:13,880 +Thanks. + +138 +00:10:13,880 --> 00:10:14,430 +Ikari Gendo +Come. +Thanks. + +139 +00:10:14,430 --> 00:10:15,090 +Come. +Ikari Gendo + +140 +00:10:15,800 --> 00:10:18,090 +Then read this. + +141 +00:10:18,090 --> 00:10:18,200 +Nerv +Welcome to +Then read this. + +142 +00:10:18,200 --> 00:10:18,930 +Welcome to +Nerv + +143 +00:10:18,930 --> 00:10:19,760 +Nerv... +Welcome to +Nerv + +144 +00:10:19,760 --> 00:10:20,130 +Nerv... + +145 +00:10:21,000 --> 00:10:22,260 +My father's agency. + +146 +00:10:23,000 --> 00:10:25,060 +Am I going to work for them too? + +147 +00:10:27,010 --> 00:10:28,500 +Of course. + +148 +00:10:28,680 --> 00:10:32,810 +He wouldn't have sent me a letter unless +he needed me for something. + +149 +00:10:33,270 --> 00:10:36,240 +I see. So you don't get along with your father. + +150 +00:10:37,650 --> 00:10:39,240 +It's the same with me. + +151 +00:10:45,230 --> 00:10:46,490 +Awesome! + +152 +00:10:47,700 --> 00:10:49,390 +It's the real Geo-Front! + +153 +00:10:49,460 --> 00:10:50,360 +That's right. + +154 +00:10:50,430 --> 00:10:53,870 +This is our secret base. +Nerv Headquarters. + +155 +00:10:54,260 --> 00:10:55,800 +This is the key to rebuilding our world. + +156 +00:10:55,870 --> 00:10:58,340 +A fortress for all mankind. + +157 +00:11:04,910 --> 00:11:07,100 +That's strange. Isn't this the right way? + +158 +00:11:07,100 --> 00:11:08,600 +Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? + +159 +00:11:08,600 --> 00:11:08,640 +Central Dogma +Nerv Headquarters +Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? + +160 +00:11:08,640 --> 00:11:08,680 +Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? + +161 +00:11:08,680 --> 00:11:08,730 +Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? + +162 +00:11:08,730 --> 00:11:08,770 +Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? + +163 +00:11:08,770 --> 00:11:08,810 +Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? + +164 +00:11:08,810 --> 00:11:08,850 +Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? + +165 +00:11:08,850 --> 00:11:08,890 +Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? + +166 +00:11:08,890 --> 00:11:08,930 +Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? + +167 +00:11:08,930 --> 00:11:08,980 +Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? + +168 +00:11:08,980 --> 00:11:09,020 +Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? + +169 +00:11:09,020 --> 00:11:09,060 +Around here +Nerv Headquarters +That's strange. Isn't this the right way? + +170 +00:11:09,060 --> 00:11:10,180 +That's strange. Isn't this the right way? + +171 +00:11:10,890 --> 00:11:12,490 +Central Dogma's closed passages +remain sealed. + +172 +00:11:12,490 --> 00:11:12,920 +This is why I hate wearing skirts here. + +173 +00:11:12,920 --> 00:11:15,290 +Opening block B-26 in sequence. +This is why I hate wearing skirts here. + +174 +00:11:15,290 --> 00:11:15,790 +Opening block B-26 in sequence. + +175 +00:11:15,790 --> 00:11:17,760 +But where the heck did Ritsuko go? +Opening block B-26 in sequence. + +176 +00:11:17,760 --> 00:11:18,560 +But where the heck did Ritsuko go? + +177 +00:11:18,630 --> 00:11:21,420 +I'm sorry. I'm just not used to this place yet. + +178 +00:11:21,500 --> 00:11:23,490 +We passed this spot just a little while ago. + +179 +00:11:24,870 --> 00:11:26,300 +But don't worry about it. + +180 +00:11:26,370 --> 00:11:29,240 +They make these systems +to be used, you know. + +181 +00:11:29,240 --> 00:11:31,970 +Would the head of Project E, +Technical Department Division 1, + +182 +00:11:31,970 --> 00:11:34,840 +Dr. Akagi Ritsuko, Dr. Akagi Ritsuko, + +183 +00:11:34,840 --> 00:11:39,480 +please contact Captain Katsuragi Misato +of Operations, Division 1, immediately. + +184 +00:11:39,610 --> 00:11:41,450 +I don't believe it. + +185 +00:11:41,450 --> 00:11:42,420 +She got lost again, didn't she? + +186 +00:11:46,890 --> 00:11:48,950 +Uh, hiya, Ritsuko. + +187 +00:11:53,630 --> 00:11:55,990 +What were you doing, Captain Katsuragi? + +188 +00:11:56,100 --> 00:11:58,330 +We're short on both time +and manpower, you know. + +189 +00:11:58,830 --> 00:11:59,860 +Sorry! + +190 +00:12:03,140 --> 00:12:04,970 +So this is the boy? + +191 +00:12:05,040 --> 00:12:08,980 +Right. According to the Marduk report, +he's the "Third Child". + +192 +00:12:09,680 --> 00:12:10,770 +I'm glad to meet you. + +193 +00:12:10,850 --> 00:12:12,680 +Huh? Sure. + +194 +00:12:13,000 --> 00:12:17,880 +He's just like his father. +Like how he's unendearing. + +195 +00:12:18,250 --> 00:12:19,510 +I'll leave the rest to you. + +196 +00:12:23,960 --> 00:12:26,190 +Their first meeting in over three years. + +197 +00:12:27,230 --> 00:12:30,890 +Vice Commander, the target +has started moving again. + +198 +00:12:30,970 --> 00:12:34,370 +Right. All personnel, assume +battle stations, Level One. + +199 +00:12:34,540 --> 00:12:37,910 +Repeat. All personnel, assume +battle stations, Level One. + +200 +00:12:37,910 --> 00:12:39,300 +Prepare for ground-unit interception. + +201 +00:12:39,810 --> 00:12:41,040 +Here we go. + +202 +00:12:41,040 --> 00:12:42,270 +It sounds pretty serious. + +203 +00:12:43,410 --> 00:12:45,580 +So, how's Unit 01 doing? + +204 +00:12:45,580 --> 00:12:47,950 +It's currently in refrigeration, +using the B-type equipment. + +205 +00:12:47,950 --> 00:12:51,950 +Does it really work? +It's never worked before, right? + +206 +00:12:51,950 --> 00:12:56,890 +The possibility of activation is 0.000000001%. + +207 +00:12:57,490 --> 00:12:59,990 +We call it, pathetically enough, +the O-9 System. + +208 +00:12:59,990 --> 00:13:02,660 +Does that mean it doesn't work? + +209 +00:13:02,660 --> 00:13:05,130 +Oh, don't be insulting. It's not zero. + +210 +00:13:05,130 --> 00:13:06,830 +Well, it's just a number. + +211 +00:13:06,900 --> 00:13:11,430 +Anyway, it's a bit too late to be saying, +"Sorry, it didn't work". + +212 +00:13:20,050 --> 00:13:22,810 +Huh? It's completely dark. + +213 +00:13:26,390 --> 00:13:29,150 +A face? A giant robot? + +214 +00:13:30,860 --> 00:13:33,020 +You won't find this in the manual. + +215 +00:13:34,160 --> 00:13:38,130 +This is mankind's ultimate +multipurpose decisive weapon, + +216 +00:13:38,130 --> 00:13:42,040 +the synthetic human Evangelion, Unit 01. + +217 +00:13:42,040 --> 00:13:47,280 +Built in absolute secrecy, +it is mankind's trump card. + +218 +00:13:47,280 --> 00:13:49,280 +Is this part of what my father's been doing? + +219 +00:13:49,280 --> 00:13:50,180 +Correct. + +220 +00:13:52,150 --> 00:13:53,480 +It's been a while. + +221 +00:13:54,550 --> 00:13:55,680 +Father... + +222 +00:13:58,750 --> 00:13:59,520 +We're moving out! + +223 +00:14:00,020 --> 00:14:03,480 +Moving out?! Unit 00's still in +cryo-stasis, isn't it? + +224 +00:14:05,430 --> 00:14:07,620 +You're not planning to use Unit 01?! + +225 +00:14:08,430 --> 00:14:09,960 +There's no other way. + +226 +00:14:09,960 --> 00:14:12,830 +Hold on! Rei can't do it yet, can she? + +227 +00:14:13,770 --> 00:14:15,170 +We've got no pilot! + +228 +00:14:16,100 --> 00:14:17,260 +A pilot has just been delivered. + +229 +00:14:18,540 --> 00:14:19,560 +Are you serious? + +230 +00:14:20,540 --> 00:14:21,610 +Ikari Shinji-kun... + +231 +00:14:21,610 --> 00:14:22,710 +Yes? + +232 +00:14:22,710 --> 00:14:23,730 +You will pilot it. + +233 +00:14:24,450 --> 00:14:29,440 +But even Ayanami Rei took seven months +to synchronize with her Eva. + +234 +00:14:29,620 --> 00:14:32,250 +It's impossible for him to do it! +He just got here! + +235 +00:14:32,320 --> 00:14:35,120 +He just has to sit in the seat. +We don't expect more than that. + +236 +00:14:35,190 --> 00:14:36,180 +But... + +237 +00:14:36,260 --> 00:14:38,920 +Repelling that Angel is our ultimate priority. + +238 +00:14:39,430 --> 00:14:43,020 +To do that, we have no choice but to put +aboard the Eva whomever has the chance + +239 +00:14:43,100 --> 00:14:45,620 +to synchronize with it, no matter how slight. + +240 +00:14:46,870 --> 00:14:48,800 +I believe you know that, Captain Katsuragi. + +241 +00:14:51,270 --> 00:14:52,600 +I suppose... + +242 +00:14:54,210 --> 00:14:56,610 +Father, why did you send for me? + +243 +00:14:56,610 --> 00:14:58,750 +You know exactly why. + +244 +00:14:58,750 --> 00:15:02,650 +So, you're asking me to take this thing +and fight that thing? + +245 +00:15:03,350 --> 00:15:04,350 +That's right. + +246 +00:15:04,350 --> 00:15:08,020 +No way! Why are you doing this now?! + +247 +00:15:08,020 --> 00:15:10,630 +I thought you didn't need me! + +248 +00:15:10,630 --> 00:15:12,820 +I called you because I have a need for you. + +249 +00:15:15,400 --> 00:15:16,830 +Why me? + +250 +00:15:17,470 --> 00:15:19,700 +Because no one else can. + +251 +00:15:20,370 --> 00:15:22,060 +No, I can't... + +252 +00:15:22,500 --> 00:15:26,030 +I've never even seen anything +like this before! I can't do this! + +253 +00:15:27,010 --> 00:15:28,410 +You will be instructed. + +254 +00:15:29,040 --> 00:15:32,880 +But there's no way I can do this! + +255 +00:15:33,710 --> 00:15:35,740 +I can't pilot it! + +256 +00:15:37,220 --> 00:15:40,240 +If you're going to pilot it, do it now +and quickly. If not, leave! + +257 +00:15:51,930 --> 00:15:54,460 +It must have detected our location. + +258 +00:15:58,110 --> 00:16:00,040 +Shinji-kun, we don't have time. + +259 +00:16:05,080 --> 00:16:06,240 +Get into it. + +260 +00:16:07,310 --> 00:16:11,980 +No! I didn't come for this! This isn't fair! + +261 +00:16:13,250 --> 00:16:16,690 +Shinji-kun, just why did you come here? + +262 +00:16:18,590 --> 00:16:22,690 +You mustn't run! Not from your father, +and most of all not from yourself. + +263 +00:16:23,330 --> 00:16:27,390 +I know that! But there's no way I can do it! + +264 +00:16:35,540 --> 00:16:36,530 +Fuyutsuki... + +265 +00:16:37,850 --> 00:16:39,250 +Wake up Rei. + +266 +00:16:39,250 --> 00:16:40,750 +Can we use her? + +267 +00:16:40,750 --> 00:16:42,310 +She isn't dead. + +268 +00:16:43,450 --> 00:16:44,580 +I understand. + +269 +00:16:46,390 --> 00:16:47,250 +Rei. + +270 +00:16:47,250 --> 00:16:48,390 +Yes? + +271 +00:16:48,390 --> 00:16:51,260 +Our spare is unusable. You will do it again. + +272 +00:16:51,260 --> 00:16:52,230 +Yes, Sir. + +273 +00:16:54,500 --> 00:16:57,930 +Reconfigure Unit 01's system to Rei, +then re-activate! + +274 +00:16:57,930 --> 00:17:00,990 +Roger. Call off the present work, +and begin re-activation. + +275 +00:17:02,970 --> 00:17:06,800 +I knew it. I'm not needed after all. + +276 +00:17:40,670 --> 00:17:41,700 +Watch out! + +277 +00:17:51,320 --> 00:17:52,890 +The Eva moved! + +278 +00:17:52,890 --> 00:17:54,090 +What's going on?! + +279 +00:17:54,090 --> 00:17:56,460 +It broke the right arm restraint! + +280 +00:17:56,460 --> 00:17:58,020 +No, that's impossible! + +281 +00:17:58,530 --> 00:18:00,730 +It didn't even have an entry plug inserted! + +282 +00:18:00,730 --> 00:18:01,960 +There's no way it could have moved! + +283 +00:18:03,100 --> 00:18:05,330 +It reacted without any interface?! + +284 +00:18:06,130 --> 00:18:08,200 +Or was it protecting... + +285 +00:18:08,200 --> 00:18:09,230 +him? + +286 +00:18:10,540 --> 00:18:11,530 +We can do it. + +287 +00:18:32,560 --> 00:18:37,160 +I mustn't run away. I mustn't run away. +I mustn't run away. I mustn't run away. + +288 +00:18:37,160 --> 00:18:38,320 +I mustn't run away! + +289 +00:18:39,770 --> 00:18:40,670 +I'll do it. + +290 +00:18:41,370 --> 00:18:42,490 +I'll pilot it! + +291 +00:18:46,040 --> 00:18:47,340 +Cooling process, completed. + +292 +00:18:47,340 --> 00:18:48,880 +Right arm re-secured. + +293 +00:18:48,880 --> 00:18:50,910 +Cage contents now in position for docking. + +294 +00:18:50,910 --> 00:18:51,850 +Roger. + +295 +00:18:51,850 --> 00:18:54,680 +Signal terminator plug has been ejected. + +296 +00:18:55,220 --> 00:18:57,820 +Roger. Inserting entry plug. + +297 +00:18:57,820 --> 00:19:00,880 +Direct hydro-transmission system, +connection prepared. + +298 +00:19:04,930 --> 00:19:06,430 +Plug fixed in place. + +299 +00:19:06,430 --> 00:19:08,160 +First stage connection initiated. + +300 +00:19:13,070 --> 00:19:14,900 +Filling the entry plug. + +301 +00:19:16,070 --> 00:19:17,470 +What is this stuff? + +302 +00:19:21,410 --> 00:19:24,450 +Don't worry. Once your lungs +are filled with LCL, + +303 +00:19:24,450 --> 00:19:27,210 +your blood will be oxygenated directly. + +304 +00:19:27,210 --> 00:19:28,550 +You'll get used to it. + +305 +00:19:32,020 --> 00:19:33,450 +I feel nauseous. + +306 +00:19:33,450 --> 00:19:35,720 +Stop whining! You're a boy, aren't you?! + +307 +00:19:37,020 --> 00:19:38,160 +Connecting main power. + +308 +00:19:38,160 --> 00:19:40,860 +All circuits transmitting power. + +309 +00:19:40,860 --> 00:19:41,700 +Roger. + +310 +00:19:41,700 --> 00:19:43,360 +Commencing secondary contacts. + +311 +00:19:44,930 --> 00:19:47,370 +A-10 nerve connection, normal. + +312 +00:19:47,370 --> 00:19:52,570 +Set the thought configuration to Japanese. + +313 +00:19:53,440 --> 00:19:55,880 +All preliminary contacts established. +Performance nominal. + +314 +00:19:55,880 --> 00:19:57,670 +Bi-directional circuits are open. + +315 +00:19:58,210 --> 00:20:00,740 +Synchronization rate at 41.3%. + +316 +00:20:01,380 --> 00:20:02,620 +Amazing. + +317 +00:20:02,620 --> 00:20:06,210 +Harmonics are all normal. +No disturbances identified. + +318 +00:20:06,990 --> 00:20:08,010 +We can do it. + +319 +00:20:09,390 --> 00:20:10,620 +Prepare to launch! + +320 +00:20:12,590 --> 00:20:14,130 +Prepare to launch! + +321 +00:20:14,130 --> 00:20:15,600 +Disengage primary lock bolts! + +322 +00:20:17,130 --> 00:20:20,290 +Disengage confirmed. +Disengaging the umbilical bridge. + +323 +00:20:22,700 --> 00:20:24,100 +Disengage secondary lock bolts. + +324 +00:20:26,440 --> 00:20:28,380 +Disengage primary restraints. + +325 +00:20:28,380 --> 00:20:30,810 +Likewise, disengage secondary restraints. + +326 +00:20:34,280 --> 00:20:37,220 +Release safety locks numbers +one through fifteen. + +327 +00:20:37,220 --> 00:20:38,240 +Release confirmed. + +328 +00:20:38,650 --> 00:20:40,790 +Currently, Unit 01's condition is free. + +329 +00:20:40,790 --> 00:20:42,420 +Internal batteries fully charged. + +330 +00:20:42,420 --> 00:20:44,450 +External battery outlet, normal. + +331 +00:20:45,030 --> 00:20:47,960 +Roger. Move Eva Unit 01 +to the ejector pad. + +332 +00:21:03,540 --> 00:21:05,440 +Launch path is clear. All systems green. + +333 +00:21:05,850 --> 00:21:07,180 +Ready for launch. + +334 +00:21:08,250 --> 00:21:09,180 +Roger. + +335 +00:21:10,020 --> 00:21:11,120 +Can we really do this? + +336 +00:21:11,120 --> 00:21:12,180 +Of course. + +337 +00:21:13,050 --> 00:21:15,610 +Unless we defeat the Angels, +we have no future. + +338 +00:21:17,190 --> 00:21:20,180 +Ikari, you're really sure about this? + +339 +00:21:21,830 --> 00:21:22,800 +Launch! + +340 +00:21:56,760 --> 00:21:58,830 +Shinji-kun, don't get killed out there. + +341 +00:21:58,830 --> 00:21:58,860 +To Be Continued +Shinji-kun, don't get killed out there. + +342 +00:21:58,860 --> 00:22:00,460 +To Be Continued + +343 +00:23:05,860 --> 00:23:06,770 +Preview + +344 +00:23:06,770 --> 00:23:08,140 +Eva triumphs over the Angel! + +345 +00:23:08,140 --> 00:23:10,400 +However, that was just the beginning. + +346 +00:23:10,640 --> 00:23:12,270 +Shinji runs away from his father. + +347 +00:23:12,270 --> 00:23:15,670 +Misato's arrogance leads her +to try to save him. + +348 +00:23:16,040 --> 00:23:18,410 +Next Evangelion: "Unfamiliar Ceiling" + +349 +00:23:18,410 --> 00:23:18,830 +I'll give you fan service next time too! + +350 +00:23:18,830 --> 00:23:20,450 +Next Episode +Unfamiliar Ceiling +I'll give you fan service next time too! + +351 +00:23:20,450 --> 00:23:20,870 +Unfamiliar Ceiling +Next Episode + diff --git a/unit_test/test_files/format_ssa.ssa b/unit_test/test_files/format_ssa.ssa new file mode 100644 index 000000000..3b629f120 --- /dev/null +++ b/unit_test/test_files/format_ssa.ssa @@ -0,0 +1,387 @@ +[Script Info] +; Script generated by Aegisub v2.1.3 RELEASE PREVIEW (SVN r2420, amz) +; http://www.aegisub.net +Title: +Original Script: +ScriptType: v4.00 +Video Aspect Ratio: 0 +Video Zoom: 6 +Video Position: 0 +Last Style Storage: evangelion +PlayResX: 704 +PlayResY: 480 + +[V4 Styles] +Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, TertiaryColour, BackColour, Bold, Italic, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, AlphaLevel, Encoding +Style: eva main,Sui Generis,27,15852755,65535,0,0,0,0,1,2,1,2,18,18,17,0,0 +Style: eva alternate,Sui Generis,27,12886903,65535,0,0,0,0,1,2,1,2,18,18,17,0,0 +Style: eva bg broadcast,Sui Generis,24,12698049,65535,0,0,0,0,1,2,1,6,18,18,17,0,0 +Style: eva broadcast,Sui Generis,27,12698049,65535,0,0,0,0,1,2,1,2,18,18,17,0,0 +Style: eva notes,Tw Cen MT,28,16777215,65535,0,0,0,0,1,0,0,7,18,18,17,0,0 +Style: eva other fo,Lucida Sans,20,16777215,65535,0,0,0,0,1,0,0,2,10,10,10,0,0 +Style: eva titles,Angsana New,80,16777215,65535,0,0,-1,0,1,0,0,2,10,10,10,0,0 + +[Events] +Format: Marked, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text +Dialogue: Marked=0,0:01:30.40,0:01:32.73,eva titles,Comment,0000,0000,0000,,{\fsp-3\pos(352,345)}The year is 2015 A.D. +Dialogue: Marked=0,0:01:55.10,0:01:59.03,eva broadcast,Comment,0000,0000,0000,,As of 12:30 PM today, a special state\nof emergency has been declared +Dialogue: Marked=0,0:01:59.13,0:02:03.26,eva broadcast,Comment,0000,0000,0000,,for the Kanto and Chubu regions\nsurrounding the Tokai district. +Dialogue: Marked=0,0:02:03.77,0:02:07.80,eva broadcast,Comment,0000,0000,0000,,All residents must evacuate to their\ndesignated shelters immediately. +Dialogue: Marked=0,0:02:08.24,0:02:12.55,eva broadcast,Comment,0000,0000,0000,,Repeating: As of 12:30 PM today, +Dialogue: Marked=0,0:02:11.65,0:02:14.07,eva other fo,Comment,0000,0000,0000,,{\pos(488,124)\bord0\shad0\fs30\frz322.539\frx24\fry41}All Lines Stopped +Dialogue: Marked=0,0:02:12.55,0:02:16.17,eva broadcast,Comment,0000,0000,0000,,the Kanto and Chubu regions\nsurrounding the Tokai district +Dialogue: Marked=0,0:02:16.25,0:02:19.31,eva broadcast,Comment,0000,0000,0000,,have been declared to be under\na state of emergency. +Dialogue: Marked=0,0:02:19.39,0:02:20.92,eva broadcast,Comment,0000,0000,0000,,All residents must evacuate... +Dialogue: Marked=0,0:02:20.92,0:02:24.39,eva main,Comment,0000,0000,0000,,Why did I have to lose sight of him now? +Dialogue: Marked=0,0:02:24.39,0:02:26.23,eva main,Comment,0000,0000,0000,,Oh, man! +Dialogue: Marked=0,0:02:26.11,0:02:28.75,eva other fo,Comment,0000,0000,0000,,{\c&H071413&\bord0\shad0\pos(154,432)\frz-5\fs22}Ikari Shinji +Dialogue: Marked=0,0:02:27.26,0:02:29.96,eva main,Comment,0000,0000,0000,,Due to the special emergency, +Dialogue: Marked=0,0:02:30.03,0:02:33.30,eva main,Comment,0000,0000,0000,,all lines are currently unavailable. +Dialogue: Marked=0,0:02:34.74,0:02:35.73,eva main,Comment,0000,0000,0000,,It's no use. +Dialogue: Marked=0,0:02:36.77,0:02:39.07,eva main,Comment,0000,0000,0000,,I shouldn't have come here after all. +Dialogue: Marked=0,0:02:42.84,0:02:45.26,eva main,Comment,0000,0000,0000,,{\fnhomework normal\fs40\shad0\bord1\3a&H80&\c&H21150C&\frz10\3c&HFFFFFF&\4c&HFFFFFF&\pos(160,179)}To Shinji-kun +Dialogue: Marked=0,0:02:42.84,0:02:45.26,eva main,Comment,0000,0000,0000,,{\fnhomework normal\fs40\shad0\bord1\3a&H80&\c&H21150C&\frz10\3c&HFFFFFF&\4c&HFFFFFF&\pos(592,123)}I'll be coming to\N\Nget you, so wait +Dialogue: Marked=0,0:02:42.84,0:02:45.26,eva main,Comment,0000,0000,0000,,{\fnhomework normal\fs40\shad0\bord1\3a&H80&\c&H21150C&\frz10\3c&HFFFFFF&\4c&HFFFFFF&\pos(211,250)}Attention here!! +Dialogue: Marked=0,0:02:42.84,0:02:45.26,eva main,Comment,0000,0000,0000,,{\fnhomework normal\fs40\shad0\bord1\3a&H80&\c&H21150C&\frz10\3c&HFFFFFF&\4c&HFFFFFF&\pos(628,197)}for me.{\fnWebdings}♥ +Dialogue: Marked=0,0:02:43.38,0:02:45.74,eva main,Comment,0000,0000,0000,,Well, I guess we won't be meeting here. +Dialogue: Marked=0,0:02:46.88,0:02:49.48,eva main,Comment,0000,0000,0000,,Can't be helped. I'll go to a shelter. +Dialogue: Marked=0,0:03:14.63,0:03:18.55,eva titles,Comment,0000,0000,0000,,{\fs21\fsp-1\bord0\shad0\c&HE3EDFC&\fnTw Cen MT\pos(612,415)}ESTIMATED PATH +Dialogue: Marked=0,0:03:15.14,0:03:18.60,eva main,Comment,0000,0000,0000,,The unidentified mobile object is still\nadvancing on our position. +Dialogue: Marked=0,0:03:19.38,0:03:22.61,eva main,Comment,0000,0000,0000,,We've got visual confirmation.\NI'm putting it on the main screen. +Dialogue: Marked=0,0:03:24.29,0:03:26.12,eva main,Comment,0000,0000,0000,,It's been fifteen years, hasn't it? +Dialogue: Marked=0,0:03:26.19,0:03:28.31,eva main,Comment,0000,0000,0000,,Yes, there's no doubt. +Dialogue: Marked=0,0:03:29.29,0:03:30.52,eva main,Comment,0000,0000,0000,,It's an Angel. +Dialogue: Marked=0,0:03:30.52,0:03:33.19,eva titles,Comment,0000,0000,0000,,{\pos(476,263)\fs130\fsp-6}Angel Attack +Dialogue: Marked=0,0:03:30.52,0:03:33.19,eva titles,Comment,0000,0000,0000,,{\fsp-3\pos(193,61)}Episode One +Dialogue: Marked=0,0:03:42.50,0:03:44.34,eva broadcast,Comment,0000,0000,0000,,Every missile hit the target! +Dialogue: Marked=0,0:04:03.53,0:04:05.12,eva main,Comment,0000,0000,0000,,I'm sorry! Thanks for waiting! +Dialogue: Marked=0,0:04:22.11,0:04:26.71,eva broadcast,Comment,0000,0000,0000,,The target is still operational.\NIt's still heading towards New Tokyo-3. +Dialogue: Marked=0,0:04:26.78,0:04:29.31,eva broadcast,Comment,0000,0000,0000,,The Air Defense Force doesn't have\nthe firepower to stop it! +Dialogue: Marked=0,0:04:30.12,0:04:31.29,eva main,Comment,0000,0000,0000,,Hit it with everything we've got! +Dialogue: Marked=0,0:04:31.29,0:04:33.25,eva main,Comment,0000,0000,0000,,Mobilize all of Atsugi and Iruma as well! +Dialogue: Marked=0,0:04:33.32,0:04:36.72,eva main,Comment,0000,0000,0000,,Don't hold anything back!\NDestroy the target at any cost! +Dialogue: Marked=0,0:04:50.05,0:04:52.17,eva main,Comment,0000,0000,0000,,Why?! That was a direct hit! +Dialogue: Marked=0,0:04:52.64,0:04:55.04,eva main,Comment,0000,0000,0000,,The tank battalion's been annihilated. +Dialogue: Marked=0,0:04:55.04,0:04:57.98,eva main,Comment,0000,0000,0000,,Guided missiles and artillery\nhave no effect either. +Dialogue: Marked=0,0:04:57.98,0:05:01.52,eva main,Comment,0000,0000,0000,,It's no good! We'll never get anywhere\nwith the firepower we've got! +Dialogue: Marked=0,0:05:01.52,0:05:03.39,eva main,Comment,0000,0000,0000,,Is it an AT field after all? +Dialogue: Marked=0,0:05:01.52,0:05:04.52,eva notes,Comment,0000,0000,0000,,{\fad(400,400)\1a&H70&}AT field: absolute terror field +Dialogue: Marked=0,0:05:03.39,0:05:07.34,eva main,Comment,0000,0000,0000,,Yes. Conventional weapons are\nuseless against Angels. +Dialogue: Marked=0,0:05:10.76,0:05:13.99,eva main,Comment,0000,0000,0000,,I understand. We'll activate it as planned. +Dialogue: Marked=0,0:05:18.80,0:05:20.29,eva main,Comment,0000,0000,0000,,Hey, don't tell me... +Dialogue: Marked=0,0:05:20.37,0:05:22.23,eva main,Comment,0000,0000,0000,,They're going to use an N{\fnLucida Sans}²{\r} mine?! +Dialogue: Marked=0,0:05:22.74,0:05:23.76,eva main,Comment,0000,0000,0000,,Get down! +Dialogue: Marked=0,0:05:46.56,0:05:47.43,eva main,Comment,0000,0000,0000,,We did it! +Dialogue: Marked=0,0:05:48.80,0:05:51.89,eva main,Comment,0000,0000,0000,,Sorry, but it looks like you won't be\ngetting a shot at it. +Dialogue: Marked=0,0:05:51.97,0:05:54.16,eva broadcast,Comment,0000,0000,0000,,Shock wave approaching. +Dialogue: Marked=0,0:05:55.37,0:05:56.70,eva main,Comment,0000,0000,0000,,Are you all right? +Dialogue: Marked=0,0:05:56.77,0:06:00.11,eva main,Comment,0000,0000,0000,,Yeah, but my mouth is full of dirt. +Dialogue: Marked=0,0:06:00.11,0:06:04.07,eva main,Comment,0000,0000,0000,,That's okay. Now then, here we go! +Dialogue: Marked=0,0:06:04.75,0:06:06.08,eva main,Comment,0000,0000,0000,,One, two! +Dialogue: Marked=0,0:06:09.88,0:06:11.44,eva main,Comment,0000,0000,0000,,There. +Dialogue: Marked=0,0:06:14.79,0:06:16.88,eva main,Comment,0000,0000,0000,,Thanks for the hand. I really appreciate it. +Dialogue: Marked=0,0:06:16.96,0:06:19.95,eva main,Comment,0000,0000,0000,,Thank you too, Katsuragi-san. +Dialogue: Marked=0,0:06:20.03,0:06:22.09,eva main,Comment,0000,0000,0000,,Just Misato is fine. +Dialogue: Marked=0,0:06:22.56,0:06:25.90,eva main,Comment,0000,0000,0000,,I'm glad we've met at last, Ikari Shinji-kun. +Dialogue: Marked=0,0:06:26.20,0:06:27.02,eva main,Comment,0000,0000,0000,,Yeah... +Dialogue: Marked=0,0:06:27.57,0:06:28.83,eva broadcast,Comment,0000,0000,0000,,What's the target's status? +Dialogue: Marked=0,0:06:28.90,0:06:31.80,eva broadcast,Comment,0000,0000,0000,,We're unable to confirm due to\nall the EMP interference. +Dialogue: Marked=0,0:06:31.87,0:06:34.64,eva main,Comment,0000,0000,0000,,You saw the size of the explosion. It's over. +Dialogue: Marked=0,0:06:34.71,0:06:36.14,eva broadcast,Comment,0000,0000,0000,,Sensors restored. +Dialogue: Marked=0,0:06:37.45,0:06:39.28,eva broadcast,Comment,0000,0000,0000,,We've got an energy reading\nat the explosion's epicenter! +Dialogue: Marked=0,0:06:39.35,0:06:40.47,eva main,Comment,0000,0000,0000,,What the hell?! +Dialogue: Marked=0,0:06:40.55,0:06:42.18,eva broadcast,Comment,0000,0000,0000,,Visual display restored. +Dialogue: Marked=0,0:06:46.45,0:06:48.68,eva main,Comment,0000,0000,0000,,That was our last resort. +Dialogue: Marked=0,0:06:49.62,0:06:51.53,eva main,Comment,0000,0000,0000,,How can this be? +Dialogue: Marked=0,0:06:51.53,0:06:53.15,eva main,Comment,0000,0000,0000,,Damned monster! +Dialogue: Marked=0,0:07:03.10,0:07:05.50,eva main,Comment,0000,0000,0000,,Yes. Don't worry about it. +Dialogue: Marked=0,0:07:05.57,0:07:09.63,eva main,Comment,0000,0000,0000,,His safety is my top priority,\nso could you get a car train ready for us? +Dialogue: Marked=0,0:07:09.71,0:07:10.94,eva main,Comment,0000,0000,0000,,A direct one. +Dialogue: Marked=0,0:07:11.81,0:07:12.78,eva main,Comment,0000,0000,0000,,Right. +Dialogue: Marked=0,0:07:13.15,0:07:15.48,eva main,Comment,0000,0000,0000,,Well, I volunteered to pick him up, +Dialogue: Marked=0,0:07:15.48,0:07:18.18,eva main,Comment,0000,0000,0000,,so I'll make sure he gets there. See ya! +Dialogue: Marked=0,0:07:20.52,0:07:26.95,eva main,Comment,0000,0000,0000,,Man, this sucks! I just had my car restored\nand it's a total wreck already! +Dialogue: Marked=0,0:07:27.44,0:07:30.56,eva main,Comment,0000,0000,0000,,33 more loan payments to go,\nplus the cost of repairs. +Dialogue: Marked=0,0:07:30.63,0:07:33.16,eva main,Comment,0000,0000,0000,,And look! My best dress has been ruined! +Dialogue: Marked=0,0:07:33.54,0:07:37.30,eva main,Comment,0000,0000,0000,,And I was looking and feeling so nice. +Dialogue: Marked=0,0:07:32.97,0:07:34.79,eva alternate,Comment,0000,0000,0000,,Excuse me, Misato-san? +Dialogue: Marked=0,0:07:37.30,0:07:38.98,eva main,Comment,0000,0000,0000,,Excuse me, Misato-san? +Dialogue: Marked=0,0:07:39.17,0:07:40.66,eva main,Comment,0000,0000,0000,,What? +Dialogue: Marked=0,0:07:40.74,0:07:43.40,eva main,Comment,0000,0000,0000,,Are you sure you can just take those? +Dialogue: Marked=0,0:07:45.25,0:07:46.21,eva main,Comment,0000,0000,0000,,Never mind about that! +Dialogue: Marked=0,0:07:46.28,0:07:50.05,eva main,Comment,0000,0000,0000,,It's an emergency, and we need\na working car right now, right? +Dialogue: Marked=0,0:07:50.12,0:07:53.61,eva main,Comment,0000,0000,0000,,And I'm an international government\nofficial, after all, +Dialogue: Marked=0,0:07:53.69,0:07:55.28,eva main,Comment,0000,0000,0000,,so everything's going to be\nperfectly fine, okay? +Dialogue: Marked=0,0:07:56.66,0:07:59.29,eva main,Comment,0000,0000,0000,,I don't think anyone will buy that. +Dialogue: Marked=0,0:07:59.36,0:08:03.46,eva main,Comment,0000,0000,0000,,You're no fun. You look cute,\nbut you're kind of a cold fish. +Dialogue: Marked=0,0:08:04.40,0:08:05.73,eva main,Comment,0000,0000,0000,,You think so? +Dialogue: Marked=0,0:08:05.80,0:08:07.53,eva main,Comment,0000,0000,0000,,Oh, did I upset you? +Dialogue: Marked=0,0:08:08.27,0:08:11.67,eva main,Comment,0000,0000,0000,,Sorry about that! You are a boy, after all. +Dialogue: Marked=0,0:08:11.74,0:08:15.04,eva main,Comment,0000,0000,0000,,And you're pretty childish for your age. +Dialogue: Marked=0,0:08:20.75,0:08:23.68,eva main,Comment,0000,0000,0000,,As we predicted, it's regenerating itself. +Dialogue: Marked=0,0:08:23.99,0:08:27.85,eva main,Comment,0000,0000,0000,,If it couldn't, it wouldn't be\na practical autonomous weapon. +Dialogue: Marked=0,0:08:31.49,0:08:35.09,eva main,Comment,0000,0000,0000,,Impressive. It appears it can even upgrade\nits own operational functions. +Dialogue: Marked=0,0:08:35.43,0:08:37.69,eva main,Comment,0000,0000,0000,,And it seems to have gotten smarter. +Dialogue: Marked=0,0:08:38.73,0:08:41.63,eva main,Comment,0000,0000,0000,,It's only a matter of time before\nit resumes attacking. +Dialogue: Marked=0,0:08:43.04,0:08:46.61,eva bg broadcast,Comment,0000,0000,0000,,The gates are now closing.\NPlease stand clear. +Dialogue: Marked=0,0:08:46.30,0:08:48.03,eva main,,0000,0000,0000,,The special duty organization Nerv? +Dialogue: Marked=0,0:08:46.61,0:08:48.34,eva bg broadcast,Comment,0000,0000,0000,,Now departing. +Dialogue: Marked=0,0:08:48.14,0:08:51.45,eva main,Comment,0000,0000,0000,,Yes, it's a secret organization under\nthe control of the United Nations. +Dialogue: Marked=0,0:08:48.34,0:08:56.75,eva bg broadcast,Comment,0000,0000,0000,,This is the C-22 Special Express\ndeparting directly for G33-1. +Dialogue: Marked=0,0:08:51.95,0:08:53.58,eva main,Comment,0000,0000,0000,,That's where my father is, right? +Dialogue: Marked=0,0:08:53.58,0:08:54.75,eva main,Comment,0000,0000,0000,,Well, yeah. +Dialogue: Marked=0,0:08:54.75,0:08:56.75,eva main,Comment,0000,0000,0000,,Do you know what he does? +Dialogue: Marked=0,0:08:58.09,0:09:01.92,eva bg broadcast,Comment,0000,0000,0000,,This train will bypass all other stations.\NPlease stand back. +Dialogue: Marked=0,0:09:00.69,0:09:04.52,eva main,Comment,0000,0000,0000,,My teacher told me his work is vital\nfor the protection of the human race. +Dialogue: Marked=0,0:09:07.66,0:09:10.83,eva main,Comment,0000,0000,0000,,From this point forward, command of this\noperation will be entrusted to you. +Dialogue: Marked=0,0:09:10.90,0:09:12.53,eva main,Comment,0000,0000,0000,,Show us what you're capable of. +Dialogue: Marked=0,0:09:12.60,0:09:13.69,eva main,Comment,0000,0000,0000,,Yes, Sir. +Dialogue: Marked=0,0:09:14.27,0:09:20.37,eva main,Comment,0000,0000,0000,,Ikari-kun, we will admit that our weapons\nhave no effect on the target. +Dialogue: Marked=0,0:09:21.28,0:09:23.68,eva main,Comment,0000,0000,0000,,But are you sure you can beat this thing? +Dialogue: Marked=0,0:09:24.15,0:09:25.83,eva main,Comment,0000,0000,0000,,It's what Nerv was created for. +Dialogue: Marked=0,0:09:26.65,0:09:28.14,eva main,Comment,0000,0000,0000,,Let's hope you're correct. +Dialogue: Marked=0,0:09:29.78,0:09:31.91,eva broadcast,Comment,0000,0000,0000,,The target is still stationary. +Dialogue: Marked=0,0:09:31.99,0:09:35.35,eva broadcast,Comment,0000,0000,0000,,Our intercept system is currently\N7.5% operational. +Dialogue: Marked=0,0:09:37.03,0:09:39.36,eva main,Comment,0000,0000,0000,,So, even the UN forces have retired. +Dialogue: Marked=0,0:09:39.43,0:09:41.02,eva main,Comment,0000,0000,0000,,What are you going to do? +Dialogue: Marked=0,0:09:41.53,0:09:43.52,eva main,Comment,0000,0000,0000,,I intend to activate Unit 01. +Dialogue: Marked=0,0:09:43.77,0:09:46.86,eva main,Comment,0000,0000,0000,,Unit 01? But we have no pilot. +Dialogue: Marked=0,0:09:47.50,0:09:51.10,eva main,Comment,0000,0000,0000,,That's not a problem. Another spare\nwill be delivered soon. +Dialogue: Marked=0,0:09:52.07,0:09:54.80,eva main,Comment,0000,0000,0000,,Are you taking me to my father? +Dialogue: Marked=0,0:09:55.31,0:09:57.40,eva main,Comment,0000,0000,0000,,Yes. Pretty much. +Dialogue: Marked=0,0:10:01.25,0:10:02.51,eva main,Comment,0000,0000,0000,,Father... +Dialogue: Marked=0,0:10:04.09,0:10:07.45,eva main,Comment,0000,0000,0000,,Oh, that's right. Did you get\nan ID card from your father? +Dialogue: Marked=0,0:10:09.36,0:10:10.35,eva main,Comment,0000,0000,0000,,Yes. +Dialogue: Marked=0,0:10:12.03,0:10:13.05,eva main,Comment,0000,0000,0000,,Here it is. +Dialogue: Marked=0,0:10:13.13,0:10:14.43,eva main,Comment,0000,0000,0000,,Thanks. +Dialogue: Marked=0,0:10:13.88,0:10:15.09,eva main,Comment,0000,0000,0000,,{\fnParla\fs35\b1\c&H293132&\frz9.564\bord2\shad0\3c&HBECAC1&\3a&H80&\pos(420,396)}Come. +Dialogue: Marked=0,0:10:13.88,0:10:15.09,eva main,Comment,0000,0000,0000,,{\fnParla\b1\c&H293132&\frz9.564\bord2\shad0\3c&HBECAC1&\3a&H80&\pos(485,459)}Ikari Gendo +Dialogue: Marked=0,0:10:15.80,0:10:18.20,eva main,Comment,0000,0000,0000,,Then read this. +Dialogue: Marked=0,0:10:18.09,0:10:19.76,eva titles,Comment,0000,0000,0000,,{\frz2.561\bord0\shad0\c&H03100B&\pos(380,320)}Welcome to +Dialogue: Marked=0,0:10:18.09,0:10:19.76,eva titles,Comment,0000,0000,0000,,{\frz2.561\bord0\shad0\c&H03100B&\i1\pos(380,353)}Nerv +Dialogue: Marked=0,0:10:18.93,0:10:20.13,eva main,Comment,0000,0000,0000,,Nerv... +Dialogue: Marked=0,0:10:21.00,0:10:22.26,eva main,Comment,0000,0000,0000,,My father's agency. +Dialogue: Marked=0,0:10:23.00,0:10:25.06,eva main,Comment,0000,0000,0000,,Am I going to work for them too? +Dialogue: Marked=0,0:10:27.01,0:10:28.50,eva main,Comment,0000,0000,0000,,Of course. +Dialogue: Marked=0,0:10:28.68,0:10:32.81,eva main,Comment,0000,0000,0000,,He wouldn't have sent me a letter unless\nhe needed me for something. +Dialogue: Marked=0,0:10:33.27,0:10:36.24,eva main,Comment,0000,0000,0000,,I see. So you don't get along with your father. +Dialogue: Marked=0,0:10:37.65,0:10:39.24,eva main,Comment,0000,0000,0000,,It's the same with me. +Dialogue: Marked=0,0:10:45.23,0:10:46.49,eva main,Comment,0000,0000,0000,,Awesome! +Dialogue: Marked=0,0:10:47.70,0:10:49.39,eva main,Comment,0000,0000,0000,,It's the real Geo-Front! +Dialogue: Marked=0,0:10:49.46,0:10:50.36,eva main,Comment,0000,0000,0000,,That's right. +Dialogue: Marked=0,0:10:50.43,0:10:53.87,eva main,Comment,0000,0000,0000,,This is our secret base.\NNerv Headquarters. +Dialogue: Marked=0,0:10:54.26,0:10:55.80,eva main,Comment,0000,0000,0000,,This is the key to rebuilding our world. +Dialogue: Marked=0,0:10:55.87,0:10:58.34,eva main,Comment,0000,0000,0000,,A fortress for all mankind. +Dialogue: Marked=0,0:11:04.91,0:11:10.18,eva main,Comment,0000,0000,0000,,That's strange. Isn't this the right way? +Dialogue: Marked=0,0:11:07.10,0:11:08.64,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,90)}Nerv{\i0} Headquarters +Dialogue: Marked=0,0:11:07.10,0:11:08.64,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,143)}Central Dogma +Dialogue: Marked=0,0:11:07.10,0:11:08.64,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\pos(273,118)\bord0\shad0\c&H3B2C71&}Around here +Dialogue: Marked=0,0:11:08.60,0:11:08.64,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,90)}Nerv{\i0} Headquarters +Dialogue: Marked=0,0:11:08.64,0:11:08.68,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,99)}Nerv{\i0} Headquarters +Dialogue: Marked=0,0:11:08.68,0:11:08.73,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,109)}Nerv{\i0} Headquarters +Dialogue: Marked=0,0:11:08.73,0:11:08.77,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,125)}Nerv{\i0} Headquarters +Dialogue: Marked=0,0:11:08.77,0:11:08.81,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,145)}Nerv{\i0} Headquarters +Dialogue: Marked=0,0:11:08.81,0:11:08.85,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,186)}Nerv{\i0} Headquarters +Dialogue: Marked=0,0:11:08.85,0:11:08.89,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,235)}Nerv{\i0} Headquarters +Dialogue: Marked=0,0:11:08.89,0:11:08.93,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,285)}Nerv{\i0} Headquarters +Dialogue: Marked=0,0:11:08.93,0:11:08.98,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,333)}Nerv{\i0} Headquarters +Dialogue: Marked=0,0:11:08.98,0:11:09.02,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,394)}Nerv{\i0} Headquarters +Dialogue: Marked=0,0:11:09.02,0:11:09.06,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\i1\c&H15180D&\pos(132,457)}Nerv{\i0} Headquarters +Dialogue: Marked=0,0:11:08.60,0:11:08.64,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,143)}Central Dogma +Dialogue: Marked=0,0:11:08.64,0:11:08.68,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,152)}Central Dogma +Dialogue: Marked=0,0:11:08.68,0:11:08.73,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,162)}Central Dogma +Dialogue: Marked=0,0:11:08.73,0:11:08.77,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,178)}Central Dogma +Dialogue: Marked=0,0:11:08.77,0:11:08.81,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,198)}Central Dogma +Dialogue: Marked=0,0:11:08.81,0:11:08.85,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,240)}Central Dogma +Dialogue: Marked=0,0:11:08.85,0:11:08.89,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,287)}Central Dogma +Dialogue: Marked=0,0:11:08.89,0:11:08.93,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,339)}Central Dogma +Dialogue: Marked=0,0:11:08.93,0:11:08.98,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,384)}Central Dogma +Dialogue: Marked=0,0:11:08.98,0:11:09.02,eva other fo,Comment,0000,0000,0000,,{\fnAngsana New\fs30\c&H15180D&\pos(123,447)}Central Dogma +Dialogue: Marked=0,0:11:08.64,0:11:08.68,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,128)}Around here +Dialogue: Marked=0,0:11:08.68,0:11:08.73,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,138)}Around here +Dialogue: Marked=0,0:11:08.73,0:11:08.77,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,154)}Around here +Dialogue: Marked=0,0:11:08.77,0:11:08.81,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,171)}Around here +Dialogue: Marked=0,0:11:08.81,0:11:08.85,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,213)}Around here +Dialogue: Marked=0,0:11:08.85,0:11:08.89,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,262)}Around here +Dialogue: Marked=0,0:11:08.89,0:11:08.93,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(276,312)}Around here +Dialogue: Marked=0,0:11:08.93,0:11:08.98,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(275,358)}Around here +Dialogue: Marked=0,0:11:08.98,0:11:09.02,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(273,420)}Around here +Dialogue: Marked=0,0:11:09.02,0:11:09.06,eva main,Comment,0000,0000,0000,,{\fnOne Stroke Script LET\frz21.148\bord0\shad0\c&H3B2C71&\pos(281,480)}Around here +Dialogue: Marked=0,0:11:10.89,0:11:12.49,eva bg broadcast,Comment,0000,0000,0000,,Central Dogma's closed passages\nremain sealed. +Dialogue: Marked=0,0:11:12.49,0:11:15.29,eva main,Comment,0000,0000,0000,,This is why I hate wearing skirts here. +Dialogue: Marked=0,0:11:12.92,0:11:17.76,eva bg broadcast,Comment,0000,0000,0000,,Opening block B-26 in sequence. +Dialogue: Marked=0,0:11:15.79,0:11:18.56,eva main,Comment,0000,0000,0000,,But where the heck did Ritsuko go? +Dialogue: Marked=0,0:11:18.63,0:11:21.42,eva main,Comment,0000,0000,0000,,I'm sorry. I'm just not used to this place yet. +Dialogue: Marked=0,0:11:21.50,0:11:23.49,eva main,Comment,0000,0000,0000,,We passed this spot just a little while ago. +Dialogue: Marked=0,0:11:24.87,0:11:26.30,eva main,Comment,0000,0000,0000,,But don't worry about it. +Dialogue: Marked=0,0:11:26.37,0:11:29.24,eva main,Comment,0000,0000,0000,,They make these systems\nto be used, you know. +Dialogue: Marked=0,0:11:29.24,0:11:31.97,eva bg broadcast,Comment,0000,0000,0000,,Would the head of Project E,\NTechnical Department Division 1, +Dialogue: Marked=0,0:11:31.97,0:11:34.84,eva bg broadcast,Comment,0000,0000,0000,,Dr. Akagi Ritsuko, Dr. Akagi Ritsuko, +Dialogue: Marked=0,0:11:34.84,0:11:39.48,eva bg broadcast,Comment,0000,0000,0000,,please contact Captain Katsuragi Misato\nof Operations, Division 1, immediately. +Dialogue: Marked=0,0:11:39.61,0:11:41.45,eva main,Comment,0000,0000,0000,,I don't believe it. +Dialogue: Marked=0,0:11:41.45,0:11:42.42,eva main,Comment,0000,0000,0000,,She got lost again, didn't she? +Dialogue: Marked=0,0:11:46.89,0:11:48.95,eva main,Comment,0000,0000,0000,,Uh, hiya, Ritsuko. +Dialogue: Marked=0,0:11:53.63,0:11:55.99,eva main,Comment,0000,0000,0000,,What were you doing, Captain Katsuragi? +Dialogue: Marked=0,0:11:56.10,0:11:58.33,eva main,Comment,0000,0000,0000,,We're short on both time\nand manpower, you know. +Dialogue: Marked=0,0:11:58.83,0:11:59.86,eva main,Comment,0000,0000,0000,,Sorry! +Dialogue: Marked=0,0:12:03.14,0:12:04.97,eva main,Comment,0000,0000,0000,,So this is the boy? +Dialogue: Marked=0,0:12:05.04,0:12:08.98,eva main,Comment,0000,0000,0000,,Right. According to the Marduk report,\nhe's the "Third Child". +Dialogue: Marked=0,0:12:09.68,0:12:10.77,eva main,Comment,0000,0000,0000,,I'm glad to meet you. +Dialogue: Marked=0,0:12:10.85,0:12:12.68,eva main,Comment,0000,0000,0000,,Huh? Sure. +Dialogue: Marked=0,0:12:13.00,0:12:17.88,eva main,Comment,0000,0000,0000,,He's just like his father.\NLike how he's unendearing. +Dialogue: Marked=0,0:12:18.25,0:12:19.51,eva main,Comment,0000,0000,0000,,I'll leave the rest to you. +Dialogue: Marked=0,0:12:23.96,0:12:26.19,eva main,Comment,0000,0000,0000,,Their first meeting in over three years. +Dialogue: Marked=0,0:12:27.23,0:12:30.89,eva main,Comment,0000,0000,0000,,Vice Commander, the target\nhas started moving again. +Dialogue: Marked=0,0:12:30.97,0:12:34.37,eva main,Comment,0000,0000,0000,,Right. All personnel, assume\nbattle stations, Level One. +Dialogue: Marked=0,0:12:34.54,0:12:37.91,eva bg broadcast,Comment,0000,0000,0000,,Repeat. All personnel, assume\nbattle stations, Level One. +Dialogue: Marked=0,0:12:37.91,0:12:39.30,eva bg broadcast,Comment,0000,0000,0000,,Prepare for ground-unit interception. +Dialogue: Marked=0,0:12:39.81,0:12:41.04,eva main,Comment,0000,0000,0000,,Here we go. +Dialogue: Marked=0,0:12:41.04,0:12:42.27,eva main,Comment,0000,0000,0000,,It sounds pretty serious. +Dialogue: Marked=0,0:12:43.41,0:12:45.58,eva main,Comment,0000,0000,0000,,So, how's Unit 01 doing? +Dialogue: Marked=0,0:12:45.58,0:12:47.95,eva main,Comment,0000,0000,0000,,It's currently in refrigeration,\nusing the B-type equipment. +Dialogue: Marked=0,0:12:47.95,0:12:51.95,eva main,Comment,0000,0000,0000,,Does it really work?\NIt's never worked before, right? +Dialogue: Marked=0,0:12:51.95,0:12:56.89,eva main,Comment,0000,0000,0000,,The possibility of activation is 0.000000001%. +Dialogue: Marked=0,0:12:57.49,0:12:59.99,eva main,Comment,0000,0000,0000,,We call it, pathetically enough,\nthe O-9 System. +Dialogue: Marked=0,0:12:59.99,0:13:02.66,eva main,Comment,0000,0000,0000,,Does that mean it doesn't work? +Dialogue: Marked=0,0:13:02.66,0:13:05.13,eva main,Comment,0000,0000,0000,,Oh, don't be insulting. It's not zero. +Dialogue: Marked=0,0:13:05.13,0:13:06.83,eva main,Comment,0000,0000,0000,,Well, it's just a number. +Dialogue: Marked=0,0:13:06.90,0:13:11.43,eva main,Comment,0000,0000,0000,,Anyway, it's a bit too late to be saying,\N"Sorry, it didn't work". +Dialogue: Marked=0,0:13:20.05,0:13:22.81,eva main,Comment,0000,0000,0000,,Huh? It's completely dark. +Dialogue: Marked=0,0:13:26.39,0:13:29.15,eva main,Comment,0000,0000,0000,,A face? A giant robot? +Dialogue: Marked=0,0:13:30.86,0:13:33.02,eva main,Comment,0000,0000,0000,,You won't find this in the manual. +Dialogue: Marked=0,0:13:34.16,0:13:38.13,eva main,Comment,0000,0000,0000,,This is mankind's ultimate\nmultipurpose decisive weapon, +Dialogue: Marked=0,0:13:38.13,0:13:42.04,eva main,Comment,0000,0000,0000,,the synthetic human Evangelion, Unit 01. +Dialogue: Marked=0,0:13:42.04,0:13:47.28,eva main,Comment,0000,0000,0000,,Built in absolute secrecy,\nit is mankind's trump card. +Dialogue: Marked=0,0:13:47.28,0:13:49.28,eva main,Comment,0000,0000,0000,,Is this part of what my father's been doing? +Dialogue: Marked=0,0:13:49.28,0:13:50.18,eva broadcast,Comment,0000,0000,0000,,Correct. +Dialogue: Marked=0,0:13:52.15,0:13:53.48,eva main,Comment,0000,0000,0000,,It's been a while. +Dialogue: Marked=0,0:13:54.55,0:13:55.68,eva main,Comment,0000,0000,0000,,Father... +Dialogue: Marked=0,0:13:58.75,0:13:59.52,eva main,Comment,0000,0000,0000,,We're moving out! +Dialogue: Marked=0,0:14:00.02,0:14:03.48,eva main,Comment,0000,0000,0000,,Moving out?! Unit 00's still in\ncryo-stasis, isn't it? +Dialogue: Marked=0,0:14:05.43,0:14:07.62,eva main,Comment,0000,0000,0000,,You're not planning to use Unit 01?! +Dialogue: Marked=0,0:14:08.43,0:14:09.96,eva main,Comment,0000,0000,0000,,There's no other way. +Dialogue: Marked=0,0:14:09.96,0:14:12.83,eva main,Comment,0000,0000,0000,,Hold on! Rei can't do it yet, can she? +Dialogue: Marked=0,0:14:13.77,0:14:15.17,eva main,Comment,0000,0000,0000,,We've got no pilot! +Dialogue: Marked=0,0:14:16.10,0:14:17.26,eva main,Comment,0000,0000,0000,,A pilot has just been delivered. +Dialogue: Marked=0,0:14:18.54,0:14:19.56,eva main,Comment,0000,0000,0000,,Are you serious? +Dialogue: Marked=0,0:14:20.54,0:14:21.61,eva main,Comment,0000,0000,0000,,Ikari Shinji-kun... +Dialogue: Marked=0,0:14:21.61,0:14:22.71,eva main,Comment,0000,0000,0000,,Yes? +Dialogue: Marked=0,0:14:22.71,0:14:23.73,eva main,Comment,0000,0000,0000,,You will pilot it. +Dialogue: Marked=0,0:14:24.45,0:14:29.44,eva main,Comment,0000,0000,0000,,But even Ayanami Rei took seven months\nto synchronize with her Eva. +Dialogue: Marked=0,0:14:29.62,0:14:32.25,eva main,Comment,0000,0000,0000,,It's impossible for him to do it!\NHe just got here! +Dialogue: Marked=0,0:14:32.32,0:14:35.12,eva main,Comment,0000,0000,0000,,He just has to sit in the seat.\NWe don't expect more than that. +Dialogue: Marked=0,0:14:35.19,0:14:36.18,eva main,Comment,0000,0000,0000,,But... +Dialogue: Marked=0,0:14:36.26,0:14:38.92,eva main,Comment,0000,0000,0000,,Repelling that Angel is our ultimate priority. +Dialogue: Marked=0,0:14:39.43,0:14:43.02,eva main,Comment,0000,0000,0000,,To do that, we have no choice but to put\naboard the Eva whomever has the chance +Dialogue: Marked=0,0:14:43.10,0:14:45.62,eva main,Comment,0000,0000,0000,,to synchronize with it, no matter how slight. +Dialogue: Marked=0,0:14:46.87,0:14:48.80,eva main,Comment,0000,0000,0000,,I believe you know that, Captain Katsuragi. +Dialogue: Marked=0,0:14:51.27,0:14:52.60,eva main,Comment,0000,0000,0000,,I suppose... +Dialogue: Marked=0,0:14:54.21,0:14:56.61,eva main,Comment,0000,0000,0000,,Father, why did you send for me? +Dialogue: Marked=0,0:14:56.61,0:14:58.75,eva main,Comment,0000,0000,0000,,You know exactly why. +Dialogue: Marked=0,0:14:58.75,0:15:02.65,eva main,Comment,0000,0000,0000,,So, you're asking me to take this thing\nand fight that thing? +Dialogue: Marked=0,0:15:03.35,0:15:04.35,eva main,Comment,0000,0000,0000,,That's right. +Dialogue: Marked=0,0:15:04.35,0:15:08.02,eva main,Comment,0000,0000,0000,,No way! Why are you doing this now?! +Dialogue: Marked=0,0:15:08.02,0:15:10.63,eva main,Comment,0000,0000,0000,,I thought you didn't need me! +Dialogue: Marked=0,0:15:10.63,0:15:12.82,eva main,Comment,0000,0000,0000,,I called you because I have a need for you. +Dialogue: Marked=0,0:15:15.40,0:15:16.83,eva main,Comment,0000,0000,0000,,Why me? +Dialogue: Marked=0,0:15:17.47,0:15:19.70,eva main,Comment,0000,0000,0000,,Because no one else can. +Dialogue: Marked=0,0:15:20.37,0:15:22.06,eva main,Comment,0000,0000,0000,,No, I can't... +Dialogue: Marked=0,0:15:22.50,0:15:26.03,eva main,Comment,0000,0000,0000,,I've never even seen anything\nlike this before! I can't do this! +Dialogue: Marked=0,0:15:27.01,0:15:28.41,eva main,Comment,0000,0000,0000,,You will be instructed. +Dialogue: Marked=0,0:15:29.04,0:15:32.88,eva main,Comment,0000,0000,0000,,But there's no way I can do this! +Dialogue: Marked=0,0:15:33.71,0:15:35.74,eva main,Comment,0000,0000,0000,,I can't pilot it! +Dialogue: Marked=0,0:15:37.22,0:15:40.24,eva main,Comment,0000,0000,0000,,If you're going to pilot it, do it now\nand quickly. If not, leave! +Dialogue: Marked=0,0:15:51.93,0:15:54.46,eva main,Comment,0000,0000,0000,,It must have detected our location. +Dialogue: Marked=0,0:15:58.11,0:16:00.04,eva main,Comment,0000,0000,0000,,Shinji-kun, we don't have time. +Dialogue: Marked=0,0:16:05.08,0:16:06.24,eva main,Comment,0000,0000,0000,,Get into it. +Dialogue: Marked=0,0:16:07.31,0:16:11.98,eva main,Comment,0000,0000,0000,,No! I didn't come for this! This isn't fair! +Dialogue: Marked=0,0:16:13.25,0:16:16.69,eva main,Comment,0000,0000,0000,,Shinji-kun, just why did you come here? +Dialogue: Marked=0,0:16:18.59,0:16:22.69,eva main,Comment,0000,0000,0000,,You mustn't run! Not from your father,\nand most of all not from yourself. +Dialogue: Marked=0,0:16:23.33,0:16:27.39,eva main,Comment,0000,0000,0000,,I know that! But there's no way I can do it! +Dialogue: Marked=0,0:16:35.54,0:16:36.53,eva main,Comment,0000,0000,0000,,Fuyutsuki... +Dialogue: Marked=0,0:16:37.85,0:16:39.25,eva main,Comment,0000,0000,0000,,Wake up Rei. +Dialogue: Marked=0,0:16:39.25,0:16:40.75,eva broadcast,Comment,0000,0000,0000,,Can we use her? +Dialogue: Marked=0,0:16:40.75,0:16:42.31,eva main,Comment,0000,0000,0000,,She isn't dead. +Dialogue: Marked=0,0:16:43.45,0:16:44.58,eva broadcast,Comment,0000,0000,0000,,I understand. +Dialogue: Marked=0,0:16:46.39,0:16:47.25,eva main,Comment,0000,0000,0000,,Rei. +Dialogue: Marked=0,0:16:47.25,0:16:48.39,eva main,Comment,0000,0000,0000,,Yes? +Dialogue: Marked=0,0:16:48.39,0:16:51.26,eva main,Comment,0000,0000,0000,,Our spare is unusable. You will do it again. +Dialogue: Marked=0,0:16:51.26,0:16:52.23,eva main,Comment,0000,0000,0000,,Yes, Sir. +Dialogue: Marked=0,0:16:54.50,0:16:57.93,eva main,Comment,0000,0000,0000,,Reconfigure Unit 01's system to Rei,\nthen re-activate! +Dialogue: Marked=0,0:16:57.93,0:17:00.99,eva broadcast,Comment,0000,0000,0000,,Roger. Call off the present work,\nand begin re-activation. +Dialogue: Marked=0,0:17:02.97,0:17:06.80,eva main,Comment,0000,0000,0000,,I knew it. I'm not needed after all. +Dialogue: Marked=0,0:17:40.67,0:17:41.70,eva main,Comment,0000,0000,0000,,Watch out! +Dialogue: Marked=0,0:17:51.32,0:17:52.89,eva broadcast,Comment,0000,0000,0000,,The Eva moved! +Dialogue: Marked=0,0:17:52.89,0:17:54.09,eva broadcast,Comment,0000,0000,0000,,What's going on?! +Dialogue: Marked=0,0:17:54.09,0:17:56.46,eva broadcast,Comment,0000,0000,0000,,It broke the right arm restraint! +Dialogue: Marked=0,0:17:56.46,0:17:58.02,eva main,Comment,0000,0000,0000,,No, that's impossible! +Dialogue: Marked=0,0:17:58.53,0:18:00.73,eva main,Comment,0000,0000,0000,,It didn't even have an entry plug inserted! +Dialogue: Marked=0,0:18:00.73,0:18:01.96,eva main,Comment,0000,0000,0000,,There's no way it could have moved! +Dialogue: Marked=0,0:18:03.10,0:18:05.33,eva main,Comment,0000,0000,0000,,It reacted without any interface?! +Dialogue: Marked=0,0:18:06.13,0:18:08.20,eva main,Comment,0000,0000,0000,,Or was it protecting... +Dialogue: Marked=0,0:18:08.20,0:18:09.23,eva main,Comment,0000,0000,0000,,him? +Dialogue: Marked=0,0:18:10.54,0:18:11.53,eva main,Comment,0000,0000,0000,,We can do it. +Dialogue: Marked=0,0:18:32.56,0:18:37.16,eva main,Comment,0000,0000,0000,,I mustn't run away. I mustn't run away.\NI mustn't run away. I mustn't run away. +Dialogue: Marked=0,0:18:37.16,0:18:38.32,eva main,Comment,0000,0000,0000,,I mustn't run away! +Dialogue: Marked=0,0:18:39.77,0:18:40.67,eva main,Comment,0000,0000,0000,,I'll do it. +Dialogue: Marked=0,0:18:41.37,0:18:42.49,eva main,Comment,0000,0000,0000,,I'll pilot it! +Dialogue: Marked=0,0:18:46.04,0:18:47.34,eva broadcast,Comment,0000,0000,0000,,Cooling process, completed. +Dialogue: Marked=0,0:18:47.34,0:18:48.88,eva broadcast,Comment,0000,0000,0000,,Right arm re-secured. +Dialogue: Marked=0,0:18:48.88,0:18:50.91,eva broadcast,Comment,0000,0000,0000,,Cage contents now in position for docking. +Dialogue: Marked=0,0:18:50.91,0:18:51.85,eva main,Comment,0000,0000,0000,,Roger. +Dialogue: Marked=0,0:18:51.85,0:18:54.68,eva main,Comment,0000,0000,0000,,Signal terminator plug has been ejected. +Dialogue: Marked=0,0:18:55.22,0:18:57.82,eva broadcast,Comment,0000,0000,0000,,Roger. Inserting entry plug. +Dialogue: Marked=0,0:18:57.82,0:19:00.88,eva broadcast,Comment,0000,0000,0000,,Direct hydro-transmission system,\nconnection prepared. +Dialogue: Marked=0,0:19:04.93,0:19:06.43,eva broadcast,Comment,0000,0000,0000,,Plug fixed in place. +Dialogue: Marked=0,0:19:06.43,0:19:08.16,eva broadcast,Comment,0000,0000,0000,,First stage connection initiated. +Dialogue: Marked=0,0:19:13.07,0:19:14.90,eva broadcast,Comment,0000,0000,0000,,Filling the entry plug. +Dialogue: Marked=0,0:19:16.07,0:19:17.47,eva main,Comment,0000,0000,0000,,What is this stuff? +Dialogue: Marked=0,0:19:21.41,0:19:24.45,eva main,Comment,0000,0000,0000,,Don't worry. Once your lungs\nare filled with LCL, +Dialogue: Marked=0,0:19:24.45,0:19:27.21,eva main,Comment,0000,0000,0000,,your blood will be oxygenated directly. +Dialogue: Marked=0,0:19:27.21,0:19:28.55,eva broadcast,Comment,0000,0000,0000,,You'll get used to it. +Dialogue: Marked=0,0:19:32.02,0:19:33.45,eva main,Comment,0000,0000,0000,,I feel nauseous. +Dialogue: Marked=0,0:19:33.45,0:19:35.72,eva main,Comment,0000,0000,0000,,Stop whining! You're a boy, aren't you?! +Dialogue: Marked=0,0:19:37.02,0:19:38.16,eva broadcast,Comment,0000,0000,0000,,Connecting main power. +Dialogue: Marked=0,0:19:38.16,0:19:40.86,eva broadcast,Comment,0000,0000,0000,,All circuits transmitting power. +Dialogue: Marked=0,0:19:40.86,0:19:41.70,eva broadcast,Comment,0000,0000,0000,,Roger. +Dialogue: Marked=0,0:19:41.70,0:19:43.36,eva broadcast,Comment,0000,0000,0000,,Commencing secondary contacts. +Dialogue: Marked=0,0:19:44.93,0:19:47.37,eva broadcast,Comment,0000,0000,0000,,A-10 nerve connection, normal. +Dialogue: Marked=0,0:19:47.37,0:19:52.57,eva broadcast,Comment,0000,0000,0000,,Set the thought configuration to Japanese. +Dialogue: Marked=0,0:19:53.44,0:19:55.88,eva broadcast,Comment,0000,0000,0000,,All preliminary contacts established.\NPerformance nominal. +Dialogue: Marked=0,0:19:55.88,0:19:57.67,eva broadcast,Comment,0000,0000,0000,,Bi-directional circuits are open. +Dialogue: Marked=0,0:19:58.21,0:20:00.74,eva broadcast,Comment,0000,0000,0000,,Synchronization rate at 41.3%. +Dialogue: Marked=0,0:20:01.38,0:20:02.62,eva main,Comment,0000,0000,0000,,Amazing. +Dialogue: Marked=0,0:20:02.62,0:20:06.21,eva main,Comment,0000,0000,0000,,Harmonics are all normal.\NNo disturbances identified. +Dialogue: Marked=0,0:20:06.99,0:20:08.01,eva main,Comment,0000,0000,0000,,We can do it. +Dialogue: Marked=0,0:20:09.39,0:20:10.62,eva main,Comment,0000,0000,0000,,Prepare to launch! +Dialogue: Marked=0,0:20:12.59,0:20:14.13,eva broadcast,Comment,0000,0000,0000,,Prepare to launch! +Dialogue: Marked=0,0:20:14.13,0:20:15.60,eva broadcast,Comment,0000,0000,0000,,Disengage primary lock bolts! +Dialogue: Marked=0,0:20:17.13,0:20:20.29,eva broadcast,Comment,0000,0000,0000,,Disengage confirmed.\NDisengaging the umbilical bridge. +Dialogue: Marked=0,0:20:22.70,0:20:24.10,eva broadcast,Comment,0000,0000,0000,,Disengage secondary lock bolts. +Dialogue: Marked=0,0:20:26.44,0:20:28.38,eva broadcast,Comment,0000,0000,0000,,Disengage primary restraints. +Dialogue: Marked=0,0:20:28.38,0:20:30.81,eva broadcast,Comment,0000,0000,0000,,Likewise, disengage secondary restraints. +Dialogue: Marked=0,0:20:34.28,0:20:37.22,eva broadcast,Comment,0000,0000,0000,,Release safety locks numbers\none through fifteen. +Dialogue: Marked=0,0:20:37.22,0:20:38.24,eva broadcast,Comment,0000,0000,0000,,Release confirmed. +Dialogue: Marked=0,0:20:38.65,0:20:40.79,eva broadcast,Comment,0000,0000,0000,,Currently, Unit 01's condition is free. +Dialogue: Marked=0,0:20:40.79,0:20:42.42,eva broadcast,Comment,0000,0000,0000,,Internal batteries fully charged. +Dialogue: Marked=0,0:20:42.42,0:20:44.45,eva broadcast,Comment,0000,0000,0000,,External battery outlet, normal. +Dialogue: Marked=0,0:20:45.03,0:20:47.96,eva main,Comment,0000,0000,0000,,Roger. Move Eva Unit 01\nto the ejector pad. +Dialogue: Marked=0,0:21:03.54,0:21:05.44,eva main,Comment,0000,0000,0000,,Launch path is clear. All systems green. +Dialogue: Marked=0,0:21:05.85,0:21:07.18,eva main,Comment,0000,0000,0000,,Ready for launch. +Dialogue: Marked=0,0:21:08.25,0:21:09.18,eva main,Comment,0000,0000,0000,,Roger. +Dialogue: Marked=0,0:21:10.02,0:21:11.12,eva main,Comment,0000,0000,0000,,Can we really do this? +Dialogue: Marked=0,0:21:11.12,0:21:12.18,eva main,Comment,0000,0000,0000,,Of course. +Dialogue: Marked=0,0:21:13.05,0:21:15.61,eva main,Comment,0000,0000,0000,,Unless we defeat the Angels,\nwe have no future. +Dialogue: Marked=0,0:21:17.19,0:21:20.18,eva main,Comment,0000,0000,0000,,Ikari, you're really sure about this? +Dialogue: Marked=0,0:21:21.83,0:21:22.80,eva main,Comment,0000,0000,0000,,Launch! +Dialogue: Marked=0,0:21:56.76,0:21:58.86,eva main,Comment,0000,0000,0000,,Shinji-kun, don't get killed out there. +Dialogue: Marked=0,0:21:58.83,0:22:00.46,eva titles,Comment,0000,0000,0000,,{\fsp-3\fs80\pos(531,377)}To Be Continued +Dialogue: Marked=0,0:23:05.86,0:23:06.77,eva titles,Comment,0000,0000,0000,,{\pos(352,487)\fsp-3}Preview +Dialogue: Marked=0,0:23:06.77,0:23:08.14,eva main,Comment,0000,0000,0000,,Eva triumphs over the Angel! +Dialogue: Marked=0,0:23:08.14,0:23:10.40,eva main,Comment,0000,0000,0000,,However, that was just the beginning. +Dialogue: Marked=0,0:23:10.64,0:23:12.27,eva main,Comment,0000,0000,0000,,Shinji runs away from his father. +Dialogue: Marked=0,0:23:12.27,0:23:15.67,eva main,Comment,0000,0000,0000,,Misato's arrogance leads her\nto try to save him. +Dialogue: Marked=0,0:23:16.04,0:23:18.41,eva main,Comment,0000,0000,0000,,Next Evangelion: "Unfamiliar Ceiling" +Dialogue: Marked=0,0:23:18.41,0:23:20.45,eva main,Comment,0000,0000,0000,,I'll give you fan service next time too! +Dialogue: Marked=0,0:23:18.83,0:23:20.87,eva titles,Comment,0000,0000,0000,,{\c&H071914&\fsp-3\pos(353,389)}Unfamiliar Ceiling +Dialogue: Marked=0,0:23:18.83,0:23:20.87,eva titles,Comment,0000,0000,0000,,{\c&H071914&\fs60\fsp-2\pos(343,85)}Next Episode diff --git a/unit_test/test_files/format_transtation.txt b/unit_test/test_files/format_transtation.txt new file mode 100644 index 000000000..828f62468 --- /dev/null +++ b/unit_test/test_files/format_transtation.txt @@ -0,0 +1,1218 @@ +SUB[0 N 00:01:30:11>00:01:32:21] +The year is 2015 A.D. + +SUB[0 N 00:01:55:02>00:01:59:00] +As of 12:30 PM today, a special state +of emergency has been declared + +SUB[0 N 00:01:59:03>00:02:03:07] +for the Kanto and Chubu regions +surrounding the Tokai district. + +SUB[0 N 00:02:03:23>00:02:07:23] +All residents must evacuate to their +designated shelters immediately. + +SUB[0 N 00:02:08:07>00:02:11:19] +Repeating: As of 12:30 PM today, + +SUB[0 N 00:02:11:19>00:02:12:16] +All Lines Stopped +Repeating: As of 12:30 PM today, + +SUB[0 N 00:02:12:16>00:02:14:01] +the Kanto and Chubu regions +surrounding the Tokai district +All Lines Stopped + +SUB[0 N 00:02:14:02>00:02:16:04] +the Kanto and Chubu regions +surrounding the Tokai district + +SUB[0 N 00:02:16:07>00:02:19:08] +have been declared to be under +a state of emergency. + +SUB[0 N 00:02:19:11>00:02:20:27] +All residents must evacuate... + +SUB[0 N 00:02:20:27>00:02:24:11] +Why did I have to lose sight of him now? + +SUB[0 N 00:02:24:11>00:02:26:02] +Oh, man! + +SUB[0 N 00:02:26:03>00:02:26:06] +Ikari Shinji +Oh, man! + +SUB[0 N 00:02:26:06>00:02:27:07] +Ikari Shinji + +SUB[0 N 00:02:27:07>00:02:28:21] +Due to the special emergency, +Ikari Shinji + +SUB[0 N 00:02:28:22>00:02:29:28] +Due to the special emergency, + +SUB[0 N 00:02:30:00>00:02:33:08] +all lines are currently unavailable. + +SUB[0 N 00:02:34:22>00:02:35:21] +It's no use. + +SUB[0 N 00:02:36:23>00:02:39:01] +I shouldn't have come here after all. + +SUB[0 N 00:02:42:25>00:02:43:10] +for me.♥ +Attention here!! +I'll be coming to +get you, so wait +To Shinji-kun + +SUB[0 N 00:02:43:11>00:02:45:07] +Well, I guess we won't be meeting here. +for me.♥ +Attention here!! +I'll be coming to +get you, so wait +To Shinji-kun + +SUB[0 N 00:02:45:07>00:02:45:21] +Well, I guess we won't be meeting here. + +SUB[0 N 00:02:46:26>00:02:49:13] +Can't be helped. I'll go to a shelter. + +SUB[0 N 00:03:14:18>00:03:15:03] +ESTIMATED PATH + +SUB[0 N 00:03:15:04>00:03:18:16] +The unidentified mobile object is still +advancing on our position. +ESTIMATED PATH + +SUB[0 N 00:03:18:16>00:03:18:17] +The unidentified mobile object is still +advancing on our position. + +SUB[0 N 00:03:19:11>00:03:22:17] +We've got visual confirmation. +I'm putting it on the main screen. + +SUB[0 N 00:03:24:08>00:03:26:03] +It's been fifteen years, hasn't it? + +SUB[0 N 00:03:26:05>00:03:28:08] +Yes, there's no doubt. + +SUB[0 N 00:03:29:08>00:03:30:15] +It's an Angel. + +SUB[0 N 00:03:30:15>00:03:33:05] +Episode One +Angel Attack + +SUB[0 N 00:03:42:14>00:03:44:09] +Every missile hit the target! + +SUB[0 N 00:04:03:15>00:04:05:03] +I'm sorry! Thanks for waiting! + +SUB[0 N 00:04:22:03>00:04:26:20] +The target is still operational. +It's still heading towards New Tokyo-3. + +SUB[0 N 00:04:26:23>00:04:29:08] +The Air Defense Force doesn't have +the firepower to stop it! + +SUB[0 N 00:04:30:03>00:04:31:08] +Hit it with everything we've got! + +SUB[0 N 00:04:31:08>00:04:33:07] +Mobilize all of Atsugi and Iruma as well! + +SUB[0 N 00:04:33:09>00:04:36:21] +Don't hold anything back! +Destroy the target at any cost! + +SUB[0 N 00:04:50:01>00:04:52:04] +Why?! That was a direct hit! + +SUB[0 N 00:04:52:19>00:04:55:00] +The tank battalion's been annihilated. + +SUB[0 N 00:04:55:01>00:04:57:28] +Guided missiles and artillery +have no effect either. + +SUB[0 N 00:04:57:29>00:05:01:15] +It's no good! We'll never get anywhere +with the firepower we've got! + +SUB[0 N 00:05:01:15>00:05:03:11] +AT field: absolute terror field +Is it an AT field after all? + +SUB[0 N 00:05:03:11>00:05:04:15] +Yes. Conventional weapons are +useless against Angels. +AT field: absolute terror field + +SUB[0 N 00:05:04:15>00:05:07:09] +Yes. Conventional weapons are +useless against Angels. + +SUB[0 N 00:05:10:22>00:05:13:29] +I understand. We'll activate it as planned. + +SUB[0 N 00:05:18:23>00:05:20:08] +Hey, don't tell me... + +SUB[0 N 00:05:20:11>00:05:22:06] +They're going to use an N² mine?! + +SUB[0 N 00:05:22:22>00:05:23:22] +Get down! + +SUB[0 N 00:05:46:16>00:05:47:12] +We did it! + +SUB[0 N 00:05:48:23>00:05:51:26] +Sorry, but it looks like you won't be +getting a shot at it. + +SUB[0 N 00:05:51:29>00:05:54:04] +Shock wave approaching. + +SUB[0 N 00:05:55:11>00:05:56:20] +Are you all right? + +SUB[0 N 00:05:56:23>00:06:00:02] +Yeah, but my mouth is full of dirt. + +SUB[0 N 00:06:00:03>00:06:04:01] +That's okay. Now then, here we go! + +SUB[0 N 00:06:04:22>00:06:06:01] +One, two! + +SUB[0 N 00:06:09:26>00:06:11:12] +There. + +SUB[0 N 00:06:14:23>00:06:16:25] +Thanks for the hand. I really appreciate it. + +SUB[0 N 00:06:16:28>00:06:19:27] +Thank you too, Katsuragi-san. + +SUB[0 N 00:06:20:00>00:06:22:02] +Just Misato is fine. + +SUB[0 N 00:06:22:16>00:06:25:26] +I'm glad we've met at last, Ikari Shinji-kun. + +SUB[0 N 00:06:26:05>00:06:27:00] +Yeah... + +SUB[0 N 00:06:27:17>00:06:28:24] +What's the target's status? + +SUB[0 N 00:06:28:26>00:06:31:23] +We're unable to confirm due to +all the EMP interference. + +SUB[0 N 00:06:31:26>00:06:34:18] +You saw the size of the explosion. It's over. + +SUB[0 N 00:06:34:21>00:06:36:03] +Sensors restored. + +SUB[0 N 00:06:37:13>00:06:39:07] +We've got an energy reading +at the explosion's epicenter! + +SUB[0 N 00:06:39:10>00:06:40:13] +What the hell?! + +SUB[0 N 00:06:40:16>00:06:42:04] +Visual display restored. + +SUB[0 N 00:06:46:13>00:06:48:19] +That was our last resort. + +SUB[0 N 00:06:49:18>00:06:51:15] +How can this be? + +SUB[0 N 00:06:51:15>00:06:53:04] +Damned monster! + +SUB[0 N 00:07:03:02>00:07:05:14] +Yes. Don't worry about it. + +SUB[0 N 00:07:05:17>00:07:09:18] +His safety is my top priority, +so could you get a car train ready for us? + +SUB[0 N 00:07:09:21>00:07:10:27] +A direct one. + +SUB[0 N 00:07:11:24>00:07:12:22] +Right. + +SUB[0 N 00:07:13:04>00:07:15:13] +Well, I volunteered to pick him up, + +SUB[0 N 00:07:15:14>00:07:18:04] +so I'll make sure he gets there. See ya! + +SUB[0 N 00:07:20:15>00:07:26:27] +Man, this sucks! I just had my car restored +and it's a total wreck already! + +SUB[0 N 00:07:27:13>00:07:30:16] +33 more loan payments to go, +plus the cost of repairs. + +SUB[0 N 00:07:30:18>00:07:32:28] +And look! My best dress has been ruined! + +SUB[0 N 00:07:32:29>00:07:33:04] +Excuse me, Misato-san? +And look! My best dress has been ruined! + +SUB[0 N 00:07:33:04>00:07:33:15] +Excuse me, Misato-san? + +SUB[0 N 00:07:33:16>00:07:34:23] +And I was looking and feeling so nice. +Excuse me, Misato-san? + +SUB[0 N 00:07:34:23>00:07:37:08] +And I was looking and feeling so nice. + +SUB[0 N 00:07:37:08>00:07:38:28] +Excuse me, Misato-san? + +SUB[0 N 00:07:39:05>00:07:40:19] +What? + +SUB[0 N 00:07:40:22>00:07:43:11] +Are you sure you can just take those? + +SUB[0 N 00:07:45:07>00:07:46:05] +Never mind about that! + +SUB[0 N 00:07:46:08>00:07:50:01] +It's an emergency, and we need +a working car right now, right? + +SUB[0 N 00:07:50:03>00:07:53:17] +And I'm an international government +official, after all, + +SUB[0 N 00:07:53:20>00:07:55:07] +so everything's going to be +perfectly fine, okay? + +SUB[0 N 00:07:56:19>00:07:59:08] +I don't think anyone will buy that. + +SUB[0 N 00:07:59:10>00:08:03:13] +You're no fun. You look cute, +but you're kind of a cold fish. + +SUB[0 N 00:08:04:11>00:08:05:21] +You think so? + +SUB[0 N 00:08:05:23>00:08:07:15] +Oh, did I upset you? + +SUB[0 N 00:08:08:08>00:08:11:19] +Sorry about that! You are a boy, after all. + +SUB[0 N 00:08:11:22>00:08:15:00] +And you're pretty childish for your age. + +SUB[0 N 00:08:20:22>00:08:23:19] +As we predicted, it's regenerating itself. + +SUB[0 N 00:08:23:29>00:08:27:24] +If it couldn't, it wouldn't be +a practical autonomous weapon. + +SUB[0 N 00:08:31:14>00:08:35:02] +Impressive. It appears it can even upgrade +its own operational functions. + +SUB[0 N 00:08:35:12>00:08:37:20] +And it seems to have gotten smarter. + +SUB[0 N 00:08:38:21>00:08:41:18] +It's only a matter of time before +it resumes attacking. + +SUB[9 N 00:08:43:01>00:08:46:08] +The gates are now closing. +Please stand clear. + +SUB[9 N 00:08:46:08>00:08:46:17] +The special duty organization Nerv? +The gates are now closing. +Please stand clear. + +SUB[9 N 00:08:46:18>00:08:48:00] +Now departing. +The special duty organization Nerv? + +SUB[9 N 00:08:48:00>00:08:48:03] +Now departing. + +SUB[9 N 00:08:48:04>00:08:48:09] +Yes, it's a secret organization under +the control of the United Nations. +Now departing. + +SUB[9 N 00:08:48:10>00:08:51:13] +This is the C-22 Special Express +departing directly for G33-1. +Yes, it's a secret organization under +the control of the United Nations. + +SUB[9 N 00:08:51:13>00:08:51:27] +This is the C-22 Special Express +departing directly for G33-1. + +SUB[9 N 00:08:51:28>00:08:53:16] +That's where my father is, right? +This is the C-22 Special Express +departing directly for G33-1. + +SUB[9 N 00:08:53:17>00:08:54:21] +Well, yeah. +This is the C-22 Special Express +departing directly for G33-1. + +SUB[9 N 00:08:54:22>00:08:56:21] +Do you know what he does? +This is the C-22 Special Express +departing directly for G33-1. + +SUB[9 N 00:08:58:02>00:09:00:20] +This train will bypass all other stations. +Please stand back. + +SUB[9 N 00:09:00:20>00:09:01:27] +My teacher told me his work is vital +for the protection of the human race. +This train will bypass all other stations. +Please stand back. + +SUB[9 N 00:09:01:27>00:09:04:15] +My teacher told me his work is vital +for the protection of the human race. + +SUB[0 N 00:09:07:19>00:09:10:24] +From this point forward, command of this +operation will be entrusted to you. + +SUB[0 N 00:09:10:26>00:09:12:15] +Show us what you're capable of. + +SUB[0 N 00:09:12:17>00:09:13:20] +Yes, Sir. + +SUB[0 N 00:09:14:08>00:09:20:10] +Ikari-kun, we will admit that our weapons +have no effect on the target. + +SUB[0 N 00:09:21:08>00:09:23:19] +But are you sure you can beat this thing? + +SUB[0 N 00:09:24:04>00:09:25:24] +It's what Nerv was created for. + +SUB[0 N 00:09:26:19>00:09:28:03] +Let's hope you're correct. + +SUB[0 N 00:09:29:23>00:09:31:26] +The target is still stationary. + +SUB[0 N 00:09:31:29>00:09:35:10] +Our intercept system is currently +7.5% operational. + +SUB[0 N 00:09:37:00>00:09:39:10] +So, even the UN forces have retired. + +SUB[0 N 00:09:39:12>00:09:41:00] +What are you going to do? + +SUB[0 N 00:09:41:15>00:09:43:15] +I intend to activate Unit 01. + +SUB[0 N 00:09:43:23>00:09:46:25] +Unit 01? But we have no pilot. + +SUB[0 N 00:09:47:14>00:09:51:02] +That's not a problem. Another spare +will be delivered soon. + +SUB[0 N 00:09:52:02>00:09:54:23] +Are you taking me to my father? + +SUB[0 N 00:09:55:09>00:09:57:11] +Yes. Pretty much. + +SUB[0 N 00:10:01:07>00:10:02:14] +Father... + +SUB[0 N 00:10:04:02>00:10:07:13] +Oh, that's right. Did you get +an ID card from your father? + +SUB[0 N 00:10:09:10>00:10:10:10] +Yes. + +SUB[0 N 00:10:12:00>00:10:13:01] +Here it is. + +SUB[0 N 00:10:13:03>00:10:13:25] +Thanks. + +SUB[0 N 00:10:13:26>00:10:14:12] +Ikari Gendo +Come. +Thanks. + +SUB[0 N 00:10:14:12>00:10:15:02] +Come. +Ikari Gendo + +SUB[0 N 00:10:15:23>00:10:18:02] +Then read this. + +SUB[0 I 00:10:18:02>00:10:18:05] +Nerv +Welcome to +Then read this. + +SUB[0 I 00:10:18:05>00:10:18:27] +Welcome to +Nerv + +SUB[0 I 00:10:18:27>00:10:19:22] +Nerv... +Welcome to +Nerv + +SUB[0 N 00:10:19:22>00:10:20:03] +Nerv... + +SUB[0 N 00:10:21:00>00:10:22:07] +My father's agency. + +SUB[0 N 00:10:23:00>00:10:25:01] +Am I going to work for them too? + +SUB[0 N 00:10:27:00>00:10:28:14] +Of course. + +SUB[0 N 00:10:28:20>00:10:32:23] +He wouldn't have sent me a letter unless +he needed me for something. + +SUB[0 N 00:10:33:08>00:10:36:06] +I see. So you don't get along with your father. + +SUB[0 N 00:10:37:19>00:10:39:06] +It's the same with me. + +SUB[0 N 00:10:45:06>00:10:46:14] +Awesome! + +SUB[0 N 00:10:47:20>00:10:49:11] +It's the real Geo-Front! + +SUB[0 N 00:10:49:13>00:10:50:10] +That's right. + +SUB[0 N 00:10:50:12>00:10:53:25] +This is our secret base. +Nerv Headquarters. + +SUB[0 N 00:10:54:07>00:10:55:23] +This is the key to rebuilding our world. + +SUB[0 N 00:10:55:26>00:10:58:09] +A fortress for all mankind. + +SUB[0 N 00:11:04:27>00:11:07:02] +That's strange. Isn't this the right way? + +SUB[0 I 00:11:07:02>00:11:08:17] +Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? + +SUB[0 I 00:11:08:17>00:11:08:18] +Central Dogma +Nerv Headquarters +Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? + +SUB[0 I 00:11:08:19>00:11:08:19] +Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? + +SUB[0 I 00:11:08:20>00:11:08:21] +Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? + +SUB[0 I 00:11:08:21>00:11:08:22] +Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? + +SUB[0 I 00:11:08:23>00:11:08:23] +Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? + +SUB[0 I 00:11:08:24>00:11:08:24] +Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? + +SUB[0 I 00:11:08:25>00:11:08:26] +Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? + +SUB[0 I 00:11:08:26>00:11:08:27] +Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? + +SUB[0 I 00:11:08:27>00:11:08:28] +Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? + +SUB[0 I 00:11:08:29>00:11:09:00] +Around here +Central Dogma +Nerv Headquarters +That's strange. Isn't this the right way? + +SUB[0 I 00:11:09:00>00:11:09:01] +Around here +Nerv Headquarters +That's strange. Isn't this the right way? + +SUB[0 N 00:11:09:01>00:11:10:04] +That's strange. Isn't this the right way? + +SUB[9 N 00:11:10:26>00:11:12:14] +Central Dogma's closed passages +remain sealed. + +SUB[0 N 00:11:12:14>00:11:12:27] +This is why I hate wearing skirts here. + +SUB[0 N 00:11:12:27>00:11:15:08] +Opening block B-26 in sequence. +This is why I hate wearing skirts here. + +SUB[0 N 00:11:15:08>00:11:15:23] +Opening block B-26 in sequence. + +SUB[0 N 00:11:15:23>00:11:17:22] +But where the heck did Ritsuko go? +Opening block B-26 in sequence. + +SUB[0 N 00:11:17:22>00:11:18:16] +But where the heck did Ritsuko go? + +SUB[0 N 00:11:18:18>00:11:21:12] +I'm sorry. I'm just not used to this place yet. + +SUB[0 N 00:11:21:14>00:11:23:14] +We passed this spot just a little while ago. + +SUB[0 N 00:11:24:26>00:11:26:08] +But don't worry about it. + +SUB[0 N 00:11:26:11>00:11:29:06] +They make these systems +to be used, you know. + +SUB[9 N 00:11:29:07>00:11:31:28] +Would the head of Project E, +Technical Department Division 1, + +SUB[9 N 00:11:31:29>00:11:34:24] +Dr. Akagi Ritsuko, Dr. Akagi Ritsuko, + +SUB[9 N 00:11:34:25>00:11:39:13] +please contact Captain Katsuragi Misato +of Operations, Division 1, immediately. + +SUB[0 N 00:11:39:18>00:11:41:13] +I don't believe it. + +SUB[0 N 00:11:41:13>00:11:42:12] +She got lost again, didn't she? + +SUB[0 N 00:11:46:26>00:11:48:27] +Uh, hiya, Ritsuko. + +SUB[0 N 00:11:53:18>00:11:55:29] +What were you doing, Captain Katsuragi? + +SUB[0 N 00:11:56:02>00:11:58:09] +We're short on both time +and manpower, you know. + +SUB[0 N 00:11:58:24>00:11:59:25] +Sorry! + +SUB[0 N 00:12:03:04>00:12:04:28] +So this is the boy? + +SUB[0 N 00:12:05:01>00:12:08:28] +Right. According to the Marduk report, +he's the "Third Child". + +SUB[0 N 00:12:09:20>00:12:10:22] +I'm glad to meet you. + +SUB[0 N 00:12:10:25>00:12:12:19] +Huh? Sure. + +SUB[0 N 00:12:13:00>00:12:17:25] +He's just like his father. +Like how he's unendearing. + +SUB[0 N 00:12:18:07>00:12:19:14] +I'll leave the rest to you. + +SUB[0 N 00:12:23:28>00:12:26:05] +Their first meeting in over three years. + +SUB[0 N 00:12:27:06>00:12:30:26] +Vice Commander, the target +has started moving again. + +SUB[0 N 00:12:30:29>00:12:34:10] +Right. All personnel, assume +battle stations, Level One. + +SUB[9 N 00:12:34:16>00:12:37:26] +Repeat. All personnel, assume +battle stations, Level One. + +SUB[9 N 00:12:37:27>00:12:39:08] +Prepare for ground-unit interception. + +SUB[0 N 00:12:39:24>00:12:41:00] +Here we go. + +SUB[0 N 00:12:41:01>00:12:42:07] +It sounds pretty serious. + +SUB[0 N 00:12:43:12>00:12:45:16] +So, how's Unit 01 doing? + +SUB[0 N 00:12:45:17>00:12:47:27] +It's currently in refrigeration, +using the B-type equipment. + +SUB[0 N 00:12:47:28>00:12:51:27] +Does it really work? +It's never worked before, right? + +SUB[0 N 00:12:51:28>00:12:56:26] +The possibility of activation is 0.000000001%. + +SUB[0 N 00:12:57:14>00:12:59:29] +We call it, pathetically enough, +the O-9 System. + +SUB[0 N 00:12:59:29>00:13:02:19] +Does that mean it doesn't work? + +SUB[0 N 00:13:02:19>00:13:05:03] +Oh, don't be insulting. It's not zero. + +SUB[0 N 00:13:05:03>00:13:06:24] +Well, it's just a number. + +SUB[0 N 00:13:06:26>00:13:11:12] +Anyway, it's a bit too late to be saying, +"Sorry, it didn't work". + +SUB[0 N 00:13:20:01>00:13:22:23] +Huh? It's completely dark. + +SUB[0 N 00:13:26:11>00:13:29:04] +A face? A giant robot? + +SUB[0 N 00:13:30:25>00:13:33:00] +You won't find this in the manual. + +SUB[0 N 00:13:34:04>00:13:38:03] +This is mankind's ultimate +multipurpose decisive weapon, + +SUB[0 N 00:13:38:03>00:13:42:00] +the synthetic human Evangelion, Unit 01. + +SUB[0 N 00:13:42:01>00:13:47:07] +Built in absolute secrecy, +it is mankind's trump card. + +SUB[0 N 00:13:47:08>00:13:49:07] +Is this part of what my father's been doing? + +SUB[0 N 00:13:49:08>00:13:50:04] +Correct. + +SUB[0 N 00:13:52:04>00:13:53:13] +It's been a while. + +SUB[0 N 00:13:54:16>00:13:55:19] +Father... + +SUB[0 N 00:13:58:22>00:13:59:15] +We're moving out! + +SUB[0 N 00:14:00:00>00:14:03:13] +Moving out?! Unit 00's still in +cryo-stasis, isn't it? + +SUB[0 N 00:14:05:12>00:14:07:18] +You're not planning to use Unit 01?! + +SUB[0 N 00:14:08:12>00:14:09:28] +There's no other way. + +SUB[0 N 00:14:09:28>00:14:12:24] +Hold on! Rei can't do it yet, can she? + +SUB[0 N 00:14:13:23>00:14:15:04] +We've got no pilot! + +SUB[0 N 00:14:16:02>00:14:17:07] +A pilot has just been delivered. + +SUB[0 N 00:14:18:16>00:14:19:16] +Are you serious? + +SUB[0 N 00:14:20:16>00:14:21:17] +Ikari Shinji-kun... + +SUB[0 N 00:14:21:18>00:14:22:20] +Yes? + +SUB[0 N 00:14:22:21>00:14:23:21] +You will pilot it. + +SUB[0 N 00:14:24:13>00:14:29:12] +But even Ayanami Rei took seven months +to synchronize with her Eva. + +SUB[0 N 00:14:29:18>00:14:32:07] +It's impossible for him to do it! +He just got here! + +SUB[0 N 00:14:32:09>00:14:35:03] +He just has to sit in the seat. +We don't expect more than that. + +SUB[0 N 00:14:35:05>00:14:36:04] +But... + +SUB[0 N 00:14:36:07>00:14:38:27] +Repelling that Angel is our ultimate priority. + +SUB[0 N 00:14:39:12>00:14:43:00] +To do that, we have no choice but to put +aboard the Eva whomever has the chance + +SUB[0 N 00:14:43:02>00:14:45:18] +to synchronize with it, no matter how slight. + +SUB[0 N 00:14:46:26>00:14:48:23] +I believe you know that, Captain Katsuragi. + +SUB[0 N 00:14:51:08>00:14:52:17] +I suppose... + +SUB[0 N 00:14:54:06>00:14:56:17] +Father, why did you send for me? + +SUB[0 N 00:14:56:18>00:14:58:21] +You know exactly why. + +SUB[0 N 00:14:58:22>00:15:02:19] +So, you're asking me to take this thing +and fight that thing? + +SUB[0 N 00:15:03:10>00:15:04:10] +That's right. + +SUB[0 N 00:15:04:10>00:15:08:00] +No way! Why are you doing this now?! + +SUB[0 N 00:15:08:00>00:15:10:18] +I thought you didn't need me! + +SUB[0 N 00:15:10:18>00:15:12:24] +I called you because I have a need for you. + +SUB[0 N 00:15:15:11>00:15:16:24] +Why me? + +SUB[0 N 00:15:17:14>00:15:19:20] +Because no one else can. + +SUB[0 N 00:15:20:11>00:15:22:01] +No, I can't... + +SUB[0 N 00:15:22:14>00:15:26:00] +I've never even seen anything +like this before! I can't do this! + +SUB[0 N 00:15:27:00>00:15:28:11] +You will be instructed. + +SUB[0 N 00:15:29:01>00:15:32:25] +But there's no way I can do this! + +SUB[0 N 00:15:33:21>00:15:35:21] +I can't pilot it! + +SUB[0 N 00:15:37:06>00:15:40:06] +If you're going to pilot it, do it now +and quickly. If not, leave! + +SUB[0 N 00:15:51:27>00:15:54:13] +It must have detected our location. + +SUB[0 N 00:15:58:03>00:16:00:00] +Shinji-kun, we don't have time. + +SUB[0 N 00:16:05:02>00:16:06:06] +Get into it. + +SUB[0 N 00:16:07:09>00:16:11:28] +No! I didn't come for this! This isn't fair! + +SUB[0 N 00:16:13:07>00:16:16:20] +Shinji-kun, just why did you come here? + +SUB[0 N 00:16:18:17>00:16:22:20] +You mustn't run! Not from your father, +and most of all not from yourself. + +SUB[0 N 00:16:23:09>00:16:27:11] +I know that! But there's no way I can do it! + +SUB[0 N 00:16:35:16>00:16:36:15] +Fuyutsuki... + +SUB[0 N 00:16:37:25>00:16:39:07] +Wake up Rei. + +SUB[0 N 00:16:39:07>00:16:40:21] +Can we use her? + +SUB[0 N 00:16:40:22>00:16:42:08] +She isn't dead. + +SUB[0 N 00:16:43:13>00:16:44:16] +I understand. + +SUB[0 N 00:16:46:11>00:16:47:07] +Rei. + +SUB[0 N 00:16:47:07>00:16:48:11] +Yes? + +SUB[0 N 00:16:48:11>00:16:51:07] +Our spare is unusable. You will do it again. + +SUB[0 N 00:16:51:07>00:16:52:06] +Yes, Sir. + +SUB[0 N 00:16:54:14>00:16:57:27] +Reconfigure Unit 01's system to Rei, +then re-activate! + +SUB[0 N 00:16:57:27>00:17:00:29] +Roger. Call off the present work, +and begin re-activation. + +SUB[0 N 00:17:02:29>00:17:06:23] +I knew it. I'm not needed after all. + +SUB[0 N 00:17:40:20>00:17:41:20] +Watch out! + +SUB[0 N 00:17:51:09>00:17:52:26] +The Eva moved! + +SUB[0 N 00:17:52:26>00:17:54:02] +What's going on?! + +SUB[0 N 00:17:54:02>00:17:56:13] +It broke the right arm restraint! + +SUB[0 N 00:17:56:13>00:17:58:00] +No, that's impossible! + +SUB[0 N 00:17:58:15>00:18:00:21] +It didn't even have an entry plug inserted! + +SUB[0 N 00:18:00:21>00:18:01:28] +There's no way it could have moved! + +SUB[0 N 00:18:03:02>00:18:05:09] +It reacted without any interface?! + +SUB[0 N 00:18:06:03>00:18:08:05] +Or was it protecting... + +SUB[0 N 00:18:08:05>00:18:09:06] +him? + +SUB[0 N 00:18:10:16>00:18:11:15] +We can do it. + +SUB[0 N 00:18:32:16>00:18:37:04] +I mustn't run away. I mustn't run away. +I mustn't run away. I mustn't run away. + +SUB[0 N 00:18:37:04>00:18:38:09] +I mustn't run away! + +SUB[0 N 00:18:39:23>00:18:40:19] +I'll do it. + +SUB[0 N 00:18:41:11>00:18:42:14] +I'll pilot it! + +SUB[0 N 00:18:46:01>00:18:47:09] +Cooling process, completed. + +SUB[0 N 00:18:47:10>00:18:48:25] +Right arm re-secured. + +SUB[0 N 00:18:48:26>00:18:50:26] +Cage contents now in position for docking. + +SUB[0 N 00:18:50:27>00:18:51:24] +Roger. + +SUB[0 N 00:18:51:25>00:18:54:19] +Signal terminator plug has been ejected. + +SUB[0 N 00:18:55:06>00:18:57:24] +Roger. Inserting entry plug. + +SUB[0 N 00:18:57:24>00:19:00:25] +Direct hydro-transmission system, +connection prepared. + +SUB[0 N 00:19:04:27>00:19:06:12] +Plug fixed in place. + +SUB[0 N 00:19:06:12>00:19:08:04] +First stage connection initiated. + +SUB[0 N 00:19:13:02>00:19:14:26] +Filling the entry plug. + +SUB[0 N 00:19:16:02>00:19:17:13] +What is this stuff? + +SUB[0 N 00:19:21:12>00:19:24:13] +Don't worry. Once your lungs +are filled with LCL, + +SUB[0 N 00:19:24:13>00:19:27:05] +your blood will be oxygenated directly. + +SUB[0 N 00:19:27:06>00:19:28:16] +You'll get used to it. + +SUB[0 N 00:19:32:00>00:19:33:13] +I feel nauseous. + +SUB[0 N 00:19:33:13>00:19:35:21] +Stop whining! You're a boy, aren't you?! + +SUB[0 N 00:19:37:00>00:19:38:04] +Connecting main power. + +SUB[0 N 00:19:38:04>00:19:40:25] +All circuits transmitting power. + +SUB[0 N 00:19:40:25>00:19:41:20] +Roger. + +SUB[0 N 00:19:41:20>00:19:43:10] +Commencing secondary contacts. + +SUB[0 N 00:19:44:27>00:19:47:10] +A-10 nerve connection, normal. + +SUB[0 N 00:19:47:11>00:19:52:16] +Set the thought configuration to Japanese. + +SUB[0 N 00:19:53:13>00:19:55:25] +All preliminary contacts established. +Performance nominal. + +SUB[0 N 00:19:55:26>00:19:57:19] +Bi-directional circuits are open. + +SUB[0 N 00:19:58:06>00:20:00:21] +Synchronization rate at 41.3%. + +SUB[0 N 00:20:01:11>00:20:02:18] +Amazing. + +SUB[0 N 00:20:02:18>00:20:06:05] +Harmonics are all normal. +No disturbances identified. + +SUB[0 N 00:20:06:29>00:20:07:29] +We can do it. + +SUB[0 N 00:20:09:11>00:20:10:18] +Prepare to launch! + +SUB[0 N 00:20:12:17>00:20:14:03] +Prepare to launch! + +SUB[0 N 00:20:14:03>00:20:15:17] +Disengage primary lock bolts! + +SUB[0 N 00:20:17:03>00:20:20:08] +Disengage confirmed. +Disengaging the umbilical bridge. + +SUB[0 N 00:20:22:20>00:20:24:02] +Disengage secondary lock bolts. + +SUB[0 N 00:20:26:13>00:20:28:10] +Disengage primary restraints. + +SUB[0 N 00:20:28:11>00:20:30:23] +Likewise, disengage secondary restraints. + +SUB[0 N 00:20:34:08>00:20:37:06] +Release safety locks numbers +one through fifteen. + +SUB[0 N 00:20:37:06>00:20:38:06] +Release confirmed. + +SUB[0 N 00:20:38:19>00:20:40:23] +Currently, Unit 01's condition is free. + +SUB[0 N 00:20:40:23>00:20:42:12] +Internal batteries fully charged. + +SUB[0 N 00:20:42:12>00:20:44:13] +External battery outlet, normal. + +SUB[0 N 00:20:45:00>00:20:47:28] +Roger. Move Eva Unit 01 +to the ejector pad. + +SUB[0 N 00:21:03:16>00:21:05:12] +Launch path is clear. All systems green. + +SUB[0 N 00:21:05:25>00:21:07:04] +Ready for launch. + +SUB[0 N 00:21:08:07>00:21:09:04] +Roger. + +SUB[0 N 00:21:10:00>00:21:11:03] +Can we really do this? + +SUB[0 N 00:21:11:03>00:21:12:04] +Of course. + +SUB[0 N 00:21:13:01>00:21:15:17] +Unless we defeat the Angels, +we have no future. + +SUB[0 N 00:21:17:05>00:21:20:04] +Ikari, you're really sure about this? + +SUB[0 N 00:21:21:24>00:21:22:23] +Launch! + +SUB[0 N 00:21:56:22>00:21:58:24] +Shinji-kun, don't get killed out there. + +SUB[0 N 00:21:58:24>00:21:58:25] +To Be Continued +Shinji-kun, don't get killed out there. + +SUB[0 N 00:21:58:25>00:22:00:13] +To Be Continued + +SUB[0 N 00:23:05:25>00:23:06:22] +Preview + +SUB[0 N 00:23:06:23>00:23:08:03] +Eva triumphs over the Angel! + +SUB[0 N 00:23:08:04>00:23:10:11] +However, that was just the beginning. + +SUB[0 N 00:23:10:19>00:23:12:07] +Shinji runs away from his father. + +SUB[0 N 00:23:12:08>00:23:15:19] +Misato's arrogance leads her +to try to save him. + +SUB[0 N 00:23:16:01>00:23:18:11] +Next Evangelion: "Unfamiliar Ceiling" + +SUB[0 N 00:23:18:12>00:23:18:24] +I'll give you fan service next time too! + +SUB[0 N 00:23:18:24>00:23:20:13] +Next Episode +Unfamiliar Ceiling +I'll give you fan service next time too! + +SUB[0 N 00:23:20:13>00:23:20:25] +Unfamiliar Ceiling +Next Episode + +SUB[ diff --git a/unit_test/unit_test.vcproj b/unit_test/unit_test.vcproj index fba87ae1e..5cfd0ab7a 100644 --- a/unit_test/unit_test.vcproj +++ b/unit_test/unit_test.vcproj @@ -193,6 +193,10 @@ RelativePath=".\src\athenasub\test_format_ass.cpp" > + +