diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..e23b52f --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "webvtt"] + path = src/static/media/webvtt + url = https://github.com/lelenium/lainvtt diff --git a/README.md b/README.md index a3bca6e..8f8fcb7 100644 --- a/README.md +++ b/README.md @@ -37,8 +37,6 @@ Building locally is currently not possible. This is because the repository lacks - **Finish writing the extraction script** - **Improve/complete the translation** -- **Implement an interface for changing languages** -- **Add controller support** ## Screenshots diff --git a/src/App.tsx b/src/App.tsx index 2d73d48..69ec537 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -8,14 +8,16 @@ import Guide from "./dom-components/Guide"; import Options from "./dom-components/Options"; import { useStore } from "./store"; - const App = () => { const setKeybindings = useStore((state) => state.setKeybindings); + const setLanguage = useStore((state) => state.setLanguage); useEffect(() => { const keybindingSettings = localStorage.getItem("lainKeybindings"); + const language = localStorage.getItem("lainLanguage"); if (keybindingSettings) setKeybindings(JSON.parse(keybindingSettings)); - }, [setKeybindings]); + if (language) setLanguage(JSON.parse(language)); + }, [setKeybindings, setLanguage]); return ( diff --git a/src/dom-components/Language.tsx b/src/dom-components/Language.tsx new file mode 100644 index 0000000..353521d --- /dev/null +++ b/src/dom-components/Language.tsx @@ -0,0 +1,46 @@ +import React from "react"; +import { useStore } from "../store"; +import "../static/css/language.css"; +import { useCallback } from "react"; + +const Language = () => { + const currentLanguage = useStore((state) => state.language); + const setLanguage = useStore((state) => state.setLanguage); + + const supportedLanguages = [ + { language: "English", code: "en" }, + { language: "Korean", code: "ko" }, + ]; + + const updateLanguage = useCallback( + (langCode) => { + setLanguage(langCode); + localStorage.setItem("lainLanguage", JSON.stringify(langCode)); + }, + [setLanguage] + ); + + return ( + <> +

+ From here you can select which language you want the game's subtitles to + be in. +
+ This list will be updated gradually as more translations get completed. +

+
+ {supportedLanguages.map((entry) => ( +

updateLanguage(entry.code)} + > + {entry.language} +

+ ))} + + ); +}; + +export default Language; diff --git a/src/dom-components/Notes.tsx b/src/dom-components/Notes.tsx index 667bc4d..68a53f1 100644 --- a/src/dom-components/Notes.tsx +++ b/src/dom-components/Notes.tsx @@ -94,6 +94,21 @@ const Notes = () => {

+ + + +

Changing Language

+ + +

+ To change the language of subtitles, go to{" "} + + options + . +

+ + +

Keyboard Controls

diff --git a/src/dom-components/Options.tsx b/src/dom-components/Options.tsx index 0f43b70..e5382d4 100644 --- a/src/dom-components/Options.tsx +++ b/src/dom-components/Options.tsx @@ -1,6 +1,7 @@ import React, { useEffect } from "react"; import Header from "./Header"; import Keybinding from "./Keybinding"; +import Language from "./Language"; import Savefile from "./Savefile"; const Options = () => { @@ -11,6 +12,8 @@ const Options = () => { return ( <>
+ +

diff --git a/src/scenes/EndScene.tsx b/src/scenes/EndScene.tsx index 3c92e82..1922925 100644 --- a/src/scenes/EndScene.tsx +++ b/src/scenes/EndScene.tsx @@ -4,7 +4,6 @@ import { useFrame } from "react-three-fiber"; import { useStore } from "../store"; import createAudioAnalyser from "../utils/createAudioAnalyser"; import EndSelectionScreen from "../components/EndScene/EndSelectionScreen"; -import introSpeechVtt from "../static/media/webvtt/Xa0001.vtt"; import introSpeech from "../static/media/audio/LAIN21.XA[31].mp4"; import outroSpeech from "../static/media/audio/LAIN21.XA[16].mp4"; import LainSpeak from "../components/LainSpeak"; @@ -15,6 +14,7 @@ import getVoiceFilenames from "../utils/getVoiceFilenames"; const EndScene = () => { const mainCylinderRef = useRef(); + const language = useStore((state) => state.language); const setSelectionVisible = useStore( (state) => state.setEndSceneSelectionVisible @@ -49,7 +49,10 @@ const EndScene = () => { const playedMediaCountRef = useRef(0); const playerName = useStore((state) => state.playerName); - const playerNameVoices = useMemo(() => getVoiceFilenames(playerName), [playerName]); + const playerNameVoices = useMemo( + () => getVoiceFilenames(playerName), + [playerName] + ); const setInputCooldown = useStore((state) => state.setInputCooldown); @@ -70,8 +73,13 @@ const EndScene = () => { setIsIntro(true); await sleep(3800); + + import("../static/media/webvtt/" + language + "/Xa0001.vtt").then( + (introSpeechVtt) => { + trackElement.src = introSpeechVtt.default; + } + ); mediaElement.src = introSpeech; - trackElement.src = introSpeechVtt; mediaElement.load(); mediaElement.play(); @@ -117,6 +125,7 @@ const EndScene = () => { }); } }, [ + language, playerNameVoices, setAudioAnalyser, setInputCooldown, diff --git a/src/scenes/IdleMediaScene.tsx b/src/scenes/IdleMediaScene.tsx index 9cdbe99..de0f669 100644 --- a/src/scenes/IdleMediaScene.tsx +++ b/src/scenes/IdleMediaScene.tsx @@ -7,6 +7,8 @@ const IdleMediaScene = () => { (state) => state.mediaPercentageElapsed ); + const language = useStore((state) => state.language); + const idleMedia = useStore((state) => state.idleMedia); const idleNodeName = useStore((state) => state.idleNodeName); const setInputCooldown = useStore((state) => state.setInputCooldown); @@ -32,7 +34,9 @@ const IdleMediaScene = () => { if (mediaElement) { mediaElement.currentTime = 0; if (idleNodeName) { - import("../static/media/webvtt/" + idleNodeName + ".vtt") + import( + "../static/media/webvtt/" + language + "/" + idleNodeName + ".vtt" + ) .then((vtt) => { if (vtt) trackElement.src = vtt.default; }) @@ -56,7 +60,7 @@ const IdleMediaScene = () => { }); } } - }, [idleMedia, idleNodeName]); + }, [idleMedia, idleNodeName, language]); return ( diff --git a/src/scenes/MediaScene.tsx b/src/scenes/MediaScene.tsx index 214f401..921f44b 100644 --- a/src/scenes/MediaScene.tsx +++ b/src/scenes/MediaScene.tsx @@ -11,10 +11,10 @@ import GreenTextRenderer from "../components/TextRenderer/GreenTextRenderer"; import MediaYellowTextAnimator from "../components/TextRenderer/MediaYellowTextAnimator"; import Loading from "../components/Loading"; import endroll from "../static/media/movie/ENDROLL1.STR[0].mp4"; -import endrollVtt from "../static/media/webvtt/Endroll.vtt"; const MediaScene = () => { const percentageElapsed = useStore((state) => state.mediaPercentageElapsed); + const language = useStore((state) => state.language); const setInputCooldown = useStore((state) => state.setInputCooldown); const setAudioAnalyser = useStore((state) => state.setAudioAnalyser); @@ -31,9 +31,10 @@ const MediaScene = () => { const setNodeViewed = useStore.getState().setNodeViewed; - const isAudioOnly = useMemo(() => activeNode.media_file.includes("XA"), [ - activeNode, - ]); + const isAudioOnly = useMemo( + () => activeNode.media_file.includes("XA"), + [activeNode] + ); useEffect(() => { if (percentageElapsed === 100) { @@ -55,7 +56,11 @@ const MediaScene = () => { if (mediaElement) { mediaElement.currentTime = 0; - trackElement.src = endrollVtt; + import("../static/media/webvtt/" + language + "/Endroll.vtt").then( + (endrollVtt) => { + trackElement.src = endrollVtt.default; + } + ); mediaElement.src = endroll; mediaElement.load(); @@ -70,6 +75,7 @@ const MediaScene = () => { activeNode.triggers_final_video, incrementFinalVideoViewCount, isAudioOnly, + language, percentageElapsed, setNodeViewed, setScene, @@ -83,7 +89,13 @@ const MediaScene = () => { setAudioAnalyser(createAudioAnalyser()); mediaElement.currentTime = 0; - import("../static/media/webvtt/" + activeNode.node_name + ".vtt") + import( + "../static/media/webvtt/" + + language + + "/" + + activeNode.node_name + + ".vtt" + ) .then((vtt) => { if (vtt) trackElement.src = vtt.default; }) @@ -112,6 +124,7 @@ const MediaScene = () => { activeNode.media_file, activeNode.node_name, isAudioOnly, + language, setAudioAnalyser, ]); diff --git a/src/scenes/TaKScene.tsx b/src/scenes/TaKScene.tsx index 402437a..fd50818 100644 --- a/src/scenes/TaKScene.tsx +++ b/src/scenes/TaKScene.tsx @@ -6,6 +6,7 @@ import createAudioAnalyser from "../utils/createAudioAnalyser"; const TaKScene = () => { const setScene = useStore((state) => state.setScene); const setAudioAnalyser = useStore((state) => state.setAudioAnalyser); + const language = useStore((state) => state.language); const activeNode = useStore((state) => state.activeNode); @@ -36,7 +37,13 @@ const TaKScene = () => { if (mediaElement) { setAudioAnalyser(createAudioAnalyser()); mediaElement.currentTime = 0; - import("../static/media/webvtt/" + activeNode.node_name + ".vtt") + import( + "../static/media/webvtt/" + + language + + "/" + + activeNode.node_name + + ".vtt" + ) .then((vtt) => { if (vtt) trackElement.src = vtt.default; }) @@ -55,7 +62,7 @@ const TaKScene = () => { setIsIntro(false); } }, 3800); - }, [activeNode.media_file, activeNode.node_name, setAudioAnalyser]); + }, [activeNode.media_file, activeNode.node_name, language, setAudioAnalyser]); return ; }; diff --git a/src/static/css/language.css b/src/static/css/language.css new file mode 100644 index 0000000..345b201 --- /dev/null +++ b/src/static/css/language.css @@ -0,0 +1,11 @@ +.language-note { + text-align: center; + font-size: 1.7rem; + color: white; +} + +.language-entry { + text-align: center; + color: white; + font-size: 1.6rem; +} diff --git a/src/static/media/webvtt b/src/static/media/webvtt new file mode 160000 index 0000000..5741011 --- /dev/null +++ b/src/static/media/webvtt @@ -0,0 +1 @@ +Subproject commit 57410111b1433d7a64169f52148fedf8d2ad76a5 diff --git a/src/static/media/webvtt/Cou001.vtt b/src/static/media/webvtt/Cou001.vtt deleted file mode 100644 index 48ec881..0000000 --- a/src/static/media/webvtt/Cou001.vtt +++ /dev/null @@ -1,88 +0,0 @@ -WEBVTT - -00:00.850 --> 00:04.360 -So... Ms. Iwakura, please wait there in the waiting room. - -00:05.000 --> 00:07.120 -Lain, you don’t have to worry so much. - -00:09.320 --> 00:11.000 -Please sit down there. - -00:11.640 --> 00:14.680 -Ah... do you want some juice or something else to drink? - -00:16.500 --> 00:18.980 -It's fine if you don't want any. Don't worry. - -00:19.650 --> 00:20.860 -Let's see... - -00:21.200 --> 00:26.620 -I'm thirsty, so I'm going for tea... Would you mind joining me? - -00:27.290 --> 00:30.080 -Because it will look funny if only I drink it. - -00:31.500 --> 00:32.360 -Thank you. - -00:33.200 --> 00:34.570 -Which one do you want? - -00:34.960 --> 00:36.640 -We have many to choose from. - -00:37.120 --> 00:38.090 -The same as you. - -00:38.620 --> 00:40.020 -Black tea? - -00:40.570 --> 00:41.370 -Got it. - -00:41.500 --> 00:43.360 -Just a moment... - -00:45.250 --> 00:47.980 -You can put the sugar and milk in it if you want. - -00:48.650 --> 00:49.960 -Here you go. - -00:53.130 --> 00:55.080 -Not bad, huh? - -00:56.100 --> 01:00.850 -Earl Grey tea, I really love it. - -01:01.320 --> 01:02.410 -Earl Grey? - -01:02.410 --> 01:02.890 -Right. - -01:03.580 --> 01:08.980 -Even with tea there are lots of kinds, with different smells and tastes. - -01:09.570 --> 01:10.480 -Does it taste good? - -01:11.170 --> 01:12.480 -Well... - -01:12.930 --> 01:15.080 -It suits my taste. - -01:15.080 --> 01:16.860 -But I'm not sure about you, Lain. - -01:17.570 --> 01:19.650 -If you want to, you can drink a little bit. - -01:19.970 --> 01:23.040 -If it’s not to your taste, I can make something else for you. - -01:23.440 --> 01:25.730 -Here... diff --git a/src/static/media/webvtt/Cou002.vtt b/src/static/media/webvtt/Cou002.vtt deleted file mode 100644 index c212dcb..0000000 --- a/src/static/media/webvtt/Cou002.vtt +++ /dev/null @@ -1,79 +0,0 @@ -WEBVTT - -00:00.000 --> 00:01.820 -That smells good. - -00:02.980 --> 00:04.660 -Here you go. - -00:06.200 --> 00:07.420 -How is it? - -00:08.700 --> 00:11.540 -Looks as if you don’t like it, huh? - -00:11.980 --> 00:12.820 -Too bitter? - -00:12.820 --> 00:14.760 -What if you add some sugar? - -00:14.760 --> 00:18.720 -Well, how about if you add some milk? It might take away the bitterness. - -00:19.280 --> 00:21.100 -Or I can get you something else? - -00:21.920 --> 00:23.320 -I don’t like milk. - -00:23.720 --> 00:31.440 -Ah, sorry. I didn’t know... Well, how about if I get some juice for you? - -00:34.120 --> 00:35.020 -I’m sorry... - -00:36.180 --> 00:41.040 -I probably couldn’t have had tea at your age, either. - -00:43.040 --> 00:46.700 -I said that there are lots of different kinds of tea right? - -00:46.700 --> 00:48.700 -If I don’t like it, I don’t like it. - -00:49.280 --> 00:57.140 -Of course, that doesn’t mean I can’t drink it, but I have my own preferences as to what kinds of flavors I like in tea. - -00:59.140 --> 01:00.800 -What do you like, Lain? - -01:01.800 --> 01:03.700 -Why don’t you like milk? - -01:04.340 --> 01:06.040 -It upsets my stomach. - -01:06.280 --> 01:11.250 -Ha, ha, truth be told, when I was a child I had the same problem. - -01:11.920 --> 01:17.840 -Especially when the school lunch included milk. I can drink milk now, though. - -01:17.840 --> 01:19.840 -I can’t drink it, but I really love it... - -01:20.180 --> 01:23.880 -How about this kind of milk? Would that be all right? - -01:23.880 --> 01:25.660 -What’s it called? - -01:25.660 --> 01:30.780 -I forget what it’s called, but it’s milk that doesn’t upset your stomach. - -01:31.410 --> 01:34.880 -It's for kids like you, Lain, who are like me as a kid and can’t drink milk. - -01:35.520 --> 01:38.720 -If you talk about it with your mother, I’m sure she’ll look for it for you. diff --git a/src/static/media/webvtt/Cou003.vtt b/src/static/media/webvtt/Cou003.vtt deleted file mode 100644 index df38b1d..0000000 --- a/src/static/media/webvtt/Cou003.vtt +++ /dev/null @@ -1,115 +0,0 @@ -WEBVTT - -00:00.250 --> 00:02.410 -Are there different kinds of milk as well? - -00:02.880 --> 00:09.580 -That’s right; although they’re basically all they same, depending on how they’re prepared there are different kinds. - -00:10.010 --> 00:11.250 -Different kinds? - -00:11.450 --> 00:13.120 -Yes, just like in tea. - -00:13.370 --> 00:18.020 -Depending on which leaves are picked and how they're prepared, the same leaves can be very different. - -00:18.970 --> 00:19.860 -People, too? - -00:20.010 --> 00:20.330 -Hmm? - -00:21.180 --> 00:22.660 -Are there different kinds of people as well? - -00:24.570 --> 00:29.960 -Hmm, well, rather than kinds, each person is different in his or her own way. - -00:30.660 --> 00:35.960 -For example, you don’t like tea, but there are also people like me who love it. - -00:36.720 --> 00:41.080 -There are also people whose stomach gets upset when they drink milk, but there also those who don't have that happen to them, right? - -00:42.090 --> 00:47.340 -However, there also people who learn to drink it when they grow up. - -00:48.300 --> 00:52.930 -Lain, you’ll probably learn to drink tea, you know. - -00:53.560 --> 00:56.690 -It’s not a good thing, nor a bad thing. - -00:57.640 --> 01:02.500 -It’s normal that there are different kinds of people. - -01:03.180 --> 01:06.130 -That's why you can be proud of what makes you unique! - -01:06.850 --> 01:07.650 -Be proud of it? - -01:08.450 --> 01:15.210 -I’m sorry... That’s right, you worry, don’t you? - -01:16.610 --> 01:21.900 -You don’t have to boast about it, but there’s no need to mind what other people think, is what I meant to say. - -01:22.850 --> 01:26.420 -I have weird dreams. Is that different, too? - -01:27.020 --> 01:31.940 -You may think it's different, but in fact that’s normal. - -01:32.610 --> 01:38.100 -If you’re worried about that, I might be able to help. - -01:39.420 --> 01:45.480 -Not to help you stop having those dreams, but rather helping you to explain things you don’t understand. - -01:45.480 --> 01:48.610 -If you come to me with your problems, I’d be really happy. - -01:49.500 --> 01:55.500 -You know, I’ve studied a lot to help you answer those kinds of questions; I’m still studying, actually. - -01:56.570 --> 02:05.190 -If you’re ever in trouble or something, I'd be glad if you could come and talk with me. - -02:07.190 --> 02:11.060 -I’d like to know more about you, Lain. - -02:12.370 --> 02:13.300 -Would that be okay? - -02:15.170 --> 02:17.400 -I’m so glad! - -02:18.170 --> 02:20.410 -Starting today, you and I are friends! - -02:20.810 --> 02:22.000 -Please come and play sometime! - -02:22.000 --> 02:22.820 -Promise? - -02:23.360 --> 02:26.650 -I’d like to ask you things as well! - -02:26.840 --> 02:28.780 -You can ask me anything you want. - -02:29.200 --> 02:31.340 -If I don’t know the answer, I’ll look up the answer for you. - -02:32.240 --> 02:35.320 -I’ll even prepare your favorite drink. - -02:35.660 --> 02:36.570 -What’s that? - -02:36.970 --> 02:40.340 -Milk that doesn’t upset your stomach! diff --git a/src/static/media/webvtt/Cou004.vtt b/src/static/media/webvtt/Cou004.vtt deleted file mode 100644 index 9278260..0000000 --- a/src/static/media/webvtt/Cou004.vtt +++ /dev/null @@ -1,103 +0,0 @@ -WEBVTT - -00:00.200 --> 00:05.010 -8th of July, 2 PM, 2nd session. - -00:07.560 --> 00:09.880 -Come on in. - -00:10.640 --> 00:12.160 -Touko, hello. - -00:12.320 --> 00:14.780 -Hello, Lain. - -00:14.930 --> 00:15.970 -Hello. - -00:16.340 --> 00:19.100 -It’s almost the summer holidays! Are you looking forward to them? - -00:19.690 --> 00:20.650 -Not especially. - -00:21.690 --> 00:29.090 -Let’s see here, today I’d like to play a game with you Lain, that’s why I brought this. - -00:29.090 --> 00:30.450 -What’s that? - -00:30.450 --> 00:33.730 -It’s oil painting set. Do you like to paint, Lain? - -00:34.220 --> 00:36.730 -I don’t like painting... Maybe... - -00:37.450 --> 00:42.940 -I see... Well, do you know tic-tac-toe? - -00:43.250 --> 00:46.120 -I know it, but I don’t want to play that. - -00:46.300 --> 00:56.530 -I... I’m sorry. Well, do you have anything you want to do, Lain? - -00:56.980 --> 00:59.080 -I’d like to talk some more. - -00:59.890 --> 01:03.320 -What do you want to talk about? - -01:03.810 --> 01:07.100 -Whatever. About you. - -01:07.650 --> 01:13.260 -About me? Well... I’m not that interesting, you know. - -01:13.880 --> 01:14.490 -...It's not okay? - -01:15.170 --> 01:17.180 -No, that's not the case. - -01:17.620 --> 01:26.440 -But look, I’m already 27, if we talked about me we’d have to start all the way at the beginning and it’d take forever! - -01:27.000 --> 01:29.620 -And really, it’s not a very interesting story at that. - -01:30.530 --> 01:32.420 -What kind of doctor are you? - -01:33.050 --> 01:35.170 -What kind of doctor you ask? - -01:35.400 --> 01:39.840 -Well, I help people like you who worry about certain things, and listen to their stories. - -01:39.840 --> 01:43.530 -And I give them advice to help fix their problems. - -01:44.300 --> 01:45.040 -You understand? - -01:46.020 --> 01:49.240 -Ah... I thought so. - -01:50.810 --> 01:52.220 -What’s wrong? - -01:53.040 --> 01:57.570 -If you’re not feeling well, or you’re not comfortable, please tell me. You can be honest with me. - -01:58.170 --> 01:59.820 -I should be more careful, really. - -02:00.700 --> 02:04.100 -You shouldn’t worry so much. - -02:04.580 --> 02:09.650 -Just relax, come and have a nice talk with me once a month. - -02:10.450 --> 02:11.000 -Okay... diff --git a/src/static/media/webvtt/Cou005.vtt b/src/static/media/webvtt/Cou005.vtt deleted file mode 100644 index 4938022..0000000 --- a/src/static/media/webvtt/Cou005.vtt +++ /dev/null @@ -1,109 +0,0 @@ -WEBVTT - -00:00.290 --> 00:02.980 -So, how’s school? - -00:03.810 --> 00:04.570 -Normal. - -00:04.900 --> 00:08.210 -What do you mean by normal? Not interesting, not boring, just normal? - -00:08.840 --> 00:09.460 -Yes... - -00:10.170 --> 00:10.980 -How about friends? - -00:11.400 --> 00:12.140 -I have friends. - -00:12.450 --> 00:14.040 -Do you often play with them? - -00:14.780 --> 00:21.380 -Yes, but everyone’s busy with cram school. The only place I go is here... - -00:22.020 --> 00:27.770 -Don’t you want to learn something? Calligraphy, or take swimming lesso... ooohhh... - -00:28.420 --> 00:31.220 -It’s okay; don’t worry about it.a - -00:31.570 --> 00:34.980 -I’m sorry... I'm far from a good counselor. - -00:35.720 --> 00:39.250 -I’d rather stay at home than go out and do something. - -00:40.520 --> 00:42.120 -What do you do at home? - -00:42.780 --> 00:43.520 -That’s a secret. - -00:43.680 --> 00:47.880 -Aw, that’s mean. You won’t tell me. - -00:48.380 --> 00:50.200 -But I’m ashamed. - -00:50.370 --> 00:51.960 -Are you doing things you’re ashamed of? - -00:52.560 --> 00:53.330 -Maybe... - -00:53.500 --> 01:02.460 -Now I want to know! Ah, so be it... But I’d really like to know... - -01:02.920 --> 01:04.130 -Do I have to tell you? - -01:04.420 --> 01:06.490 -I’d be glad if you did tell me. - -01:08.320 --> 01:10.680 -I talk to my stuffed animals. - -01:11.300 --> 01:16.370 -Ha, ha, is that it? That’s completely normal. And here I thought... - -01:16.660 --> 01:17.540 -Thought what? - -01:17.540 --> 01:25.240 -Ha, ha, never mind! I used to have a stuffed animal I loved... - -01:25.530 --> 01:26.850 -What kind of stuffed animal? - -01:27.400 --> 01:31.050 -A dragon I got at the bank. Weird, huh? - -01:31.460 --> 01:32.600 -Why is that weird? - -01:32.740 --> 01:38.040 -Well, aren’t girls supposed to play with cute stuffed animals? - -01:38.860 --> 01:42.720 -It wasn’t even a stuffed animal... it was a piggy bank dragon. - -01:43.800 --> 01:46.240 -But I still treasured it. - -01:46.930 --> 01:49.130 -I called it Tacchan and talked to it all the time. - -01:49.600 --> 01:54.250 -Me too. I talk to my animals. Is that normal? - -01:54.690 --> 01:58.930 -That’s normal! Do I look weird to you? - -01:59.400 --> 02:00.330 -No... - -02:00.860 --> 02:05.360 -You’re the same as me, Lain, we’re not weird at all! diff --git a/src/static/media/webvtt/Cou006.vtt b/src/static/media/webvtt/Cou006.vtt deleted file mode 100644 index d636b74..0000000 --- a/src/static/media/webvtt/Cou006.vtt +++ /dev/null @@ -1,61 +0,0 @@ -WEBVTT - -00:00.580 --> 00:03.330 -Hello Lain, have you been well? - -00:03.560 --> 00:05.380 -Yes, and you? - -00:05.560 --> 00:09.640 -Yes, I’ve been fine. I’m a bit tired, though. - -00:10.160 --> 00:11.300 -Tired? - -00:11.300 --> 00:15.000 -Yes, I’ve been pretty busy. - -00:15.370 --> 00:16.330 -How busy? - -00:16.620 --> 00:24.330 -Hmm, well... At least talking with you like this is something I can look forward to. - -00:24.810 --> 00:25.520 -Really? - -00:25.520 --> 00:31.180 -Really! What shall we talk about today... What do you want to talk about, Lain? - -00:32.180 --> 00:36.160 -We couldn't talk that much about you last month. - -00:37.010 --> 00:42.860 -I’d rather talk about you, though, Lain; not about myself. - -00:44.170 --> 00:51.960 -But you’re right, it’s only fair that we both get to talk about what we want, so this time we’ll talk about me. But next time we’ll talk about you, Lain. Is that all right? - -00:52.290 --> 00:52.920 -Okay! - -00:53.900 --> 01:08.520 -I’m not sure where I should start, though... My name is Younera Touko, I’m 27, I’m a doctor at the Tokyo Research Institute for Psychotherapy... That's all about me. - -01:09.930 --> 01:12.980 -Ah, we won’t get anywhere like this. - -01:14.020 --> 01:20.800 -You know, I’m used to listening people talk, not talking myself. - -01:21.620 --> 01:24.170 -Is there anything you’d like to know, Lain? - -01:24.640 --> 01:26.410 -How did you become a doctor? - -01:26.660 --> 01:30.640 -I studied a lot at a place called a university. - -01:30.640 --> 01:37.140 -I wrote something called a thesis, and with that I received my degree to become a doctor. diff --git a/src/static/media/webvtt/Cou007.vtt b/src/static/media/webvtt/Cou007.vtt deleted file mode 100644 index 0595484..0000000 --- a/src/static/media/webvtt/Cou007.vtt +++ /dev/null @@ -1,123 +0,0 @@ -WEBVTT - -00:00.500 --> 00:02.570 -What is university like? - -00:03.240 --> 00:05.930 -You’re in junior high school now, aren’t you, Lain? - -00:06.620 --> 00:09.980 -So if you’re in junior high and want to keep studying, you go to high school, right? - -00:10.500 --> 00:14.050 -University is where people go if they want to keep studying after high school. - -00:14.450 --> 00:16.180 -Do you like to study, Sensei? - -00:16.650 --> 00:18.380 -I didn’t used to. - -00:19.420 --> 00:24.360 -But I went to America as an exchange student when I was in junior high school, and I started to feel differently then. - -00:24.760 --> 00:27.160 -You were an exchange student. Wow! - -00:27.460 --> 00:32.340 -At the time, I just went because my parents wanted me to. - -00:33.200 --> 00:38.850 -But people have different ways of seeing things in other countries, and I learned a lot from that. - -00:40.040 --> 00:47.930 -Looking back, it was a lot of work, and I was very nervous at first, but now I’m really grateful that I was able to be an exchange student. - -00:49.120 --> 00:51.730 -I learned English, too. - -00:52.240 --> 00:54.010 -That’s amazing, Touko-sensei! - -00:54.010 --> 00:55.560 -Oh, it’s not so amazing. - -00:55.890 --> 00:59.410 -There are lots of people who have studied much more than I have. - -01:00.060 --> 01:02.820 -No matter how you put it, I'm a really lazy person - - - -01:02.820 --> 01:04.440 -I liked to fool around, really. - -01:05.000 --> 01:07.500 -It’s boring to just study, isn’t it? - -01:08.100 --> 01:09.760 -Do you like to study, Lain? - -01:10.370 --> 01:11.600 -Not really. - -01:11.900 --> 01:13.600 -What subjects don’t you like? - -01:14.060 --> 01:15.240 -Japanese and physical education. - -01:15.930 --> 01:19.380 -I see. So you don’t like exercise. - -01:19.730 --> 01:22.380 -No, I don’t like physical education. - -01:23.060 --> 01:24.370 -You like exercise, then? - -01:24.740 --> 01:25.290 -Yes. - -01:25.460 --> 01:27.020 -What kind of exercise do you like? - -01:27.380 --> 01:28.170 -The metal beam. - -01:28.170 --> 01:29.330 -Wow! - -01:29.760 --> 01:34.100 -I used to like running, but I was never good at the metal beam. - -01:34.540 --> 01:37.500 -I would spin around and get too dizzy. - -01:37.640 --> 01:40.930 -I like to spin around. - -01:41.400 --> 01:42.770 -Both frontwards and backwards? - -01:42.930 --> 01:44.040 -Yes, both. - -01:44.810 --> 01:47.340 -What don’t you like? - -01:49.890 --> 01:53.200 -You don’t have to answer if you don’t want to. - -01:53.820 --> 01:56.220 -But, what kind of study do you like? - -01:57.980 --> 01:59.130 -I'm sorry. - -01:59.130 --> 02:00.010 -Are you tired? - -02:00.860 --> 02:04.060 -Why don't we end early today? diff --git a/src/static/media/webvtt/Cou008.vtt b/src/static/media/webvtt/Cou008.vtt deleted file mode 100644 index a8fe00c..0000000 --- a/src/static/media/webvtt/Cou008.vtt +++ /dev/null @@ -1,94 +0,0 @@ -WEBVTT - -00:00.620 --> 00:05.660 -I’m sorry about last time... but I’m relieved. - -00:05.880 --> 00:10.330 -I was worried that you didn’t like me and wouldn't come anymore. - -00:11.420 --> 00:12.500 -...I’m sorry. - -00:12.740 --> 00:15.580 -There’s no reason to apologize. - -00:15.580 --> 00:18.440 -I was the one who asked you a bad question. - -00:19.140 --> 00:20.370 -Can you forgive me? - -00:21.560 --> 00:23.380 -...thank you. - -00:24.410 --> 00:30.130 -So I thought we could talk about what we see on these pictures today. - -00:31.410 --> 00:34.050 -They had that at the last hospital. - -00:34.740 --> 00:38.240 -Really? I wanted to play with this. - -00:39.060 --> 00:40.930 -That's some kind of test, isn't it? - -00:41.380 --> 00:44.290 -Amazing Lain! Do you know about it? - -00:44.800 --> 00:48.210 -They call this a Rorschach test. - -00:49.120 --> 00:52.280 -This isn’t really a test. - -00:52.850 --> 00:55.440 -Think of it as a game. - -00:56.090 --> 00:57.810 -But that’s boring. - -00:58.020 --> 00:59.960 -Hmm... I guess so. - -01:00.400 --> 01:02.810 -If you think it's boring, we'll stop the test. - -01:03.140 --> 01:04.330 -How’s that? - -01:04.960 --> 01:05.680 -Okay. - -01:06.180 --> 01:09.040 -Okay. What do you see? - -01:09.400 --> 01:10.340 -A splotch. - -01:10.660 --> 01:12.600 -Um, right. - -01:13.140 --> 01:15.400 -But does it look like anything? - -01:15.860 --> 01:17.800 -What do you see? - -01:18.100 --> 01:23.340 -Me? Hmm... a person’s face, I think. - -01:23.770 --> 01:26.570 -Is it angry? Is it also crying? - -01:26.880 --> 01:28.520 -It looks a little angry. - -01:29.480 --> 01:30.530 -This is boring. - -01:31.020 --> 01:32.400 -Lain... - -01:33.170 --> 01:37.780 -Right. A promise is a promise. Let’s stop. diff --git a/src/static/media/webvtt/Cou009.vtt b/src/static/media/webvtt/Cou009.vtt deleted file mode 100644 index 3baf079..0000000 --- a/src/static/media/webvtt/Cou009.vtt +++ /dev/null @@ -1,40 +0,0 @@ -WEBVTT - -00:00.930 --> 00:06.900 -Do you want to talk about something fun? Do you like to take a bath or a shower? - -00:07.410 --> 00:08.460 -I like showers. - -00:08.760 --> 00:09.660 -Really? - -00:10.060 --> 00:15.440 -I prefer baths, but I don’t get a chance to take them much at home. - -00:15.440 --> 00:18.180 -It’s a bit of a hassle to prepare for a bath, too. - -00:18.600 --> 00:28.000 -I usually take showers, but I take a bath on my days off. - -00:28.980 --> 00:33.330 -Don’t you like the way a bath feels? - -00:33.850 --> 00:35.400 -I’m afraid of being in hot water. - -00:35.880 --> 00:37.260 -Are you afraid of drowning? - -00:37.700 --> 00:38.610 -No. - -00:38.840 --> 00:40.770 -Then, what are you afraid of? - -00:41.080 --> 00:46.010 -I’m not really sure. It feels like I’m being touched all over by something. - -00:46.220 --> 00:50.500 -Hmm... the water does touch the skin. diff --git a/src/static/media/webvtt/Cou010.vtt b/src/static/media/webvtt/Cou010.vtt deleted file mode 100644 index f9cfb75..0000000 --- a/src/static/media/webvtt/Cou010.vtt +++ /dev/null @@ -1,115 +0,0 @@ -WEBVTT - -00:00.740 --> 00:03.100 -It’s because I’m weird... - -00:03.450 --> 00:04.860 -Wait a second Lain. - -00:05.600 --> 00:08.240 -You’re not a weird kid at all. - -00:08.740 --> 00:18.820 -If you're a kid with an active imagination, you're gonna have that kind of experience where you see human eyes in the patterns of a wooden ceiling. - -00:19.120 --> 00:20.480 -But that's not the case. - -00:21.360 --> 00:25.240 -Do you dislike being different from others? - -00:25.940 --> 00:27.280 -I’m not sure. - -00:27.650 --> 00:28.250 -Okay. - -00:28.720 --> 00:30.920 -Lain is Lain because she is different. - -00:31.690 --> 00:37.200 -You have a very strong imagination, and that’s a good thing. - -00:37.560 --> 00:40.330 -So don’t say that you're weird. - -00:41.320 --> 00:43.760 -I don’t think that at all. - -00:44.130 --> 00:46.050 -But... the test... - -00:47.080 --> 00:54.880 -I’m sorry, but... yeah, you’re troubled, right? - -00:55.370 --> 00:59.890 -I want to make sure you're not troubled. - -01:00.380 --> 01:03.860 -In order to help you, I have to know more about you. - -01:05.180 --> 01:07.140 -I don’t want you to do anything you dislike. - -01:08.060 --> 01:12.900 -I'll do anything I can to help you solve your problems. You're the only one who can truly understand yourself right? - -01:13.800 --> 01:16.580 -Nobody can understand Lain except Lain, right? - -01:17.360 --> 01:19.760 -Only you can solve your own problems. - -01:21.380 --> 01:25.660 -For me to be able to help you, I need your cooperation. - -01:26.600 --> 01:28.690 -What should I do? - -01:28.980 --> 01:31.120 -Right now you don't need to do anything. - -01:31.650 --> 01:40.820 -Since you and I are friends, if we keep talking, I’ll slowly start to understand more and more about you. - -01:41.450 --> 01:51.160 -Then, sometimes I'll say "You might want to try this." and if you think "That sounds nice, okay.", let's try it out... - -01:51.820 --> 01:56.860 -So right now, it’d be best if you tell me all about yourself. - -01:57.770 --> 02:00.760 -You won’t tell anyone? - -02:01.000 --> 02:04.760 -Nope, it’ll be our secret. - -02:05.240 --> 02:07.730 -Not even my friends, or my mother? - -02:07.960 --> 02:13.090 -I promise. If I lie, one thousand needles! - -02:13.720 --> 02:14.970 -One thousand needles? - -02:15.260 --> 02:17.860 -Don’t kids your age know that? - -02:18.660 --> 02:26.520 -When I was a kid, whenever we made a promise, we said, "If I break the promise, I will drink 1000 needles." - -02:26.930 --> 02:27.770 -Wouldn’t that hurt? - -02:27.770 --> 02:37.740 -A lot!... Right! How many needles are in my stomach right now? Miss Iwakura? ...I was made to drink them 5 times. - -02:38.200 --> 02:39.100 -...five thousand? - -02:39.100 --> 02:44.610 -Wrong! Yesterday, since I went to the bathroom and flushed everything out, there’s zero! - -02:44.930 --> 02:48.420 -Sensei, that's gross!... diff --git a/src/static/media/webvtt/Cou011.vtt b/src/static/media/webvtt/Cou011.vtt deleted file mode 100644 index e1493d9..0000000 --- a/src/static/media/webvtt/Cou011.vtt +++ /dev/null @@ -1,118 +0,0 @@ -WEBVTT - -00:00.200 --> 00:01.770 -Hello, Lain. - -00:02.280 --> 00:03.380 -(in a soft voice) Hello. - -00:04.060 --> 00:04.820 -Hmm. - -00:05.180 --> 00:07.050 -You don’t sound so energetic. - -00:07.580 --> 00:09.410 -Maybe you don’t feel up for this. - -00:11.460 --> 00:13.570 -Why don’t we quit now? - -00:13.570 --> 00:14.170 -Okay? - -00:15.900 --> 00:18.930 -But since you came all the way out here, how about a cup of tea or something? - -00:20.280 --> 00:21.100 -What would you like? - -00:21.860 --> 00:23.490 -Don’t be shy. - -00:24.740 --> 00:25.300 -I wanna do it. - -00:25.660 --> 00:34.960 -You don’t have to force yourself. That might make you feel even worse. Take my word for it. - -00:35.740 --> 00:37.780 -I want to be cured. - -00:38.460 --> 00:42.250 -Cured... But you’re not sick, Lain. - -00:42.520 --> 00:44.250 -But this is a hospital, isn’t it? - -00:44.580 --> 00:51.090 -Well, this place can function as a hospital, but I see patients at my research room as well. - -00:51.620 --> 00:55.100 -Right now, I don’t know if you are really sick or not. - -00:55.970 --> 00:59.780 -My hunch is that you are probably not sick, Lain. - -01:00.690 --> 01:06.640 -Still, if you aren’t feeling well or are worried about something, I’d like to be able to help you. - -01:07.250 --> 01:09.960 -I’m not sick? - -01:10.440 --> 01:15.010 -Right now, I’m not completely sure, but you’re probably just fine. - -01:15.850 --> 01:19.560 -Even if you are sick, I’ll make sure that you are cured. - -01:19.870 --> 01:21.080 -You’re absolutely sure you can cure me? - -01:21.080 --> 01:23.840 -Absolutely. I will not let you be sick. - -01:24.320 --> 01:30.180 -Sensei, why are you so kind to me? Is it because it is your job? - -01:30.760 --> 01:34.340 -Hmm... You’re right that this is a part of my work. - -01:34.940 --> 01:40.320 -But it’s a type of work that’s hard to see as just work. - -01:41.200 --> 01:47.170 -Most of the time, I see patients, diagnose them as objectively as possible, and give them psychological treatment, but it isn’t enough to make them better. - -01:48.370 --> 01:51.890 -I’m a researcher as well as a doctor. - -01:52.340 --> 01:56.570 -If I see someone suffering, I must try and help that person. - -01:56.770 --> 01:59.930 -I want to do everything I can to help that person. - -02:00.440 --> 02:02.490 -You would do that for anybody? - -02:03.210 --> 02:12.240 -To be specific, if I see someone suffering from something for which the cause is physical and obvious, I refer that person to a specialist. - -02:12.680 --> 02:17.460 -If there is a car accident or a poisoning, that's what I would do. - -02:18.170 --> 02:26.100 -To put it simply, I’m not the kind of doctor who treats people who have something wrong with them physically. - -02:26.320 --> 02:27.460 -So I have... - -02:27.930 --> 02:36.880 -I can’t tell for sure without doing a close examination, but I know that you had an examination before you came here and that no problems were found. - -02:38.120 --> 02:44.180 -And just by talking to you here, Lain, you don’t seem to have anything wrong with you at all. - -02:45.000 --> 02:53.480 -But you need to talk to me and tell me much more about what’s going on with you, or I can’t really help you with what’s bothering you. diff --git a/src/static/media/webvtt/Cou012.vtt b/src/static/media/webvtt/Cou012.vtt deleted file mode 100644 index 3b68843..0000000 --- a/src/static/media/webvtt/Cou012.vtt +++ /dev/null @@ -1,130 +0,0 @@ -WEBVTT - -00:00.660 --> 00:12.720 -By "what's bothering me", you mean... my nightmares? Me seeing strange things? Feeling like someone is touching me when no one is there? - -00:13.450 --> 00:15.820 -Aren't those symptoms of schizophrenia? - -00:16.000 --> 00:20.400 -Schizophrenia? Where did you hear a word like that? Who said that to you? - -00:20.640 --> 00:21.940 -I looked it up in a book. - -00:22.660 --> 00:33.280 -Lain, it’s a good things to study hard, but it’s dangerous to go digging around and diagnosing yourself when you aren’t sick. - -00:33.560 --> 00:36.980 -Have you heard the expression "Sickness and health starts with the mind?" - -00:37.210 --> 00:39.090 -Actually, I haven’t. - -00:39.520 --> 00:40.760 -Oh? - -00:41.220 --> 00:47.140 -Anyway, if you start diagnosing yourself, you’re going to start believing that you have all sorts of things wrong with you. - -00:48.420 --> 00:53.040 -I just wanted to know... what's going on with me. - -00:54.320 --> 00:55.300 -I see. - -00:55.490 --> 00:56.660 -I understand. - -00:57.400 --> 00:59.260 -I think your intentions are right. - -01:00.890 --> 01:03.220 -But I’d like to ask something of you. - -01:04.000 --> 01:11.890 -Please don’t go around prying… investigating, for things that you think are wrong with you. - -01:12.100 --> 01:13.210 -Can I ask that of you? - -01:13.480 --> 01:15.140 -Then will you help me find what’s wrong? - -01:15.140 --> 01:16.320 -Of course I will. - -01:17.320 --> 01:19.000 -So let’s make a promise. - -01:19.700 --> 01:22.570 -I will tell you everything I understand about you. - -01:22.860 --> 01:24.780 -I won’t hide anything from you. - -01:25.400 --> 01:27.970 -If you lie can I cut off your finger? - -01:28.130 --> 01:32.860 -Hmm... you can do something even worse. You can hammer a nail into my head. - -01:33.180 --> 01:34.410 -You’re goofy, Sensei. - -01:34.410 --> 01:41.250 -Seriously, though, I really want to help you. - -01:42.490 --> 01:47.050 -I’m an only child, and I always wished I had a younger sister—someone like you, Lain. - -01:47.730 --> 01:50.130 -You’re my big sister then? - -01:50.400 --> 01:53.290 -I’d be happy if you saw me that way. - -01:53.290 --> 01:54.050 -I will. - -01:54.500 --> 02:00.760 -Thank you. Anyway, let’s end for today. You’re tired, aren’t you? - -02:01.360 --> 02:04.570 -Not at all! But I’ll do what you asked me to do, Sensei. - -02:04.770 --> 02:10.290 -Now that's the spirit! ...Oh dear. Looks like I'm the one who's tired here after all. - -02:10.880 --> 02:13.290 -You’re tired of me? - -02:13.290 --> 02:15.060 -Not at all! - -02:15.060 --> 02:17.260 -I’ve just had a lot of other work to do today. - -02:17.780 --> 02:20.740 -I like you and I’ll miss you until we meet again, Lain. - -02:21.120 --> 02:22.540 -That makes me feel better. - -02:22.540 --> 02:26.260 -Let’s end now, then. It’s getting late and we don’t want your mother to worry. - -02:27.600 --> 02:29.240 -Goodbye, Touko-sensei. - -02:29.540 --> 02:31.000 -Goodbye, Lain-chan. - -02:31.250 --> 02:35.420 -Just call me Lain. It’s a bit weird for a "big sister" to call me Lain-chan. - -02:35.900 --> 02:40.500 -Okay then, goodbye, Lain. - -02:40.940 --> 02:41.890 -Goodbye. diff --git a/src/static/media/webvtt/Cou013.vtt b/src/static/media/webvtt/Cou013.vtt deleted file mode 100644 index b1e9e1a..0000000 --- a/src/static/media/webvtt/Cou013.vtt +++ /dev/null @@ -1,166 +0,0 @@ -WEBVTT - -00:00.330 --> 00:01.720 -Hello, Touko-san. - -00:02.100 --> 00:03.450 -Hello, Lain. - -00:04.090 --> 00:07.050 -Okay, from today we’re going to really tackle what’s bothering you, Lain-chan. - -00:07.200 --> 00:08.330 -I’m sorry. - -00:08.330 --> 00:09.340 -I mean Lain. - -00:09.340 --> 00:12.500 -We’re going to try to figure things out so you don’t see nightmares anymore. - -00:12.770 --> 00:17.680 -I haven't seen nightmares much lately. Sometimes I hear things, though. - -00:17.680 --> 00:19.960 -Hear things? Like what? - -00:20.200 --> 00:21.290 -I don’t know. - -00:21.760 --> 00:23.170 -It sounds like someone talking. - -00:23.900 --> 00:26.620 -I don’t like hearing it, so I try my best to ignore it. - -00:26.980 --> 00:31.000 -Hmm. Do you know whose voice you hear? - -00:31.410 --> 00:36.170 -I don’t know. It can be a man’s voice or a woman’s voice. - -00:36.620 --> 00:39.930 -Where do the voices seem to come from? - -00:40.420 --> 00:41.130 -From the sky. - -00:41.300 --> 00:44.940 -The sky? From what part of the sky? - -00:45.580 --> 00:49.220 -From the electric lines. Somehow... - -00:49.410 --> 00:56.020 -The electric lines... Do you know what’s inside of electric lines? - -00:56.760 --> 00:59.860 -Wiring that carries electricity. - -01:00.060 --> 01:06.640 -Right. They carry electricity that comes from power plants. Do feel like you sense electricity? - -01:07.220 --> 01:13.820 -I don't really know. Sometimes it seems to come from the sky; not the electric lines. - -01:14.170 --> 01:16.650 -Are you bothered by it right now? - -01:17.420 --> 01:21.640 -No. I’m not scared now. But... - -01:21.960 --> 01:26.240 -When you told your mother, did she tell you not to tell anyone else about these things? - -01:26.880 --> 01:27.460 -Uh-huh. - -01:27.730 --> 01:32.460 -People who don’t hear these things would think strange things about you if you told them, huh? - -01:33.260 --> 01:35.780 -You don’t have to worry about telling me anything you want to. - -01:36.250 --> 01:37.370 -You don’t have to worry, okay? - -01:37.540 --> 01:40.060 -I’m not going to think strange things about you. - -01:40.700 --> 01:41.730 -Because I’m sick? - -01:41.880 --> 01:49.040 -No, Lain. Let’s see. You know about "sleep paralysis"? - -01:49.600 --> 01:52.450 -Is it when a demon comes out and you can’t move your body? - -01:52.660 --> 01:55.120 -Right. Have you ever had that happen to you? - -01:55.540 --> 01:56.700 -Many times. - -01:56.880 --> 01:57.970 -It was frightening, wasn’t it? - -01:58.300 --> 01:58.890 -Uh, huh. - -01:59.080 --> 02:00.780 -Do you know why sleep paralysis happens? - -02:01.120 --> 02:02.100 -Why? - -02:02.580 --> 02:04.340 -The human body is very mysterious. - -02:04.850 --> 02:13.080 -When you’re sleeping, there are times when your mind is awake, and times when your body is awake. - -02:13.450 --> 02:14.090 -Do you understand? - -02:14.770 --> 02:15.890 -Sort of... - -02:16.130 --> 02:20.570 -Well, that’s good enough for now. What parts of you are awake right now? - -02:21.080 --> 02:22.360 -Both? - -02:22.530 --> 02:23.060 -Hmm. - -02:23.820 --> 02:29.100 -Suppose I said something really scary right now, and you felt scared enough to run out of this room. - -02:29.770 --> 02:30.440 -What would you do? - -02:31.080 --> 02:32.290 -Run out of the room. - -02:32.520 --> 02:33.020 -Okay. - -02:33.500 --> 02:36.090 -Suppose that you feel so scared that you want to run out of this room, but your body is asleep and you can’t move. - -02:36.760 --> 02:38.060 -That's what sleep paralysis is. - -02:39.160 --> 02:45.400 -So if you’re having a nightmare but your body is asleep and you can’t move, you are having sleep paralysis. - -02:46.130 --> 02:46.780 -You see? - -02:47.280 --> 02:49.220 -If you know what’s involved, it’s not so scary, is it? - -02:49.660 --> 02:51.380 -No. It isn’t. diff --git a/src/static/media/webvtt/Cou014.vtt b/src/static/media/webvtt/Cou014.vtt deleted file mode 100644 index 60b1047..0000000 --- a/src/static/media/webvtt/Cou014.vtt +++ /dev/null @@ -1,196 +0,0 @@ -WEBVTT - -00:00.760 --> 00:06.850 -There are many people who have had experienced sleep paralysis, but we don’t call them "sick." - -00:07.850 --> 00:08.740 -But... - -00:09.050 --> 00:13.500 -Hmm... there might be only a few people who have experienced what you have. - -00:14.140 --> 00:16.930 -Still, I don’t think you should be called "sick" just because of your experiences. - -00:17.780 --> 00:22.260 -A lot of things can happen to a person while she’s young and impressionable. - -00:22.970 --> 00:26.850 -But I’m scared and I hate this. - -00:28.010 --> 00:30.020 -What's so scary about your dream? - -00:30.570 --> 00:35.340 -I start to feel that I don't belong. Like I am an unneeded thing. - -00:35.720 --> 00:37.170 -You "don't belong"? - -00:37.620 --> 00:42.170 -I feel that I am being told to come back because I’m unneeded. - -00:43.180 --> 00:45.160 -Come back? Come back where? - -00:45.340 --> 00:46.480 -To myself. - -00:47.080 --> 00:54.340 -Hmm. This is hard to understand. You want you to come back to yourself? - -00:54.820 --> 01:04.010 -I don’t know. But it feels as if there was another myself, touching my body, ripping it apart - -01:04.330 --> 01:05.420 -(interrupting) And it’s painful? - -01:05.600 --> 01:09.350 -It isn’t painful, but it’s frightening. - -01:10.520 --> 01:13.570 -I see. Does this happen when you’re asleep? - -01:14.010 --> 01:14.760 -Probably. - -01:14.760 --> 01:17.760 -Probably? This happens sometimes when you’re not dreaming? - -01:18.330 --> 01:19.260 -I don't know. - -01:19.880 --> 01:24.290 -Sometimes it happens when I’m all by myself, and sometimes when I’m talking to my friends. - -01:24.500 --> 01:29.650 -Tell me what happens when you’re not alone. This happens when you’re just having conversations? - -01:30.360 --> 01:34.170 -Yes. While I’m just talking, it suddenly... - -01:34.680 --> 01:38.200 -How do you notice it? Do your friends call out to you? - -01:38.820 --> 01:40.160 -Suddenly... - -01:40.300 --> 01:42.800 -Is there something that triggers it? - -01:43.420 --> 01:46.540 -I was afraid, and I felt better after staying motionless for a while. - -01:47.520 --> 01:53.130 -Can you explain what it felt like, or what you saw? Could you draw a picture? - -01:53.940 --> 01:56.480 -No, I can’t. - -01:57.720 --> 02:00.820 -I see... Oh! - -02:01.490 --> 02:02.880 -We have to end. - -02:02.880 --> 02:04.330 -I’m sorry, Lain. - -02:04.330 --> 02:06.760 -I have to go out and take care of some things today. - -02:07.290 --> 02:09.680 -I’m sorry to have to stop right in the middle of a conversation. - -02:10.440 --> 02:14.060 -But it’s good for now that you can’t see these things. - -02:15.060 --> 02:17.940 -I think that what you experience is probably similar to sleep paralysis. - -02:18.040 --> 02:20.580 -I’ll do some research on it until next month. - -02:20.900 --> 02:22.840 -That’ll be my homework. - -02:23.800 --> 02:27.160 -Your homework will be keeping a diary. - -02:27.620 --> 02:28.490 -A diary? - -02:28.780 --> 02:33.060 -I want you to write about the things you did during the day, and what you thought about. - -02:33.620 --> 02:36.140 -You don’t have to show it to me. - -02:36.280 --> 02:37.250 -Just write what you want. - -02:38.050 --> 02:41.170 -I used to keep a diary when I was your age. - -02:41.840 --> 02:42.490 -But... - -02:42.490 --> 02:43.060 -You don't want to? - -02:43.730 --> 02:46.560 -It can be really interesting to look back on the things you write in your diary. - -02:46.580 --> 02:50.370 -We can be forgetful, so it can help you remember things, too. - -02:50.940 --> 02:52.330 -That will cure me? - -02:52.860 --> 02:53.770 -Hmm. - -02:53.770 --> 02:56.360 -That probably doesn’t have anything to do with it. - -02:56.590 --> 02:58.620 -At least it's good for you. - -02:59.950 --> 03:01.840 -I’ll explain more carefully next month. - -03:02.640 --> 03:04.600 -I don’t mind if you don’t want to keep a diary. - -03:05.490 --> 03:07.870 -I went and bought you a diary book, though. - -03:09.030 --> 03:09.600 -See? - -03:09.850 --> 03:11.120 -It’s cute, isn’t it? - -03:11.860 --> 03:16.680 -I found it when I went shopping last week, and I thought it would be a nice present for you. - -03:17.020 --> 03:17.890 -Thank you. - -03:17.890 --> 03:21.330 -But don’t force yourself. - -03:21.680 --> 03:24.450 -You don't have to keep a diary just because I bought you one. - -03:24.770 --> 03:27.810 -Feel free to write in the diary if you want to, though. - -03:28.960 --> 03:30.400 -Well I guess we’ll wrap it up, then. - -03:30.860 --> 03:32.360 -Make sure you’re not forgetting anything. - -03:32.760 --> 03:34.530 -I’ll walk out to the gate with you. diff --git a/src/static/media/webvtt/Cou015.vtt b/src/static/media/webvtt/Cou015.vtt deleted file mode 100644 index 713aa6e..0000000 --- a/src/static/media/webvtt/Cou015.vtt +++ /dev/null @@ -1,118 +0,0 @@ -WEBVTT - -00:00.850 --> 00:02.610 -How are you feeling, Lain? - -00:03.460 --> 00:07.720 -I’m doing okay. How about you, Touko-san? - -00:07.880 --> 00:14.880 -Pretty much as always. I could use a little more time to calm down and think things over, though. - -00:15.690 --> 00:16.800 -You’re very busy? - -00:16.960 --> 00:24.690 -Yes... Ha, ha. Now our roles are reversed. I feel like you are counseling me. - -00:24.900 --> 00:25.530 -Ha, ha. - -00:25.530 --> 00:30.820 -Ha, ha. By the way, what did you decide to do about the diary? - -00:31.620 --> 00:33.900 -I decided to keep a diary. - -00:33.900 --> 00:39.480 -Wow, that’s great! I didn’t waste my money right before payday. - -00:39.930 --> 00:41.130 -I’ll pay you for the diary. - -00:41.130 --> 00:42.920 -I’m joking, I’m joking. - -00:43.540 --> 00:46.160 -But I get paid well anyway. - -00:46.850 --> 00:50.060 -But I guess it's too low considering how many hours I work a day. - -00:50.920 --> 00:51.980 -Oh, no. - -00:51.980 --> 00:52.810 -This isn’t good. - -00:52.810 --> 00:54.460 -I'm just grumbling about myself. - -00:54.770 --> 00:58.130 -But you’re funny, Sensei. You’re a lot of fun. - -00:58.130 --> 00:58.620 -Ha, ha. - -00:59.650 --> 01:01.300 -Well, why don’t we begin? - -01:02.400 --> 01:04.340 -Let’s pick up where we left off last time. - -01:05.040 --> 01:08.090 -Have you learned the word "ego" at school? - -01:08.530 --> 01:15.020 -Uh-huh. I looked into it. It’s about knowing that you are yourself? - -01:15.380 --> 01:16.010 -Right. - -01:16.610 --> 01:21.080 -People around your age can get unsure about that. - -01:22.180 --> 01:32.340 -They ask themselves "what kind of person am I?" Boys sometimes think that they are heroes and that they will accomplish some superhuman feat someday. - -01:32.770 --> 01:36.900 -Girls sometimes imagine that they don't belong with their own families. - -01:37.130 --> 01:44.900 -They think instead that they are members of a rich elite family, and that a prince on a white steed will surely come one day to take them away. - -01:45.840 --> 01:50.260 -I don’t feel that way. I think that I’m just me. - -01:50.860 --> 01:56.400 -But It’s hard to tell what you are just by yourself, isn’t it? - -01:57.280 --> 02:05.010 -When I was younger, I thought that there was a different me, and that somehow I wasn't the person I was at the time. - -02:05.280 --> 02:06.380 -A different me? - -02:06.520 --> 02:07.380 -Yes. - -02:07.780 --> 02:15.720 -For example, if there was something happening that I didn’t like, I wondered why I had to be the one dealing with it. - -02:16.220 --> 02:20.020 -I thought there had to be some kind of mistake. - -02:20.680 --> 02:25.010 -I thought that someday I would return to the real me. - -02:25.740 --> 02:31.320 -I also thought things like, if there was a big earthquake, everyone would die, but I would be the only survivor. - -02:32.140 --> 02:35.020 -I thought that I was someone special; someone "chosen." In another words, I believed in a "me" that could not be. - -02:35.180 --> 02:36.480 -It’s funny, isn’t it? - -02:36.970 --> 02:41.560 -I don’t believe that I’m anyone chosen. I’m okay with being ordinary. diff --git a/src/static/media/webvtt/Cou016.vtt b/src/static/media/webvtt/Cou016.vtt deleted file mode 100644 index 474b5e3..0000000 --- a/src/static/media/webvtt/Cou016.vtt +++ /dev/null @@ -1,94 +0,0 @@ -WEBVTT - -00:00.440 --> 00:01.250 -I see. - -00:01.700 --> 00:04.840 -That’s probably because you are a strong person. - -00:05.300 --> 00:11.440 -I was a weak person, and now it feels like back then, I was running away from the fact by thinking that. - -00:11.900 --> 00:14.570 -Do you think I’m trying to run away from myself? - -00:15.100 --> 00:20.090 -I don’t think so. But you want to change yourself, don’t you? - -00:20.810 --> 00:24.420 -I just don’t want to see any more bad dreams. I think that's how i feel. - -00:26.010 --> 00:31.060 -Could it be that you don’t want to be the person who sees the bad dreams? - -00:31.280 --> 00:33.480 -Maybe you feel that way, somewhere deep inside yourself? - -00:33.480 --> 00:38.410 -Could it be that you are subconsciously trying to construct a "me" that isn’t "me"? - -00:39.180 --> 00:41.560 -What should I do? - -00:41.880 --> 00:47.000 -Do you think you can accept your dreams? - -00:47.880 --> 00:48.900 -Accept? - -00:48.900 --> 00:49.540 -Right. - -00:50.220 --> 00:57.820 -I mean facing the voices you don't want to hear or the "you" that you don't wanna meet, and then trying to become friends with them. - -00:59.020 --> 00:59.970 -I can’t. - -01:00.620 --> 01:03.160 -I think that all you have to do is listen to the voices. - -01:03.660 --> 01:06.300 -See what they are saying and see what they want to do. - -01:07.250 --> 01:10.460 -Face them until you understand them and expose them. - -01:11.020 --> 01:13.210 -I’m scared. - -01:13.920 --> 01:16.800 -But you’ve made it so far. - -01:17.260 --> 01:18.930 -You’re still you. - -01:19.610 --> 01:24.980 -You’ve never had a ghost punch you or had a voice act violently with you, right? - -01:25.680 --> 01:29.130 -Maybe these ghosts and voices are trying to be friends with you. - -01:30.100 --> 01:30.850 -Ha, ha. - -01:30.850 --> 01:32.560 -If you don’t see the ghosts again, great. - -01:32.760 --> 01:37.210 -But if you do see them, I think that it’s important that you have a good attitude and know how to brace yourself. - -01:37.970 --> 01:41.250 -If the ghosts show up, just shake it off your shoulders and say, "oh, here they are again." - -01:41.930 --> 01:44.130 -I’m leaving. I’m going home. - -01:44.400 --> 01:47.640 -Why? Did I say something I shouldn’t have? - -01:48.250 --> 01:54.700 -I didn’t lie to you. I didn’t see any ghosts or phantoms. You’re a big jerk! - -01:55.610 --> 01:56.560 -Lain! diff --git a/src/static/media/webvtt/Cou017.vtt b/src/static/media/webvtt/Cou017.vtt deleted file mode 100644 index ad504df..0000000 --- a/src/static/media/webvtt/Cou017.vtt +++ /dev/null @@ -1,82 +0,0 @@ -WEBVTT - -00:00.450 --> 00:03.140 -I’m sorry ma’am. - -00:03.140 --> 00:05.340 -I can handle it from here. - -00:05.340 --> 00:10.900 -(pause) Lain, I’m sorry. - -00:11.410 --> 00:15.440 -I thought that if I didn't do this, your would never see me again. - -00:16.530 --> 00:19.940 -I just wanted to apologize. - -00:20.860 --> 00:23.170 -I think I was arrogant about my assumptions about you. - -00:24.120 --> 00:28.290 -Still, I wanted you to understand and to be comfortable. - -00:29.210 --> 00:37.300 -I just thought that if you could face your dreams and understand where they were coming from, that they would stop. - -00:37.680 --> 00:39.220 -I’m sorry, Touko-san. - -00:39.220 --> 00:39.780 -Why? - -00:40.360 --> 00:47.280 -I lied to you... I didn’t keep the diary. - -00:48.440 --> 00:55.160 -That’s okay. I told you that it was all up to you. - -00:55.770 --> 00:59.090 -You were trying to be helpful to me. - -01:00.970 --> 01:09.720 -Thank you. I’m grateful that you feel that way. Can you forgive me, Lain? - -01:10.460 --> 01:11.140 -Yes. - -01:12.700 --> 01:16.120 -I’m so glad. - -01:17.730 --> 01:21.660 -I was so sad when you walked away from our session. - -01:21.660 --> 01:23.090 -I cried. - -01:24.090 --> 01:25.340 -I felt so bad. - -01:26.090 --> 01:27.560 -I though you didn’t like me anymore. - -01:28.930 --> 01:31.060 -Touko-san, don’t cry. - -01:31.200 --> 01:38.440 -Oh... It’s so silly of me to cry over this. I’m sorry, Lain. - -01:39.180 --> 01:40.490 -Don’t cry. - -01:41.380 --> 01:47.600 -These are tears of joy, Lain. I’m so glad. - -01:49.060 --> 01:50.250 -Joy? - -01:50.700 --> 01:53.000 -Yes. Tears of joy. - -01:53.690 --> 01:58.410 -I’m really happy, too. I feel so close to you. diff --git a/src/static/media/webvtt/Cou018.vtt b/src/static/media/webvtt/Cou018.vtt deleted file mode 100644 index fc8c38f..0000000 --- a/src/static/media/webvtt/Cou018.vtt +++ /dev/null @@ -1,94 +0,0 @@ -WEBVTT - -00:00.770 --> 00:03.330 -Let’s skip counseling today and just relax instead. - -00:04.280 --> 00:05.260 -You came all the way out here. - -00:05.260 --> 00:05.980 -Do you want something to drink? - -00:06.730 --> 00:09.840 -I cried so much that I’m thirsty. - -00:10.600 --> 00:15.930 -Touko-san, I’ll start keeping my diary. Honestly, this time. - -00:16.490 --> 00:20.290 -Don’t force yourself. You’re a kind girl. - -00:20.850 --> 00:22.280 -I’m not forcing myself. - -00:22.970 --> 00:24.120 -The diary is for me, after all. - -00:25.340 --> 00:30.130 -And the next time I hear the voices, I’ll listen to see what they are saying. - -00:30.900 --> 00:33.980 -Then, I’ll tell you what they said, Touko-san. - -00:35.380 --> 00:36.620 -Thank you, Lain. - -00:37.410 --> 00:42.120 -Happy birthday, by the way, Touko-san. - -00:42.600 --> 00:46.170 -Huh! My birthday? - -00:46.560 --> 00:49.560 -I made this for you with my mom. - -00:49.970 --> 00:54.240 -Really? I’m so happy! Can I open it? - -00:54.650 --> 00:55.280 -Sure. - -00:57.720 --> 01:04.610 -Cookies! Good timing. We were actually out of teacakes. Let's have them together. - -01:06.290 --> 01:07.000 -Is it good? - -01:07.320 --> 01:11.450 -Mmm. It tastes like tea. - -01:12.020 --> 01:14.820 -You said that you like tea, so we made the cookies that way. - -01:16.090 --> 01:20.660 -Thank you. But then we better have a different kind of tea. - -01:21.220 --> 01:22.450 -It won’t go with black tea? - -01:22.450 --> 01:27.740 -No, not that it wouldn’t go with it, but it would be too bad if we couldn’t enjoy the tea and cookies as much as possible. - -01:28.140 --> 01:30.100 -Should I have made cookies with a different flavor? - -01:30.650 --> 01:31.920 -Oh, no, no. - -01:31.920 --> 01:32.530 -Not at all! - -01:32.780 --> 01:38.770 -But you took all the trouble to make such nice cookies, and I want to enjoy them as much as possible. - -01:39.340 --> 01:40.460 -That’s all. - -01:41.210 --> 01:41.920 -Really? - -01:42.060 --> 01:45.850 -Really. Thanks so much, Lain. - -01:46.920 --> 01:49.280 -Sensei, it hurts. diff --git a/src/static/media/webvtt/Cou019.vtt b/src/static/media/webvtt/Cou019.vtt deleted file mode 100644 index efd6c6c..0000000 --- a/src/static/media/webvtt/Cou019.vtt +++ /dev/null @@ -1,166 +0,0 @@ -WEBVTT - -00:00.320 --> 00:01.610 -Hello, Lain. - -00:02.310 --> 00:07.440 -I write in my diary everyday. Sometimes I don’t have much to write, though. - -00:07.440 --> 00:08.370 -Don’t worry about it. - -00:08.370 --> 00:10.150 -If you force yourself, you’ll just want to give up. - -00:10.640 --> 00:15.100 -I don't know how many diaries I've had that I couldn't stick to for long. - -00:16.640 --> 00:18.540 -Have you seen any of them since then? - -00:19.030 --> 00:20.320 -I’ve been okay. - -00:20.320 --> 00:27.110 -Really? That’s good. There’s something I want to confirm with you today. - -00:27.890 --> 00:28.870 -What? - -00:29.560 --> 00:32.440 -You have really good eyesight, don’t you, Lain? - -00:32.880 --> 00:34.140 -Really good? - -00:34.140 --> 00:38.720 -You’ve had eye exams at school, haven’t you? What’s your score? - -00:40.160 --> 00:41.420 -One-point-five. - -00:42.160 --> 00:45.210 -Your eyesight is really even better than that, isn’t it? - -00:46.390 --> 00:49.480 -But I wanted to have the same score as all the other kids. - -00:49.480 --> 00:51.990 -Well, there’s no point having the examination, then. - -00:52.700 --> 00:55.550 -At the last hospital you used to go to, they examined your eyes, too. - -00:56.140 --> 00:58.450 -But they did it differently than at your school. - -00:58.450 --> 01:01.440 -They had a machine that measures eyesight automatically. - -01:03.080 --> 01:09.240 -The machine only measures as far as three-point-zero, and your score was three-point-zero. - -01:10.380 --> 01:13.770 -Kids with such good eyesight are extremely rare, so... - -01:13.770 --> 01:19.770 -The doctor in charge of your eye-exam spoke with a cancer specialist, who said he saw no problems. - -01:20.620 --> 01:21.770 -Oh. - -01:22.090 --> 01:26.100 -Lain, what can you see outside the window? - -01:27.310 --> 01:30.800 -Trees and a gate to the research center in the distance. - -01:31.240 --> 01:32.680 -And beyond that? - -01:33.250 --> 01:33.960 -Buildings. - -01:33.960 --> 01:35.240 -And beyond that? - -01:35.550 --> 01:36.550 -Mountains. - -01:36.550 --> 01:37.790 -And beyond that? - -01:38.320 --> 01:39.320 -I can’t see anything further. - -01:39.460 --> 01:40.360 -Nothing at all? - -01:40.870 --> 01:43.940 -A purplish color that looks like a curtain. - -01:44.610 --> 01:45.730 -Thank you. - -01:46.550 --> 01:49.880 -I’m sorry to pepper you with all these questions. - -01:51.330 --> 01:56.960 -I think that you probably see the world in a different way than I do. - -01:58.720 --> 02:01.780 -Lain, don’t look so glum. - -02:01.780 --> 02:03.760 -It’s nothing to worry about. - -02:03.760 --> 02:07.670 -It’s not such a bad thing... I’m sorry for saying that. - -02:07.670 --> 02:10.010 -I guess it is bad thing for you. - -02:10.010 --> 02:11.360 -To see things so differently. - -02:11.860 --> 02:13.360 -I don’t know. - -02:13.830 --> 02:18.530 -But I had a feeling that I’m probably different from everybody else. - -02:19.270 --> 02:22.740 -I feel like I’m the only person who can hear and see some things. - -02:23.240 --> 02:24.960 -It makes me very uncomfortable. - -02:25.400 --> 02:26.960 -I think that I will be disliked. - -02:27.620 --> 02:28.960 -Is that the reason? - -02:30.080 --> 02:35.150 -It might be. I think that you’d have to be seen by a specialist. - -02:36.300 --> 02:43.220 -No. I want to see you. I don’t want to see any of the other doctors here. They all scare me. - -02:48.880 --> 02:50.780 -Why don’t we just keep this as a secret? - -02:51.440 --> 02:52.340 -A secret? - -02:52.340 --> 02:56.750 -Uh huh. It will be our secret until you aren’t worried about it anymore. - -02:57.240 --> 02:58.210 -Is that okay? - -02:58.210 --> 03:04.720 -I’m your big sister, remember? I’m not going to take you anywhere that you will be scared. - -03:05.190 --> 03:06.410 -Touko-san. diff --git a/src/static/media/webvtt/Cou020.vtt b/src/static/media/webvtt/Cou020.vtt deleted file mode 100644 index e709b23..0000000 --- a/src/static/media/webvtt/Cou020.vtt +++ /dev/null @@ -1,130 +0,0 @@ -WEBVTT - -00:00.220 --> 00:01.210 -Good morning, Lain. - -00:01.840 --> 00:03.830 -Good morning, Touko-san. - -00:03.830 --> 00:05.910 -Have you seen anything since then? - -00:06.360 --> 00:09.490 -No, I haven’t. Honestly. - -00:09.870 --> 00:11.160 -Have you heard anything? - -00:11.640 --> 00:15.300 -Sometimes I hear gibberish. - -00:15.870 --> 00:20.150 -Very confused? One person? More than one? - -00:20.550 --> 00:24.770 -More than one. Men and women. - -00:24.770 --> 00:26.770 -Are they people you know? - -00:26.770 --> 00:28.620 -Probably not. - -00:29.020 --> 00:34.200 -You said that you heard things from the sky. What do you think is in the sky? - -00:34.760 --> 00:36.640 -There’s air. - -00:36.640 --> 00:38.840 -Uh, huh. And aside from that? - -00:39.290 --> 00:43.350 -Clouds. The sun. The stars. - -00:44.000 --> 00:46.900 -Do you know about the radio waves for TV and cell phones? - -00:47.300 --> 00:50.480 -Yes. The information travels wirelessly? - -00:50.480 --> 00:52.960 -Right. The information flies through the sky. - -00:53.890 --> 00:56.700 -Am I hearing that information? - -00:56.700 --> 01:02.010 -Hmm. It might be that you imagine you are hearing that information. - -01:02.010 --> 01:04.170 -There’s a sickness like that? - -01:05.000 --> 01:05.940 -There is. - -01:06.360 --> 01:07.940 -It’s called delusion. - -01:08.730 --> 01:12.800 -It’s a symptom of schizophrenia and neurosis. - -01:12.800 --> 01:18.410 -In simple terms, such symptoms may appear when you concentrate too much on something or feel stressed. - -01:18.790 --> 01:19.550 -But... - -01:19.850 --> 01:20.630 -But? - -01:21.100 --> 01:25.520 -Most of the time, you will hear things that are related to you, to some extent. - -01:26.050 --> 01:28.700 -For instance, they hear voices that bad-mouth them. - -01:29.250 --> 01:30.570 -Paranoia? - -01:30.570 --> 01:31.360 -Right. - -01:32.110 --> 01:34.470 -You’ve been studying up on this stuff. - -01:35.740 --> 01:38.730 -Ok. I’ll fill you in a little more on this. - -01:39.440 --> 01:54.150 -The definition of "delusion" is taking a mistaken idea and believing in your own mind that it is correct. - -01:54.460 --> 02:00.020 -But for you, Lain, you say that you might have felt or sensed something. - -02:00.020 --> 02:03.680 -You don't have conviction in your feelings, so they aren't delusions. - -02:04.120 --> 02:07.200 -You have thoughts, in technical terms, we call it contemplations. - -02:07.200 --> 02:08.440 -Contemplations? - -02:08.600 --> 02:11.880 -You can forget that term if you’d like. - -02:13.020 --> 02:18.530 -As I mentioned before, a delusion is generally something intertwined with one’s self. - -02:19.240 --> 02:21.970 -Most of the time, there are no delusions that don't involve me. - -02:21.970 --> 02:23.440 -I’m not delusional? - -02:23.440 --> 02:25.280 -Fundamentally, no. - -02:25.280 --> 02:33.040 -Still, there are all sorts of delusions, and if you try to "pin" one of them onto someone, you may start pinning other ones on that person, too. diff --git a/src/static/media/webvtt/Cou021.vtt b/src/static/media/webvtt/Cou021.vtt deleted file mode 100644 index b8c9720..0000000 --- a/src/static/media/webvtt/Cou021.vtt +++ /dev/null @@ -1,103 +0,0 @@ -WEBVTT - -00:00.110 --> 00:02.950 -If you had to guess, what could it be? - -00:02.950 --> 00:04.510 -Hmm. - -00:04.510 --> 00:10.000 -There is a delusion some people have that they are being influenced by something. - -00:10.620 --> 00:15.000 -The delusion that the radio or TV or cell phones are trying to influence them somehow. - -00:15.000 --> 00:24.170 -The delusion that TV and cell phones have the power to touch them physically. - -00:25.080 --> 00:29.880 -You said that you thought you were being touched by something, didn’t you, Lain? - -00:29.880 --> 00:30.730 -Uh, huh. - -00:31.240 --> 00:33.240 -It might not even be a delusion. - -00:33.240 --> 00:36.330 -There is an actual medical condition that makes people very sensitive physically. - -00:36.330 --> 00:41.550 -But you said that you don’t feel like you are yourself, didn’t you, Lain? - -00:41.550 --> 00:46.040 -That makes me think that you have the delusion that nothing exists. - -00:46.040 --> 00:49.530 -That you think you aren’t real and that existence isn’t real. - -00:49.530 --> 00:53.620 -This can come as the result of poor self-esteem. - -00:53.620 --> 00:55.800 -Poor self-esteem? - -00:55.800 --> 01:01.110 -It’s the feeling that one is worthless. - -01:01.110 --> 01:05.110 -It’s similar to the delusion of persecution we were talking about. - -01:05.660 --> 01:09.800 -I’m really sick. - -01:09.800 --> 01:11.040 -There are other kinds of delusions. - -01:11.040 --> 01:12.460 -I don’t want to listen anymore. - -01:12.460 --> 01:18.280 -Some people have the delusion that they have a special, unique sickness. - -01:18.280 --> 01:23.020 -It’s the sickness of thinking they have a sickness, when they really aren’t sick. - -01:23.930 --> 01:30.220 -I think that what you have, Lain, is mostly to do with this kind of delusion. - -01:30.220 --> 01:33.800 -The sickness of thinking that I am sick when I’m not sick? - -01:33.800 --> 01:34.910 -Yes. - -01:34.910 --> 01:41.800 -I think that you have poor self-esteem, and that a small insecurity manifests itself in nightmares, and makes you think that you are sick. - -01:41.800 --> 01:43.170 -Can I be cured? - -01:43.170 --> 01:44.510 -Sure! - -01:44.510 --> 01:46.910 -After all, you’re not sick in the first place. - -01:47.550 --> 01:50.510 -I’m sorry to have alarmed you. - -01:50.510 --> 01:57.200 -Still, if you don’t understand psychiatry well, you can use it to make all sorts of misguided conclusions. - -01:57.200 --> 01:59.330 -You can diagnose yourself as being sick. - -01:59.330 --> 02:08.400 -Most people go to the doctor when they or someone they know can’t carry on their day-to-day activities. - -02:08.400 --> 02:13.220 -They come in to see a doctor and they are diagnosed or treated, and sometimes they are diagnosed as sick. - -02:13.220 --> 02:20.480 -So for someone like you, who can continue her own day-to-day activities without a problem, we can’t really say that you are sick unless something’s bad enough that you need hospitalization. diff --git a/src/static/media/webvtt/Cou022.vtt b/src/static/media/webvtt/Cou022.vtt deleted file mode 100644 index c3e15c4..0000000 --- a/src/static/media/webvtt/Cou022.vtt +++ /dev/null @@ -1,106 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.240 -Am I sick because I came to the hospital? - -00:03.240 --> 00:08.770 -Well, you can carry on with your life, but you’re troubled, aren’t you, Lain? - -00:08.770 --> 00:12.910 -It’s the job of a counselor to help with that. - -00:12.910 --> 00:18.000 -Are you a counselor, Touko-san? You said before that you’re a doctor. - -00:18.000 --> 00:20.350 -I’m a counselor and a doctor. - -00:20.350 --> 00:21.970 -How are the two different? - -00:21.970 --> 00:25.820 -Well, both jobs have to do with helping people with psychological problems. - -00:25.820 --> 00:28.640 -They’re similar in the sense that they have the same goals. - -00:28.640 --> 00:32.880 -But the difference is that as a counselor I care for patients differently than I do as a doctor, and that each job has different qualifications. - -00:32.880 --> 00:43.040 -Each job has its strengths and weaknesses, and I think it’s best when I can make their strengths complement each other. - -00:43.550 --> 00:47.130 -That’s why I’m a doctor and a counselor. - -00:47.130 --> 00:51.260 -Are you a doctor or a counselor when you see me? - -00:51.260 --> 00:55.770 -I’m a counselor. I think it’s better for me to be a counselor when I see you. - -00:56.440 --> 01:03.880 -But am I not mentally ill? You said that the things I see are hallucinations. - -01:03.880 --> 01:14.910 -It’s true that hallucinations and delusions are symptoms of mental illness, and this is just my hunch, but you don’t seem to be mentally ill to me. - -01:14.910 --> 01:17.620 -Do I mind things too much? - -01:17.620 --> 01:19.620 -Yes, I think that’s probably right. - -01:20.060 --> 01:26.170 -I think your tendency to observe things and listen very carefully might be stressing you out. - -01:26.170 --> 01:29.060 -What can I do about it, Touko-san? - -01:29.060 --> 01:33.950 -Well... even if I told you not to mind things too much, you’re going to mind things. - -01:34.600 --> 01:41.600 -I don't mind anymore. I’m getting used to this. Still, I can't get used to that. - -01:42.110 --> 01:43.240 -"That"? - -01:43.880 --> 01:46.200 -I’m not the me that I am right now. - -01:46.970 --> 01:48.800 -What kind of Lain are you? - -01:49.260 --> 01:52.060 -I’m me. That person is, too. - -01:52.950 --> 01:55.310 -Why do you feel that way? - -01:55.310 --> 02:01.930 -I don’t know. Have you ever thought that you aren’t you, Touko-san? - -02:02.530 --> 02:10.150 -Looking back on myself in the past, I’ve wondered what I was doing sometimes. - -02:10.150 --> 02:13.730 -But I’ve never thought at the time that I wasn’t me. - -02:14.770 --> 02:18.220 -Do you feel that there are two of you, Lain? - -02:18.220 --> 02:23.400 -No. I’m me and I’m not me. - -02:24.620 --> 02:26.220 -That’s mysterious. - -02:26.220 --> 02:30.240 -But if you feel that way, that must be true for you. - -02:30.240 --> 02:32.350 -You don’t have to feel that you’re mistaken. - -02:32.350 --> 02:35.040 -But it isn’t usual. diff --git a/src/static/media/webvtt/Cou023.vtt b/src/static/media/webvtt/Cou023.vtt deleted file mode 100644 index babc9a7..0000000 --- a/src/static/media/webvtt/Cou023.vtt +++ /dev/null @@ -1,64 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.150 -You’re really yearning all the time, aren’t you, Lain? - -00:03.730 --> 00:04.860 -Probably... - -00:05.400 --> 00:07.600 -I’m envious. - -00:07.600 --> 00:10.770 -Human perception is a wild thing. - -00:10.770 --> 00:14.350 -If you start feeling something, you start believing it. - -00:14.350 --> 00:18.400 -I don't know how to explain to anyone that I am really me. - -00:19.040 --> 00:25.200 -But being able to question that sense of self is a special talent. - -00:25.730 --> 00:28.220 -I don’t want a talent like that. - -00:28.220 --> 00:29.170 -Yeah. - -00:29.170 --> 00:32.280 -I’m sure you feel really strongly that way right now. - -00:33.060 --> 00:37.710 -But I feel that it can be a good thing for you, too. - -00:37.710 --> 00:47.220 -I don't understand it well right now, but I think that if you can include and accept that as part of yourself, it would help you in the long run. - -00:47.220 --> 00:49.310 -I won’t change? - -00:49.310 --> 00:50.950 -I don’t know. - -00:50.950 --> 00:56.640 -You might change naturally and stop having nightmares. - -00:56.640 --> 01:00.130 -If that happens, you’d be like most other kids. - -01:00.130 --> 01:06.220 -But I won’t know if I’ve gotten better. I might have nightmares again. - -01:06.220 --> 01:10.480 -Yeah. But things will change from now on. - -01:10.480 --> 01:12.280 -What do you mean? - -01:12.280 --> 01:18.840 -I mean that you’re not alone. I’m here, and you can talk to me about things. - -01:18.840 --> 01:21.730 -That’s true, Touko-san. diff --git a/src/static/media/webvtt/Cou024.vtt b/src/static/media/webvtt/Cou024.vtt deleted file mode 100644 index 41a91dc..0000000 --- a/src/static/media/webvtt/Cou024.vtt +++ /dev/null @@ -1,64 +0,0 @@ -WEBVTT - -00:00.080 --> 00:02.150 -Good morning, Touko-san. - -00:02.150 --> 00:05.930 -Good morning. How are you? Have you been feeling healthy? - -00:05.930 --> 00:12.750 -Uh huh. I thought about the things you talked about last month and I’ve somehow been feeling better. - -00:12.750 --> 00:14.860 -Oh, that’s great. - -00:15.550 --> 00:19.550 -Actually, though, it’s against the rules to talk about the things we talked about last month. - -00:19.550 --> 00:24.660 -There were cases where people had something irreversible trigger from speculating too much. - -00:24.900 --> 00:26.390 -Irreversible? - -00:26.480 --> 00:33.200 -Their sickness could worsen, and sometimes, patients can hurt themselves physically. - -00:33.200 --> 00:34.550 -Suicide? - -00:34.550 --> 00:37.570 -Well, that would be the worst-case scenario. - -00:37.570 --> 00:40.110 -I don’t want to die. - -00:40.110 --> 00:41.440 -Of course not! - -00:41.440 --> 00:44.080 -Far from it. - -00:44.080 --> 00:50.750 -But when people become troubled emotionally, they start to see things and act differently than you or I would. - -00:50.750 --> 00:52.570 -See things differently? - -00:52.570 --> 00:58.000 -They can lose their fear of dying or hurting themselves. - -00:58.000 --> 01:02.550 -In fact they start to feel that dying or getting hurt are very good things. - -01:03.000 --> 01:05.550 -You can’t understand that, can you? - -01:05.550 --> 01:07.280 -I am afraid of those things. - -01:07.280 --> 01:12.530 -Sure! Me too. We’re the same way. That’s normal. - -01:12.860 --> 01:14.530 -Ok. diff --git a/src/static/media/webvtt/Cou025.vtt b/src/static/media/webvtt/Cou025.vtt deleted file mode 100644 index 78a3a25..0000000 --- a/src/static/media/webvtt/Cou025.vtt +++ /dev/null @@ -1,106 +0,0 @@ -WEBVTT - -00:00.470 --> 00:03.100 -Have you seen or heard anything since then? - -00:03.780 --> 00:04.340 -No. - -00:05.040 --> 00:06.310 -See! - -00:07.120 --> 00:09.190 -It was a state of mind, Lain. - -00:10.060 --> 00:14.340 -I think that you probably won’t see them again, but if you do, don’t get discouraged. - -00:14.950 --> 00:16.180 -You’ll get over it gradually. - -00:17.110 --> 00:18.280 -I won’t get better right away? - -00:18.670 --> 00:24.870 -Hmm. I don’t know. How old were you when you started having problems with them? - -00:25.740 --> 00:26.910 -I was eleven. - -00:27.670 --> 00:34.110 -So it’s been over a year now. During that time, how often did it happen? - -00:34.720 --> 00:37.400 -I don’t remember... many times. - -00:38.820 --> 00:43.800 -Sometimes, even if there doesn't seem to be an explanation for it immediately, these things may go away. - -00:44.670 --> 00:49.550 -But if you decide that they’ve gone away completely and become complacent, there’s a chance that they may come back. - -00:50.110 --> 00:57.940 -I can’t say for certain that that will happen with you, but even if you don’t see them for a while, I’d like you to continue what you’ve been doing up till now. - -00:59.200 --> 01:02.080 -Do you want to stop coming here, Lain? - -01:02.440 --> 01:06.590 -No. I like seeing you. - -01:07.190 --> 01:07.710 -Thank you. - -01:08.540 --> 01:09.870 -I guess that there’s no problem, then. - -01:11.100 --> 01:16.200 -You’re doing well, but you’ll promise me that you will keep coming here? - -01:16.960 --> 01:20.630 -Yes. In exchange, I want you to teach me some things. - -01:21.260 --> 01:21.990 -Why? - -01:22.200 --> 01:23.070 -For homework? - -01:24.020 --> 01:24.630 -Sure. - -01:25.110 --> 01:30.190 -You won’t believe it, but I was pretty sharp in junior high school. - -01:31.000 --> 01:31.560 -Ha, ha. - -01:32.100 --> 01:33.650 -Learning to read and write was tough, though. - -01:34.220 --> 01:40.160 -I don’t mean that. I want to know more about your work. Is that okay? - -01:41.510 --> 01:42.960 -Hmm. - -01:42.980 --> 01:54.450 -I don't think it’s a very good idea, but if you’re really curious, okay. Learning about things that make you curious is a great way to study. - -01:55.240 --> 01:57.950 -But you have to make time for your schoolwork, too. - -01:58.860 --> 02:00.650 -I’ll promise to teach you about my work if you promise to do your schoolwork. - -02:00.650 --> 02:02.200 -Can you promise me that? - -02:03.040 --> 02:04.380 -Yes, I promise. - -02:05.100 --> 02:06.200 -And if you break your promise... - -02:06.830 --> 02:08.120 -I’ll whack you with a blowfish! diff --git a/src/static/media/webvtt/Cou026.vtt b/src/static/media/webvtt/Cou026.vtt deleted file mode 100644 index eae5384..0000000 --- a/src/static/media/webvtt/Cou026.vtt +++ /dev/null @@ -1,118 +0,0 @@ -WEBVTT - -00:00.320 --> 00:03.870 -You are a counselor and a psychiatrist, Touko-san? - -00:04.540 --> 00:07.350 -And a psychiatrist is someone who heals mental illnesses? - -00:07.800 --> 00:16.200 -Uh huh. Put simply, I’m a doctor of the mind. As I mentioned before, mental illness is very complex. - -00:17.040 --> 00:19.960 -What is mental illness? - -00:20.400 --> 00:29.500 -Basically, a person’s mind becomes disturbed for some reason, and the person is unable to continue functioning. - -00:30.390 --> 00:33.100 -What sort of reason, for instance? - -00:34.180 --> 00:35.360 -There can be many reasons. - -00:35.910 --> 00:42.440 -Problems with a living environment or work environment can be reasons. - -00:43.100 --> 00:45.600 -Sudden, psychological shock can also be a reason. - -00:46.040 --> 00:51.280 -The sudden death of a well-loved pet can trigger mental illness. - -00:52.180 --> 00:56.310 -Sometimes people become mentally ill because of something that happens to them physically. - -00:57.220 --> 01:00.060 -A car accident or some other kind of physical trauma can be a cause. - -01:00.540 --> 01:03.740 -Also, people who drink too much can damage the function of their brains. - -01:04.350 --> 01:05.560 -Alcoholism? - -01:05.830 --> 01:06.320 -Exactly. - -01:06.540 --> 01:07.760 -You’ve been studying! - -01:08.840 --> 01:12.950 -If you drink too much, the alcohol content in your blood will rise. - -01:13.550 --> 01:16.510 -You’ve seen drunk people wobble around without balance, haven’t you? - -01:17.420 --> 01:20.990 -They’re in an alcoholic stupor. - -01:21.700 --> 01:24.080 -But normal people aren’t that way, are they? - -01:24.320 --> 01:25.680 -No, they can be. - -01:26.220 --> 01:29.550 -It takes about 24 hours for alcohol to leave the human body. - -01:30.480 --> 01:39.030 -If you drink a lot everyday for a year or so—if you stay drunk long enough—your perception will start to change. - -01:39.960 --> 01:43.200 -Your brain will start to deteriorate. - -01:43.760 --> 01:44.560 -That’s scary. - -01:44.740 --> 01:49.100 -It is scary. I still have some sake now and then, though. - -01:49.900 --> 01:50.840 -Isn’t that dangerous? - -01:51.280 --> 01:51.590 -Ha, ha. - -01:51.670 --> 01:52.420 -Oh, a little bit. - -01:53.440 --> 01:54.920 -And smoking is bad, too. - -01:55.230 --> 01:58.740 -But having a drink with friends every now and then can help relieve stress. - -01:59.750 --> 02:04.280 -Relieving stress is very important for the body’s health. - -02:05.220 --> 02:08.140 -I don’t understand what stress is. - -02:09.950 --> 02:12.760 -Remember when you didn’t like coming here at first? - -02:13.460 --> 02:13.800 -Yes. - -02:14.240 --> 02:17.860 -Stress is what we call the cause of that discomfort. - -02:18.900 --> 02:20.900 -You’re glad that the discomfort is gone, aren’t you? - -02:20.900 --> 02:23.310 -Yes. What other kinds of mental illness are there? - -02:24.230 --> 02:29.140 -Could you excuse me? I’ve been talking so much and I’m a little thirsty. diff --git a/src/static/media/webvtt/Cou027.vtt b/src/static/media/webvtt/Cou027.vtt deleted file mode 100644 index 6ae708d..0000000 --- a/src/static/media/webvtt/Cou027.vtt +++ /dev/null @@ -1,58 +0,0 @@ -WEBVTT - -00:02.150 --> 00:08.720 -I wanted to ask last time, but why do have that kind of hairstyle? - -00:09.980 --> 00:11.640 -It’s weird? - -00:12.020 --> 00:17.080 -No, it’s great! You really look good that way. Is it a popular look at your school? - -00:18.040 --> 00:20.270 -No. It’s just my own style. - -00:21.950 --> 00:29.120 -You mentioned that you want to be like other kids. Why do you have a unique look? - -00:30.180 --> 00:38.000 -It comes from the right, and probably, that’s why it goes out of the left. That’s why... - -00:38.990 --> 00:48.540 -It works a little bit like a magic charm, then. I used have a magic charm, too. - -00:48.920 --> 00:49.720 -You did, Touko-san? - -00:50.060 --> 00:50.480 -Sure. - -00:50.480 --> 00:55.110 -It didn’t have to do with hairstyle, but I used to have a lucky rabbit’s foot. - -00:55.670 --> 01:00.120 -I used to believe that it would keep me safe and happy, and I tied it to my backpack. - -01:00.980 --> 01:03.950 -Looking back, it seems so ghastly. - -01:04.590 --> 01:08.160 -To tie a little bunny’s foot to my backpack. - -01:09.710 --> 01:13.310 -But then again, believing in the rabbit’s foot really made me feel safer. - -01:14.440 --> 01:15.140 -A magic charm? - -01:15.870 --> 01:16.070 -Yeah. - -01:17.750 --> 01:20.070 -Your hair looks really good, though, Lain. - -01:21.220 --> 01:25.300 -If you had a hairstyle like everyone else’s, it wouldn’t be like you. - -01:26.480 --> 01:28.910 -I think you look great the way you are. diff --git a/src/static/media/webvtt/Cou028.vtt b/src/static/media/webvtt/Cou028.vtt deleted file mode 100644 index 40d5fb9..0000000 --- a/src/static/media/webvtt/Cou028.vtt +++ /dev/null @@ -1,70 +0,0 @@ -WEBVTT - -00:00.440 --> 00:08.190 -You know about neurosis? Wow, Lain. You’re going to have to start counseling me. - -00:09.080 --> 00:12.020 -I know the word, not its meaning. - -00:13.030 --> 00:13.950 -What kind of image? - -00:14.900 --> 00:17.950 -The mind changes and becomes distorted? - -00:18.640 --> 00:20.780 -Yes. You’ve got the general idea. - -00:21.580 --> 00:24.260 -That’s awful. You won’t teach me anymore? - -00:24.480 --> 00:24.960 -No. - -00:24.960 --> 00:27.720 -I’m really telling you that you got the general idea. - -00:28.830 --> 00:36.310 -Neurosis is a state in which there is nothing wrong with a person physically, yet the person has irrational fears and perceives threats. - -00:36.680 --> 00:39.270 -This places a lot of stress on the person and makes her feel sick. - -00:40.560 --> 00:42.270 -It’s only inside of their heads? - -00:42.660 --> 00:45.320 -We used to think so. - -00:46.040 --> 00:51.760 -But after a lot of research, we think that an imbalance of the autonomic nerves in the brain is related to it. - -00:52.440 --> 00:55.910 -What I mean is, something is wrong in the body, too. - -00:57.430 --> 01:01.670 -We used to categorize physical symptoms as psychosomatic. - -01:02.310 --> 01:08.160 -But we’ve been finding more and more that conditions we thought were only of the mind involve the body itself. - -01:08.940 --> 01:10.360 -Psychosomatic? - -01:11.180 --> 01:14.060 -Oh, Lain, if you ask so many questions, your head is going to explode! - -01:15.060 --> 01:19.950 -You’ve heard about people who lose a lot of weight because of stress, or go bald? - -01:20.390 --> 01:21.040 -That’s psychosomatic. - -01:22.200 --> 01:24.180 -Lain, you don’t, by any chance... - -01:24.460 --> 01:25.520 -No, I don’t have that kind of problem. - -01:28.430 --> 01:30.020 -Oh, I’m relieved. That was hasty of me! diff --git a/src/static/media/webvtt/Cou029.vtt b/src/static/media/webvtt/Cou029.vtt deleted file mode 100644 index 26619c1..0000000 --- a/src/static/media/webvtt/Cou029.vtt +++ /dev/null @@ -1,61 +0,0 @@ -WEBVTT - -00:00.680 --> 00:03.760 -Who decides the names of diseases? - -00:04.040 --> 00:05.840 -Various doctors. - -00:06.120 --> 00:08.520 -But we have general criterions. - -00:08.840 --> 00:13.540 -We have the ICD and the DSM, which are international standards for the definition of mental diseases. - -00:13.540 --> 00:20.580 -We know that if a person has a certain set of symptoms, we can consult these standards and find the exact name of the disease the person is suffering from. - -00:20.620 --> 00:23.400 -As you know, the mind can be a difficult thing to understand. - -00:23.420 --> 00:28.920 -For that reason, psychiatrists have publications, and we communicate all the time, sharing our data and our understanding of mental illness. - -00:28.920 --> 00:32.440 -We accumulate data and categorize it so that we can diagnose patients as correctly as possible. - -00:32.520 --> 00:35.760 -There’s mental illness you don't understand? Not even you? - -00:36.540 --> 00:41.160 -To tell you the truth, we don’t understand much of this at all. - -00:41.160 --> 00:48.040 -If there has been a successful treatment method for a patient with a certain disease in the past, we can apply that treatment method toward a patient suffering from the same disease in the present. - -00:48.040 --> 00:50.040 -Much of this has to do with experience. - -00:50.300 --> 00:52.500 -You do this even if you don’t know if a person can be cured? - -00:52.500 --> 00:53.080 -Right. - -00:53.080 --> 00:55.300 -You can’t tell if a person will be cured. - -00:55.300 --> 01:00.140 -We can only try our best to heal and help with our experience from the past. - -01:00.140 --> 01:02.960 -That’s usually the case. - -01:03.780 --> 01:09.480 -But from the point of view of the patient, knowing if one will become better is very important. - -01:09.520 --> 01:13.360 -In fact, the understanding of the mechanisms behind getting better is an area of study of its own. - -01:13.700 --> 01:17.640 -I see. It would be so much better if we could understand everything. diff --git a/src/static/media/webvtt/Cou030.vtt b/src/static/media/webvtt/Cou030.vtt deleted file mode 100644 index b91e61d..0000000 --- a/src/static/media/webvtt/Cou030.vtt +++ /dev/null @@ -1,52 +0,0 @@ -WEBVTT - -00:00.220 --> 00:04.640 -Do you have many memories from your childhood? - -00:05.460 --> 00:07.580 -Memories? Do you mean records? - -00:07.940 --> 00:10.420 -Well, memories and records aren’t exactly the same. - -00:10.880 --> 00:12.840 -Don't think about it too much. - -00:13.260 --> 00:16.580 -If you’ve traveled somewhere during summer vacation... - -00:17.280 --> 00:19.720 -I haven’t traveled anywhere during summer vacation. - -00:20.520 --> 00:21.860 -I’m sorry. - -00:22.720 --> 00:29.240 -In my youth, both of my parents worked, so I didn’t get to travel very much. - -00:29.440 --> 00:35.360 -I didn’t like it when I went back to school after vacation and other kids would ask me where I went or what I did during the summer. - -00:35.420 --> 00:38.320 -What’s the difference between a memory and a record? - -00:39.640 --> 00:47.300 -From a medical standpoint, a record is something documented that lists exactly what happened, when and where. - -00:47.880 --> 00:49.520 -A memory is more subjective. - -00:49.540 --> 00:51.300 -It’s what you remember personally. - -00:51.440 --> 00:55.720 -It’s something in your mind that you can access from time to time. - -00:56.380 --> 00:59.740 -But Lain, doesn’t all this stuff bore you? - -01:00.280 --> 01:04.340 -No. How does a memory enter the brain? - -01:05.360 --> 01:11.900 -How? That’s a pretty complicated subject. Are you sure you want to get into it? diff --git a/src/static/media/webvtt/Cou031.vtt b/src/static/media/webvtt/Cou031.vtt deleted file mode 100644 index cb7ac67..0000000 --- a/src/static/media/webvtt/Cou031.vtt +++ /dev/null @@ -1,163 +0,0 @@ -WEBVTT - -00:01.520 --> 00:04.520 -There are different kinds of memories. - -00:04.960 --> 00:07.420 -First of all, there’s one’s memory of oneself. - -00:07.720 --> 00:10.040 -You know what self-understanding is? - -00:10.560 --> 00:14.040 -You know that you are a girl named Lain with a certain face and height and weight? - -00:14.420 --> 00:16.960 -That’s all recorded at a molecular level. - -00:18.200 --> 00:22.900 -Aside from the brain, there are places throughout the body that carry residues of things that have happened. - -00:23.480 --> 00:29.160 -You know that if you get cut, you bleed, but if you wait a while, it scabs over and heals? - -00:29.840 --> 00:33.660 -That has to do with information stored in cells going to work. - -00:34.800 --> 00:38.760 -Take a look at athletes and people who have gone through intense physical training. - -00:38.800 --> 00:40.860 -They seem to do things effortlessly. - -00:41.260 --> 00:44.540 -That’s because their bodies have their own recollection or memory. - -00:45.140 --> 00:48.020 -If you generate a recording, you have a memory? - -00:48.540 --> 00:52.840 -You might be able to say that sometimes, but not always. - -00:53.120 --> 00:55.420 -Humans are haphazard and unpredictable, aren’t they? - -00:55.520 --> 00:58.980 -I don’t remember everything that happened to me as a kid precisely. - -00:59.560 --> 01:05.120 -I have happy memories of times I spent with my family, but my family might not have happy memories of those times at all. - -01:05.380 --> 01:10.800 -I may have had misperceptions in the moment, or I may have remembered things incorrectly and by mistake. - -01:11.700 --> 01:16.100 -But we all walk around with memories, thinking that what we remember is what actually happened. - -01:16.780 --> 01:19.680 -Suppose you meet an old friend that you haven’t seen in a long time. - -01:19.820 --> 01:25.000 -Don’t you remember the things you used to do with that person right away? - -01:25.860 --> 01:30.980 -Your memory has a way of linking things together. - -01:31.720 --> 01:33.880 -If you can’t link things together, you’re sick? - -01:34.760 --> 01:37.700 -Well, there is something called memory impediment. - -01:37.700 --> 01:43.020 -People who have this can’t remember things that happened only moments ago. - -01:43.180 --> 01:45.000 -They have no idea of how things in the past took place. - -01:45.020 --> 01:47.160 -They don’t know what happened and in what order. - -01:47.160 --> 01:52.020 -Since they don’t want anyone to know that they don’t remember things, they often make up stories about the past to fool people. - -01:52.020 --> 01:54.340 -Humans are complex. - -01:54.340 --> 01:55.700 -We do all sorts of things. - -01:56.460 --> 02:00.600 -You’ve seen senile old people on TV shows, haven’t you? - -02:01.280 --> 02:05.100 -As humans, there are some things we can’t do anything about. - -02:05.900 --> 02:07.480 -Things we can’t do anything about? - -02:07.600 --> 02:10.800 -I’m not saying that you’re sick, Lain. - -02:11.060 --> 02:13.900 -There are things we can’t do anything about, aren’t there? - -02:14.440 --> 02:16.420 -We can’t flap our arms and fly, can we? - -02:16.960 --> 02:19.620 -There are memories in the body and the brain? - -02:19.980 --> 02:23.600 -There are still many things we don’t understand. - -02:24.020 --> 02:29.360 -The human brain is made up of many different things. - -02:30.220 --> 02:36.460 -When something is recorded there, there is a change that takes place that becomes the foundation for memories. - -02:37.140 --> 02:38.460 -I don’t understand. - -02:39.240 --> 02:40.540 -Yeah. - -02:40.540 --> 02:44.340 -When you go to high school and college, you can study up on all this stuff. - -02:44.860 --> 02:47.540 -But it’s good that you have a healthy curiosity. - -02:48.000 --> 02:51.320 -I don’t think you’re sick, Lain. - -02:52.200 --> 02:55.680 -I feel that my memories aren’t my memories. - -02:56.280 --> 02:59.700 -Sure! I feel that way sometimes, too. - -03:00.020 --> 03:04.040 -Even when it’s me. But I don’t remember anything else. - -03:04.140 --> 03:07.940 -You’ve just forgotten something, that’s all. - -03:07.960 --> 03:10.660 -Didn’t I say that human beings are haphazard and unpredictable? - -03:10.900 --> 03:15.240 -We remember things the way we want to remember them and often forget what we want to. - -03:15.340 --> 03:16.440 -That’s being human. - -03:16.440 --> 03:17.380 -That’s normal. - -03:17.760 --> 03:18.920 -Normal? - -03:19.060 --> 03:23.660 -Yes. You dwell on things too much, Lain. All those things are normal. diff --git a/src/static/media/webvtt/Cou032.vtt b/src/static/media/webvtt/Cou032.vtt deleted file mode 100644 index 6860d5f..0000000 --- a/src/static/media/webvtt/Cou032.vtt +++ /dev/null @@ -1,118 +0,0 @@ -WEBVTT - -00:00.550 --> 00:05.310 -I wondered if your name has anything to do with R. D. Laing. Oh, it couldn’t, could it? - -00:05.940 --> 00:07.110 -R.D. Laing? - -00:07.580 --> 00:08.440 -It’s a person’s name. - -00:09.200 --> 00:11.040 -An English psychiatrist. - -00:11.390 --> 00:12.540 -He was an unusual person. - -00:13.790 --> 00:16.100 -The titles of some of his books are very interesting. - -00:16.990 --> 00:19.110 -One of them is: "Do you love me? Do you love me? Do you really love me?" - -00:19.900 --> 00:21.390 -"I Love, Love, Really Love"? - -00:21.840 --> 00:34.750 -I read it when I was in college and I don’t remember much of it, but it’s about two lovers—a man and a woman—and the woman asks the man if he loves her. - -00:35.240 --> 00:35.820 -And? - -00:36.470 --> 00:39.500 -Well of course, the man replies that he loves her. - -00:39.960 --> 00:43.680 -But the woman isn't satisfied, and asks more and more questions. - -00:44.390 --> 00:45.470 -I don’t understand. - -00:46.300 --> 00:50.720 -OK. Let’s see. Do you like me, Lain? - -00:51.510 --> 00:52.340 -Yes, I do. - -00:52.920 --> 00:55.160 -More than your dad? More than your mom? - -00:56.070 --> 00:56.310 -Yes. - -00:56.950 --> 00:58.680 -That makes me happy. Do you mean it? - -00:59.300 --> 00:59.870 -Yes I do. - -01:00.360 --> 01:02.680 -Are you happy when you’re here? - -01:03.500 --> 01:06.740 -I don’t really understand, but I probably am. - -01:07.100 --> 01:09.140 -Do you like talking to me? - -01:09.920 --> 01:10.190 -Yes. - -01:10.910 --> 01:12.180 -What do you like about me? - -01:13.220 --> 01:17.320 -You’re kind and you listen to me. - -01:18.180 --> 01:21.750 -Which do you like more? That I’m kind, or that I listen? - -01:22.680 --> 01:23.320 -Which? - -01:23.780 --> 01:24.720 -Yes, which? - -01:25.680 --> 01:26.840 -I like you because you’re kind. - -01:26.840 --> 01:30.240 -How am I kind to you? - -01:31.100 --> 01:33.470 -You don’t get angry and you’re polite. - -01:33.470 --> 01:35.780 -But there are lots of people besides me who don’t get angry at you. - -01:36.280 --> 01:39.220 -There are lots of people who are polite to you. - -01:39.220 --> 01:39.550 -Aren’t there? - -01:40.380 --> 01:42.670 -Do you really like me? - -01:43.500 --> 01:45.150 -I don’t really know. - -01:45.660 --> 01:47.660 -Do I have to think about all this stuff? - -01:48.360 --> 01:49.420 -Let’s stop this. - -01:49.920 --> 01:53.500 -I feel like I might start to not like you. diff --git a/src/static/media/webvtt/Cou033.vtt b/src/static/media/webvtt/Cou033.vtt deleted file mode 100644 index 8c0ea80..0000000 --- a/src/static/media/webvtt/Cou033.vtt +++ /dev/null @@ -1,124 +0,0 @@ -WEBVTT - -00:02.310 --> 00:05.510 -I’m sorry. I just was trying to explain this issue to you. - -00:06.560 --> 00:10.480 -I like you too Lain, though I’m not sure why. - -00:11.300 --> 00:16.070 -I suppose I just enjoy talking to you. That’s it. - -00:17.020 --> 00:21.060 -It’s probably just because I like my job! - -00:22.030 --> 00:24.560 -I just thought it had to do with you, but I guess not. - -00:25.740 --> 00:28.960 -It is enough for me to be able to understand my feelings. - -00:29.940 --> 00:41.060 -I can never read your mind, so I can never know that you like me as much as I like you. - -00:42.590 --> 00:45.420 -Sounds lonely... - -00:46.100 --> 00:50.350 -I’m sorry, but you know, this is one of the ways for me to know that. - -00:51.900 --> 00:56.300 -I’m so happy with you saying that you like me. - -00:57.630 --> 01:00.740 -Are you happy with me saying I like you? - -01:01.480 --> 01:02.540 -Yes, indeed. - -01:03.740 --> 01:10.510 -Yes, that is enough. Lain, I like you. - -01:11.580 --> 01:18.060 -But still, as you can never comprehend all of me, it is impossible for me to know everything about you. - -01:19.040 --> 01:24.140 -If we could know everything about each other, I could be you and vice versa. - -01:24.910 --> 01:30.110 -I mean you do not have to be Lain unless we are different people. - -01:31.380 --> 01:35.760 -I really like Lain even though Lain is hard to understand sometimes. - -01:36.920 --> 01:38.700 -You like the mysterious Lain? - -01:39.340 --> 01:44.670 -Well, I like Lain who I don’t know very well. Of course, that is not all I like. - -01:45.800 --> 01:48.670 -I want to know everything about you!! - -01:49.180 --> 01:53.270 -So do I! But it’s impossible. - -01:54.060 --> 01:54.640 -Impossible? - -01:54.980 --> 01:58.920 -Yes. That is because even I don’t know who I am! - -01:59.920 --> 02:05.880 -Well, I don’t know how to explain this to you. Lain is Lain and I am me. - -02:07.420 --> 02:12.500 -Actually it might be still impossible even if we became the same person. - -02:13.590 --> 02:14.520 -The same person? - -02:14.950 --> 02:18.260 -Yes, Lain and I are exactly the same! - -02:19.340 --> 02:24.060 -We see the same things, have the same ideas and take same actions. - -02:24.960 --> 02:26.630 -Everything. - -02:28.230 --> 02:30.790 -Even our looks are the same! - -02:31.160 --> 02:36.140 -In this situation, there is only an identity that you KEEP, isn't there? - -02:37.400 --> 02:39.530 -Yet even if such an identification is gone. - -02:39.710 --> 02:41.520 -If you thought "Here is Lain," then I cannot exist there. - -02:44.020 --> 02:45.270 -The same thing can happen to you! - -02:46.590 --> 02:49.840 -That is why it’s impossible to understand each other at the same time. - -02:50.920 --> 02:54.200 -But what if you would answer every question I ask. - -02:55.000 --> 02:56.080 -Still, it would be impossible? - -02:56.740 --> 02:59.600 -Right, but they are not all possible questions, are they? - -03:00.480 --> 03:10.640 -I need time to answer those questions and those answers could be changed eventually, such as I used to think one thing, but now I have changed my mind — something like that. - -03:11.550 --> 03:13.780 -It's impossible after all, isn’t it? - -03:14.780 --> 03:22.300 -Yes, I wish I could go inside your mind and answer everything you want to know... diff --git a/src/static/media/webvtt/Cou034.vtt b/src/static/media/webvtt/Cou034.vtt deleted file mode 100644 index 2e620fd..0000000 --- a/src/static/media/webvtt/Cou034.vtt +++ /dev/null @@ -1,100 +0,0 @@ -WEBVTT - -00:00.330 --> 00:01.700 -Are you happy at your school? - -00:02.600 --> 00:04.400 -Yes, I am! - -00:05.130 --> 00:06.080 -What makes you so happy! - -00:07.020 --> 00:10.650 -You know, playing and talking with my best friend. - -00:11.610 --> 00:14.570 -That’s good! It is a good thing to like school, isn’t it? - -00:15.260 --> 00:17.280 -Were you happy? - -00:18.360 --> 00:24.530 -Not really, because I didn’t have many friends there. - -00:26.700 --> 00:29.210 -You feel sad without friends at school. - -00:30.500 --> 00:33.650 -Yeah... I’m sorry - -00:34.820 --> 00:35.360 -About what? - -00:36.040 --> 00:37.650 -That story reminds you of a bad memory. - -00:40.200 --> 00:44.660 -Well, it certainly wasn’t good memory, but that’s okay. - -00:45.250 --> 00:52.920 -I actually feel sorry for my past, but my current job makes me think that was a good experience for me. - -00:53.680 --> 00:54.680 -Good experience? - -00:55.730 --> 00:57.370 -Yes. - -00:58.060 --> 01:05.860 -For example, such an experience is sometimes so useful to analyze the psychology of those who doesn’t want to go to school. - -01:06.820 --> 01:07.620 -It sounds difficult. - -01:08.780 --> 01:16.140 -I’m sorry, I’m talking about myself now! Whenever I talk about my job, I tend to get lost in it. - -01:16.530 --> 01:20.240 -I guess I would make a better patient. - -01:21.730 --> 01:26.370 -Okay, let’s change the subject. Well, what is your best friend like? - -01:26.700 --> 01:30.370 -She is really cheerful and nice to me. I’m really happy around her. - -01:31.000 --> 01:32.370 -What's her name? - -01:33.930 --> 01:34.720 -Misato. - -01:35.250 --> 01:40.130 -Okay... Misato. What do you usually do together? - -01:40.940 --> 01:46.140 -We read books together at her place and I listen to her playing violin sometimes. - -01:46.500 --> 01:48.900 -Wow, she can play the violin. - -01:49.080 --> 01:50.140 -Awesome! - -01:50.850 --> 01:51.740 -She must be a good friend. - -01:52.690 --> 01:55.600 -Why don’t you come over with her next time? - -01:57.160 --> 02:00.020 -But she is so shy. - -02:01.690 --> 02:02.800 -So shy? - -02:03.520 --> 02:08.810 -Maybe... I’ll ask her anyway. I’m guessing she wouldn’t want to. - -02:09.570 --> 02:11.980 -Well, I wish she could. diff --git a/src/static/media/webvtt/Cou035.vtt b/src/static/media/webvtt/Cou035.vtt deleted file mode 100644 index 4b5a45a..0000000 --- a/src/static/media/webvtt/Cou035.vtt +++ /dev/null @@ -1,124 +0,0 @@ -WEBVTT - -00:00.530 --> 00:03.920 -Touko-san, deja vu isn’t an illness, is it? - -00:04.950 --> 00:05.600 -No. - -00:05.770 --> 00:10.920 -You may also feel it’s the first time you’ve seen a scene which you’ve seen before. - -00:11.680 --> 00:14.530 -Both situations have nothing to do with a disease. - -00:15.220 --> 00:19.070 -Even normal people sometimes have an experience of deja vu. - -00:19.710 --> 00:22.120 -What a relief! I feel better now. - -00:23.160 --> 00:27.080 -Do you feel anything else when you experience deja vu? - -00:28.320 --> 00:35.140 -Time is strange for some reason. I can’t figure out if time is fast or slow. - -00:36.530 --> 00:40.180 -Do you feel it’s real or kind of ordinary? - -00:40.920 --> 00:47.210 -Well, it could be... or could not be... I don’t know... maybe not... - -00:47.880 --> 00:51.590 -Is it nebulous? Or you just can’t comprehend... - -00:52.160 --> 00:54.880 -I just feel something is different. - -00:55.700 --> 01:03.950 -Even though I recognize that I am playing in my house, I feel like it isn’t my house. - -01:04.570 --> 01:11.520 -And even though I don’t know where it is, when I play at a park that I’ve never seen, for me it seems like the place I usually go. - -01:12.010 --> 01:18.360 -Strange... Do you feel comfortable or uneasy when you are there? - -01:19.160 --> 01:22.960 -I don’t know, but Lain was laughing when it happened. - -01:24.500 --> 01:27.500 -Not yourself, but Lain? - -01:28.270 --> 01:31.920 -I can’t explain very well, but it was Lain. - -01:33.300 --> 01:35.820 -Where were you at that time? - -01:36.890 --> 01:42.010 -Let’s see... I don’t know, because I was just watching her... - -01:42.220 --> 01:44.920 -I mean, where from did you observe her? - -01:45.610 --> 01:49.920 -Like, were you standing on the ground, or you could you see her from the sky...? - -01:49.920 --> 01:55.120 -Well... I don’t know... It was like I saw myself on the TV... I guess... - -01:55.250 --> 01:59.920 -Lain, are you all right? You don’t have to bring it back by force. I’m sorry. - -02:00.200 --> 02:05.610 -I feel compelled to ask questions... Okay, that’s all for today! - -02:06.190 --> 02:09.080 -How do you express it in technical jargon? - -02:09.080 --> 02:10.960 -No, let’s stop for now. - -02:11.570 --> 02:14.380 -I really want to know about myself! - -02:15.200 --> 02:18.040 -Okay, so this is the last lesson. - -02:19.080 --> 02:28.770 -In technical jargon, we call it "alienation of perception." It means that you experience something as if somebody else experienced it. - -02:30.510 --> 02:33.000 -It’s an illness, isn’t it? - -02:33.760 --> 02:38.880 -There is one called "depersonalization" which is that you cannot feel yourself, but you couldn’t have it. - -02:39.220 --> 02:43.290 -So stop worrying about it. - -02:43.770 --> 02:45.640 -You can’t prove that I don’t. - -02:45.770 --> 02:50.620 -Yes, but it doesn’t worry you. So I can say that you’re not sick. - -02:51.240 --> 02:55.640 -Well, I shouldn’t have said that; it just makes you worried. - -02:56.200 --> 02:57.760 -I guess I made a mistake... - -02:57.980 --> 02:58.840 -No, you didn’t. - -02:59.410 --> 03:05.120 -You didn’t make any mistakes because I insisted that you should answer my question. - -03:06.280 --> 03:11.850 -Still, I want to study a lot in order to be like you, Touko-san. - -03:12.560 --> 03:13.440 -Lain... diff --git a/src/static/media/webvtt/Cou036.vtt b/src/static/media/webvtt/Cou036.vtt deleted file mode 100644 index 142aa1f..0000000 --- a/src/static/media/webvtt/Cou036.vtt +++ /dev/null @@ -1,82 +0,0 @@ -WEBVTT - -00:00.860 --> 00:03.860 -The ego is your sense of who you are, isn’t it? - -00:04.600 --> 00:12.560 -Yes, but more technically phrased, the ego is a part of the mind you use to experience as yourself and to recognize yourself. - -00:12.970 --> 00:13.690 -Do you get it? - -00:14.200 --> 00:14.970 -Not at all. - -00:15.530 --> 00:19.160 -Okay, so you have an idea that you are Lain. - -00:19.960 --> 00:23.090 -In such the structural element, the "EGO" is right there. - -00:24.020 --> 00:28.880 -Linguistically, "myself" describes all of you, right? - -00:29.860 --> 00:36.640 -"Ego" is, however, one of the parts of your mind you use to recognize that all of experiences I have had were mine. - -00:38.000 --> 00:41.410 -Saying "it’s just to realize that you are yourself" is somewhat better to understand? - -00:42.260 --> 00:46.040 -I can get the last part, but it is still beyond my understanding. - -00:46.210 --> 00:48.240 -I like your honesty. - -00:49.570 --> 00:56.380 -So the girl, Lain, has various emotions, such as kindness, loneliness and things like that. - -00:57.060 --> 01:00.240 -Now the EGO is what is left when you don’t feel any emotions. - -01:00.890 --> 01:03.300 -I guess I understand a little... - -01:04.060 --> 01:10.730 -For example, the Lain who woke up this morning and what Lain is now here are the same, right? - -01:11.450 --> 01:11.780 -Right. - -01:12.360 --> 01:14.890 -What Lain will be tomorrow should be the same as those. - -01:15.650 --> 01:16.580 -I guess so. - -01:16.970 --> 01:28.560 -I mean if your ego works properly, you can recognize that you exist continuously and confirm that that existence is "myself." If your ego doesn’t work properly... - -01:28.720 --> 01:29.980 -If it doesn’t? - -01:30.640 --> 01:33.300 -We call such a situation "identity disorder" in the medical field. - -01:34.260 --> 01:39.360 -On the other hand, there is also an "isolation disorder" which means you think that you are not yourself. - -01:39.930 --> 01:42.200 -He, he, they sound like bad diseases, don’t they? - -01:44.010 --> 01:48.840 -Yet anyone your age usually doesn’t complete his or her ego until later. - -01:49.890 --> 01:53.640 -You just can gradually recognize yourself with age. - -01:54.880 --> 01:57.490 -So is it wrong to think that I understand myself at my age? - -01:58.000 --> 02:01.100 -It just happens to be that such things happen all the time. diff --git a/src/static/media/webvtt/Cou037.vtt b/src/static/media/webvtt/Cou037.vtt deleted file mode 100644 index 7c02c03..0000000 --- a/src/static/media/webvtt/Cou037.vtt +++ /dev/null @@ -1,97 +0,0 @@ -WEBVTT - -00:00.000 --> 00:06.000 -If I became sick, what would you do for it? - -00:06.000 --> 00:09.000 -If you were sick? - -00:09.000 --> 00:11.080 -I mean if... - -00:11.510 --> 00:21.460 -Well, since you are still young, I wouldn’t use any medical treatment for such minor symptoms... the way one uses medicine to cure disease. - -00:21.460 --> 00:23.910 -Why wouldn’t you use them? - -00:23.910 --> 00:27.680 -Lain, you already have the power to recover your health from disease. - -00:27.680 --> 00:32.150 -If you depend on using those medicines, however, your body becomes weaker. - -00:32.620 --> 00:37.800 -Usually children shouldn’t take medicine too much anyway. - -00:37.800 --> 00:39.800 -So what are you going to do? - -00:39.800 --> 00:47.060 -Let’s see... I will use psychotherapy to help you, like talking with you as we do now. - -00:47.060 --> 00:48.350 -Just talking? - -00:48.730 --> 00:54.510 -Hmm, it’s difficult to explain it. For example, we have a program to recover people from alcoholism. - -00:54.510 --> 01:00.770 -In this program, they discuss and present what make them drink so much and listen to each other’s stories. - -01:01.460 --> 01:06.860 -We call it "group therapy." I don’t like it though. - -01:06.860 --> 01:08.460 -Why you don’t like it? - -01:08.460 --> 01:14.350 -I think people who regain their health from those group therapies would make the same mistakes later. - -01:15.020 --> 01:21.840 -They think that they can recover themselves from alcoholism simply by group conversation, but when they are alone, they will start drinking again. - -01:22.330 --> 01:24.550 -I’ve seen this happen a lot. - -01:24.550 --> 01:26.660 -So what would you do? - -01:26.660 --> 01:33.130 -I try to talk one-on-one as I do with you, Lain. - -01:33.530 --> 01:34.480 -And? - -01:34.480 --> 01:38.000 -And then, I suggest those patients to think about themselves. - -01:38.420 --> 01:45.910 -I have nothing particular to support them but I try to analyze what they think on neutral ground. - -01:46.510 --> 01:52.660 -This helps them to recognize what is wrong with themselves, and then they try to recover their own health. - -01:52.660 --> 01:54.880 -We call it "non-supportive psychotherapy". - -01:55.820 --> 01:59.820 -If they start recognizing there is a problem, it means they are already fine. - -01:59.820 --> 02:03.600 -Is that enough to recover them from diseases? Sound simple! - -02:03.600 --> 02:06.370 -Right, it sounds so simple. - -02:06.370 --> 02:11.170 -In fact, however, those things are more complicated and difficult to do than you think. - -02:11.170 --> 02:13.170 -Difficult? - -02:14.710 --> 02:21.510 -(yawn) I’m sorry. I need more sleep. - -02:21.510 --> 02:26.600 -You must be tired. Should you take a break? diff --git a/src/static/media/webvtt/Cou038.vtt b/src/static/media/webvtt/Cou038.vtt deleted file mode 100644 index f24d271..0000000 --- a/src/static/media/webvtt/Cou038.vtt +++ /dev/null @@ -1,88 +0,0 @@ -WEBVTT - -00:00.000 --> 00:04.880 -When you get sick in the head, is your head really sick? - -00:04.880 --> 00:10.800 -The brain isn’t the only part of the body involved in mental illness, but it is very important. - -00:10.800 --> 00:15.660 -We know that many types of disease occur because of trauma to the brain. - -00:15.660 --> 00:19.600 -When you get sick in the brain, is your mind is really sick? - -00:19.600 --> 00:26.000 -The human brain is very complex, and there are many things we don’t understand about it. - -00:26.000 --> 00:30.950 -We know a little about where and when things take place in the brain. - -00:30.950 --> 00:32.910 -Memories are stored in the hippocampus. - -00:32.910 --> 00:33.680 -Yes. - -00:33.680 --> 00:41.570 -There is the frontal lobe and the occipital lobe, and there are many other parts of the brain that have different functions. - -00:42.170 --> 00:44.620 -Many chemical processes take place in the brain. - -00:44.620 --> 00:48.440 -When they do, a lot of information is exchanged. - -00:48.680 --> 00:50.570 -That’s how the brain gets sick? - -00:50.570 --> 00:52.860 -Sometimes the brain does get sick that way. - -00:52.860 --> 01:04.640 -If there is an abnormal change in the brain’s chemical process, or if the parts of the brain responsible for processing information are physically damaged and not working properly, there could be disease. - -01:04.640 --> 01:07.570 -We call this kind of disease organic psychosis. - -01:07.570 --> 01:10.350 -Is this hard to understand? - -01:10.350 --> 01:16.600 -I understand. People have their brainwaves tested and have CAT scans to check for it. - -01:16.600 --> 01:21.220 -Are they teaching you that at school already? Did you teach yourself? - -01:21.620 --> 01:27.570 -I checked it out on the Web. I had a test done before, and I was curious. - -01:28.000 --> 01:33.130 -Lain, if you’re doing all this research, you don’t have to see me. - -01:33.130 --> 01:39.400 -No, it’s not like that. I learn a lot from you. It isn’t like the things I learn from books. - -01:40.370 --> 01:43.420 -I’m sorry, Lain. I’m not feeling very well. - -01:45.120 --> 01:47.990 -There is brain research at this research center, isn't there? - -01:48.890 --> 01:49.580 -Yes. - -01:50.260 --> 01:51.530 -What kind of research? - -01:52.000 --> 01:58.420 -I’m not a specialist and I don’t work in that area, so I can’t say anything specifically. - -01:58.420 --> 02:02.330 -But it’s on the Web. All sorts of research takes place. - -02:02.330 --> 02:09.460 -Lain, can I ask you a favor? I’m not feeling very well. Can we end for today? - -02:10.440 --> 02:12.730 -I’m sorry, Touko-san. diff --git a/src/static/media/webvtt/Cou039.vtt b/src/static/media/webvtt/Cou039.vtt deleted file mode 100644 index 1c781d3..0000000 --- a/src/static/media/webvtt/Cou039.vtt +++ /dev/null @@ -1,148 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.550 -What kind of research do you do? - -00:04.060 --> 00:07.800 -Research? I never mentioned that... - -00:07.800 --> 00:09.800 -But this is a research center, isn’t it? - -00:10.750 --> 00:15.240 -I’m still an apprentice. I haven’t done any of my own research. - -00:15.240 --> 00:17.350 -You’re an apprentice after being here for 3 years? - -00:18.440 --> 00:20.000 -How did you know... - -00:20.000 --> 00:23.910 -You told me yourself. - -00:25.310 --> 00:26.950 -I did? - -00:27.370 --> 00:28.730 -I’m sorry. - -00:28.730 --> 00:31.350 -Somehow, I haven’t been feeling very good lately. - -00:32.080 --> 00:35.040 -Could you ask me fewer questions today? - -00:35.040 --> 00:38.730 -Either that, or can we just not talk quite so much? - -00:38.730 --> 00:45.640 -You’re tired, Sensei. Maybe you should sleep a little. - -00:46.330 --> 00:54.660 -Tired? I guess I look that way. You’re right. I must look that way. - -00:55.110 --> 00:58.040 -I feel bad for you Touko-san. - -00:58.060 --> 01:01.370 -You can’t do your own research because you’re busy with miscellaneous tasks. - -01:01.370 --> 01:03.660 -I’m not doing any miscellaneous tasks! - -01:04.750 --> 01:06.240 -I’m sorry. - -01:06.680 --> 01:09.370 -I’m sorry for raising my voice like that. - -01:09.530 --> 01:11.060 -You must be shocked. - -01:11.060 --> 01:14.060 -Did something happen? Touko-san? - -01:14.060 --> 01:15.460 -No, nothing. - -01:15.460 --> 01:19.480 -You’re busy with miscellaneous tasks and can’t do your own research. Does that bother you? - -01:19.480 --> 01:20.930 -How do you know about... ? - -01:20.930 --> 01:22.970 -I found the homepage for this research center. - -01:23.000 --> 01:29.130 -I saw the list of researchers and published dissertations, but I couldn't find you. - -01:29.130 --> 01:34.510 -That’s right. I haven’t published any dissertations since I came here. But I mean to very soon. - -01:34.510 --> 01:38.600 -You’re okay now. You have time for your own research now? - -01:38.600 --> 01:41.530 -What are you saying? What do you mean, Lain? - -01:42.040 --> 01:45.220 -I’m not a research subject, am I? - -01:45.220 --> 01:47.620 -That’s why I’m not useful to you. - -01:48.170 --> 01:50.820 -We can end now if you’d like. - -01:51.200 --> 01:52.820 -I can’t see them anymore. - -01:53.240 --> 01:56.620 -I’m wasting your time. - -01:57.860 --> 01:58.860 -Lain. - -01:59.660 --> 02:04.130 -You’re like a sister to me. - -02:04.130 --> 02:06.910 -I’m the one who said that we could just talk. - -02:06.910 --> 02:09.080 -I don’t think of you as a nuisance. - -02:09.080 --> 02:09.750 -And... - -02:09.750 --> 02:15.550 -There’s nothing for you to worry about, Touko-san. It was a suicide. - -02:15.550 --> 02:17.550 -How do you know about that? - -02:17.550 --> 02:22.130 -I read it in the paper. It was on the bulletin board here, too. - -02:22.600 --> 02:25.910 -I see. You’re right. - -02:26.200 --> 02:28.600 -What kind of research do you do? - -02:30.150 --> 02:38.770 -As I said before, I’m trying to develop a new treatment system using my background as a counselor and psychiatrist. - -02:39.550 --> 02:42.970 -But it looks like I’m failing as a counselor and a psychiatrist right now. - -02:43.180 --> 02:44.350 -Why? - -02:45.020 --> 02:52.080 -I think I’m becoming mentally unstable, now. Just a few moments ago, I...I’m sorry. - -02:52.420 --> 02:55.600 -Touko-san... are you okay? diff --git a/src/static/media/webvtt/Cou040.vtt b/src/static/media/webvtt/Cou040.vtt deleted file mode 100644 index 27022d6..0000000 --- a/src/static/media/webvtt/Cou040.vtt +++ /dev/null @@ -1,88 +0,0 @@ -WEBVTT - -00:00.600 --> 00:01.930 -Touko-san. - -00:02.350 --> 00:03.710 -Good morning. - -00:04.240 --> 00:05.370 -I’m sorry. - -00:05.860 --> 00:09.420 -I stayed up all night preparing my paper. - -00:09.420 --> 00:11.350 -Everything is scattered everywhere. - -00:11.350 --> 00:12.910 -Could you give me a second? - -00:12.910 --> 00:15.750 -Maybe I should go home? - -00:15.750 --> 00:21.350 -It’s all right. Don’t worry. Oh, shoot, I’m out of tea. - -00:21.350 --> 00:24.310 -I can go buy you some. - -00:24.310 --> 00:25.440 -Thanks. - -00:25.800 --> 00:27.420 -But please don’t. I appreciate your feelings. - -00:28.080 --> 00:29.530 -Have a seat, Lain. - -00:29.530 --> 00:32.750 -I thought that maybe I ought to take a break, too. - -00:32.750 --> 00:34.000 -Are you very busy? - -00:34.000 --> 00:35.750 -A little. - -00:36.220 --> 00:39.080 -After that thing happened to Professor Takashima. - -00:39.080 --> 00:41.640 -Now I have to do a lot of his work, too. - -00:41.640 --> 00:44.770 -I’ve had a lot of new clients, to boot. - -00:44.770 --> 00:46.110 -Can you do your research? - -00:46.110 --> 00:49.310 -Lain, don’t mind that stuff too much. - -00:49.770 --> 00:54.750 -It’ll be tough for a while, but I have things to do. - -00:55.350 --> 00:59.570 -For now, I’m just happy just concentrating on my work. - -00:59.570 --> 01:01.040 -You aren’t sad? - -01:01.040 --> 01:07.620 -You’ll understand one day Lain. It’s a wonderful thing to have work that’s fulfilling. - -01:07.620 --> 01:13.000 -I don’t think I would understand. Instead of something like that... - -01:13.000 --> 01:19.110 -Instead of... what do you mean? Did you do something fun lately? - -01:19.110 --> 01:22.460 -Yes. I think everything is going to work out well. - -01:22.880 --> 01:24.280 -What will work out well? - -01:24.280 --> 01:25.750 -Things about me. diff --git a/src/static/media/webvtt/Cou041.vtt b/src/static/media/webvtt/Cou041.vtt deleted file mode 100644 index a578511..0000000 --- a/src/static/media/webvtt/Cou041.vtt +++ /dev/null @@ -1,61 +0,0 @@ -WEBVTT - -00:00.000 --> 00:04.000 -Lain, I’d like to confirm something with you. - -00:04.000 --> 00:08.800 -What were the names of your friends that you talked about? - -00:08.800 --> 00:10.120 -Kyoko-chan. - -00:10.120 --> 00:14.080 -I see. And you have another friend? - -00:14.080 --> 00:15.280 -Misato-chan? - -00:15.280 --> 00:18.600 -Right. Misato-chan. - -00:18.600 --> 00:20.900 -Why do you ask? - -00:20.900 --> 00:23.170 -Never mind. - -00:23.170 --> 00:27.270 -I was just gathering information for a report, and part of it asks about friends you may have. - -00:27.300 --> 00:33.000 -I was double-checking it because I was a bit unsure of myself. - -00:33.000 --> 00:36.670 -Oh. Misato-chan. Is she going to be in your charts, too? - -00:36.670 --> 00:43.770 -No, just her name. Nothing else. Does she live in your neighborhood? - -00:44.220 --> 00:48.420 -Yes. But I can’t walk there. - -00:48.420 --> 00:51.020 -You have to go by car? - -00:51.020 --> 00:57.350 -Yes. When I go to Misato-chan’s home, I always have my mom or dad drive me there. - -00:57.770 --> 00:59.900 -What does your dad do? - -00:59.900 --> 01:04.770 -He goes to work. He’s not around home much. - -01:04.770 --> 01:08.950 -He’s very busy, then. Is he nice to you? - -01:08.950 --> 01:13.400 -He is. He brings me gifts when he goes to work. - -01:13.870 --> 01:16.000 -That’s great, Lain. diff --git a/src/static/media/webvtt/Cou042.vtt b/src/static/media/webvtt/Cou042.vtt deleted file mode 100644 index 3196728..0000000 --- a/src/static/media/webvtt/Cou042.vtt +++ /dev/null @@ -1,73 +0,0 @@ -WEBVTT - -00:00.000 --> 00:04.070 -Lain, I’d like for you to tell me the truth. - -00:04.070 --> 00:05.450 -The truth? - -00:05.450 --> 00:09.050 -You don’t have any friend named Misato-chan, do you? - -00:09.050 --> 00:12.620 -Ha, ha. What do you mean? That’s silly of you. - -00:12.620 --> 00:14.070 -I asked Kyoko-chan. - -00:14.070 --> 00:14.770 -And? - -00:14.770 --> 00:19.570 -She said that there is no Misato-chan. She said, "isn’t that Minako’s mistake?" - -00:19.570 --> 00:22.100 -Is that what you believe? - -00:22.100 --> 00:26.400 -I’m not accusing you, but this is very important. - -00:26.400 --> 00:28.170 -For you to write your report? - -00:28.170 --> 00:32.800 -I won’t deny that. But I’m concerned about you personally. - -00:32.800 --> 00:34.550 -About me personally? - -00:34.550 --> 00:35.500 -Yes. - -00:35.500 --> 00:39.800 -I’m concerned that you might be creating imaginary friends and running away into your own little world. - -00:39.800 --> 00:41.250 -That is a sickness. - -00:41.250 --> 00:46.900 -You said that kids often have that, and that there’s nothing wrong with it, Touko-san. - -00:46.900 --> 00:50.670 -Misato-chan isn't an imaginary friend, either. - -00:50.670 --> 00:56.320 -Then where is she? Can you call her right now? Can you give her a call right now, in front of me? - -00:56.320 --> 00:59.970 -She can’t be contacted. She moved away. - -00:59.970 --> 01:02.550 -Can you do anything to prove to me that she exists? - -01:02.550 --> 01:04.550 -That she exists? - -01:04.550 --> 01:06.820 -Yes. Can you prove that? - -01:06.820 --> 01:08.250 -My memory... - -01:08.250 --> 01:14.370 -Look, Lain, I want to believe you, but I can’t read your mind or tell what your memories are. diff --git a/src/static/media/webvtt/Cou043.vtt b/src/static/media/webvtt/Cou043.vtt deleted file mode 100644 index 3b77a51..0000000 --- a/src/static/media/webvtt/Cou043.vtt +++ /dev/null @@ -1,91 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.200 -It’s not a memory. It’s a record. - -00:02.900 --> 00:10.520 -Well, they’re vaguely similar. But it’s no time to be playing word-games. - -00:11.070 --> 00:13.650 -You would understand if you were connected. - -00:13.650 --> 00:15.900 -Connected to what? - -00:15.900 --> 00:22.900 -Lain, you say that Misato-chan exists, but you are the only person who says so. - -00:22.900 --> 00:25.650 -How can you expect anyone else to understand? - -00:25.650 --> 00:28.150 -There is something wrong with this. - -00:28.150 --> 00:29.520 -How can anyone believe you? - -00:29.520 --> 00:30.670 -You don't believe me, Touko-san? - -00:30.670 --> 00:33.500 -Unfortunately, no. - -00:33.950 --> 00:38.920 -But that’s because I’ve looked very closely into this personally, and all the facts point against it. - -00:38.920 --> 00:44.170 -If you could show me some objective proof that that I am mistaken, that would be different. - -00:44.520 --> 00:48.020 -How would I prove that she exists? - -00:48.020 --> 00:49.350 -How? - -00:49.350 --> 00:52.700 -Well show me other people who’ve known her. - -00:52.700 --> 00:55.370 -Show me her identification or birth certificate or something. - -00:55.370 --> 00:58.970 -More than anything else, show me that she’s a human being that exists and walks around in a human body. - -00:58.970 --> 01:01.380 -She doesn’t exist if she doesn’t have a human body? - -01:01.380 --> 01:04.150 -Of course not! She’s not a ghost, is she? - -01:04.150 --> 01:07.710 -Professor Takashima didn’t exist, then? - -01:08.310 --> 01:10.550 -But he did exist. - -01:10.550 --> 01:12.300 -He had a body before he died. - -01:12.300 --> 01:13.900 -He lived and walked around in a human body. - -01:13.900 --> 01:15.490 -There is ample evidence that he existed. - -01:15.500 --> 01:17.940 -Many people who are alive now knew him. - -01:18.380 --> 01:20.480 -There are records of his existence. - -01:20.920 --> 01:22.730 -Let’s cool it, Lain. - -01:22.730 --> 01:26.000 -I’m not here to have a question and answer session with you. - -01:26.370 --> 01:28.160 -I’m here to treat you. - -01:28.600 --> 01:31.720 -I do not acknowledge Misato-chan’s existence. diff --git a/src/static/media/webvtt/Cou044.vtt b/src/static/media/webvtt/Cou044.vtt deleted file mode 100644 index d67dd07..0000000 --- a/src/static/media/webvtt/Cou044.vtt +++ /dev/null @@ -1,58 +0,0 @@ -WEBVTT - -00:01.160 --> 00:08.250 -I’m sorry about last session, Lain. I don’t know myself why I became so angry. - -00:08.250 --> 00:09.850 -It’s okay, Touko-san. - -00:09.850 --> 00:13.810 -It’s just that aside from this issue with Misato-chan, I can’t see anything wrong with you. - -00:14.340 --> 00:16.700 -We’ll have to work on it slowly. - -00:16.700 --> 00:18.650 -Will you finish your paper in time? - -00:18.650 --> 00:21.290 -I’m not putting anything about you in my paper. - -00:21.290 --> 00:23.450 -I’ll use information from other clients. - -00:23.820 --> 00:27.330 -It’s not your problem anyway, Lain. - -00:28.760 --> 00:30.360 -You’re gentle, Lain. - -00:30.610 --> 00:32.040 -I’m not gentle. - -00:32.570 --> 00:34.570 -I have to apologize. - -00:35.140 --> 00:40.420 -I should have apologized right away, but I’ve done some things behind your back. - -00:40.930 --> 00:44.660 -I lied and told some of your friends that I’m a private tutor. - -00:44.660 --> 00:46.440 -I asked your friends about you. - -00:47.140 --> 00:49.250 -I needed the information for my report. - -00:49.250 --> 00:55.730 -I should have these things with more benevolent intentions, but... are you angry? - -00:56.460 --> 00:57.620 -I’m sorry, Lain. - -00:57.620 --> 01:00.770 -But I did it for y... No, I didn’t do it for you. - -01:01.400 --> 01:03.650 -I did it for my work. diff --git a/src/static/media/webvtt/Cou045.vtt b/src/static/media/webvtt/Cou045.vtt deleted file mode 100644 index 20ebb7b..0000000 --- a/src/static/media/webvtt/Cou045.vtt +++ /dev/null @@ -1,31 +0,0 @@ -WEBVTT - -00:01.500 --> 00:03.690 -Who did you see, Touko-san? - -00:04.720 --> 00:07.200 -Kyoko-chan and Kaori-chan. - -00:07.940 --> 00:12.810 -I know Kyoko-chan, but who is Kaori-chan? - -00:14.040 --> 00:16.420 -She’s your classmate. - -00:17.080 --> 00:20.400 -You aren’t going to ask me to prove her existence now, are you? - -00:20.400 --> 00:21.660 -I’ll feel bad. - -00:21.660 --> 00:23.660 -Please don’t be hard on me that way, Lain. - -00:24.060 --> 00:26.330 -You’re confident, Touko-san. - -00:27.090 --> 00:28.160 -About what? - -00:28.640 --> 00:32.320 -You’re confident that that person exists. I can’t prove that she exists. diff --git a/src/static/media/webvtt/Cou046.vtt b/src/static/media/webvtt/Cou046.vtt deleted file mode 100644 index 3ed0704..0000000 --- a/src/static/media/webvtt/Cou046.vtt +++ /dev/null @@ -1,118 +0,0 @@ -WEBVTT - -00:00.440 --> 00:02.820 -You seem to be busy lately, Touko-san. - -00:03.450 --> 00:04.210 -Yes. - -00:04.210 --> 00:09.360 -The deadline for my paper is coming up, and although I’ve been waiting for a long time for someone to relieve me with some of my work, it hasn’t happened. - -00:09.360 --> 00:11.260 -That means more work for me. - -00:11.260 --> 00:12.730 -Sure, it’s a little hard. - -00:12.730 --> 00:13.900 -Is it tiresome? - -00:14.330 --> 00:18.000 -I’m okay, Lain. You don’t have to worry about it. - -00:18.420 --> 00:20.160 -I’m worried about you, Touko-san. - -00:20.600 --> 00:26.300 -About me? Well thank you. I appreciate your feelings. - -00:26.640 --> 00:30.080 -Will you continue to like me, Touko-san? - -00:30.740 --> 00:37.890 -Of course! You’re my little sister, remember? I don’t have any reasons not to like you. - -00:38.210 --> 00:41.130 -But I made you mad. - -00:42.890 --> 00:44.060 -That’s true. - -00:44.060 --> 00:51.810 -But that was just because you’re growing intellectually, we were having a discussion and we had a difference of opinion. - -00:51.810 --> 00:53.380 -But let’s leave that alone. - -00:53.800 --> 00:57.040 -There’s no reason for me to dislike you because we had a difference of opinion. - -00:57.040 --> 01:00.640 -Do you have important people in your life aside from me? - -01:01.320 --> 01:02.340 -Sure. - -01:02.620 --> 01:05.420 -I have friends, too. - -01:05.420 --> 01:09.340 -You have people in your life that are important to you aside from me, don’t you? - -01:09.980 --> 01:18.780 -I do. But if I had to choose one person, I would choose you. - -01:19.700 --> 01:23.840 -That makes me happy. Then, I’ll pick you, too. - -01:23.840 --> 01:29.890 -Really? But is that okay? What about the other important people in your life? - -01:29.890 --> 01:38.460 -If you chose me and I didn’t choose you, won’t you feel sad? I don’t want you to feel sad. - -01:38.460 --> 01:41.130 -Won’t your lover be sad? - -01:43.820 --> 01:53.320 -Huh? Um, well, yes. Are you interested in my private life, Lain? - -01:54.050 --> 01:55.890 -I want to know about you. - -01:56.450 --> 02:01.800 -Things having to do about my lover are a secret. You’re a bit young for that kind of thing, anyway. - -02:01.800 --> 02:03.380 -Too young? - -02:03.880 --> 02:09.880 -You may eventually have a love life of your own. But love is a pretty complicated thing. - -02:09.880 --> 02:11.050 -Complicated? - -02:11.480 --> 02:11.860 -Yes. - -02:11.860 --> 02:13.660 -I have by doubts and worries about it, too. - -02:13.660 --> 02:15.230 -I’m human. - -02:15.230 --> 02:18.160 -I make mistakes and have regrets. - -02:18.160 --> 02:20.840 -Even now I have feelings that I can’t figure out. - -02:21.370 --> 02:22.190 -See? - -02:22.190 --> 02:23.210 -It’s complicated. - -02:23.890 --> 02:25.210 -Complicated... diff --git a/src/static/media/webvtt/Cou047.vtt b/src/static/media/webvtt/Cou047.vtt deleted file mode 100644 index 3b4cb56..0000000 --- a/src/static/media/webvtt/Cou047.vtt +++ /dev/null @@ -1,97 +0,0 @@ -WEBVTT - -00:00.460 --> 00:03.060 -You’re Lain, aren’t you? - -00:03.610 --> 00:06.810 -Sure I am. You’re being silly, Touko-san. - -00:07.080 --> 00:07.730 -Oh, I’m sorry. - -00:07.730 --> 00:08.540 -You’re right. - -00:09.120 --> 00:11.660 -I’m a little tired. - -00:12.240 --> 00:14.180 -I’m sorry for asking goofy questions. - -00:15.140 --> 00:17.970 -You seem to be really doing well lately, Lain. - -00:17.970 --> 00:20.050 -I haven’t changed. - -00:20.940 --> 00:24.730 -We’ve been having counseling sessions for a long time. - -00:25.160 --> 00:30.980 -A long time? Do you mean many times? Have I been seeing you too much? - -00:33.550 --> 00:37.940 -Maybe. What do you think? - -00:38.580 --> 00:41.050 -There seem to be many areas left. - -00:41.400 --> 00:45.730 -What do you mean? Don't tell me things I can’t understand. - -00:45.730 --> 00:51.210 -What’s wrong? Are you angry? You can’t control your emotions? - -00:51.210 --> 00:56.300 -Why are you asking me this! Look, Lain. Are you playing with me? Are you mocking me? - -00:56.300 --> 00:57.240 -No. - -00:57.240 --> 01:01.950 -This counseling session is for YOU. You come here to see me. Not the other way around. - -01:01.950 --> 01:07.330 -But you said that I could talk. I want to know about you. - -01:07.330 --> 01:12.300 -How is finding out about me going to help you? Do you just want to irritate me? - -01:12.740 --> 01:14.660 -You really didn’t like my questions? - -01:14.660 --> 01:15.420 -No, I didn’t! - -01:15.420 --> 01:17.310 -I want you to leave things alone. - -01:17.310 --> 01:19.610 -I don’t want you trying to get inside my head. - -01:20.180 --> 01:21.200 -That’s what I think. - -01:21.780 --> 01:23.650 -Aren’t you sad to be alone? - -01:23.650 --> 01:24.820 -I’m not alone! - -01:24.820 --> 01:26.380 -I am not you! - -01:26.380 --> 01:28.250 -You are Lain, aren’t you? - -01:29.290 --> 01:34.800 -You’re the proper, reserved, sad girl without much self-confidence, aren’t you? - -01:34.800 --> 01:40.370 -No, that’s not me. I think my personality is much different from that. - -01:40.370 --> 01:41.480 -Then who are you? - -01:41.740 --> 01:43.920 -I’m... Lain. diff --git a/src/static/media/webvtt/Cou048.vtt b/src/static/media/webvtt/Cou048.vtt deleted file mode 100644 index 92ece42..0000000 --- a/src/static/media/webvtt/Cou048.vtt +++ /dev/null @@ -1,85 +0,0 @@ -WEBVTT - -00:00.680 --> 00:03.500 -I felt really good today. - -00:04.020 --> 00:06.820 -That’s really great, Touko-san. - -00:07.310 --> 00:14.560 -I’m starting to feel worse, though. I can’t tell what’s bothering me. - -00:15.070 --> 00:18.890 -Is it something vague? Something about feeling dormant? - -00:19.680 --> 00:24.890 -When you’re feeling happy, don’t you sometimes feel worried about when it might come to an end? - -00:25.330 --> 00:29.720 -Is that a symptom of an intermittent flow of thought? - -00:30.520 --> 00:33.470 -I can’t imagine myself being happy. - -00:33.470 --> 00:35.530 -You can imagine yourself being unhappy? - -00:36.610 --> 00:40.430 -I suppose. But I can’t get rid of the worry. - -00:40.830 --> 00:42.730 -Is there something I can do? - -00:42.730 --> 00:47.770 -What would I want to seek for from you? Why me from you? - -00:47.770 --> 00:49.260 -Are you too proud to tell me? - -00:49.260 --> 00:54.890 -It has nothing to do with pride. Why don’t you tell me what you think is going on with me. - -00:54.890 --> 00:57.120 -You’re just Touko-san. You’re yourself. - -00:57.120 --> 01:07.200 -That’s right. I better get to my reports. If you want, you can stay around here, but I have to go. - -01:07.630 --> 01:08.480 -Why? - -01:08.480 --> 01:10.180 -Because there is something I have to do right now. - -01:10.180 --> 01:11.540 -There is something that I can only do now. - -01:11.540 --> 01:13.600 -I have to continue my research. - -01:13.600 --> 01:15.230 -That makes you happy? - -01:15.230 --> 01:19.290 -Yes, it does. My number one goal is to continue doing the research that I enjoy. - -01:19.610 --> 01:21.260 -So that’s number one? - -01:21.260 --> 01:22.000 -No. - -01:22.000 --> 01:23.150 -That’s not what I mean. - -01:23.610 --> 01:26.250 -Seeing you is very important, too. - -01:23.610 --> 01:29.470 -It’s very important to me that everything goes well. - -01:29.470 --> 01:31.880 -But I have to do things in order. - -01:32.170 --> 01:33.390 -I’m glad. diff --git a/src/static/media/webvtt/Cou049.vtt b/src/static/media/webvtt/Cou049.vtt deleted file mode 100644 index ef1dc9e..0000000 --- a/src/static/media/webvtt/Cou049.vtt +++ /dev/null @@ -1,67 +0,0 @@ -WEBVTT - -00:00.410 --> 00:02.160 -Are you troubled about anything? - -00:02.160 --> 00:05.070 -No, I’m not. How about you, Touko-san? - -00:05.440 --> 00:09.610 -Sometimes. I feel like something bad might happen. - -00:09.610 --> 00:11.200 -You’re feeling delusional? - -00:11.200 --> 00:16.200 -Yes, but unlike with you, it isn’t a strange delusional problem with perception. - -00:16.200 --> 00:17.740 -I wonder if that’s true. - -00:17.740 --> 00:22.410 -But how about the feelings you have about that man? - -00:22.410 --> 00:23.630 -Aren’t those feelings delusional? - -00:23.630 --> 00:25.720 -Who is "that man"? - -00:25.720 --> 00:28.350 -The man you’re thinking about right now. - -00:29.680 --> 00:32.540 -You can tell what I’m thinking. - -00:32.540 --> 00:33.740 -Wow! - -00:33.740 --> 00:35.640 -You have super powers? - -00:35.640 --> 00:38.520 -Is that why you poke fun at me sometimes? - -00:38.520 --> 00:41.850 -But I’m connected to you, Touko-san. - -00:41.850 --> 00:44.620 -"Connected"? In what way? - -00:44.620 --> 00:47.770 -It probably wouldn’t make sense if I tried to explain it to you. - -00:47.770 --> 00:50.640 -That’s called psychosis, Lain. - -00:50.640 --> 00:55.800 -Believing yourself to be a unique "chosen" person or that you are God. - -00:55.800 --> 00:57.150 -That’s a serious disease. - -00:57.150 --> 01:00.570 -I’m sick. How about you? - -01:00.570 --> 01:03.720 -I’m not sick. I’m... diff --git a/src/static/media/webvtt/Cou050.vtt b/src/static/media/webvtt/Cou050.vtt deleted file mode 100644 index a36d436..0000000 --- a/src/static/media/webvtt/Cou050.vtt +++ /dev/null @@ -1,67 +0,0 @@ -WEBVTT - -00:00.120 --> 00:02.750 -You don’t have much energy. - -00:03.480 --> 00:05.130 -I’m tired. - -00:05.130 --> 00:07.310 -Are you tired of doing miscellaneous chores? - -00:07.310 --> 00:11.050 -Is someone having you do waste your time with small tasks? - -00:11.050 --> 00:14.750 -Yeah. I do feel that way sometimes. - -00:14.750 --> 00:19.130 -Do you think you have some kind of psychological condition? - -00:19.130 --> 00:21.930 -Do you think you might have caught something from me? - -00:21.930 --> 00:23.200 -Ha, ha. - -00:23.200 --> 00:29.950 -Why do you think I’m like this? I know and understand the things I am talking about. - -00:29.950 --> 00:35.720 -You’re okay, Touko-san. You’ll be better by tomorrow. - -00:35.720 --> 00:37.420 -I’ll be "better"? - -00:37.420 --> 00:39.770 -You’ll be in a world where you don’t suffer. - -00:40.490 --> 00:45.790 -Am I myself when I am by myself or when I’m with you? - -00:45.790 --> 00:50.250 -You’re always yourself. Even when you doubt my existence. - -00:50.250 --> 00:52.590 -I doubt your existence? - -00:52.590 --> 00:55.470 -Yes. You don’t want to believe that I exist. - -00:55.470 --> 00:58.960 -Why would I have a problem like that because I treat you? - -00:58.960 --> 01:04.780 -There is information you wouldn’t understand now. You aren’t doing well psychologically. - -01:05.290 --> 01:10.510 -"Information I wouldn’t understand now?" But I want to know now. - -01:10.510 --> 01:15.320 -Yes. But it would be too difficult for you to understand now. - -01:16.170 --> 01:20.830 -You’re thinking about what’s best for me, aren’t you, Lain? - -01:20.830 --> 01:25.710 -Of course, I am. I like you. diff --git a/src/static/media/webvtt/Cou051.vtt b/src/static/media/webvtt/Cou051.vtt deleted file mode 100644 index 3e699c9..0000000 --- a/src/static/media/webvtt/Cou051.vtt +++ /dev/null @@ -1,85 +0,0 @@ -WEBVTT - -00:00.000 --> 00:01.080 -A rumor? - -00:01.550 --> 00:02.800 -Does it bother you? - -00:03.600 --> 00:05.950 -Someone is spreading rumors about you? - -00:06.300 --> 00:07.850 -Is that a delusion of persecution? - -00:07.850 --> 00:09.960 -Some other kind of delusion? - -00:10.490 --> 00:14.840 -Well, it might just be a lack of self-confidence. - -00:16.360 --> 00:20.750 -Why do you have so much confidence, even when you’re sick, Lain? - -00:20.750 --> 00:32.040 -I’m sick. What’s the name of my disease? Schizophrenia? Manic depression? Something else? - -00:32.860 --> 00:42.060 -You aren’t any of those things. - -00:42.060 --> 00:44.410 -You have pathomimesis. - -00:44.410 --> 00:46.800 -That’s what you call the imitation of disease. - -00:46.800 --> 00:49.120 -Then I’m not really sick? - -00:49.120 --> 00:53.680 -You don’t exist. - -00:53.680 --> 00:56.190 -I just think that you’re here. - -00:56.190 --> 00:57.620 -Everyone has been tricked. - -00:57.620 --> 00:59.280 -We’ve all been shown some glimpse of your existence. - -00:59.280 --> 01:03.680 -That’s why no one really remembers you. - -01:03.680 --> 01:13.000 -It’s not like you to be mad. Some of us don’t seem to exist, though. Which are you? - -01:13.530 --> 01:16.160 -I think that you think I’m here. - -01:16.160 --> 01:18.560 -You’re a delusion that created a delusion. - -01:18.560 --> 01:24.400 -All these things, your constructed diseases and your voices, are delusions. - -01:24.400 --> 01:26.780 -How about me? Am I here? - -01:26.780 --> 01:30.360 -That’s why I have to heal you! - -01:30.360 --> 01:35.400 -You’re so serious. But you’re an elite. You’ve been chosen. - -01:35.400 --> 01:36.110 -That’s right. - -01:36.110 --> 01:38.440 -I’m trying hard to be here. - -01:38.440 --> 01:45.640 -I would rather have been out playing and fooling around, but I’ve gone to school and studied and worked hard to get here. - -01:45.640 --> 01:47.640 -I feel sorry for you, Touko-san. diff --git a/src/static/media/webvtt/Cou052.vtt b/src/static/media/webvtt/Cou052.vtt deleted file mode 100644 index cc9e882..0000000 --- a/src/static/media/webvtt/Cou052.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.240 -Are you okay, Touko-san. - -00:03.070 --> 00:09.200 -Yes. I’m hanging in there. Sometimes I don’t feel so good. - -00:09.690 --> 00:14.280 -You think too much, Touko-san. You pay too much attention to what’s going on around you. - -00:15.100 --> 00:19.900 -I have things to think about. Work. Romance. - -00:19.900 --> 00:21.950 -Is a love life necessary? - -00:22.570 --> 00:26.320 -I think it’s a very important part of life. - -00:26.320 --> 00:29.260 -Does a woman need a man? - -00:29.710 --> 00:36.060 -Not just because she’s a woman. If that were true, a man would need a woman. - -00:36.060 --> 00:44.080 -It would be obsessive to think that a woman must have a man, Touko-san. You can live on your own. - -00:44.780 --> 00:55.160 -But wouldn’t that be sad? I can’t stand to be sad. How about you? How about you, Lain? - -00:55.710 --> 00:58.140 -I would get sad, too. diff --git a/src/static/media/webvtt/Cou053.vtt b/src/static/media/webvtt/Cou053.vtt deleted file mode 100644 index e586d43..0000000 --- a/src/static/media/webvtt/Cou053.vtt +++ /dev/null @@ -1,79 +0,0 @@ -WEBVTT - -00:00.500 --> 00:03.460 -You don’t want to do anything? How about your research? - -00:03.460 --> 00:06.480 -No one will want to read my paper anyway. - -00:06.480 --> 00:10.680 -What’s wrong? It’s not like you to play a victim. - -00:10.680 --> 00:13.500 -Not like me! What am I? - -00:13.840 --> 00:15.440 -You’re just Touko-san, Touko-san. - -00:15.440 --> 00:19.320 -I’ve been severed from society. I’m no longer connected. - -00:19.320 --> 00:28.000 -That’s not true. I’m connected to you. I’m connected to society. That’s why you’re connected, too. - -00:28.000 --> 00:29.810 -Something’s wrong with me, isn’t there? - -00:29.810 --> 00:33.640 -The times when I talk to you and the time I spend with everything else are separate. - -00:33.640 --> 00:37.490 -From your point of view, my life must be a contradiction. - -00:38.060 --> 00:40.120 -My point of view? - -00:40.120 --> 00:43.720 -From your point of view, this world doesn’t exist. - -00:43.720 --> 00:48.640 -No. That’s not true. I’m connected to this world. - -00:48.640 --> 00:50.550 -I can’t take it anymore. - -00:50.550 --> 00:53.360 -I can’t even stand this moment. - -00:53.360 --> 00:55.780 -That’s not all. - -00:55.780 --> 00:59.030 -My memories of tomorrow...the memories I’ll have in the future are in disarray. - -00:59.030 --> 01:00.750 -Is this a delusion caused by worrying? - -01:00.750 --> 01:03.740 -Am I experiencing something I shouldn’t be experiencing? - -01:03.740 --> 01:05.260 -That’s you, isn’t it? - -01:05.260 --> 01:08.080 -It is me! Because it is me! - -01:08.080 --> 01:11.020 -Wouldn’t you be better off if you were just being yourself? - -01:11.020 --> 01:15.140 -I can’t understand my sense of self from moment to moment! - -01:15.140 --> 01:18.800 -The judgment you have exactly at that moment is you, Touko-san. The rest is... - -01:18.800 --> 01:19.780 -The rest is... - -01:19.780 --> 01:21.260 -Ordinary data. diff --git a/src/static/media/webvtt/Dc1011.vtt b/src/static/media/webvtt/Dc1011.vtt deleted file mode 100644 index 73ce7cb..0000000 --- a/src/static/media/webvtt/Dc1011.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:05.480 --> 00:09.830 -Lain! Why didn't you wait for us?! diff --git a/src/static/media/webvtt/Dc1012.vtt b/src/static/media/webvtt/Dc1012.vtt deleted file mode 100644 index 6bb1d4c..0000000 --- a/src/static/media/webvtt/Dc1012.vtt +++ /dev/null @@ -1,43 +0,0 @@ -WEBVTT - -00:00.260 --> 00:02.830 -You said we could visit you after school. - -00:02.930 --> 00:03.850 -Really? - -00:03.850 --> 00:05.960 -Listen, Lain! - -00:06.140 --> 00:08.260 -You play games all the time. - -00:09.110 --> 00:14.180 -You never listen during classes... and then you get 100% on tests. - -00:14.500 --> 00:15.570 -It's not relevant. - -00:15.860 --> 00:17.620 -It is! It is! - -00:17.820 --> 00:20.450 -Lain, your dad is cool, isn't he? - -00:20.940 --> 00:21.650 -Will we see him today? - -00:21.980 --> 00:23.030 -I'm sorry. - -00:23.220 --> 00:24.200 -I really can't today. - -00:24.680 --> 00:25.630 -Sorry. - -00:30.020 --> 00:32.020 -I'm sure she's free... - -00:32.250 --> 00:33.700 -Yeah... diff --git a/src/static/media/webvtt/Dc1014.vtt b/src/static/media/webvtt/Dc1014.vtt deleted file mode 100644 index 5e87eb7..0000000 --- a/src/static/media/webvtt/Dc1014.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:00.000 --> 00:01.240 -"LAIN" - -00:01.240 --> 00:03.560 -That's what I don't get. - -00:03.560 --> 00:09.400 -If we use packet filtering here... then debugging won't be necessary. - -00:13.120 --> 00:14.540 -No, not that... - -00:14.540 --> 00:15.740 -I wanted... - -00:17.160 --> 00:19.320 -Don't enter without permission! - -00:21.820 --> 00:23.040 -My friend is with me. - -00:23.300 --> 00:24.680 -We are always together. - -00:25.920 --> 00:27.160 -All right. diff --git a/src/static/media/webvtt/Dc1018.vtt b/src/static/media/webvtt/Dc1018.vtt deleted file mode 100644 index 23f31e0..0000000 --- a/src/static/media/webvtt/Dc1018.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:27.500 --> 00:30.740 -By the way, I recently found a super tasty cake! - -00:30.740 --> 00:32.580 -Really? I love chocolate. - -00:32.580 --> 00:34.560 -Believe me, it's really good. diff --git a/src/static/media/webvtt/Dc1019.vtt b/src/static/media/webvtt/Dc1019.vtt deleted file mode 100644 index d885231..0000000 --- a/src/static/media/webvtt/Dc1019.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:01.970 --> 00:02.870 -Computer? - -00:03.290 --> 00:04.120 -A friend? - -00:06.740 --> 00:08.960 -I never thought about it that way. - -00:09.220 --> 00:11.310 -We were talking about it before. diff --git a/src/static/media/webvtt/Dc1020.vtt b/src/static/media/webvtt/Dc1020.vtt deleted file mode 100644 index d9e8d8e..0000000 --- a/src/static/media/webvtt/Dc1020.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.320 --> 00:01.200 -What's that? - -00:01.360 --> 00:01.990 -This? - -00:02.690 --> 00:03.460 -Bike-chan. - -00:03.930 --> 00:04.740 -A puppy. - -00:05.060 --> 00:05.980 -My stuffed toy. - -00:08.310 --> 00:14.240 -I wouldn't call him a friend, but... - -00:14.880 --> 00:18.470 -He was already there when I was born. - -00:19.430 --> 00:20.850 -Right, Bike-chan? diff --git a/src/static/media/webvtt/Dc1021.vtt b/src/static/media/webvtt/Dc1021.vtt deleted file mode 100644 index 1839ce7..0000000 --- a/src/static/media/webvtt/Dc1021.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:08.850 --> 00:12.530 -I wouldn't say I like meetings with Touko-sensei... - -00:12.530 --> 00:14.450 -Sure, it's nice. - -00:16.280 --> 00:18.830 -But I dislike it here. - -00:19.080 --> 00:20.750 -Why is that? - -00:23.850 --> 00:25.450 -I just do. diff --git a/src/static/media/webvtt/Dc1026.vtt b/src/static/media/webvtt/Dc1026.vtt deleted file mode 100644 index c4e2e1c..0000000 --- a/src/static/media/webvtt/Dc1026.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:03.420 --> 00:05.740 -I'm going back to you. diff --git a/src/static/media/webvtt/Dc1027.vtt b/src/static/media/webvtt/Dc1027.vtt deleted file mode 100644 index 6819eda..0000000 --- a/src/static/media/webvtt/Dc1027.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:01.310 --> 00:01.970 -... and so... - -00:01.970 --> 00:03.850 -...when we want to increase the processing speed - -00:03.850 --> 00:06.080 -...we must take into account the fact that the processor can overheat. - -00:06.510 --> 00:09.790 -You can keep the CPU cool by using a Peltier element... - -00:10.160 --> 00:12.790 -but it's still a problem... diff --git a/src/static/media/webvtt/Dc1028.vtt b/src/static/media/webvtt/Dc1028.vtt deleted file mode 100644 index 61c686b..0000000 --- a/src/static/media/webvtt/Dc1028.vtt +++ /dev/null @@ -1,43 +0,0 @@ -WEBVTT - -00:00.390 --> 00:01.780 -Savant syndrome? - -00:02.160 --> 00:03.560 -Am I sick? - -00:03.560 --> 00:06.420 -I didn't say it's about you, Lain. - -00:06.420 --> 00:09.310 -Only that there are people who suffer from that sickness. - -00:10.020 --> 00:11.620 -If it's not about me... - -00:11.620 --> 00:13.330 -then why are talking about it? - -00:13.860 --> 00:18.410 -There are other children who may learn from your example. - -00:20.010 --> 00:21.310 -I'm only myself. - -00:21.620 --> 00:23.000 -Not other children. - -00:25.010 --> 00:26.000 -That's true! - -00:26.910 --> 00:28.300 -I'm sorry, Lain. - -00:32.900 --> 00:34.130 -What's wrong, Lain? - -00:34.710 --> 00:36.510 -Why are you calling me Lain? - -00:39.780 --> 00:41.580 -Who are you? diff --git a/src/static/media/webvtt/Dc1033.vtt b/src/static/media/webvtt/Dc1033.vtt deleted file mode 100644 index 4ea8522..0000000 --- a/src/static/media/webvtt/Dc1033.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:13.350 --> 00:15.300 -When we are not connected to the network... - -00:16.140 --> 00:17.100 -...we are all alone. - -00:18.020 --> 00:19.000 -Do you understand that? diff --git a/src/static/media/webvtt/Dc1035.vtt b/src/static/media/webvtt/Dc1035.vtt deleted file mode 100644 index e97f500..0000000 --- a/src/static/media/webvtt/Dc1035.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:05.820 --> 00:06.810 -Stop it! - -00:07.100 --> 00:08.830 -You have to be still! diff --git a/src/static/media/webvtt/Dc1036.vtt b/src/static/media/webvtt/Dc1036.vtt deleted file mode 100644 index cf914d2..0000000 --- a/src/static/media/webvtt/Dc1036.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:06.010 --> 00:08.580 -Don’t do that. You have to stay calm... - -00:19.930 --> 00:21.030 -It finally came. - -00:23.180 --> 00:28.580 -Lain, concerning your inquiry, I think your approach is the correct one. - -00:28.580 --> 00:39.600 -The concept of a neural network is a relatively old idea, but the arrangement of neurons by any system may not necessarily make the system work... - -00:41.270 --> 00:42.330 -It won’t work. - -00:42.330 --> 00:45.330 -Ha, ha. diff --git a/src/static/media/webvtt/Dc1037.vtt b/src/static/media/webvtt/Dc1037.vtt deleted file mode 100644 index cdbfb16..0000000 --- a/src/static/media/webvtt/Dc1037.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.970 --> 00:11.080 -But even if it is assumed to be complete, there will definitely be an unknown network that connects people. - -00:11.530 --> 00:17.530 -It might be one of many things, like Jung’s ideas of the subconscious. - -00:18.570 --> 00:24.200 -There are many ways to say it, but no one can prove its existence now... - -00:27.570 --> 00:34.170 -But thinking about a person like you who has an interest in this sort of thing, I wonder, what are you trying to research? - -00:34.170 --> 00:35.710 -What is your goal? diff --git a/src/static/media/webvtt/Dc1039.vtt b/src/static/media/webvtt/Dc1039.vtt deleted file mode 100644 index 60f6b6a..0000000 --- a/src/static/media/webvtt/Dc1039.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:30.170 --> 00:32.220 -Wave interference. diff --git a/src/static/media/webvtt/Dc1040.vtt b/src/static/media/webvtt/Dc1040.vtt deleted file mode 100644 index 3ccaa02..0000000 --- a/src/static/media/webvtt/Dc1040.vtt +++ /dev/null @@ -1,67 +0,0 @@ -WEBVTT - -00:02.130 --> 00:05.020 -I don't believe it's you. - -00:05.020 --> 00:06.770 -How old are you? - -00:06.770 --> 00:08.020 -Oh, I'm sorry. - -00:08.020 --> 00:09.710 -You shouldn't ask women about their age. - -00:10.710 --> 00:14.280 -I don't normally get a chance to talk with girls your age. - -00:14.280 --> 00:16.440 -And to be honest, it's making me a bit nervous. - -00:17.530 --> 00:18.880 -Do you have what you promised? - -00:20.080 --> 00:22.000 -The actuator motor. - -00:28.040 --> 00:30.000 -It's a rare thing. - -00:30.000 --> 00:32.440 -Watch out for electricity. - -00:33.000 --> 00:34.060 -No worries. - -00:34.060 --> 00:35.170 -So sure? - -00:35.620 --> 00:39.420 -What are you building anyway? - -00:40.260 --> 00:41.220 -Myself. - -00:41.220 --> 00:44.150 -And something that gave me a body. - -00:46.370 --> 00:49.440 -But it's only temporary. - -00:50.020 --> 00:51.860 -So there's no point in developing it. - -00:53.660 --> 00:56.000 -I don't think I quite understand... - -00:56.440 --> 00:59.480 -Things are born when you build them. - -01:00.640 --> 01:04.930 -And when they are destroyed, they transform into something else. - -01:05.130 --> 01:08.260 -Something completely new. - -01:23.640 --> 01:25.570 -Do you know what's going on? diff --git a/src/static/media/webvtt/Dc1044.vtt b/src/static/media/webvtt/Dc1044.vtt deleted file mode 100644 index b45fdce..0000000 --- a/src/static/media/webvtt/Dc1044.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:08.330 --> 00:09.150 -Stop! diff --git a/src/static/media/webvtt/Dc1046.vtt b/src/static/media/webvtt/Dc1046.vtt deleted file mode 100644 index adac444..0000000 --- a/src/static/media/webvtt/Dc1046.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:03.820 --> 00:04.680 -Lain? - -00:09.060 --> 00:09.950 -Lain! diff --git a/src/static/media/webvtt/Dc1047.vtt b/src/static/media/webvtt/Dc1047.vtt deleted file mode 100644 index 83ccf3c..0000000 --- a/src/static/media/webvtt/Dc1047.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:12.480 --> 00:14.800 -What's going on? diff --git a/src/static/media/webvtt/Dc1048.vtt b/src/static/media/webvtt/Dc1048.vtt deleted file mode 100644 index 2541fa7..0000000 --- a/src/static/media/webvtt/Dc1048.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:12.440 --> 00:13.570 -Lain! - -00:18.220 --> 00:22.060 -When you appeared in a laboratory two years ago... - -00:22.440 --> 00:25.840 -...all data about you was entered into a database. - -00:26.280 --> 00:27.550 -You know that. - -00:31.000 --> 00:34.280 -Archives of movies recorded by your family. - -00:34.730 --> 00:37.460 -The contents of your personal computer. - -00:37.460 --> 00:38.750 -We had it all in data. - -00:39.110 --> 00:41.150 -But there's something strange... - -00:41.910 --> 00:44.730 -The last data update... diff --git a/src/static/media/webvtt/Dc1049.vtt b/src/static/media/webvtt/Dc1049.vtt deleted file mode 100644 index a65fb37..0000000 --- a/src/static/media/webvtt/Dc1049.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:01.500 --> 00:02.800 -...is about your future! - -00:03.340 --> 00:05.800 -It's a record from a day two years in the future! - -00:09.660 --> 00:12.260 -Who are you? - -00:15.900 --> 00:17.700 -Talk to me! - -00:22.400 --> 00:24.880 -Why isn't there any data prior to three years ago...? - -00:24.880 --> 00:25.780 -No! - -00:26.160 --> 00:29.300 -You were born in your current form... - -00:31.300 --> 00:35.420 -It doesn't matter in this world. - -00:36.000 --> 00:37.580 -You know that. - -00:37.580 --> 00:38.540 -Stay away! - -00:46.530 --> 00:50.500 -I want to connect with the entire world. diff --git a/src/static/media/webvtt/Dc1052.vtt b/src/static/media/webvtt/Dc1052.vtt deleted file mode 100644 index 059625e..0000000 --- a/src/static/media/webvtt/Dc1052.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:14.680 --> 00:15.340 -Lain. - -00:17.600 --> 00:18.300 -You... - -00:18.800 --> 00:19.560 -I finished. - -00:19.920 --> 00:21.300 -What are you talking about? - -00:22.940 --> 00:24.300 -About my dad. - -00:25.360 --> 00:27.040 -What? - -00:29.320 --> 00:29.920 -Lain! - -00:34.100 --> 00:34.600 -Lain! - -00:40.500 --> 00:41.240 -Lain? diff --git a/src/static/media/webvtt/Dc1056.vtt b/src/static/media/webvtt/Dc1056.vtt deleted file mode 100644 index e5f33b5..0000000 --- a/src/static/media/webvtt/Dc1056.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:14.170 --> 00:15.460 -It's over. - -00:17.020 --> 00:18.460 -For me it's the beginning. - -00:18.880 --> 00:21.440 -From now on we will always be together. diff --git a/src/static/media/webvtt/Dia001.vtt b/src/static/media/webvtt/Dia001.vtt deleted file mode 100644 index 00946cf..0000000 --- a/src/static/media/webvtt/Dia001.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.740 --> 00:09.620 -Concerning diagnosis: The client lives in a nuclear family with her mother and father. - -00:09.620 --> 00:13.800 -Both parents are middle to upper class and financially well-to-do. - -00:14.860 --> 00:17.080 -The parents have a stable relationship. - -00:17.080 --> 00:20.560 -They do not seem to have mental health problems. - -00:21.500 --> 00:36.380 -Concerning family history of illness, according to the parents as well as the database at our center, there was no neurosis, mental illness, suicidality or consanguineous marriage in her family. diff --git a/src/static/media/webvtt/Dia002.vtt b/src/static/media/webvtt/Dia002.vtt deleted file mode 100644 index 1cbfe4e..0000000 --- a/src/static/media/webvtt/Dia002.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:01.160 --> 00:04.900 -She hasn’t had any significant problems since birth. - -00:05.160 --> 00:09.780 -Even now, she doesn’t have any bad habits or problems with truancy. - -00:10.700 --> 00:16.020 -She does not seem to have a troubled history. - -00:16.380 --> 00:20.740 -Of course, at this research center, accompanying illnesses must be treated. - -00:22.620 --> 00:31.660 -I wanted to ask her about her illness history when I started counseling her, but she was very shy. - -00:31.660 --> 00:38.500 -I decided that I would try to get her to open up. diff --git a/src/static/media/webvtt/Dia003.vtt b/src/static/media/webvtt/Dia003.vtt deleted file mode 100644 index 8ef3e9d..0000000 --- a/src/static/media/webvtt/Dia003.vtt +++ /dev/null @@ -1,40 +0,0 @@ -WEBVTT - -00:01.100 --> 00:06.140 -According to her mother at home, Lain has very frightening dreams. - -00:06.680 --> 00:09.380 -They are not ordinary dreams. - -00:09.380 --> 00:13.400 -They are very realistic and almost hallucinatory. - -00:13.400 --> 00:16.180 -She visited the hospital for this reason. - -00:17.120 --> 00:26.980 -Regarding the nature of the dreams, it seems that Lain doesn't elaborate much about their contents, but she says that she sometimes hears incomprehensible voices out of nowhere, that she is suddenly awakened and forced to watch a video. - -00:26.980 --> 00:31.600 -She sometimes plays in the park, and suddenly finds herself alone when she thought other kids were around. - -00:31.600 --> 00:36.720 -These seem to be childhood imaginary fears. - -00:37.120 --> 00:42.420 -In the future we will address these symptoms. - -00:42.420 --> 00:44.480 -I hope for a recovery. - -00:44.480 --> 00:48.080 -It might be possible. - -00:49.040 --> 00:57.040 -Fundamentally, even if that does not occur, she may be able to manage life at home. - -00:57.040 --> 01:09.180 -However, what her mother said that concerned me was her hallucinations. - -01:10.560 --> 01:21.520 -I will try to pinpoint the cause of these symptoms in our counseling sessions. diff --git a/src/static/media/webvtt/Dia004.vtt b/src/static/media/webvtt/Dia004.vtt deleted file mode 100644 index 5c009f0..0000000 --- a/src/static/media/webvtt/Dia004.vtt +++ /dev/null @@ -1,31 +0,0 @@ -WEBVTT - -00:00.890 --> 00:07.340 -The physical appearance of the client at the first session. - -00:07.340 --> 00:10.580 -Her figure is short and thin. - -00:10.580 --> 00:15.120 -The only feature that stood out was her hairstyle. - -00:15.120 --> 00:19.540 -She has grown out the tuft of her hair on just one side of her face and tied it in a bundle. - -00:19.540 --> 00:24.240 -I don’t think it’s a popular style at school, but it seems to be her individual style. - -00:25.080 --> 00:28.560 -According to her mother, she enjoys having her hair that way. - -00:28.560 --> 00:32.460 -Understanding the reason for her hairstyle may guide me in understanding her. - -00:32.460 --> 00:34.460 -I will look into this in the future. - -00:35.100 --> 00:37.540 -She has a calm demeanor, and her skin is fair. - -00:37.540 --> 00:39.780 -There is otherwise nothing left to mention. diff --git a/src/static/media/webvtt/Dia005.vtt b/src/static/media/webvtt/Dia005.vtt deleted file mode 100644 index 6f89c56..0000000 --- a/src/static/media/webvtt/Dia005.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:01.360 --> 00:08.440 -Although her affect is flat, she appears like any other healthy child when she smiles. - -00:08.440 --> 00:15.340 -She sometimes gets tongue-tied, but not to the point where communication with her becomes impossible. - -00:15.340 --> 00:17.340 -She seems calm and reserved. - -00:18.500 --> 00:23.600 -She understands my questions without a problem, and is capable of answering them. - -00:24.240 --> 00:34.300 -She doesn’t seem to have problems with her attention span, concentration, orientation, clarity of thought, and expression of emotions, but hinders when asked about her symptoms. diff --git a/src/static/media/webvtt/Dia006.vtt b/src/static/media/webvtt/Dia006.vtt deleted file mode 100644 index ddd6f57..0000000 --- a/src/static/media/webvtt/Dia006.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:00.660 --> 00:04.900 -At this stage, I thought it would be a bad idea to ask her about her symptoms in a teasing fashion. - -00:04.900 --> 00:08.420 -I was unable to find details concerning her symptoms. - -00:08.420 --> 00:12.140 -However, she generally seems to be a clever and relaxed girl. - -00:13.560 --> 00:16.460 -Her mother showed me a painting she did in school. - -00:16.460 --> 00:19.980 -It was very well painted, and showed a high level of artistic sensibility. - -00:21.020 --> 00:25.500 -However, I could not find any specific points that might assist it analyzing her psychologically. - -00:26.520 --> 00:34.180 -At this stage, she appears to be at a delusional state, but there seems be a very good chance that she is a normal child. - -00:35.520 --> 00:39.860 -One point from her physical examination struck me. - -00:40.180 --> 00:42.120 -Her vision is excellent. - -00:42.120 --> 00:45.340 -Her standard light reflex is lower than the standard range. - -00:45.340 --> 00:51.420 -However, I have not seen in her the type of dermatological or anemic problems that are common for her age. diff --git a/src/static/media/webvtt/Dia007.vtt b/src/static/media/webvtt/Dia007.vtt deleted file mode 100644 index 8d4d5a4..0000000 --- a/src/static/media/webvtt/Dia007.vtt +++ /dev/null @@ -1,40 +0,0 @@ -WEBVTT - -00:00.820 --> 00:11.520 -Clinical notices from last session: First, concerning this case, I want to treat her as a therapist as opposed to a psychiatrist. - -00:12.140 --> 00:16.480 -Therefore, I will treat Iwakura Lain as my client from now on. - -00:17.260 --> 00:23.420 -One of the reasons for this is that she is still 12 years old and is emotionally sensitive. - -00:23.420 --> 00:27.460 -I do not want to make her feel that she is sick. - -00:28.300 --> 00:38.600 -In fact, from the results of her last clinical visit, the extent of what she is troubled from is nightmares and psychological damage associated with it. - -00:38.900 --> 00:46.300 -Although during sessions with her, psychological discomfort can be detected, she is able to ask and answer questions without a problem. - -00:47.240 --> 00:56.440 -I see no reason to advocate objections to my conclusion that she is sick, but at this point, I would like to treat her as someone without a mental illness. - -00:57.920 --> 01:06.700 -One more thing: Because I am both a psychiatrist and a counselor, my job is selecting the best position possible for my patients. - -01:07.740 --> 01:18.200 -When counseling her in the future, if I detect symptoms of mental illness, I would have to treat her as a psychiatrist. - -01:19.140 --> 01:24.620 -Of course, there’s a good chance that I myself will continue to treat her. - -01:24.620 --> 01:29.440 -In order to honor my research and keep it objective, I may want to ask a third party to continue to treat her clinically. - -01:29.440 --> 01:34.400 -In the meanwhile, I will continue to work with her in a research setting. - -01:36.160 --> 01:44.460 -This may be an exceptional situation at this research center, but I would like to proceed with it. diff --git a/src/static/media/webvtt/Dia008.vtt b/src/static/media/webvtt/Dia008.vtt deleted file mode 100644 index dc70a9a..0000000 --- a/src/static/media/webvtt/Dia008.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.680 --> 00:04.520 -The client is very cooperative and our sessions have been going smoothly. - -00:05.000 --> 00:12.060 -However, somewhere within her, she still is very cautious around me, and it is difficult to discuss her problems. - -00:12.820 --> 00:17.880 -We had some extra time, so I proposed that we play a simple game. - -00:17.880 --> 00:21.940 -She turned me down, and we went directly into our session. - -00:23.500 --> 00:30.360 -She takes much curiosity in me, an outside observer, but I think this has to do with her cautiousness around me. - -00:31.300 --> 00:41.320 -She plays with dolls at home, and seems to have a complex associated with them. - -00:42.320 --> 00:48.480 -She has few friends, and playing with dolls is her way of dealing with her loneliness. diff --git a/src/static/media/webvtt/Dia009.vtt b/src/static/media/webvtt/Dia009.vtt deleted file mode 100644 index b3ad1ab..0000000 --- a/src/static/media/webvtt/Dia009.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:01.020 --> 00:04.840 -In the client’s response, a good understanding of language could be found. - -00:05.500 --> 00:08.060 -However, this is not related to disease. - -00:08.300 --> 00:12.400 -It displays the client’s strong ability to use language. - -00:13.660 --> 00:23.160 -The client differentiated physical activity from physical education, stating that the latter is an "undertaking." In school and group activities, the two can be compared quite conspicuously. - -00:23.160 --> 00:30.800 -The fact that she says she likes physical exercise but not physical education may have to do with her lack of self confidence. diff --git a/src/static/media/webvtt/Dia010.vtt b/src/static/media/webvtt/Dia010.vtt deleted file mode 100644 index 0568dda..0000000 --- a/src/static/media/webvtt/Dia010.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:01.280 --> 00:05.420 -Matters for special mention: The client’s tendencies disturb me. - -00:05.860 --> 00:09.320 -Her light reflexes were tested at the hospital. - -00:09.320 --> 00:11.940 -She may have Adie’s syndrome. - -00:12.820 --> 00:24.380 -Together with active auditory hallucinations and paranoia, she may have early onset general paralysis, although very unlikely. diff --git a/src/static/media/webvtt/Dia011.vtt b/src/static/media/webvtt/Dia011.vtt deleted file mode 100644 index c3501e7..0000000 --- a/src/static/media/webvtt/Dia011.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.880 --> 00:07.460 -Making a hasty diagnosis is taboo, but thinking of the worst, I think I should obtain cerebrospinal fluids as soon as possible. - -00:09.040 --> 00:11.500 -May I have your permission, please? diff --git a/src/static/media/webvtt/Dia012.vtt b/src/static/media/webvtt/Dia012.vtt deleted file mode 100644 index f648ea0..0000000 --- a/src/static/media/webvtt/Dia012.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:00.700 --> 00:04.400 -My diagnosis at the hospital is affecting my client. - -00:04.860 --> 00:10.960 -She was emotionally hurt when she found out that the Rorschach’s test was in fact a tool used to examine her. - -00:11.900 --> 00:17.060 -This wasn’t severe to the extent of a "mind-rape," but I did hurt her in our session today. - -00:17.860 --> 00:24.000 -This has made me realize that I must be discreet when bringing up the theme of disease. - -00:25.740 --> 00:30.520 -I explained to her my role as a counselor, and my hopes to be helpful to her, and regained some trust from her. - -00:30.960 --> 00:37.800 -I hope that in our future sessions, she will develop some goals of her own concerning counseling. diff --git a/src/static/media/webvtt/Dia013.vtt b/src/static/media/webvtt/Dia013.vtt deleted file mode 100644 index 88df778..0000000 --- a/src/static/media/webvtt/Dia013.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:01.440 --> 00:04.300 -She seems to be cautious about with mother. - -00:04.300 --> 00:07.220 -And as far as she’s concerned, her hallucinations are real. - -00:07.220 --> 00:18.980 -She may be mistrustful of her mother because her mother does not accept that her hallucinations are ‘real.’ At this point, I don’t know if the hallucinations are due to some warped sense of perception, or if they are entirely imaginary. - -00:18.980 --> 00:21.460 -There are times when it is difficult to tell. - -00:23.120 --> 00:33.640 -Concerning the ‘vision’ the client saw floating in mid-air, they were most likely imaginary, opposed to being shapes of monsters formed by the shadows on the walls and curtains at night, etc. - -00:33.640 --> 00:38.340 -Could it be that she has developed a system of sensing without perceiving? - -00:39.840 --> 00:42.620 -I would like permission to examine her cerebrospinal fluid. diff --git a/src/static/media/webvtt/Dia014.vtt b/src/static/media/webvtt/Dia014.vtt deleted file mode 100644 index da869dd..0000000 --- a/src/static/media/webvtt/Dia014.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:01.080 --> 00:05.840 -My client has found her own diagnosis and has been studying it on her own. - -00:05.840 --> 00:09.980 -She must have a considerable amount of fear concerning her illness. - -00:09.980 --> 00:16.360 -Having the ‘label’ of mental illness pasted on you causes you to be stigmatized by society. - -00:16.360 --> 00:18.040 -She may need to deal with this. - -00:18.800 --> 00:23.380 -I am rethinking the how the mentally ill are viewed by society. - -00:24.480 --> 00:35.220 -In our last session, I tried to eliminate her concerns about feeling that she is mentally ill. As a result, I think I was able to secure some trust in our relationship. diff --git a/src/static/media/webvtt/Dia015.vtt b/src/static/media/webvtt/Dia015.vtt deleted file mode 100644 index d5000c5..0000000 --- a/src/static/media/webvtt/Dia015.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:00.760 --> 00:03.640 -Mainly, we talked about auditory hallucinations. - -00:04.120 --> 00:08.680 -She believes that she hears voices from electric lines. - -00:09.100 --> 00:14.000 -She says that the voices she hears are not related to her. - -00:15.040 --> 00:22.060 -This could be categorized as a delusion of physical influences, but the symptoms didn’t seem serious enough to be called full-blown delusions. - -00:22.060 --> 00:30.380 -Her being "able to hear from phone lines and electric lines" seemed instead to be childlike theories. - -00:30.380 --> 00:35.540 -She’s an intelligent and sensitive girl, and probably creates her own hallucinations. - -00:36.360 --> 00:41.880 -However, regarding the fact that she has hallucinations only during the day makes her very unusual. - -00:43.200 --> 00:53.400 -Although I don’t think my client is lying, but she says that she very rarely hallucinates while she is talking to her friends. - -00:54.500 --> 01:05.100 -Most likely, references to time and place become fuzzy in her mind, and she is either confusing separate experiences, or she may have just been talking to her friends in her dreams. diff --git a/src/static/media/webvtt/Dia016.vtt b/src/static/media/webvtt/Dia016.vtt deleted file mode 100644 index 6a83dda..0000000 --- a/src/static/media/webvtt/Dia016.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.760 --> 00:03.540 -The relationship with my client has deteriorated. - -00:04.040 --> 00:06.460 -My own lack of consideration is to blame. - -00:07.200 --> 00:14.540 -I told here that her hallucinations are an imaginary enemy. - -00:15.620 --> 00:21.800 -I tried to ease her worries by being lighthearted, but this backfired and hurt my client more. - -00:23.120 --> 00:29.340 -I must visit the client's home to apologize to her and give her parents a status report concerning our sessions. diff --git a/src/static/media/webvtt/Dia017.vtt b/src/static/media/webvtt/Dia017.vtt deleted file mode 100644 index 8072dbe..0000000 --- a/src/static/media/webvtt/Dia017.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.380 --> 00:03.740 -I was somehow able to reconnect with my client. - -00:04.580 --> 00:11.340 -Her symptoms haven’t particularly deteriorated, so I will try my best to slowly become more trustworthy. diff --git a/src/static/media/webvtt/Dia018.vtt b/src/static/media/webvtt/Dia018.vtt deleted file mode 100644 index f1eb327..0000000 --- a/src/static/media/webvtt/Dia018.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.500 --> 00:03.480 -I spoke to my client about her vision. - -00:04.120 --> 00:16.980 -There is a good chance that she may develop a troubling complex by comparing herself to others, thinking that she is uniquely—and abnormally—able to see and hear better than them. - -00:18.120 --> 00:26.060 -At the same time, instead of just saying that she has hyperesthesia, I believe she is dealing with the kind of déjà vu that neurotic people sometimes experience. - -00:26.060 --> 00:32.880 -I will exclude the details, but it seems that what she perceives comes from a poor sense of reality, and her true perceptions are abandoned. - -00:34.100 --> 00:39.700 -Regarding her perception of time, if the client is telling the truth, there isn’t much of a problem. - -00:40.520 --> 00:56.580 -I don’t know what she actually sees, or whether it’s due to a physical abnormality or an abnormality of perception, but as long as her underestimation of herself persists, it will be difficult to reach any fundamental solutions. - -00:57.880 --> 01:07.200 -I cannot diagnose her with depersonalization neurosis just yet, but when I consider her fuzzy recollections of hallucinations, I do think she may be developing depersonalization symptoms. diff --git a/src/static/media/webvtt/Dia019.vtt b/src/static/media/webvtt/Dia019.vtt deleted file mode 100644 index f9a374d..0000000 --- a/src/static/media/webvtt/Dia019.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.980 --> 00:07.440 -In order to alleviate her tendency to underestimate herself, I spoke to my client about ways to increase her self-confidence. - -00:07.440 --> 00:15.400 -Her facial expression has been hard and cold, but her personality has been easy to relate to. - -00:16.440 --> 00:19.260 -Because she is an intelligent client, I will have to work hard psychologically. - -00:19.260 --> 00:22.440 -But because she understands quickly, I expect that our sessions will be effective. diff --git a/src/static/media/webvtt/Dia020.vtt b/src/static/media/webvtt/Dia020.vtt deleted file mode 100644 index 7f47646..0000000 --- a/src/static/media/webvtt/Dia020.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.440 --> 00:04.640 -My client's curiosities are less to do with me than they are with my profession. - -00:05.480 --> 00:12.220 -Clients who inquire about the psychiatric field usually do so out of their own discomfort about their illness. - -00:12.220 --> 00:18.080 -With this client, however, her inquiries may help in her own rehabilitation. - -00:19.040 --> 00:29.740 -There is an undeniable chance that learning about her own condition may intensify her worries, but I think that can be avoided in our relationship. diff --git a/src/static/media/webvtt/Dia021.vtt b/src/static/media/webvtt/Dia021.vtt deleted file mode 100644 index 7efa073..0000000 --- a/src/static/media/webvtt/Dia021.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.700 --> 00:05.260 -I was able to ask my client about her hairstyle for the first time today. - -00:06.300 --> 00:09.340 -Her hair looks like a good-luck charm. - -00:10.320 --> 00:20.740 -I suppose she was hearing voices even with that hairstyle, but I think that she may feel that discontinuing it would cause her to have auditory hallucinations that are even worse. - -00:21.640 --> 00:26.340 -It isn’t much different from the small good luck charms we put in our cars to avoid accidents. - -00:26.340 --> 00:33.840 -A person can have an overconfidence in good luck charms, of course, but I have no intention of asking her to change her hairstyle. diff --git a/src/static/media/webvtt/Dia022.vtt b/src/static/media/webvtt/Dia022.vtt deleted file mode 100644 index ab29fb5..0000000 --- a/src/static/media/webvtt/Dia022.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.340 --> 00:04.180 -As usual, my client’s interest is entirely about psychiatry. - -00:04.180 --> 00:09.560 -Although she doesn’t have a complete lack of interest in everything else, she shows very little interest. - -00:10.080 --> 00:16.320 -I’ve grown a bit weary of her probing questions, but being a specialist, I’m able to answer those questions. - -00:16.320 --> 00:20.260 -I think that letting her ask will help her eliminate her lack of self-esteem, however. - -00:20.260 --> 00:27.060 -Also, comparing her case to that of a similar third party client I think that she will be able to see herself more objectively by the asking and answering of questions. diff --git a/src/static/media/webvtt/Dia023.vtt b/src/static/media/webvtt/Dia023.vtt deleted file mode 100644 index 1d2fb19..0000000 --- a/src/static/media/webvtt/Dia023.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.400 --> 00:04.320 -We are able to have completely relaxed talks now. - -00:04.780 --> 00:16.420 -I’ve assumed that she still has some problems having to do with memory, but she can’t accept today the memories and experiences she had of herself in the past. - -00:16.760 --> 00:22.100 -From that information, I think she probably has an identity disorder and/or a disorder with self-unity. - -00:22.100 --> 00:31.200 -However, these identity problems are still in development, and there’s a chance they may naturally go away as she strengthens her sense of self in therapy. diff --git a/src/static/media/webvtt/Dia024.vtt b/src/static/media/webvtt/Dia024.vtt deleted file mode 100644 index 788cc7e..0000000 --- a/src/static/media/webvtt/Dia024.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.420 --> 00:03.500 -Communication with the client has been going satisfactorily. - -00:03.500 --> 00:09.100 -In our previous session, I was irritated by her many questions and our talk and became half-teasing. - -00:09.100 --> 00:12.720 -This definitely narrowed my relationship with her. - -00:13.680 --> 00:20.540 -In future sessions, we will focus on the growth of her sense of self and I will attempt to further establish aid to her. diff --git a/src/static/media/webvtt/Dia025.vtt b/src/static/media/webvtt/Dia025.vtt deleted file mode 100644 index c09f9c2..0000000 --- a/src/static/media/webvtt/Dia025.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:00.600 --> 00:02.980 -She has lightened up a great deal. - -00:03.580 --> 00:07.660 -Much of it seems to do with a new friend she’s developed in the last few months. - -00:08.140 --> 00:13.500 -Additionally, she has had a change in her living arrangement, which she seems to be happy with. - -00:15.260 --> 00:22.740 -Having now found a friend her own age, she will probably develop a relationship with that person that is more intimate than the one she has with me. - -00:23.920 --> 00:29.880 -I wonder if she still asks me questions because she doesn’t know what else to talk about. - -00:31.020 --> 00:34.520 -I will see how things go for the next few months, and then I would like to discontinue examinations. diff --git a/src/static/media/webvtt/Dia026.vtt b/src/static/media/webvtt/Dia026.vtt deleted file mode 100644 index 01c45e6..0000000 --- a/src/static/media/webvtt/Dia026.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.560 --> 00:02.740 -She won’t stop pressing me with questions. - -00:02.740 --> 00:07.360 -Concerning this case, it may simply be an issue with her personality. - -00:08.280 --> 00:13.800 -She still has worries about when she was hallucinating in the past when she was losing her sense of reality. - -00:13.800 --> 00:15.380 -We focused on that issue. - -00:16.940 --> 00:20.800 -Her current symptoms involve excessive underestimation of herself. - -00:20.800 --> 00:32.780 -She is objectifying the adoration she has for her ‘other’ self, and because her current self and her past self are completely different, it seems that she has been developing these personification symptoms on her own for some time. - -00:32.780 --> 00:38.220 -However, there is a very small chance that that will happen now. diff --git a/src/static/media/webvtt/Dia027.vtt b/src/static/media/webvtt/Dia027.vtt deleted file mode 100644 index eb90e17..0000000 --- a/src/static/media/webvtt/Dia027.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.600 --> 00:03.160 -We had our talk. We had our talk without any problem. - -00:03.160 --> 00:05.720 -She is getting better. - -00:06.380 --> 00:09.640 -As far as I can see, she is just an ordinary healthy junior high schooler. - -00:09.640 --> 00:12.580 -There is no reason why she should continue to come here. - -00:14.080 --> 00:21.240 -Professor Takashima, in order that I can submit my paper to the academic conference in the fall, I would like to apply to start seeing a different client. diff --git a/src/static/media/webvtt/Dia028.vtt b/src/static/media/webvtt/Dia028.vtt deleted file mode 100644 index 27f2daf..0000000 --- a/src/static/media/webvtt/Dia028.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.520 --> 00:08.960 -Professor Takashima, regarding my request last month to see a different client, how has that progressed? - -00:09.440 --> 00:14.640 -If you could introduce me to the person in charge of the outpatients, I could arrange things from there. diff --git a/src/static/media/webvtt/Dia029.vtt b/src/static/media/webvtt/Dia029.vtt deleted file mode 100644 index 9cbd740..0000000 --- a/src/static/media/webvtt/Dia029.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.580 --> 00:08.160 -Professor Takashima, I have prepared the final reports for my current client. - -00:08.760 --> 00:15.720 -I thought that it might be a good idea to keep an appointment history, but because there seem to be have been so few problems, I did not keep one up till now. - -00:16.500 --> 00:21.120 -By next month I will prepare a final report with the appointment history. - -00:22.480 --> 00:24.720 -I don’t have much time until the academic conference this fall. - -00:24.720 --> 00:26.720 -May I please request this of you? - -00:27.160 --> 00:28.880 -As it is, I will not finish in time. - -00:29.540 --> 00:32.720 -Are you harassing me? diff --git a/src/static/media/webvtt/Dia030.vtt b/src/static/media/webvtt/Dia030.vtt deleted file mode 100644 index 1bb5013..0000000 --- a/src/static/media/webvtt/Dia030.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.660 --> 00:10.060 -To the chief administrative secretary: who should I submit my report to before there is a new head of the laboratory? diff --git a/src/static/media/webvtt/Dia031.vtt b/src/static/media/webvtt/Dia031.vtt deleted file mode 100644 index 32555e3..0000000 --- a/src/static/media/webvtt/Dia031.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.420 --> 00:07.460 -To the chief administrative secretary: Thank you for sending me a new client. - -00:08.040 --> 00:11.220 -The status with my current client can be found in my report. - -00:11.720 --> 00:14.860 -I will send you my final report after I organize it. - -00:14.860 --> 00:18.130 -If it is not a problem, I would like to terminate the counseling of my current client. diff --git a/src/static/media/webvtt/Dia032.vtt b/src/static/media/webvtt/Dia032.vtt deleted file mode 100644 index ca85647..0000000 --- a/src/static/media/webvtt/Dia032.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.780 --> 00:07.380 -To the chief administrative secretary: In order to confirm my client's history, I spoke to one of her classmates. - -00:07.380 --> 00:09.380 -I found a problem. - -00:10.560 --> 00:15.300 -I am terribly sorry, but may I resume counseling this client? diff --git a/src/static/media/webvtt/Dia033.vtt b/src/static/media/webvtt/Dia033.vtt deleted file mode 100644 index c930a68..0000000 --- a/src/static/media/webvtt/Dia033.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:01.000 --> 00:10.100 -As I had feared, my client has created an imaginary friend, and has taken a rebellious stance toward my opinions. - -00:11.440 --> 00:18.320 -At the same time, her speech is remarkably lacking in logicality, and is almost like that of a schizophrenic. - -00:19.520 --> 00:22.220 -I cannot, of course, diagnose her immediately. - -00:22.220 --> 00:30.480 -Considering her loss of touch with reality in the past, her anthropomorphic symptoms, her age, and gender, she may have depersonalization neurosis. - -00:31.220 --> 00:42.300 -Also, her personality disorder is extremely light, and considering her hallucinations, she may be suffering from paranoid schizophrenia. diff --git a/src/static/media/webvtt/Dia034.vtt b/src/static/media/webvtt/Dia034.vtt deleted file mode 100644 index 9690c5d..0000000 --- a/src/static/media/webvtt/Dia034.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:00.880 --> 00:11.280 -As much as possible in the future, I would like to assist her as a neutral third party, but it will be difficult because of the relationship I’ve developed with her. - -00:11.280 --> 00:13.660 -I would like someone else to take over her case. - -00:14.820 --> 00:18.360 -Either that, or I would like to stop seeing her after our next session. - -00:20.260 --> 00:24.760 -Mr. Chief Administrative Secretary, I apologize for being selfish. - -00:25.420 --> 00:28.460 -I will follow through with all of my remaining work. - -00:29.000 --> 00:31.360 -Please allow me to move ahead in this fashion. diff --git a/src/static/media/webvtt/Dia035.vtt b/src/static/media/webvtt/Dia035.vtt deleted file mode 100644 index 6f69caa..0000000 --- a/src/static/media/webvtt/Dia035.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.740 --> 00:06.360 -I tried my best to repair the relationship with my client, but failed. - -00:07.460 --> 00:13.740 -Somehow, after I negated the existence of her imaginary friend, she’s withdrawn into her own world. - -00:15.100 --> 00:17.920 -She has become withdrawn like a patient with autism. - -00:18.340 --> 00:28.240 -We speak very little, but because she has become so distant, I’m afraid there is a good chance of sending her into a panic if I speak to her carelessly. - -00:29.140 --> 00:39.040 -I suppose I just need to wait and see what happens, but I’m afraid that through psychotherapy, there is the danger that I may get wrapped up in her paranoid delusions. diff --git a/src/static/media/webvtt/Dia036.vtt b/src/static/media/webvtt/Dia036.vtt deleted file mode 100644 index 6b53e8f..0000000 --- a/src/static/media/webvtt/Dia036.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:01.420 --> 00:14.160 -To the chief administrative secretary: Concerning future correspondences: The patient herself doesn’t believe that she is very sick, and this has made therapy much more difficult. - -00:14.560 --> 00:19.500 -I think the top priority should be to have her see a different therapist and allow her to find a different environment. - -00:20.320 --> 00:26.640 -However, if changing therapists is not possible, I think she would need to start a small dosage of anti-psychotic medication. - -00:26.640 --> 00:30.120 -Perhaps Contom or Neoparidol might be effective. - -00:31.080 --> 00:33.960 -It may be well worth trying. - -00:35.240 --> 00:38.460 -Will I need to submit a request to the overseeing authorities for this? diff --git a/src/static/media/webvtt/Dia037.vtt b/src/static/media/webvtt/Dia037.vtt deleted file mode 100644 index 882042d..0000000 --- a/src/static/media/webvtt/Dia037.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:01.000 --> 00:04.000 -The client had a pleasant demeanor in our session from beginning to end. - -00:04.000 --> 00:07.340 -Perhaps there was no need to do anything abruptly. - -00:08.060 --> 00:15.960 -The client hasn’t changed her feelings about me from the past, and our casual conversations go well as long as I avoid talking about her imaginary friend. - -00:17.120 --> 00:20.900 -What bothers me, though, are the prying personal questions asks. - -00:22.080 --> 00:25.000 -I sometimes think that she means to intentionally work me up. - -00:25.980 --> 00:29.820 -But that may just be due to my impatience. - -00:31.400 --> 00:37.020 -Somehow I want to have an intimate relationship with her again. - -00:38.340 --> 00:41.640 -I want to gradually redevelop objectivity and lead our sessions. diff --git a/src/static/media/webvtt/Dia038.vtt b/src/static/media/webvtt/Dia038.vtt deleted file mode 100644 index 63291de..0000000 --- a/src/static/media/webvtt/Dia038.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:00.300 --> 00:04.680 -The client has changed so much that she doesn’t seem to be the same person anymore. - -00:05.780 --> 00:08.200 -Is that true, or am I being subjective? - -00:08.660 --> 00:12.100 -Could something have changed due to the progression of her symptoms? - -00:12.900 --> 00:15.900 -As we talked, she made remarks that I couldn't understand. - -00:15.900 --> 00:17.900 -She also made some inciteful remarks. - -00:18.920 --> 00:23.640 -During our session, I forgot myself and became hysterical. - -00:24.780 --> 00:26.200 -I can’t handle it anymore. - -00:27.200 --> 00:29.160 -I can do no more. - -00:29.960 --> 00:31.960 -Please have someone else take charge of this case. diff --git a/src/static/media/webvtt/Dia039.vtt b/src/static/media/webvtt/Dia039.vtt deleted file mode 100644 index b0a8330..0000000 --- a/src/static/media/webvtt/Dia039.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:00.740 --> 00:03.240 -Overall, she doesn’t seem very youthful. - -00:03.240 --> 00:05.240 -She appears older than her age. - -00:05.740 --> 00:09.020 -Even when we talk at a relaxed tone, she moves her eyes about irratically. - -00:09.300 --> 00:14.080 -She also moves her wrists about oddly, and appears anxious. - -00:15.040 --> 00:22.020 -She probably is very conscious about her bodily sensations, and doesn’t admit to being ill because of her pride. - -00:22.020 --> 00:28.780 -She blames what is happening to her on fatigue and lack of sleep. diff --git a/src/static/media/webvtt/Dia040.vtt b/src/static/media/webvtt/Dia040.vtt deleted file mode 100644 index 5fa2696..0000000 --- a/src/static/media/webvtt/Dia040.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.680 --> 00:03.700 -During our talk, she said that she couldn't imagine herself being happy. - -00:03.700 --> 00:05.700 -She said that she has no hope for her future. - -00:06.240 --> 00:10.480 -She has lost her sense of confidence, and has slipped into a pessimistic mood. - -00:11.540 --> 00:13.800 -She would go into hysterics if stimulated. - -00:15.660 --> 00:18.260 -The client is scrupulous and diligent. - -00:18.260 --> 00:21.700 -She has anxiety about having harmonious interpersonal relationships. - -00:21.700 --> 00:25.640 -She is transformational and melancholy. - -00:26.440 --> 00:31.940 -From now on, I will continue trying to relieve her psychological burdens and to provide her guidance. diff --git a/src/static/media/webvtt/Dia041.vtt b/src/static/media/webvtt/Dia041.vtt deleted file mode 100644 index cae903c..0000000 --- a/src/static/media/webvtt/Dia041.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.900 --> 00:04.960 -The client accidentally poured scalding water on her hand during our session. - -00:04.960 --> 00:09.520 -She went about cleaning up afterwards as if nothing had happened. - -00:11.100 --> 00:21.460 -There is a chance that there is something wrong with her brain organically. - -00:21.880 --> 00:28.200 -We may need to perform CT scans and some other tests to determine if this is so. diff --git a/src/static/media/webvtt/Dia042.vtt b/src/static/media/webvtt/Dia042.vtt deleted file mode 100644 index edd6296..0000000 --- a/src/static/media/webvtt/Dia042.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.420 --> 00:02.480 -My client is not opening up to me. - -00:03.400 --> 00:05.540 -Some kind of drastic treatment may be necessary. - -00:06.200 --> 00:17.960 -When I intentionally rubbed her the wrong way, she showed her combative side. - -00:19.420 --> 00:28.340 -I think that in the future, lowering of mental efficiency, deterioration of memory, and deterioration of healing will take place, and an inferiority complex with self-reproach will take over. - -00:29.280 --> 00:35.660 -As a result, impulsive behavior will come about, among other symptoms. - -00:35.660 --> 00:38.580 -There is a good chance that her sense of reality will be troubling to her. - -00:39.700 --> 00:44.200 -She may want to commit suicide. diff --git a/src/static/media/webvtt/Dia043.vtt b/src/static/media/webvtt/Dia043.vtt deleted file mode 100644 index 380500f..0000000 --- a/src/static/media/webvtt/Dia043.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.620 --> 00:03.420 -Her personality speedily continues to decline. - -00:03.840 --> 00:05.920 -Her emotions are flattened. - -00:05.920 --> 00:07.920 -She is indifferent and lethargic. - -00:08.380 --> 00:12.700 -She doesn’t show a feminine demeanor as she used to. - -00:13.380 --> 00:19.120 -Until now, I’ve always served tea for visitors, but I didn’t get around to it today. - -00:20.540 --> 00:31.700 -The person one imagines oneself to be and that person’s difference in ability compared to her...The client’s ego is collapsing. - -00:32.680 --> 00:38.740 -Even in my presence, she exposes lack of confidence and appears sick. - -00:39.600 --> 00:42.000 -Sometimes, I don’t know about me... diff --git a/src/static/media/webvtt/Dia044.vtt b/src/static/media/webvtt/Dia044.vtt deleted file mode 100644 index 17d6e00..0000000 --- a/src/static/media/webvtt/Dia044.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.820 --> 00:03.820 -Her responses to my questions have become sluggish. - -00:04.500 --> 00:07.640 -Her lack of self-confidence seems to be altering her self-assessment. - -00:08.220 --> 00:09.620 -Her intellect is affected. - -00:09.620 --> 00:12.080 -The assessment of her character has not taken place. - -00:13.340 --> 00:15.980 -She has completely lost sense of herself. diff --git a/src/static/media/webvtt/Dia045.vtt b/src/static/media/webvtt/Dia045.vtt deleted file mode 100644 index 9db8ad0..0000000 --- a/src/static/media/webvtt/Dia045.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:01.120 --> 00:11.380 -Patients with melancholia, it is good to treat them right at the onset of the disease. - -00:12.920 --> 00:18.840 -In addition to the neurosis, symptoms of depression and schizophrenia can be seen. - -00:18.840 --> 00:21.480 -She may have atypical psychosis. - -00:21.480 --> 00:26.840 -Her brainwaves should be tested at the hospital, along with some other tests. diff --git a/src/static/media/webvtt/Dia046.vtt b/src/static/media/webvtt/Dia046.vtt deleted file mode 100644 index 2c05eb3..0000000 --- a/src/static/media/webvtt/Dia046.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.620 --> 00:02.600 -She doesn’t understand what I am saying. - -00:03.160 --> 00:09.080 -She responds to technical psychiatric language, but not to ordinary speech. - -00:09.860 --> 00:12.220 -I’ve decided to diagnose her with verbal auditory agnosia. diff --git a/src/static/media/webvtt/Dia047.vtt b/src/static/media/webvtt/Dia047.vtt deleted file mode 100644 index cc7ae61..0000000 --- a/src/static/media/webvtt/Dia047.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:01.020 --> 00:05.720 -The client has an indirect reason for going to the trouble of surrounding herself with love. - -00:06.480 --> 00:11.720 -Using a continuous approach, I think I can regain her psyche. - -00:13.020 --> 00:19.140 -I will discontinue medicating her, and resume psychotherapy and milieu therapy. diff --git a/src/static/media/webvtt/Dia048.vtt b/src/static/media/webvtt/Dia048.vtt deleted file mode 100644 index 05a6fdf..0000000 --- a/src/static/media/webvtt/Dia048.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.420 --> 00:06.180 -The client has discovered the connection between herself and reality, and has completely recovered from her ego disturbance. - -00:07.120 --> 00:12.200 -The results from the BPRS and HAM-D tests showed no problems whatsoever. - -00:12.940 --> 00:16.640 -I completed my first treatment successfully. - -00:17.200 --> 00:20.340 -Thank you, my valuable client. diff --git a/src/static/media/webvtt/Eda001.vtt b/src/static/media/webvtt/Eda001.vtt deleted file mode 100644 index 29958a2..0000000 --- a/src/static/media/webvtt/Eda001.vtt +++ /dev/null @@ -1,46 +0,0 @@ -WEBVTT - -00:01.860 --> 00:06.560 -February 7th. Interview for testimony from a witness to the suicide of a high school girl. - -00:08.420 --> 00:12.540 -Before we begin questioning, I’d like to confirm your identity. - -00:13.100 --> 00:15.520 -Shinji Makino, 29 years old. - -00:15.520 --> 00:18.570 -Office worker. - -00:18.570 --> 00:20.980 -Is that correct? - -00:21.660 --> 00:23.560 -Could you state your address? - -00:23.560 --> 00:30.160 -Sure. Shinagawa ward, Kamiosaki, 30-19-105, Meguro-residence 504. - -00:30.160 --> 00:31.960 -Thank you. - -00:32.400 --> 00:37.120 -This interview will be recorded, by the way, but it will be kept confidential, so please don’t worry. - -00:37.680 --> 00:38.130 -Alright. - -00:38.130 --> 00:39.560 -Let’s get started. - -00:39.560 --> 00:43.260 -Could you tell me what you saw at the scene of the suicide in as much detail as possible? - -00:44.650 --> 00:48.370 -Where do you want me to start? From the morning of that day? - -00:48.370 --> 00:52.420 -No. Just what you remember from around the time of the suicide. Relax. Don’t feel pressured. - -00:53.650 --> 00:54.160 -Uhh. diff --git a/src/static/media/webvtt/Eda002.vtt b/src/static/media/webvtt/Eda002.vtt deleted file mode 100644 index 322abbd..0000000 --- a/src/static/media/webvtt/Eda002.vtt +++ /dev/null @@ -1,43 +0,0 @@ -WEBVTT - -00:00.200 --> 00:01.660 -You were there as a twosome. - -00:02.320 --> 00:03.410 -Yeah. So? - -00:03.700 --> 00:09.820 -Well, according to a storekeeper who saw you, the girl you were with was very young. - -00:09.820 --> 00:10.700 -Yeah. And? - -00:10.700 --> 00:15.920 -Well, you see, prostitution takes place at that store. - -00:15.920 --> 00:20.450 -Sorry to tell you, but I don’t have any hobbies like that. She’s just a girl I knew. - -00:20.450 --> 00:25.240 -Is that right? Well, I’d also like to ask her a few questions too. - -00:25.710 --> 00:29.970 -I haven’t had any contact with her, and why do I have to do all this for you anyway? - -00:30.250 --> 00:33.420 -Because we’d like to have as much information as we can to understand why a high school student is dead. - -00:33.800 --> 00:36.510 -We haven’t even been able to retrieve the gun used in the crime. - -00:36.750 --> 00:41.700 -And you think she took it with her? You’ve got to be kidding. She’s in junior high school! - -00:41.700 --> 00:45.470 -We’re not certain, we’re just not ruling out the possibility. - -00:45.930 --> 00:50.170 -Among the people at that store at that time, the only person who we haven’t been able to identify is the girl you were with. - -00:50.930 --> 00:53.330 -Could you help us out with more detailed information? diff --git a/src/static/media/webvtt/Eda003.vtt b/src/static/media/webvtt/Eda003.vtt deleted file mode 100644 index 9f6b30d..0000000 --- a/src/static/media/webvtt/Eda003.vtt +++ /dev/null @@ -1,91 +0,0 @@ -WEBVTT - -00:00.560 --> 00:05.180 -I don't want to talk if my testimony is going to harm her. - -00:05.640 --> 00:08.340 -No, nothing has been decided yet. - -00:08.340 --> 00:10.460 -We’d just like to be able to contact her. - -00:10.920 --> 00:13.760 -There’s nothing for you to worry about. - -00:13.760 --> 00:15.420 -But is there something... - -00:15.420 --> 00:17.740 -No, nothing. - -00:17.740 --> 00:19.980 -I did meet her through the Internet. - -00:20.620 --> 00:27.560 -But she wasn’t the kind of kid that would reveal an e-mail address. - -00:27.560 --> 00:29.040 -She was good at computers. - -00:29.040 --> 00:29.920 -What do you mean? - -00:29.920 --> 00:31.920 -She tapped into computers. - -00:31.920 --> 00:33.440 -You mean she was a hacker? - -00:34.820 --> 00:36.280 -No doubt about it. - -00:36.360 --> 00:39.640 -Then you wouldn’t be able to contact her? - -00:39.640 --> 00:41.580 -I don’t mean that I couldn’t. - -00:41.840 --> 00:44.120 -I reached her once. - -00:44.120 --> 00:48.080 -But I can’t guarantee that she still even has that address. - -00:48.380 --> 00:49.460 -I see. - -00:49.460 --> 00:51.140 -Then there’s little we can do. - -00:51.460 --> 00:53.700 -We’ll handle it from here, then. - -00:54.080 --> 00:56.460 -Could you give us her address? - -00:56.460 --> 00:58.360 -Sure, I don’t mind. - -00:59.240 --> 01:02.760 -If you don’t have it, we can have some of our specialists look into it. - -01:03.240 --> 01:07.320 -If you do hear from her, could you keep our little meeting here a secret? - -01:07.720 --> 01:10.880 -It would be important for you, too, that you keep this a secret. - -01:10.880 --> 01:13.380 -Is that a threat? - -01:13.380 --> 01:14.520 -Oh, not at all. - -01:14.820 --> 01:17.660 -We have better things to do than make threats. - -01:17.660 --> 01:21.700 -As long as we aren’t interfered with, things will be just fine. - -01:22.140 --> 01:23.520 -That’s what I mean. diff --git a/src/static/media/webvtt/Eda004.vtt b/src/static/media/webvtt/Eda004.vtt deleted file mode 100644 index ad1c2c1..0000000 --- a/src/static/media/webvtt/Eda004.vtt +++ /dev/null @@ -1,82 +0,0 @@ -WEBVTT - -00:00.000 --> 00:01.200 -Hello, Makino-san. - -00:01.200 --> 00:02.420 -It’s been a while. - -00:02.720 --> 00:05.800 -You don’t seem to be doing very well, so I’ll keep this short. - -00:06.820 --> 00:10.360 -Can you take responsibility for the things you say to us from now on? - -00:11.360 --> 00:12.360 -Makino-san? - -00:18.260 --> 00:24.640 -I haven’t been able to sleep. I feel better when I’m looking at the computer. - -00:24.640 --> 00:28.330 -Smoking isn’t really allowed here, but if it relaxes you, go ahead. - -00:28.880 --> 00:30.330 -Let’s begin. - -00:30.330 --> 00:31.850 -The reason you’re here... - -00:31.850 --> 00:33.290 -It’s about Lain. - -00:33.290 --> 00:37.170 -Yes it is. Did you meet her after the shooting? - -00:40.370 --> 00:41.240 -Probably. - -00:41.500 --> 00:42.530 -Probably? - -00:45.360 --> 00:47.120 -I don’t know anymore. - -00:49.340 --> 00:52.560 -Detective, could you contact a psychiatrist for me? - -00:53.680 --> 00:55.130 -I can’t take it anymore. - -00:55.560 --> 00:58.660 -I don’t want to die, but all of a sudden, I want to die now! - -00:59.180 --> 01:00.970 -Look at these scars! - -01:00.970 --> 01:02.970 -There’s nowhere left to cut! - -01:08.090 --> 01:09.850 -This is interrogation room number 7. - -01:09.850 --> 01:11.460 -Bring a doctor here quickly. - -01:11.740 --> 01:12.640 -This one’s no good, either. - -01:14.140 --> 01:15.480 -Hey, cut it out! - -01:17.640 --> 01:18.180 -Sorry. - -01:18.450 --> 01:20.410 -Forget about the doctor. - -01:20.720 --> 01:21.970 -Bring a cleaner. - -01:22.440 --> 01:24.210 -And a cup of coffee, too. diff --git a/src/static/media/webvtt/Eda005.vtt b/src/static/media/webvtt/Eda005.vtt deleted file mode 100644 index 03c97bf..0000000 --- a/src/static/media/webvtt/Eda005.vtt +++ /dev/null @@ -1,115 +0,0 @@ -WEBVTT - -00:01.280 --> 00:14.390 -First of all, regarding the suicides of two researchers at our center, there have been rumors that their deaths had to do with them exploring some strange area of research, like something out of a science fiction novel. - -00:14.650 --> 00:16.960 -I reassure you that that is completely untrue. - -00:17.440 --> 00:25.170 -This center specializes in the study of communication and mental illness. - -00:25.560 --> 00:28.160 -Fundamentally, this is not a facility for clinical medicine. - -00:28.680 --> 00:37.130 -Our staff sometimes visits hospitals at their invitation, but basically, all we do here is research. - -00:39.430 --> 00:45.010 -I don't know how to apologize to her parents of those researchers. - -00:46.770 --> 00:48.280 -I am quite overcome. - -00:48.800 --> 00:54.240 -I've heard that the female researcher who took her life had some patients. - -00:54.990 --> 00:56.280 -She was unique. - -00:56.280 --> 01:01.410 -She treated people clinically at this research center. - -01:01.750 --> 01:05.030 -But this was her own decision. - -01:05.770 --> 01:12.130 -I've heard rumors that one of the researchers who died was mentally ill. Is that true? - -01:12.770 --> 01:15.970 -We can't really comment on that right now. - -01:15.970 --> 01:21.000 -But seeing that she took her own life, she may have had some type of mental illness. - -01:21.520 --> 01:31.200 -There are many things a person may call it, but there's no doubt that she was suffering deeply. - -01:32.360 --> 01:40.650 -Suicide is very extreme, but she must have been under a lot of stress. - -01:41.360 --> 01:43.880 -A psychiatrist is still just a human being. - -01:43.880 --> 01:49.010 -Did she catch her mental illness from her patients? - -01:49.010 --> 01:52.690 -Mental illness isn't a contagious disease, So no, she didn't 'catch' anything from her patients. - -01:52.690 --> 01:54.410 -We wouldn't use that expression. - -01:54.410 --> 01:57.310 -She may have been influenced by the patients to a degree. - -01:57.310 --> 02:01.150 -You may call that a sort of contagion if you'd like. - -02:01.150 --> 02:05.240 -It's a matter of semantics. - -02:06.030 --> 02:12.010 -But don't let anyone trick you about this sort of thing. - -02:12.010 --> 02:16.030 -All of this doctor's patients were healthy. - -02:16.650 --> 02:21.690 -I can't get into specifics because of privacy issues. - -02:22.360 --> 02:25.110 -Are there other things that might explain her behavior? - -02:25.110 --> 02:30.330 -Did the researcher who took her life may have had devious intentions? - -02:30.910 --> 02:40.190 -We're in the middle of an investigation, and I can't comment too much on that out of respect for her friends and family. - -02:40.190 --> 02:45.290 -However, I've been informed that that has absolutely nothing to do with it. - -02:45.290 --> 02:46.680 -I would rather... - -02:46.680 --> 02:47.870 -You would rather? - -02:48.410 --> 02:52.710 -Anyway, I've heard that that has nothing to do with it. - -02:52.710 --> 03:07.290 -I'll say this for our researchers that they are very fine human beings that are very seriously committed about what they do. - -03:07.290 --> 03:10.290 -What was the likelihood of this kind of thing happening? - -03:10.800 --> 03:17.240 -Well, it may have been less likely if we had caught it earlier. - -03:17.240 --> 03:26.810 -On the other hand, we may have not paid enough attention because our researchers really have it together and are professional and hardworking. - -03:27.320 --> 03:38.050 -We would like to help avoid this is the future by making psychological assessments of our staff. diff --git a/src/static/media/webvtt/Ekm001.vtt b/src/static/media/webvtt/Ekm001.vtt deleted file mode 100644 index 0aeebd1..0000000 --- a/src/static/media/webvtt/Ekm001.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.180 --> 00:03.680 -Hey, why don’t you walk home with me? Let’s hang out on the way there! - -00:04.160 --> 00:06.440 -Sure... if you want to... - -00:06.440 --> 00:08.620 -I want to buy lipstick! - -00:09.120 --> 00:12.440 -Teacher will scold you for using lipstick again... - -00:12.670 --> 00:17.180 -Lain... you are too stiff. Lets both use it! I think it will look good on you. - -00:17.210 --> 00:21.040 -No... It’s needless for me. It’s no use for me to try to be cute. - -00:21.040 --> 00:26.160 -You should have confidence in yourself! I think you are cute! So... come shopping with me. - -00:26.580 --> 00:27.440 -Ok... diff --git a/src/static/media/webvtt/Ekm002.vtt b/src/static/media/webvtt/Ekm002.vtt deleted file mode 100644 index 7ea3138..0000000 --- a/src/static/media/webvtt/Ekm002.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.150 -Lain, do you have a crush on anyone? - -00:03.150 --> 00:05.150 -No... not really... - -00:05.720 --> 00:07.150 -How about you? - -00:07.150 --> 00:11.800 -I love Nakahara in Class 3. He looks cool. - -00:11.800 --> 00:13.440 -I will try to get along with him. - -00:14.510 --> 00:16.430 -I hope it works out... diff --git a/src/static/media/webvtt/Ekm003.vtt b/src/static/media/webvtt/Ekm003.vtt deleted file mode 100644 index d0e9513..0000000 --- a/src/static/media/webvtt/Ekm003.vtt +++ /dev/null @@ -1,31 +0,0 @@ -WEBVTT - -00:00.060 --> 00:04.420 -What do you do to kill time? - -00:04.420 --> 00:05.920 -Cleaning...? - -00:05.920 --> 00:08.040 -Oh, you’re tidy. - -00:08.040 --> 00:10.340 -I have a trouble because I have many unnecessary things in my room. - -00:10.340 --> 00:16.600 -Yeah, my room is like that. I often go impulse shopping, so I have lots of lipstick I don’t use. - -00:16.600 --> 00:18.200 -How about trading makeup and accessories? - -00:18.620 --> 00:21.440 -But... Lain, you don’t use makeup. - -00:21.440 --> 00:23.900 -Are you using the lipstick we bought together? - -00:24.420 --> 00:25.620 -No... - -00:25.620 --> 00:28.920 -You should use a little makeup. I think it suits you! diff --git a/src/static/media/webvtt/Ekm004.vtt b/src/static/media/webvtt/Ekm004.vtt deleted file mode 100644 index c62dac2..0000000 --- a/src/static/media/webvtt/Ekm004.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:00.100 --> 00:04.400 -I hope something great will happen like in a movie. - -00:04.800 --> 00:07.440 -Many people will get killed, but I don’t die. - -00:07.440 --> 00:10.640 -And I resolve it with a very cool detective. - -00:10.640 --> 00:11.910 -For that, I’ll be a big star!!! - -00:12.500 --> 00:15.700 -Sorry... I’m saying such strange things. - -00:16.080 --> 00:18.640 -Hey, don’t look at me with such cold eyes... - -00:18.640 --> 00:21.020 -My eyes are always like this... - -00:21.020 --> 00:24.100 -What? Are you trying to make me laugh? - -00:24.100 --> 00:25.150 -Did I fail? - -00:25.150 --> 00:27.650 -Aha, ha, ha, yes, you failed! - -00:27.650 --> 00:29.470 -It’s just like you to say something like that. diff --git a/src/static/media/webvtt/Ekm005.vtt b/src/static/media/webvtt/Ekm005.vtt deleted file mode 100644 index 5c46246..0000000 --- a/src/static/media/webvtt/Ekm005.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.410 --> 00:05.230 -Hey, Lain. Do you think that you’re a special person? - -00:05.230 --> 00:06.520 -Special? - -00:06.520 --> 00:11.880 -Everyone says, "Lain is not a normal girl" and "Isn’t she dangerous?" - -00:11.880 --> 00:15.440 -I’ve known you since we were children, so I say to them "No, she is normal." - -00:15.770 --> 00:18.240 -Also, I’m a little similar to you. - -00:18.240 --> 00:21.800 -It makes me sad that I’m not special like other people! - -00:21.800 --> 00:26.250 -Do you think so? I don’t care if I’m an ordinary person. diff --git a/src/static/media/webvtt/Ekm006.vtt b/src/static/media/webvtt/Ekm006.vtt deleted file mode 100644 index 1713efb..0000000 --- a/src/static/media/webvtt/Ekm006.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.400 -Kyoko, you don’t look too good. - -00:04.600 --> 00:09.800 -I can’t do anything for you... I’m so sorry Kyoko... - -00:11.130 --> 00:14.930 -Nakahara turned me down. He has another girl who he has a crush on... - -00:14.930 --> 00:16.400 -Kyoko... - -00:16.400 --> 00:21.420 -I’m too stupid. He likes the quiet girl with short hair. - -00:21.420 --> 00:24.020 -I wish I were like Lain... - -00:24.020 --> 00:31.000 -No! You are far cuter than I am, and you are popular in our class. - -00:31.000 --> 00:34.270 -Those are useless if he doesn’t like them. - -00:34.270 --> 00:37.000 -You can’t understand my feeling! - -00:37.000 --> 00:40.070 -That’s enough! I’m miserable... - -00:40.070 --> 00:41.530 -Kyoko... diff --git a/src/static/media/webvtt/Endroll.vtt b/src/static/media/webvtt/Endroll.vtt deleted file mode 100644 index 251f023..0000000 --- a/src/static/media/webvtt/Endroll.vtt +++ /dev/null @@ -1,52 +0,0 @@ -WEBVTT - -01:02.730 --> 01:04.240 -That's what I don't get. - -01:04.240 --> 01:06.240 -If we use packet filtering here... - -01:27.450 --> 01:28.040 -Computer? - -01:28.040 --> 01:29.420 -A friend? - -01:30.160 --> 01:31.780 -We were talking about it before. - -02:05.390 --> 02:07.500 -I'm going back to you. - -02:14.110 --> 02:14.700 -...and so... - -02:14.700 --> 02:16.580 -...when we want to increase the processing speed - -02:16.580 --> 02:18.580 -...we must take into account the fact that the processor can overheat. - -02:20.740 --> 02:21.680 -That's true! - -02:22.660 --> 02:23.680 -I'm sorry, Lain. - -03:11.370 --> 03:12.410 -Do you understand that? - -04:36.890 --> 04:38.030 -...is about your future! - -04:38.730 --> 04:41.500 -It's a record from a day two years in the future! - -05:06.280 --> 05:07.340 -It's over. - -05:08.910 --> 05:10.160 -For me it's the beginning. - -05:10.960 --> 05:13.500 -From now on we will always be together. diff --git a/src/static/media/webvtt/Env001.vtt b/src/static/media/webvtt/Env001.vtt deleted file mode 100644 index 4e9d9b8..0000000 --- a/src/static/media/webvtt/Env001.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.230 --> 00:06.130 -Say, do you like me? If you do, come to my new URL site. diff --git a/src/static/media/webvtt/Env002.vtt b/src/static/media/webvtt/Env002.vtt deleted file mode 100644 index 9282851..0000000 --- a/src/static/media/webvtt/Env002.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.940 --> 00:06.970 -But I can only see him. Lain... die. diff --git a/src/static/media/webvtt/Env004.vtt b/src/static/media/webvtt/Env004.vtt deleted file mode 100644 index 067b237..0000000 --- a/src/static/media/webvtt/Env004.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.230 --> 00:01.510 -I don’t know! - -00:01.870 --> 00:03.720 -I don’t care about the test anyway. - -00:04.360 --> 00:10.090 -If I knew that the world would end today, I would forget about study and just do what I felt like doing. diff --git a/src/static/media/webvtt/Env005.vtt b/src/static/media/webvtt/Env005.vtt deleted file mode 100644 index d061761..0000000 --- a/src/static/media/webvtt/Env005.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.160 --> 00:02.270 -You are a chosen fighter. - -00:03.030 --> 00:04.760 -Fight with me. - -00:05.620 --> 00:10.440 -The only thing that can change this world is your lofty willpower. - -00:11.670 --> 00:13.790 -I know about you. - -00:14.360 --> 00:15.100 -No. - -00:15.670 --> 00:17.230 -I must die. - -00:18.690 --> 00:20.820 -Because you seek after me. diff --git a/src/static/media/webvtt/Env006.vtt b/src/static/media/webvtt/Env006.vtt deleted file mode 100644 index c7c8baa..0000000 --- a/src/static/media/webvtt/Env006.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:00.220 --> 00:04.090 -The woman you walked past at the intersection today is my clone. - -00:04.910 --> 00:07.990 -I can understand because I grew her from a tissue. - -00:08.440 --> 00:09.560 -She is me. - -00:10.200 --> 00:11.840 -She probably has noticed. - -00:12.370 --> 00:13.690 -I understand. - -00:14.470 --> 00:19.290 -If only we knew this about each other, this world would be... diff --git a/src/static/media/webvtt/Env007.vtt b/src/static/media/webvtt/Env007.vtt deleted file mode 100644 index 27885ef..0000000 --- a/src/static/media/webvtt/Env007.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.230 --> 00:02.040 -I ceased to exist again, today. - -00:03.450 --> 00:06.690 -I was so sure that I was me when I woke up. - -00:07.390 --> 00:10.220 -Somehow, something seems to have fallen. - -00:11.580 --> 00:17.190 -I remember becoming sleepy, sitting in the dark and looking around. - -00:18.590 --> 00:22.360 -When he fell asleep, I awoke. - -00:23.630 --> 00:28.620 -I took the sheets off my shoulders, and noticed blood on my hands. - -00:29.190 --> 00:30.900 -The floor was covered in a sea of blood. - -00:32.690 --> 00:36.660 -There was something written on my computer. diff --git a/src/static/media/webvtt/Env008.vtt b/src/static/media/webvtt/Env008.vtt deleted file mode 100644 index 2fbe4b5..0000000 --- a/src/static/media/webvtt/Env008.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.210 --> 00:02.170 -I believed it. - -00:03.130 --> 00:05.490 -I thought you were terrible, Lain. - -00:06.580 --> 00:10.930 -But he likes you more than me. - -00:11.550 --> 00:16.700 -I didn’t know why he liked you and not me. - -00:17.890 --> 00:22.840 -Lain, you don’t really care if he likes you or not, do you? diff --git a/src/static/media/webvtt/Env010.vtt b/src/static/media/webvtt/Env010.vtt deleted file mode 100644 index bcf0129..0000000 --- a/src/static/media/webvtt/Env010.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.150 -You are all a clump. - -00:03.150 --> 00:05.000 -A clump that doesn’t exist. - -00:05.000 --> 00:09.880 -I eat the flesh of humans and shed blood. - -00:10.380 --> 00:14.330 -Look at your moronic face! - -00:14.330 --> 00:18.780 -Everyone who mocks me is a stupid asshole! - -00:20.230 --> 00:37.880 -Look, your construction is nearly complete...Oh, I want to laugh right now...did someone enter this room? diff --git a/src/static/media/webvtt/Env011.vtt b/src/static/media/webvtt/Env011.vtt deleted file mode 100644 index 612643e..0000000 --- a/src/static/media/webvtt/Env011.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.270 --> 00:19.040 -... diff --git a/src/static/media/webvtt/Env012.vtt b/src/static/media/webvtt/Env012.vtt deleted file mode 100644 index b443c6a..0000000 --- a/src/static/media/webvtt/Env012.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.000 --> 00:01.800 -I don’t know. - -00:01.800 --> 00:04.030 -I don’t care about the test. - -00:04.030 --> 00:06.880 -I know that the world will come to an end. - -00:06.880 --> 00:10.200 -I could forget about studying and do what I feel like doing. - -00:10.480 --> 00:18.400 -Look at your stupid face! Anyone who mocks me is a stupid asshole! - -00:20.850 --> 00:25.800 -But I can only see him. Lain. - -00:32.830 --> 00:46.350 -It is your lofty willpower. I know about you. No. I must die. diff --git a/src/static/media/webvtt/Ere001.vtt b/src/static/media/webvtt/Ere001.vtt deleted file mode 100644 index 18b715c..0000000 --- a/src/static/media/webvtt/Ere001.vtt +++ /dev/null @@ -1,85 +0,0 @@ -WEBVTT - -00:03.160 --> 00:07.080 -So sorry I'm late, I was the one who asked to meet in the first place. - -00:07.080 --> 00:10.280 -It’s okay. What do you want to talk about? - -00:10.280 --> 00:16.780 -Um, I’ll have Earl Grey without milk. Would you like more coffee, Kyoko-chan? - -00:16.780 --> 00:18.780 -Sure. - -00:18.780 --> 00:20.460 -So you’re a private tutor. - -00:20.460 --> 00:22.120 -People like you are rare nowadays, aren’t they? - -00:22.120 --> 00:24.120 -You get this involved with the kids you tutor? - -00:24.120 --> 00:32.620 -I’ve been a bit distracted and unfocused lately, and I was concerned that it might have been rubbing off on Lain and getting in the way of her education. - -00:32.620 --> 00:36.100 -Either that, or maybe things haven’t been going well for her at school. - -00:36.100 --> 00:39.060 -I think she’s doing okay. - -00:39.080 --> 00:44.880 -From your point of view, is she doing well in school? - -00:44.880 --> 00:46.460 -I don't really know. - -00:46.460 --> 00:51.840 -We used to be friends, but since we entered junior high school, we haven’t talked to each other that much. - -00:51.840 --> 00:54.120 -Is this a test to see if she’s been behaving herself? - -00:54.120 --> 00:58.280 -I don’t know what other kids do outside of school. - -00:58.280 --> 01:00.840 -Wouldn’t it be better to ask a student advisor at or something? - -01:00.840 --> 01:01.960 -Oh, no, no. - -01:02.000 --> 01:03.500 -It’s nothing serious like that. - -01:03.500 --> 01:05.040 -Not at all. - -01:05.040 --> 01:07.660 -But she’s a quiet girl, isn’t she? - -01:07.660 --> 01:10.380 -She used to be a little gloomy. - -01:10.380 --> 01:13.860 -I was just curious about how she’s doing in school. - -01:13.860 --> 01:15.120 -Hmm. - -01:15.120 --> 01:19.880 -Well, I have nothing to lose by talking to you, so ask me whatever you want. - -01:19.880 --> 01:24.520 -I haven’t talked to Lain much recently. - -01:24.520 --> 01:27.800 -She doesn’t have that many friends. - -01:27.800 --> 01:30.360 -She used to be a little somber. - -01:30.360 --> 01:33.120 -I guess you could say she’s gotten gloomier lately. diff --git a/src/static/media/webvtt/Ere002.vtt b/src/static/media/webvtt/Ere002.vtt deleted file mode 100644 index b1791c6..0000000 --- a/src/static/media/webvtt/Ere002.vtt +++ /dev/null @@ -1,46 +0,0 @@ -WEBVTT - -00:00.520 --> 00:04.220 -We were in the same class in 5th and 6th grade. - -00:04.220 --> 00:06.760 -We were in the same group because we sat close to each other. - -00:06.760 --> 00:11.340 -She was quiet, so she didn’t talk to many kids besides me. - -00:11.340 --> 00:14.780 -She was like a sister to me. - -00:14.780 --> 00:17.500 -We didn’t play together much, though. - -00:17.500 --> 00:22.300 -When would you say that Lain started to change? - -00:22.300 --> 00:27.120 -She wasn't so gloomy until about a year ago. - -00:27.120 --> 00:34.480 -When I see her these days, we don’t have much to talk about. - -00:34.760 --> 00:39.120 -It’s too bad, but lately, she’s just another classmate to me. - -00:39.120 --> 00:42.460 -Have you talked to her at all recently? - -00:42.460 --> 00:48.120 -Recently? I feel like there was something. I wonder what it was... - -00:48.120 --> 00:49.460 -Can you remember? - -00:49.460 --> 00:54.720 -That's weird. I usually have a good memory. - -00:54.720 --> 00:57.400 -Do you remember talking about shopping or boys? - -00:57.400 --> 01:01.820 -No. I don’t think we talked about that. diff --git a/src/static/media/webvtt/Ere003.vtt b/src/static/media/webvtt/Ere003.vtt deleted file mode 100644 index ddf25e8..0000000 --- a/src/static/media/webvtt/Ere003.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.740 --> 00:02.960 -What was it? - -00:02.960 --> 00:04.400 -Something about my memory. - -00:04.400 --> 00:06.220 -I remember now. - -00:06.220 --> 00:08.900 -I remember that we were in biology class. - -00:08.900 --> 00:13.180 -Lain was asking the teacher after class about the brain and how memories are stored. - -00:13.200 --> 00:14.840 -I thought that that was pretty impressive. - -00:14.840 --> 00:19.100 -I asked her what she had asked the teacher, and she said she asked the teacher how to recollect memories. - -00:19.100 --> 00:19.900 -Weird. diff --git a/src/static/media/webvtt/Ere004.vtt b/src/static/media/webvtt/Ere004.vtt deleted file mode 100644 index 21d949b..0000000 --- a/src/static/media/webvtt/Ere004.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:00.810 --> 00:08.890 -I don’t dislike Lain. But lately she’s been hard to approach. - -00:08.890 --> 00:09.780 -I know what you mean. - -00:09.780 --> 00:10.860 -Don’t you, though? - -00:10.860 --> 00:14.310 -I think a lot of the kids see her that way. - -00:14.310 --> 00:19.060 -No one is bullying her, now, but most of us pretty much ignore her. - -00:19.060 --> 00:20.670 -Yeah. - -00:20.670 --> 00:25.530 -You should talk to her. Tell her to laugh the way she used to. - -00:25.530 --> 00:26.690 -The way she used to? - -00:27.180 --> 00:30.020 -In my old memories, she was always smiling. - -00:30.560 --> 00:33.490 -I remember that when we were together, she would always laugh. - -00:33.920 --> 00:39.650 -I see. I sort of had that impression. That’s why I was concerned. diff --git a/src/static/media/webvtt/Ere005.vtt b/src/static/media/webvtt/Ere005.vtt deleted file mode 100644 index 9171f09..0000000 --- a/src/static/media/webvtt/Ere005.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:00.920 --> 00:04.610 -Yes. Are you friends with Misato-chan, Kyoko? - -00:04.610 --> 00:06.240 -Who’s Misato-chan? - -00:06.240 --> 00:07.880 -A friend of Lain’s. - -00:07.880 --> 00:12.560 -Misato? We had a class with a girl named Minako... Who's Misato? - -00:12.560 --> 00:14.770 -She was in a class with you in junior high. - -00:14.770 --> 00:15.850 -Huh? - -00:15.850 --> 00:16.180 -No way. - -00:16.180 --> 00:18.280 -There was definitely nobody by that name in my junior high school class. - -00:18.290 --> 00:19.440 -You must mean Minako. - -00:19.440 --> 00:22.630 -But Minako wasn’t friendly with Lain at all. - -00:22.630 --> 00:27.230 -Oh. I must have been misinformed. Never mind. diff --git a/src/static/media/webvtt/Ere006.vtt b/src/static/media/webvtt/Ere006.vtt deleted file mode 100644 index bb3634d..0000000 --- a/src/static/media/webvtt/Ere006.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:02.410 --> 00:04.900 -I guess it sounds like I’m bad-mouthing her. - -00:04.900 --> 00:08.250 -There are some strange things about Lain, but she’s an ordinary girl. - -00:08.740 --> 00:12.280 -She could be much attractive and popular if she would lighten up. - -00:12.560 --> 00:13.660 -She’s gentle, too. - -00:13.660 --> 00:14.720 -Gentle. - -00:14.720 --> 00:17.370 -So what subjects do you tutor? - -00:18.570 --> 00:19.650 -All subjects. - -00:19.890 --> 00:20.940 -Wow, I’m jealous. - -00:20.950 --> 00:24.660 -I’m no good at all at math. - -00:24.670 --> 00:26.880 -Lain’s grades are perfect. - -00:26.880 --> 00:29.620 -I wish I had a private tutor. diff --git a/src/static/media/webvtt/Ere007.vtt b/src/static/media/webvtt/Ere007.vtt deleted file mode 100644 index 2a65030..0000000 --- a/src/static/media/webvtt/Ere007.vtt +++ /dev/null @@ -1,55 +0,0 @@ -WEBVTT - -00:01.230 --> 00:05.530 -Nice to meet you. Order whatever you want. - -00:08.150 --> 00:13.460 -Lain doesn’t go out much, and it’s hard to tell if she’s dating anyone. - -00:13.810 --> 00:19.380 -Sometimes she helps me with my schoolwork, and I offer to take her out and have some fun to thank her, but she never comes. - -00:19.970 --> 00:22.370 -A royal chocolate parfait, please. - -00:23.470 --> 00:25.970 -And who did you say you were? - -00:26.070 --> 00:27.170 -I’m her tutor. - -00:27.250 --> 00:29.670 -Oh... a tutor. - -00:30.160 --> 00:32.370 -That’s why she’s so smart. - -00:34.930 --> 00:36.480 -I’ll start on my parfait. - -00:36.970 --> 00:38.800 -I really like their parfaits here. - -00:40.020 --> 00:42.890 -But what did you want to talk about? - -00:43.140 --> 00:49.550 -Well, what is she like at school? What kind of girl is she, from your point of view? - -00:49.770 --> 00:53.200 -Lain is a quiet girl. - -00:53.530 --> 00:57.120 -She doesn’t stand out too much and she doesn’t have too many friends. - -00:57.410 --> 00:58.740 -She’s smart, though. - -00:59.020 --> 01:01.300 -She got a really good grade on one of her papers. - -01:01.650 --> 01:02.800 -Some complicated subject. - -01:02.820 --> 01:04.580 -Kaori couldn’t understand it. diff --git a/src/static/media/webvtt/Ere008.vtt b/src/static/media/webvtt/Ere008.vtt deleted file mode 100644 index ef9ed2c..0000000 --- a/src/static/media/webvtt/Ere008.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:01.100 --> 00:04.100 -I don’t remember having talked about it much. - -00:04.630 --> 00:06.500 -I don’t mean that I haven’t talked about it. - -00:06.670 --> 00:08.420 -It was as if it was there when I noticed it. - -00:08.580 --> 00:09.650 -Ha, ha. - -00:09.650 --> 00:11.650 -It’s all really strange. - -00:12.370 --> 00:15.500 -I remember that Lain skipped physical education. - -00:15.830 --> 00:21.790 -Kyoko or someone said that Lain has a weak physical constitution. - -00:22.320 --> 00:26.560 -I think Kyoko knows Lain better than I do. - -00:26.830 --> 00:35.790 -Lain is pretty, but I've never seen her with any boys... Oh, I’m sorry. - -00:35.800 --> 00:36.770 -I’m being so negative. - -00:36.790 --> 00:39.060 -It’s okay. Don’t worry about it. diff --git a/src/static/media/webvtt/Ere009.vtt b/src/static/media/webvtt/Ere009.vtt deleted file mode 100644 index 3a1f13e..0000000 --- a/src/static/media/webvtt/Ere009.vtt +++ /dev/null @@ -1,49 +0,0 @@ -WEBVTT - -00:00.750 --> 00:05.520 -It’s really something to have a tutor, though. - -00:05.660 --> 00:06.450 -Well... - -00:06.940 --> 00:09.900 -Lain doesn’t seem like someone with a problem. - -00:09.900 --> 00:11.330 -No, no. - -00:11.440 --> 00:13.020 -She doesn’t have a problem. - -00:13.350 --> 00:17.200 -I just want to know more about her. - -00:17.730 --> 00:19.070 -She’s a very nice girl. - -00:19.080 --> 00:22.990 -She’s the kind of girl that keeps quiet even when something is bothering her, so that she doesn’t worry other people, isn’t she? - -00:23.010 --> 00:23.900 -You’re right. - -00:23.920 --> 00:25.820 -She is like that. - -00:28.070 --> 00:33.150 -I remember too, that once when I tried to buy her a treat for helping me with my homework, she refused. - -00:33.440 --> 00:35.050 -I was a little annoyed. - -00:35.420 --> 00:37.850 -Lain hasn’t been bullied at school, though. - -00:37.940 --> 00:40.050 -The kids there aren’t so bad there. - -00:40.290 --> 00:41.210 -Really? - -00:41.330 --> 00:46.700 -Well, sure. You don't believe me? I don’t get bullied either. Ha, ha. diff --git a/src/static/media/webvtt/Ere010.vtt b/src/static/media/webvtt/Ere010.vtt deleted file mode 100644 index dbedfe6..0000000 --- a/src/static/media/webvtt/Ere010.vtt +++ /dev/null @@ -1,46 +0,0 @@ -WEBVTT - -00:00.240 --> 00:05.200 -But, Onee-san, could you be my tutor, too? My grades aren’t so great. - -00:05.260 --> 00:10.110 -I’d love to, but I can’t because I have a lot of work to do at the university. - -00:10.540 --> 00:12.660 -If I find a good tutor, I’ll recommend her to you. - -00:13.140 --> 00:15.340 -You can repay me by being really nice to Lain. - -00:15.440 --> 00:16.430 -Wow! - -00:16.510 --> 00:18.420 -You really are like a big sister. - -00:18.420 --> 00:20.410 -I wish I had a sister. - -00:20.420 --> 00:23.400 -I’m an only child. - -00:23.920 --> 00:26.160 -Lain’s an only child, too, isn’t she? - -00:26.350 --> 00:28.420 -Does she have siblings? - -00:28.830 --> 00:36.080 -My mom said something about Lain having a sibling in the hospital, and that that’s why neighbors avoid her house. - -00:36.340 --> 00:36.980 -Ha, ha. - -00:36.980 --> 00:38.980 -Lain is an only child. - -00:39.220 --> 00:41.040 -Her parents are good, ordinary people. - -00:42.080 --> 00:47.630 -I suppose Lain is sad about being an only child, too. diff --git a/src/static/media/webvtt/Lda001.vtt b/src/static/media/webvtt/Lda001.vtt deleted file mode 100644 index bb3368a..0000000 --- a/src/static/media/webvtt/Lda001.vtt +++ /dev/null @@ -1,31 +0,0 @@ -WEBVTT - -00:00.110 --> 00:05.570 -Diary? What should I write? What should I write about myself? - -00:05.570 --> 00:10.600 -Today I woke up and went to school and attended class. - -00:10.600 --> 00:14.680 -After school, I went to Touko to talk with her. - -00:14.680 --> 00:19.080 -She said that keeping a diary is good for me. - -00:19.880 --> 00:24.460 -This is to be read by only myself, so I don't have any idea what to write. - -00:24.930 --> 00:33.200 -...I came home and ate dinner and watched TV and took a bath... - -00:33.200 --> 00:35.200 -And now, I'm writing this diary... - -00:35.200 --> 00:38.460 -Reading this makes me blush! - -00:38.460 --> 00:41.130 -Keeping a diary may be tough to deal with. - -00:41.800 --> 00:42.910 -I want to give it up. diff --git a/src/static/media/webvtt/Lda002.vtt b/src/static/media/webvtt/Lda002.vtt deleted file mode 100644 index f803a5b..0000000 --- a/src/static/media/webvtt/Lda002.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.930 -Today, I went shopping with Kyoko. - -00:03.400 --> 00:05.750 -I bought an earring and a bracelet. - -00:06.080 --> 00:10.150 -But, I feel a little ashamed to go out with these on. - -00:10.840 --> 00:13.570 -Kyoko is cute, so it is no problem for her to wear these. - -00:13.570 --> 00:19.150 -I'm not cute, so whatever I do, it’s useless. - -00:19.770 --> 00:21.800 -I think I'm lost on buying these accessories... - -00:22.550 --> 00:25.440 -But... Kyoko said, "These suit you! You look cute!" - -00:25.490 --> 00:27.890 -I think it may be her flattery - -00:27.890 --> 00:29.370 -But I felt happy. diff --git a/src/static/media/webvtt/Lda003.vtt b/src/static/media/webvtt/Lda003.vtt deleted file mode 100644 index d364e19..0000000 --- a/src/static/media/webvtt/Lda003.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.000 --> 00:01.950 -Today I went to the library. - -00:03.020 --> 00:12.260 -I tried to look into difficult words that Touko used like "psychoanalysis," "counseling," and so on. - -00:12.260 --> 00:14.260 -But, I couldn't understand these words completely. - -00:14.750 --> 00:17.900 -Am I stupid? - -00:18.710 --> 00:23.400 -...I also think I say strange things sometimes. - -00:23.400 --> 00:27.840 -If I tell Kyoko and her friends about my trouble, they will think there's something wrong with me. - -00:27.860 --> 00:29.600 -It would be horrible if they felt like that. - -00:29.640 --> 00:31.740 -I can't talk to them about my trouble... diff --git a/src/static/media/webvtt/Lda004.vtt b/src/static/media/webvtt/Lda004.vtt deleted file mode 100644 index 148ece6..0000000 --- a/src/static/media/webvtt/Lda004.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.860 --> 00:05.210 -Touko-san says that I don’t have to worry. - -00:05.210 --> 00:07.380 -Something is definitely wrong with me. - -00:07.890 --> 00:09.730 -That thing I saw wasn’t a dream. - -00:10.430 --> 00:12.690 -I know because I can see it when I’m awake, too. - -00:13.180 --> 00:16.270 -Something is very wrong with me. diff --git a/src/static/media/webvtt/Lda005.vtt b/src/static/media/webvtt/Lda005.vtt deleted file mode 100644 index 22f98db..0000000 --- a/src/static/media/webvtt/Lda005.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.120 -I’m sad and depressed and don’t want to go to school. - -00:03.550 --> 00:10.400 -Is it my fault that kids say mean things to me? - -00:10.770 --> 00:14.050 -I’m starting to cry. - -00:14.570 --> 00:17.200 -I can’t bring myself to start laughing right away. - -00:17.200 --> 00:19.550 -I’m jealous of Kyoko-chan. - -00:20.900 --> 00:26.670 -I suppose that if I fuss about these things, I’ll get disliked even more. - -00:27.300 --> 00:30.170 -Why is this happening to me? - -00:30.170 --> 00:33.050 -I haven’t hurt anybody. - -00:34.150 --> 00:36.520 -I wonder if Tomo-kun was laughing, too. diff --git a/src/static/media/webvtt/Lda006.vtt b/src/static/media/webvtt/Lda006.vtt deleted file mode 100644 index 6095933..0000000 --- a/src/static/media/webvtt/Lda006.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.830 --> 00:02.850 -Am I okay being me? diff --git a/src/static/media/webvtt/Lda007.vtt b/src/static/media/webvtt/Lda007.vtt deleted file mode 100644 index fe92504..0000000 --- a/src/static/media/webvtt/Lda007.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.770 -Today in physical education class, the kids were talking about some sexual stuff. - -00:03.770 --> 00:04.730 -I was embarrassed. - -00:05.660 --> 00:10.840 -Kyoko-chan was grinning and talking to me, and the boys were having fun. - -00:11.700 --> 00:17.330 -Tomo-kun is a boy, so I was a bit uncomfortable with him joining the others. - -00:18.690 --> 00:22.770 -Even so, I’m not able to believe that now. - -00:23.810 --> 00:26.410 -When will I be able to understand all of this? diff --git a/src/static/media/webvtt/Lda008.vtt b/src/static/media/webvtt/Lda008.vtt deleted file mode 100644 index 2af0d04..0000000 --- a/src/static/media/webvtt/Lda008.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.690 --> 00:01.800 -That’s right. - -00:01.800 --> 00:03.610 -I’ll ask Touko-san about it. - -00:04.030 --> 00:07.570 -She’s a doctor, so I wonder if she’ll be embarrassed. - -00:08.520 --> 00:12.250 -But maybe she’ll think that it’s strange. - -00:13.000 --> 00:14.500 -I won’t ask her after all. diff --git a/src/static/media/webvtt/Lda009.vtt b/src/static/media/webvtt/Lda009.vtt deleted file mode 100644 index 54d5026..0000000 --- a/src/static/media/webvtt/Lda009.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.920 -Dad’s been getting home very early lately. - -00:03.480 --> 00:08.670 -He’s been asking a lot about school, and I’m getting a bit tired of that. - -00:09.450 --> 00:13.610 -Mom hasn’t been complaining as much lately. - -00:14.270 --> 00:18.080 -I wonder if she’s being nice because I’m becoming strange. - -00:19.280 --> 00:21.040 -This is sad. diff --git a/src/static/media/webvtt/Lda010.vtt b/src/static/media/webvtt/Lda010.vtt deleted file mode 100644 index 0912548..0000000 --- a/src/static/media/webvtt/Lda010.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.360 --> 00:02.780 -These days, I haven’t been seeing them at all. - -00:03.290 --> 00:06.880 -Maybe I’m cured. - -00:07.630 --> 00:09.580 -That would make me so happy. - -00:09.950 --> 00:14.490 -I wonder if Dad and Mom and Touko-san will be happy, too. diff --git a/src/static/media/webvtt/Lda011.vtt b/src/static/media/webvtt/Lda011.vtt deleted file mode 100644 index b4eb76a..0000000 --- a/src/static/media/webvtt/Lda011.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.260 -I don’t want to keep a diary anymore. - -00:02.930 --> 00:10.910 -The only special thing that happened today was ‘that.’ I don’t want to see it anymore. - -00:11.600 --> 00:14.060 -Why does that me keep drifting into my mind. diff --git a/src/static/media/webvtt/Lda012.vtt b/src/static/media/webvtt/Lda012.vtt deleted file mode 100644 index 85efefc..0000000 --- a/src/static/media/webvtt/Lda012.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.840 --> 00:07.970 -Even after all these months, I can’t get used to it. - -00:08.760 --> 00:10.840 -I want to stop seeing these kinds of dreams. - -00:11.370 --> 00:12.720 -I want to become normal. diff --git a/src/static/media/webvtt/Lda013.vtt b/src/static/media/webvtt/Lda013.vtt deleted file mode 100644 index d8f81f4..0000000 --- a/src/static/media/webvtt/Lda013.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.580 -Dad bought me a computer today. - -00:04.240 --> 00:08.570 -He told me to use it to take classes online when I stay home from school. - -00:09.280 --> 00:11.490 -I’ve been doing my homework. - -00:12.060 --> 00:14.120 -I’ve been taking my tests. - -00:14.940 --> 00:17.890 -I would have to do online classes all alone. - -00:17.890 --> 00:19.250 -That’s sad. diff --git a/src/static/media/webvtt/Lda014.vtt b/src/static/media/webvtt/Lda014.vtt deleted file mode 100644 index 27e753d..0000000 --- a/src/static/media/webvtt/Lda014.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.000 --> 00:04.060 -Lately, Kyoko-chan hasn’t been talking to me. - -00:04.700 --> 00:06.420 -But maybe that’s just my imagination. - -00:06.900 --> 00:11.040 -She goes shopping with Mayu-chan. - -00:11.440 --> 00:13.660 -Could it be that they don’t like me anymore? - -00:14.400 --> 00:17.760 -Kyoko-chan seems happier when she isn’t around me. - -00:18.480 --> 00:20.560 -I don’t want to go to school anymore. - -00:20.890 --> 00:22.150 -But I’ll get scolded for that. - -00:22.160 --> 00:23.920 -I don’t like people getting mad at me. diff --git a/src/static/media/webvtt/Lda015.vtt b/src/static/media/webvtt/Lda015.vtt deleted file mode 100644 index 1a2bd04..0000000 --- a/src/static/media/webvtt/Lda015.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.420 -I have a cold and am taking a day off school. - -00:02.980 --> 00:04.820 -I’ve stayed home for 3 days now. - -00:05.830 --> 00:09.710 -The kids at school probably think I’m just cutting school. - -00:10.610 --> 00:12.320 -None of them visit me. - -00:13.240 --> 00:15.560 -They don’t like me. diff --git a/src/static/media/webvtt/Lda016.vtt b/src/static/media/webvtt/Lda016.vtt deleted file mode 100644 index 164c6f6..0000000 --- a/src/static/media/webvtt/Lda016.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.000 --> 00:01.330 -I’m so happy. - -00:01.490 --> 00:04.290 -Kyoko-chan and Mayu-chan came to visit me at home. - -00:04.670 --> 00:05.820 -I’m so glad. - -00:06.170 --> 00:07.530 -I wasn’t disliked. - -00:08.030 --> 00:09.820 -They were worried about me. - -00:10.690 --> 00:13.210 -I hope I get over this cold soon so I can go to school. - -00:13.880 --> 00:18.660 -I want to take Kyoko-chan and Mayu-chan out for a treat because they took notes for me at school. - -00:19.280 --> 00:22.250 -I wonder if that will make them happy. diff --git a/src/static/media/webvtt/Lda017.vtt b/src/static/media/webvtt/Lda017.vtt deleted file mode 100644 index 5d83e4f..0000000 --- a/src/static/media/webvtt/Lda017.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.000 --> 00:01.690 -My cold hasn’t gotten better. - -00:01.690 --> 00:04.010 -It’s been a whole week. - -00:04.520 --> 00:07.390 -I’ve been taking my medicine. - -00:08.160 --> 00:10.570 -I don’t want to go see the doctor again. - -00:11.370 --> 00:13.550 -Is this just a cold? - -00:13.950 --> 00:18.000 -I’m sweating and I’ll have to change clothes again. - -00:18.490 --> 00:20.800 -I want to go to school but can’t. - -00:21.610 --> 00:23.360 -The human body is so inconvenient. diff --git a/src/static/media/webvtt/Lda018.vtt b/src/static/media/webvtt/Lda018.vtt deleted file mode 100644 index d1e650e..0000000 --- a/src/static/media/webvtt/Lda018.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.380 -Mom has been looking after me all day. - -00:03.850 --> 00:07.020 -I sort of have her all to myself. - -00:07.640 --> 00:11.840 -I was especially happy today when Mom got me some snacks that I asked for. - -00:12.460 --> 00:13.960 -Thank you, Mom. - -00:14.450 --> 00:16.290 -I’m sorry to have worried you. diff --git a/src/static/media/webvtt/Lda019.vtt b/src/static/media/webvtt/Lda019.vtt deleted file mode 100644 index c95c6a4..0000000 --- a/src/static/media/webvtt/Lda019.vtt +++ /dev/null @@ -1,37 +0,0 @@ -WEBVTT - -00:00.000 --> 00:01.160 -Why? - -00:01.920 --> 00:03.810 -Tomo-kun is moving to another school. - -00:04.330 --> 00:09.580 -I was surprised at first to hear that Tomo-kun and my sensei came to visit me at home. - -00:10.060 --> 00:12.380 -I was so embarrassed because I was still in my pajamas. - -00:12.380 --> 00:14.590 -I didn’t even see them. - -00:15.150 --> 00:17.330 -It might have been the last time I see Tomo-kun. - -00:19.280 --> 00:22.410 -Does Tomo-kun really like me? - -00:23.080 --> 00:24.410 -I doubt it. - -00:24.740 --> 00:27.690 -Sensei probably told him to come. - -00:28.210 --> 00:30.340 -I couldn’t talk to him at all. - -00:31.300 --> 00:39.370 -I’m a little glad and a little sad and want to cry. - -00:40.120 --> 00:46.000 -I couldn’t even say "good-bye." I hate this. diff --git a/src/static/media/webvtt/Lda020.vtt b/src/static/media/webvtt/Lda020.vtt deleted file mode 100644 index e4b86b5..0000000 --- a/src/static/media/webvtt/Lda020.vtt +++ /dev/null @@ -1,31 +0,0 @@ -WEBVTT - -00:00.000 --> 00:01.670 -Today is a Sunday. - -00:01.670 --> 00:06.700 -I cooked and did the laundry for Mom as a thanks for her taking care of me while I was sick. - -00:06.700 --> 00:09.100 -My food wasn’t so good, though. - -00:09.100 --> 00:15.020 -I wonder if I did the laundry okay. Dad ate my fried eggs even though I burnt hem. - -00:15.400 --> 00:17.570 -He’s such a good Dad. - -00:17.570 --> 00:22.550 -I think he might have been a bit rude to watch videos during breakfast, though. - -00:23.050 --> 00:28.170 -I wonder why Dad’s shorts are so large. - -00:28.500 --> 00:30.850 -They’re the size of my shirt. - -00:30.850 --> 00:33.100 -Mom’s brassiere is big, too. - -00:33.100 --> 00:35.100 -I wonder what that is about. diff --git a/src/static/media/webvtt/Lda021.vtt b/src/static/media/webvtt/Lda021.vtt deleted file mode 100644 index 7fb221f..0000000 --- a/src/static/media/webvtt/Lda021.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.860 --> 00:05.640 -I’ve heard that men like woman who have large breasts. - -00:05.640 --> 00:06.800 -I wonder why. - -00:07.450 --> 00:11.060 -I want to ask someone, but I’m embarrassed. diff --git a/src/static/media/webvtt/Lda022.vtt b/src/static/media/webvtt/Lda022.vtt deleted file mode 100644 index 26849cc..0000000 --- a/src/static/media/webvtt/Lda022.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:00.000 --> 00:01.740 -I’m back to school after a long time. - -00:02.180 --> 00:05.210 -I wonder if anyone was worried because I was gone. - -00:05.650 --> 00:07.210 -I shouldn’t have worried. - -00:07.820 --> 00:09.800 -I’m glad that things are still the same. - -00:11.130 --> 00:14.060 -I thanked Kyoko-chan for letting me read her notes. - -00:14.540 --> 00:19.290 -Kyoko-chan’s notes were full of goofy doodles, which was kind of fun. diff --git a/src/static/media/webvtt/Lda023.vtt b/src/static/media/webvtt/Lda023.vtt deleted file mode 100644 index c4f2b18..0000000 --- a/src/static/media/webvtt/Lda023.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.540 --> 00:04.320 -Compared to my notes, Kyoko-chan’s look like a box full of toys. - -00:04.940 --> 00:08.090 -Her sketches of Kamiya Sensei resemble the teacher so much that I started to laugh. - -00:08.750 --> 00:14.320 -When I showed the sketches to Mom, she told me to stop goofing off and to do the homework I have to catch up on. - -00:14.750 --> 00:16.830 -Mom seems to be a different person from a week ago. diff --git a/src/static/media/webvtt/Lda024.vtt b/src/static/media/webvtt/Lda024.vtt deleted file mode 100644 index 5c27990..0000000 --- a/src/static/media/webvtt/Lda024.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.000 --> 00:01.180 -I’m so happy. - -00:01.180 --> 00:03.180 -Tomo-kun wrote me a letter. - -00:03.540 --> 00:07.200 -He just wrote to say that he’s doing well. - -00:07.200 --> 00:13.780 -I’m glad that I’m at least receiving letters, even though I can’t see the person who is writing me. - -00:14.980 --> 00:17.720 -I used to watch him, more than he watched me. - -00:18.920 --> 00:22.120 -I’m so happy to have a letter from him! - -00:22.840 --> 00:24.440 -I’ll have to write him back. - -00:24.880 --> 00:27.760 -I’ll have to get some stationery supplies to write him. diff --git a/src/static/media/webvtt/Lda025.vtt b/src/static/media/webvtt/Lda025.vtt deleted file mode 100644 index def2fd9..0000000 --- a/src/static/media/webvtt/Lda025.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.360 --> 00:08.480 -But... Tomo-kun had to have written everyone in class. He couldn’t have written only me. diff --git a/src/static/media/webvtt/Lda026.vtt b/src/static/media/webvtt/Lda026.vtt deleted file mode 100644 index 32212ac..0000000 --- a/src/static/media/webvtt/Lda026.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:00.000 --> 00:05.600 -Tomorrow, I’ll buy Kyoko-chan a slice of cake to thank her for taking notes for me while I was away from school. - -00:06.000 --> 00:08.520 -It’s been a long time since we’ve gone to fool around in the city together. - -00:08.520 --> 00:14.120 -Going out right after school is a no-no, but everybody else does it. - -00:14.120 --> 00:15.920 -Why can’t I, every great now-and-then? - -00:16.560 --> 00:19.880 -Oh, I’ll have to ask Mom for some money. - -00:20.380 --> 00:24.260 -I’d better buy Mom and Dad something while I’m out. diff --git a/src/static/media/webvtt/Lda027.vtt b/src/static/media/webvtt/Lda027.vtt deleted file mode 100644 index 33fb0d1..0000000 --- a/src/static/media/webvtt/Lda027.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.240 -Kyoko-chan doesn’t like me anymore? - -00:02.940 --> 00:09.980 -Was I the only girl that received a letter full of doodles from Tomo-kun? - -00:09.980 --> 00:11.400 -Why! - -00:12.220 --> 00:14.700 -Kyoko-chan must be angry. - -00:15.460 --> 00:16.940 -What should I do? - -00:17.640 --> 00:21.720 -I got careless and for got to buy the stationery I needed to write Tomo-kun. - -00:22.340 --> 00:26.800 -Dear God, please let me and Kyoko-chan be friends again. - -00:27.640 --> 00:33.020 -I get a little bit happy when I think that I might be special. - -00:33.760 --> 00:36.020 -Thank you, Tomo-kun. diff --git a/src/static/media/webvtt/Lda028.vtt b/src/static/media/webvtt/Lda028.vtt deleted file mode 100644 index b3fff8c..0000000 --- a/src/static/media/webvtt/Lda028.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.400 -Kyoko-chan must be angry. - -00:03.160 --> 00:08.840 -I thought that she would go to the laboratory class with me, but she went off with Mayu-chan. - -00:09.120 --> 00:10.380 -It’s too late. - -00:10.380 --> 00:12.000 -She doesn’t like me. - -00:12.780 --> 00:16.740 -It wouldn’t have been like this if I had kept my mouth closed. - -00:17.720 --> 00:26.680 -Even when I apologized, she said, "why do I have to apologize to you?" She doesn’t like me. - -00:27.340 --> 00:29.380 -She really doesn’t like me. diff --git a/src/static/media/webvtt/Lda029.vtt b/src/static/media/webvtt/Lda029.vtt deleted file mode 100644 index 8cc704a..0000000 --- a/src/static/media/webvtt/Lda029.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.800 -I have nothing to write in my diary today. diff --git a/src/static/media/webvtt/Lda030.vtt b/src/static/media/webvtt/Lda030.vtt deleted file mode 100644 index 3df948e..0000000 --- a/src/static/media/webvtt/Lda030.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.000 --> 00:01.940 -Touko-san is a big jerk. diff --git a/src/static/media/webvtt/Lda031.vtt b/src/static/media/webvtt/Lda031.vtt deleted file mode 100644 index 8e9de3d..0000000 --- a/src/static/media/webvtt/Lda031.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.100 -I can’t believe what Touko-san said. - -00:03.840 --> 00:06.160 -Nothing will return to the way it used to be. - -00:06.820 --> 00:09.780 -I’m disliked. - -00:10.820 --> 00:13.100 -Touko-san said to keep writing in my diary. - -00:14.000 --> 00:16.420 -I don’t need a diary. - -00:17.360 --> 00:19.520 -I don’t have anything to write. - -00:20.320 --> 00:23.260 -Nothing has changed. - -00:24.040 --> 00:26.620 -I just go to school everyday as usual. - -00:27.120 --> 00:30.340 -I’m alone during recess and lunchtime, and no one talks to me. diff --git a/src/static/media/webvtt/Lda032.vtt b/src/static/media/webvtt/Lda032.vtt deleted file mode 100644 index 514217e..0000000 --- a/src/static/media/webvtt/Lda032.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.280 --> 00:01.240 -How mean. - -00:01.530 --> 00:03.450 -Writing graffiti on my desk. - -00:04.220 --> 00:07.060 -As usual, Kyoko-chan won’t say anything to me. - -00:07.800 --> 00:10.260 -I didn’t do that. - -00:10.840 --> 00:13.140 -I’ve never gone out with Tomo-kun. - -00:13.940 --> 00:15.960 -I felt like everyone was mocking me. - -00:16.560 --> 00:18.480 -I don’t want to go to school anymore. diff --git a/src/static/media/webvtt/Lda033.vtt b/src/static/media/webvtt/Lda033.vtt deleted file mode 100644 index a036ab1..0000000 --- a/src/static/media/webvtt/Lda033.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.980 -Kamiya sensei came to my house and talked with my Mom. - -00:04.960 --> 00:07.080 -Mom looked frustrated. - -00:07.960 --> 00:11.640 -Kamiya sensei said that if I skip class any more, I wouldn’t be able to graduate. - -00:12.810 --> 00:16.580 -Mom and Dad were talking about it after dinner. - -00:17.410 --> 00:21.140 -Mom was crying and Dad looked very distressed. - -00:22.020 --> 00:23.460 -Am I a bad kid? - -00:24.330 --> 00:26.130 -I want to disappear. diff --git a/src/static/media/webvtt/Lda034.vtt b/src/static/media/webvtt/Lda034.vtt deleted file mode 100644 index 2cba3ff..0000000 --- a/src/static/media/webvtt/Lda034.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.000 --> 00:05.720 -Today Dad skipped work and talked with me all day. - -00:06.360 --> 00:07.740 -He’s a kind Dad. - -00:08.500 --> 00:12.220 -I wonder if I’ll make friends if I went to a different school. - -00:13.090 --> 00:15.530 -I wonder if school will be fun somewhere else. - -00:16.610 --> 00:19.740 -I wonder if I can go to the school Tomo-kun goes to. diff --git a/src/static/media/webvtt/Lda035.vtt b/src/static/media/webvtt/Lda035.vtt deleted file mode 100644 index 0e2d2c7..0000000 --- a/src/static/media/webvtt/Lda035.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.000 --> 00:01.630 -My teacher visited our house again today. - -00:02.140 --> 00:03.920 -It seems that I can go to junior high school. - -00:04.590 --> 00:07.870 -Mom bowed to the teacher many times. - -00:08.570 --> 00:10.420 -I’m sorry, Mom. - -00:11.010 --> 00:14.970 -If I go to junior high school, I won’t cause trouble anymore. diff --git a/src/static/media/webvtt/Lda036.vtt b/src/static/media/webvtt/Lda036.vtt deleted file mode 100644 index 88137b8..0000000 --- a/src/static/media/webvtt/Lda036.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.000 --> 00:08.330 -When I went to school today, Kamiya-sensei said that I would graduate, and that I don’t have to force myself to come to school. - -00:08.940 --> 00:10.580 -Does he not want me to be at school? - -00:11.130 --> 00:13.250 -Is he letting me graduate because he doesn’t want to see me? - -00:13.340 --> 00:14.500 -To get rid of me? - -00:15.380 --> 00:18.060 -I’m never going to that school again. diff --git a/src/static/media/webvtt/Lda037.vtt b/src/static/media/webvtt/Lda037.vtt deleted file mode 100644 index ab21435..0000000 --- a/src/static/media/webvtt/Lda037.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.800 --> 00:06.400 -Is there a meaning to why I’m here? Does someone need me? diff --git a/src/static/media/webvtt/Lda038.vtt b/src/static/media/webvtt/Lda038.vtt deleted file mode 100644 index 4d4065c..0000000 --- a/src/static/media/webvtt/Lda038.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.010 -I named a special gift Dad got for me today. - -00:03.800 --> 00:04.690 -I named it Lain. - -00:05.520 --> 00:06.810 -She’s another me. - -00:07.570 --> 00:09.260 -My only friend. - -00:10.770 --> 00:15.040 -But when I go to junior high, I’ll make real friends. - -00:15.970 --> 00:20.860 -If I appear at ease and lighthearted, won’t other kids like me? diff --git a/src/static/media/webvtt/Lda039.vtt b/src/static/media/webvtt/Lda039.vtt deleted file mode 100644 index 16dde1f..0000000 --- a/src/static/media/webvtt/Lda039.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.130 --> 00:03.040 -I talked to Dad about computer connections. - -00:03.400 --> 00:06.770 -He went through a lot of elaborate steps to set up my computer. - -00:07.880 --> 00:10.570 -We worked hard for about 5 hours setting it up. - -00:10.570 --> 00:13.280 -Dad was reading lots of books about computers while we did it. - -00:13.680 --> 00:16.620 -Once we were done, Dad called Mom, and the three of us were delighted. - -00:18.120 --> 00:23.720 -I don’t think we felt so good together as a family in a long time. - -00:24.540 --> 00:31.780 -It seems like since I stopped going to school, Mom and Dad haven’t been as happy as they used to be. - -00:32.420 --> 00:33.450 -I’m sorry. diff --git a/src/static/media/webvtt/Lda040.vtt b/src/static/media/webvtt/Lda040.vtt deleted file mode 100644 index ad46237..0000000 --- a/src/static/media/webvtt/Lda040.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.800 --> 00:02.460 -Computer networks are amazing. - -00:02.460 --> 00:07.020 -No one can see my face from there, and I don’t feel embarrassed. - -00:07.500 --> 00:10.320 -I feel like I’m becoming a different me. - -00:11.390 --> 00:17.690 -There are so many people online, and they’re kind to me even though I’m just someone with a lot of problems. - -00:18.400 --> 00:23.200 -I’m so happy that people could be so kind to me. diff --git a/src/static/media/webvtt/Lda041.vtt b/src/static/media/webvtt/Lda041.vtt deleted file mode 100644 index a936682..0000000 --- a/src/static/media/webvtt/Lda041.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.310 -I surfed the net all day again today. - -00:03.000 --> 00:05.960 -I’m surprised at what an easy-going person I can be on the net. - -00:06.920 --> 00:12.300 -My name on the net is "Lain," but it seems that they can’t tell from that that I’m a girl. - -00:13.080 --> 00:17.000 -If something interesting happens, I get e-mails telling me about it right away. - -00:17.000 --> 00:18.300 -Everybody is friendly. - -00:19.120 --> 00:21.520 -No one can bully me here. - -00:22.170 --> 00:25.650 -My eyes hurt after I stare at the monitor all day long. - -00:26.250 --> 00:30.500 -But for me, having my eyesight deteriorate would be a good thing. diff --git a/src/static/media/webvtt/Lda042.vtt b/src/static/media/webvtt/Lda042.vtt deleted file mode 100644 index a99473c..0000000 --- a/src/static/media/webvtt/Lda042.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:00.200 --> 00:07.250 -Programs seemed difficult at first, but some of them got easier after I studied them. - -00:07.620 --> 00:12.700 -I have time now anyway, so I think I’ll study. - -00:13.470 --> 00:16.070 -It shouldn’t be any trouble. - -00:17.050 --> 00:21.200 -Mom and Dad won’t be there to protect me forever. - -00:21.930 --> 00:25.600 -I’ll borrow a book from the library tomorrow. - -00:26.170 --> 00:35.970 -I can study when I’m online, but if I’m online all the time, I might not be able to receive phone calls. diff --git a/src/static/media/webvtt/Lda043.vtt b/src/static/media/webvtt/Lda043.vtt deleted file mode 100644 index a4b13ad..0000000 --- a/src/static/media/webvtt/Lda043.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.640 --> 00:07.390 -Maybe Kyoko-chan is worried about me. Well...probably not. diff --git a/src/static/media/webvtt/Lda044.vtt b/src/static/media/webvtt/Lda044.vtt deleted file mode 100644 index e0a0873..0000000 --- a/src/static/media/webvtt/Lda044.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:00.000 --> 00:01.980 -I started a game on the net. - -00:02.480 --> 00:08.380 -It’s called the "Mouse Game" You sell tickets to your friends and make money. - -00:09.220 --> 00:12.880 -But if I start making lots of money, the other players will have a grudge against me. - -00:13.360 --> 00:18.720 -There will be people who want to kill me then, so I have to be careful. - -00:19.780 --> 00:27.340 -At first I thought this was just a game, but it made me feel bad after a while, and I wanted to cry. - -00:28.120 --> 00:34.100 -There was a questionnaire that came with the game asking me what I thought of it, so I wrote the company telling them what I honestly thought. - -00:34.740 --> 00:36.980 -I guess they know who I am now and don’t like me. - -00:36.980 --> 00:38.640 -I’m sad. - -00:39.940 --> 00:41.980 -I don’t like games like that. - -00:42.360 --> 00:45.520 -I’d rather play a game that everyone can laugh with and enjoy together. - -00:46.040 --> 00:47.720 -It isn’t for me. diff --git a/src/static/media/webvtt/Lda045.vtt b/src/static/media/webvtt/Lda045.vtt deleted file mode 100644 index b3a2c0d..0000000 --- a/src/static/media/webvtt/Lda045.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.770 -It was a graduation ceremony, but I didn't want to go. - -00:04.760 --> 00:08.250 -Once I’m in junior high, I’ll go for sure. - -00:09.500 --> 00:10.620 -I promise. - -00:11.480 --> 00:13.790 -I won’t worry Mom anymore. - -00:14.480 --> 00:20.510 -You took my clothes to the dry cleaners, didn’t you, Mom? - -00:21.230 --> 00:22.300 -I’m sorry. diff --git a/src/static/media/webvtt/Lda046.vtt b/src/static/media/webvtt/Lda046.vtt deleted file mode 100644 index f2c97d7..0000000 --- a/src/static/media/webvtt/Lda046.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.810 --> 00:07.470 -What does everyone think about me? Does anyone think anything about me? diff --git a/src/static/media/webvtt/Lda047.vtt b/src/static/media/webvtt/Lda047.vtt deleted file mode 100644 index 846a42f..0000000 --- a/src/static/media/webvtt/Lda047.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.000 --> 00:01.610 -Spring break starts today. - -00:02.160 --> 00:06.320 -I haven’t been going to school, though. - -00:08.030 --> 00:16.250 -When I was at the library reading a book about UNIX, a guy next to me who looked about the age of a college student gave me a really weird look. - -00:17.060 --> 00:24.100 -Studying computers is tough because there are many technical terms and difficult kanji, but I enjoy this. - -00:24.560 --> 00:29.660 -There’s nothing painful about it, and it’s more fun than grammar or math. - -00:30.400 --> 00:37.430 -I understand English better now, and I understand things better in general, but there are still many things I don’t understand. - -00:37.830 --> 00:40.330 -I think I’ll ask Dad about some of this stuff. - -00:40.330 --> 00:46.130 -I wonder if Dad will give me a weird look like the guy in the library. diff --git a/src/static/media/webvtt/Lda048.vtt b/src/static/media/webvtt/Lda048.vtt deleted file mode 100644 index 6d8b5b8..0000000 --- a/src/static/media/webvtt/Lda048.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.000 --> 00:06.000 -When I decoded a file that came today by e-mail, I saw the image of a dead infant. - -00:06.500 --> 00:09.260 -I couldn’t find the address the file came from. - -00:09.460 --> 00:12.600 -I wonder if it’s from the person that started that tasteless online game. - -00:12.830 --> 00:15.230 -I’m getting scared to open my mail now. - -00:15.700 --> 00:18.900 -I can’t leave here, though. - -00:19.300 --> 00:23.360 -At least not until I enter junior high and start an ordinary life. - -00:23.930 --> 00:31.830 -When I start junior high, and I’ll have friends and I’ll be busy, and I might not have time to come to the net. - -00:32.260 --> 00:34.730 -I ought to study the net now while I still have time. diff --git a/src/static/media/webvtt/Lda049.vtt b/src/static/media/webvtt/Lda049.vtt deleted file mode 100644 index fade1b0..0000000 --- a/src/static/media/webvtt/Lda049.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.200 -I was sad during dinner today. - -00:02.760 --> 00:06.430 -Dad said that he has to go overseas because of work. - -00:06.860 --> 00:10.330 -It was so sudden I was surprised and speechless. - -00:11.030 --> 00:13.800 -He said he’d be away for 2 months. - -00:13.800 --> 00:18.360 -I started to cry all of a sudden, and I lost my appetite. - -00:19.300 --> 00:24.100 -Dad looked worried, and he hugged me. - -00:24.760 --> 00:28.900 -We’ll go to see him off at the airport tomorrow. diff --git a/src/static/media/webvtt/Lda050.vtt b/src/static/media/webvtt/Lda050.vtt deleted file mode 100644 index 6b0303c..0000000 --- a/src/static/media/webvtt/Lda050.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.900 --> 00:03.420 -Dad’s work seems to be really difficult. - -00:04.060 --> 00:07.800 -I want to work when I grow up. - -00:08.580 --> 00:12.480 -I want to be like Dad and live with self-confidence. diff --git a/src/static/media/webvtt/Lda051.vtt b/src/static/media/webvtt/Lda051.vtt deleted file mode 100644 index 5566995..0000000 --- a/src/static/media/webvtt/Lda051.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.040 -We’ll saw Dad off today. - -00:02.700 --> 00:04.600 -Mom seemed really sad. - -00:05.320 --> 00:09.040 -We waved good-bye to each other for a long time as he took the escalator to the gate. - -00:09.820 --> 00:12.800 -On the way home, Mom took me to a restaurant. - -00:13.720 --> 00:19.960 -It was a nice dinner, but it was sad knowing that it will just be me and Mom at the dinner table for a long time. - -00:20.420 --> 00:26.160 -I’m sure Mom feels sad, too. - -00:27.380 --> 00:31.300 -God, please let Dad come home safely. diff --git a/src/static/media/webvtt/Lda052.vtt b/src/static/media/webvtt/Lda052.vtt deleted file mode 100644 index 180fe89..0000000 --- a/src/static/media/webvtt/Lda052.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.580 --> 00:11.480 -Mom, do you feel uneasy with me? I know I’m odd. It’s okay. I won’t bother you. diff --git a/src/static/media/webvtt/Lda053.vtt b/src/static/media/webvtt/Lda053.vtt deleted file mode 100644 index 16d7092..0000000 --- a/src/static/media/webvtt/Lda053.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:00.000 --> 00:07.380 -When I talked about the email to my net buddies, a person named Rabbit taught me how I can trace it. I might be able to do it if the host's logs aren't gone yet. - -00:07.720 --> 00:17.740 -It’s not something I’m supposed to do, but I feel like a detective, and it’s a bit fun. - -00:18.480 --> 00:20.420 -Whoever sent that e-mail is at fault, anyway. - -00:20.420 --> 00:22.840 -I can retaliate a little. - -00:23.560 --> 00:25.500 -I’m not such a good person anyway. - -00:26.880 --> 00:30.880 -What can I do if people say that there is something wrong with my character? - -00:31.460 --> 00:34.340 -After all, there’s something wrong with me. - -00:35.040 --> 00:36.760 -"Strange" is what I am? - -00:37.660 --> 00:41.280 -I’m strange, aren’t I, Mr. Rabbit? diff --git a/src/static/media/webvtt/Lda054.vtt b/src/static/media/webvtt/Lda054.vtt deleted file mode 100644 index fbf1f42..0000000 --- a/src/static/media/webvtt/Lda054.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.300 -By following instructions I learned yesterday, I was able to access the host site. - -00:03.300 --> 00:05.300 -It was easy. - -00:05.660 --> 00:08.280 -Maybe I’m a genius at this kind of thing. - -00:08.900 --> 00:13.080 -I found some ‘footprints’ when I did some downloading. - -00:13.860 --> 00:18.560 -I’m figuring out how to trace down that sick person. - -00:19.360 --> 00:23.240 -I’m going to mail him to set a trap for him. - -00:24.020 --> 00:26.560 -I can’t forgive someone who does something like that. - -00:27.660 --> 00:29.960 -I’m not going to cry myself to sleep anymore. diff --git a/src/static/media/webvtt/Lda055.vtt b/src/static/media/webvtt/Lda055.vtt deleted file mode 100644 index 9a7525f..0000000 --- a/src/static/media/webvtt/Lda055.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.880 --> 00:09.980 -I’ll solve it with my own strength. My own strength. I should be able to do that now. diff --git a/src/static/media/webvtt/Lda056.vtt b/src/static/media/webvtt/Lda056.vtt deleted file mode 100644 index 4802802..0000000 --- a/src/static/media/webvtt/Lda056.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.000 --> 00:01.480 -That was it after all! - -00:02.040 --> 00:06.450 -Within 2 hours of mailing that guy, I got a response. - -00:07.240 --> 00:11.960 -I was curious what it was, but I was sure it would be gross, so I didn’t. - -00:12.270 --> 00:15.130 -I decoded it, set a trap, and encoded it. - -00:15.930 --> 00:19.330 -This way, that person will never do this again. diff --git a/src/static/media/webvtt/Lda057.vtt b/src/static/media/webvtt/Lda057.vtt deleted file mode 100644 index ebae98c..0000000 --- a/src/static/media/webvtt/Lda057.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:00.000 --> 00:09.200 -I took the information on his host site and spread it publicly on a "mirror-site." I didn’t look at any of the pictures because they’d all be gross. - -00:09.840 --> 00:11.750 -The text of his site was gross, too. - -00:13.200 --> 00:17.760 -I’m starting to worry if I trapped the right person. - -00:18.710 --> 00:27.190 -What if I got the wrong person’s data or identification...I don’t want to ever do this again. - -00:27.890 --> 00:31.330 -It feels good to be able to do things others can’t do. - -00:32.110 --> 00:36.840 -Is there something wrong with me? diff --git a/src/static/media/webvtt/Lda058.vtt b/src/static/media/webvtt/Lda058.vtt deleted file mode 100644 index 1a5e7e5..0000000 --- a/src/static/media/webvtt/Lda058.vtt +++ /dev/null @@ -1,55 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.410 -It’s horrible, but I can’t do anything about it. - -00:04.040 --> 00:05.910 -Someone’s been reading my diary. - -00:06.800 --> 00:12.200 -It’s been copied and displayed on an FTP site with a vulgar title. - -00:12.920 --> 00:16.640 -I stopped it, but over 20 people have already read it. - -00:17.550 --> 00:19.670 -Why did this all happen? - -00:20.280 --> 00:25.950 -Other people can do what I can do. - -00:26.990 --> 00:29.530 -I think I’ll avoid the net for a while. - -00:29.800 --> 00:34.900 -I want to see what’s going on, but my diary might be on someone’s site, being reproduced right now. - -00:34.900 --> 00:36.000 -I know. - -00:36.850 --> 00:41.690 -I’m going to send an information-deleting engine into the net. - -00:42.680 --> 00:47.350 -But what if whoever took my diary has the diary’s back-up information, too? - -00:48.030 --> 00:50.130 -I’m sure the person who took my diary is that gross guy. - -00:50.130 --> 00:52.200 -And if it’s him, he would certainly have that information. - -00:52.690 --> 00:53.560 -I’m so mad. - -00:54.110 --> 00:55.650 -I can’t win this by myself. - -00:56.330 --> 00:58.630 -So this is what I amount to. - -00:59.390 --> 01:01.370 -I think I’ll consult Mr. Rabbit. - -01:02.050 --> 01:04.590 -I wonder what will help. diff --git a/src/static/media/webvtt/Lda059.vtt b/src/static/media/webvtt/Lda059.vtt deleted file mode 100644 index 82f168a..0000000 --- a/src/static/media/webvtt/Lda059.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.850 --> 00:07.970 -Are the people who enjoy doing horrible things and hurting people really human beings like me? - -00:09.100 --> 00:11.480 -But what am I? diff --git a/src/static/media/webvtt/Lda060.vtt b/src/static/media/webvtt/Lda060.vtt deleted file mode 100644 index c2b3eb8..0000000 --- a/src/static/media/webvtt/Lda060.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.100 -I don’t understand anymore. - -00:02.860 --> 00:06.350 -Did that strange person know Mr. Rabbit? - -00:07.530 --> 00:12.940 -He said, "Leave it to me, and forget about it." Oh, I’m mad. - -00:13.460 --> 00:14.930 -I want revenge. - -00:15.460 --> 00:17.090 -I’m not going to cry myself to sleep. - -00:17.950 --> 00:20.090 -I want to forget everything I want to forget. - -00:20.740 --> 00:21.770 -The things I don’t like. - -00:22.260 --> 00:23.460 -The me I don’t like. - -00:24.410 --> 00:26.730 -Can I do something magical like that? diff --git a/src/static/media/webvtt/Lda061.vtt b/src/static/media/webvtt/Lda061.vtt deleted file mode 100644 index cd24b55..0000000 --- a/src/static/media/webvtt/Lda061.vtt +++ /dev/null @@ -1,37 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.240 -School will start soon. - -00:02.760 --> 00:04.600 -I’m going to be different this time for sure. - -00:05.160 --> 00:09.300 -I’m going to be an ordinary, light-hearted junior high school student. - -00:10.280 --> 00:13.120 -I hope I don’t have many of the same classmates I had in elementary school. - -00:13.880 --> 00:16.620 -Mom and Dad were talking on the phone. - -00:17.120 --> 00:18.980 -Were they worried about me? - -00:19.460 --> 00:22.720 -That’s okay. You can both relax and not worry. - -00:23.720 --> 00:26.060 -I saw it again for the first time in a long while. - -00:26.480 --> 00:28.060 -Is it an illusion? - -00:28.500 --> 00:32.500 -Is there something wrong with my mind? - -00:33.360 --> 00:36.440 -I don’t care if I’m sick or not. - -00:37.840 --> 00:39.580 -I just want it to stop. diff --git a/src/static/media/webvtt/Lda062.vtt b/src/static/media/webvtt/Lda062.vtt deleted file mode 100644 index 9cbff6f..0000000 --- a/src/static/media/webvtt/Lda062.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.400 -I started bleeding when I was brushing my teeth. - -00:02.880 --> 00:04.510 -Could it be pyorrhea? - -00:04.960 --> 00:07.310 -My teeth were always so healthy. - -00:07.710 --> 00:09.630 -I can taste my blood. - -00:10.300 --> 00:12.400 -It’s a bit bitter and I don’t like it. - -00:12.840 --> 00:16.040 -I think I won’t stop bleeding and that I won’t be able to fall asleep. - -00:16.650 --> 00:21.770 -Is it because I’m uneasy about starting junior high school tomorrow? diff --git a/src/static/media/webvtt/Lda063.vtt b/src/static/media/webvtt/Lda063.vtt deleted file mode 100644 index 654a8b0..0000000 --- a/src/static/media/webvtt/Lda063.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.320 --> 00:04.410 -I’m different. I’m a different me. diff --git a/src/static/media/webvtt/Lda064.vtt b/src/static/media/webvtt/Lda064.vtt deleted file mode 100644 index dd05cae..0000000 --- a/src/static/media/webvtt/Lda064.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.020 -Mom came to the ceremony for the start of the school year. - -00:03.720 --> 00:06.350 -None of the kids from grade school were in my class. - -00:06.350 --> 00:07.150 -I was relieved. - -00:07.740 --> 00:11.600 -The teacher in charge was a nice person, and I made some friends. - -00:12.330 --> 00:15.200 -I was assigned to a seat. - -00:16.540 --> 00:18.720 -There’s a different feel here compared to grade school. - -00:18.720 --> 00:24.590 -I can’t hang out with most of the kids, but I think I’ll get along with just one of the girls sitting next to me. - -00:25.320 --> 00:30.090 -She’s quiet, but that’s the kind of person that’s easy for me to be around. - -00:30.730 --> 00:33.340 -It’s great to meet you, Misato-chan! diff --git a/src/static/media/webvtt/Lda065.vtt b/src/static/media/webvtt/Lda065.vtt deleted file mode 100644 index f13835c..0000000 --- a/src/static/media/webvtt/Lda065.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.400 --> 00:04.120 -I feel like everything will go great now. - -00:04.640 --> 00:10.790 -As long as I have one friend, I’m okay. Dad, I hope you come home soon! diff --git a/src/static/media/webvtt/Lda066.vtt b/src/static/media/webvtt/Lda066.vtt deleted file mode 100644 index 1d9949a..0000000 --- a/src/static/media/webvtt/Lda066.vtt +++ /dev/null @@ -1,31 +0,0 @@ -WEBVTT - -00:00.150 --> 00:03.200 -Today I did a lot of things with Misato-chan. - -00:03.770 --> 00:06.350 -She’s good at physical education, though I’m not. - -00:06.640 --> 00:09.930 -I think I’m more into liberal arts. - -00:10.790 --> 00:13.740 -Misato-chan has been playing the violin since she was very young. - -00:13.970 --> 00:15.860 -She’s even been in competitions. - -00:16.230 --> 00:17.010 -She’s amazing. - -00:17.600 --> 00:19.520 -She’s good with computers, too. - -00:19.840 --> 00:21.430 -I didn’t tell her that I’m into computers, though. - -00:22.150 --> 00:24.960 -I wanted to keep things having to do with me and the net a secret. - -00:25.820 --> 00:32.720 -On the net, I can be the sort of me that isn’t so careful. diff --git a/src/static/media/webvtt/Lda067.vtt b/src/static/media/webvtt/Lda067.vtt deleted file mode 100644 index fc3da32..0000000 --- a/src/static/media/webvtt/Lda067.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.090 --> 00:02.520 -I told Touko-san all about it. - -00:03.060 --> 00:05.250 -I talked about Misato-chan through the whole session. - -00:05.770 --> 00:08.450 -Touko-san said, "you’re doing really well," and I was a bit embarrassed. - -00:09.240 --> 00:12.080 -I wonder what Touko-san did for her extracurricular activities. - -00:12.610 --> 00:14.570 -I think she’s good at physical education. - -00:15.120 --> 00:18.130 -She said that she went to America for school. - -00:18.470 --> 00:20.480 -Maybe things are different there. diff --git a/src/static/media/webvtt/Lda068.vtt b/src/static/media/webvtt/Lda068.vtt deleted file mode 100644 index 56982c7..0000000 --- a/src/static/media/webvtt/Lda068.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.930 -Misato-chan said that she wanted to be in same extracurricular class with me. - -00:04.560 --> 00:10.840 -I’m nowhere as good as her in music, and she said that she didn’t want to be in music class with me anyway. - -00:11.260 --> 00:17.070 -The people in the joint research group were very nice, but I wasn't sure if I wanted to join. - -00:18.220 --> 00:20.760 -I thought I would join an art class. - -00:21.100 --> 00:24.840 -I’ve always enjoyed drawing. diff --git a/src/static/media/webvtt/Lda069.vtt b/src/static/media/webvtt/Lda069.vtt deleted file mode 100644 index 1e1f4b6..0000000 --- a/src/static/media/webvtt/Lda069.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:00.000 --> 00:04.000 -Misato-chan is really good to me. - -00:04.780 --> 00:06.460 -We’re always together. - -00:06.970 --> 00:10.800 -I’m sad when she doesn’t come to school. - -00:11.420 --> 00:13.880 -I wish I had more friends. - -00:14.650 --> 00:16.350 -I wonder if I’m being selfish. - -00:16.800 --> 00:18.970 -Am I greedy? - -00:19.530 --> 00:22.090 -I wonder if Misato-chan is okay when she is alone. - -00:22.700 --> 00:26.800 -If I skip school tomorrow, how would she feel? - -00:27.600 --> 00:31.760 -If I tried something like that, though, she won’t like me anymore. diff --git a/src/static/media/webvtt/Lda070.vtt b/src/static/media/webvtt/Lda070.vtt deleted file mode 100644 index f65d887..0000000 --- a/src/static/media/webvtt/Lda070.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.050 -I didn’t want to stay home from school deliberately. - -00:03.310 --> 00:07.310 -My head hurt, and I saw that thing again, so I stayed home. - -00:07.980 --> 00:11.150 -Mom had to go to work, so I was home alone. - -00:12.380 --> 00:14.970 -I didn’t feel this way in elementary school. - -00:15.470 --> 00:17.880 -Why do I feel so sad and tired now? - -00:18.620 --> 00:20.330 -Does it have to do with Misato-chan? - -00:20.720 --> 00:22.730 -Maybe I’ll call Dad. - -00:23.500 --> 00:26.090 -That’s expensive though. - -00:26.380 --> 00:28.000 -Mom might get angry. diff --git a/src/static/media/webvtt/Lda071.vtt b/src/static/media/webvtt/Lda071.vtt deleted file mode 100644 index b920fd7..0000000 --- a/src/static/media/webvtt/Lda071.vtt +++ /dev/null @@ -1,43 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.200 -I wonder if Misato-chan is strong. - -00:02.480 --> 00:04.810 -She seemed to be just fine while I was away. - -00:05.450 --> 00:06.780 -I was a bit disappointed. - -00:07.320 --> 00:09.900 -I wonder if I’m too possessive. - -00:10.480 --> 00:16.120 -Maybe Misato-chan has friends aside from me, and I just want her for myself. - -00:17.070 --> 00:18.160 -I don’t like this. - -00:18.160 --> 00:19.560 -I’m just being blameful. - -00:20.110 --> 00:22.560 -I’m becoming a dislikable girl again. - -00:23.260 --> 00:27.630 -In extracurricular class, I went to go buy sketch books with the rest of the class. - -00:28.140 --> 00:34.090 -The pastels were very pretty, so I bought some and was drawing before dinner. - -00:34.090 --> 00:38.320 -Mom scolded me, saying that the pastels were stinky. - -00:38.830 --> 00:41.840 -I don’t mind their smell very much. - -00:42.510 --> 00:44.430 -I’m going to give my best to study and art. - -00:44.760 --> 00:47.200 -Fight, Lain! diff --git a/src/static/media/webvtt/Lda072.vtt b/src/static/media/webvtt/Lda072.vtt deleted file mode 100644 index 9b22ca1..0000000 --- a/src/static/media/webvtt/Lda072.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.460 --> 00:05.480 -Am I forcing myself to do too much? I’m not, am I? diff --git a/src/static/media/webvtt/Lda073.vtt b/src/static/media/webvtt/Lda073.vtt deleted file mode 100644 index e4a0a6b..0000000 --- a/src/static/media/webvtt/Lda073.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.000 --> 00:07.390 -I drew a picture of Touko-san and went to her office to show her, but one of the people there said that she was out. - -00:07.800 --> 00:09.390 -I guess she’s really busy. - -00:09.560 --> 00:13.280 -Dad is going to come back soon, and I’ve been feeling good lately. - -00:13.790 --> 00:17.720 -I can’t see ‘that’ anymore, so I think I’ll go back to the Net for old time’s sake. - -00:18.270 --> 00:20.330 -I haven’t seen Mr. Rabbit in a while. - -00:20.760 --> 00:22.650 -I have to say thanks for that time. - -00:23.290 --> 00:26.640 -I look pretty good when I’m making progress. diff --git a/src/static/media/webvtt/Lda074.vtt b/src/static/media/webvtt/Lda074.vtt deleted file mode 100644 index 0814750..0000000 --- a/src/static/media/webvtt/Lda074.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.060 --> 00:03.390 -I’m not forcing myself to laugh. This is me. diff --git a/src/static/media/webvtt/Lda075.vtt b/src/static/media/webvtt/Lda075.vtt deleted file mode 100644 index 3adfe92..0000000 --- a/src/static/media/webvtt/Lda075.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.000 --> 00:01.950 -I saw ‘that’ on the Net. - -00:02.270 --> 00:04.360 -I haven’t had a problem with that before. - -00:04.830 --> 00:06.000 -Why is it happening? - -00:06.650 --> 00:09.000 -But I don’t have to go to the Net anyway. - -00:09.390 --> 00:14.920 -I’ve written a letter to Mr. Rabbit, so I won’t go back to the Net for a while. - -00:15.610 --> 00:17.470 -Things are going well anyway. - -00:18.080 --> 00:19.470 -It’s okay, Lain. - -00:20.060 --> 00:22.990 -I’m not alone anymore. diff --git a/src/static/media/webvtt/Lda076.vtt b/src/static/media/webvtt/Lda076.vtt deleted file mode 100644 index c0b40f0..0000000 --- a/src/static/media/webvtt/Lda076.vtt +++ /dev/null @@ -1,31 +0,0 @@ -WEBVTT - -00:00.000 --> 00:01.760 -Dad came home. - -00:02.140 --> 00:03.880 -I talked to him a lot. - -00:03.880 --> 00:07.760 -About me, about drawing, about Misato-chan. - -00:08.280 --> 00:14.760 -I talked and talked and talked until Mom said that Dad is tired and that I ought to hold off on talking to him until tomorrow. - -00:14.760 --> 00:16.840 -Maybe I did tire him out. - -00:17.290 --> 00:19.080 -He was smiling as I talked to him. - -00:19.840 --> 00:22.480 -He brought me a Teddy Bear as a gift. - -00:22.940 --> 00:24.730 -He’s really cute. - -00:25.120 --> 00:27.180 -What should I name him? - -00:27.660 --> 00:29.180 -Hmm... diff --git a/src/static/media/webvtt/Lda077.vtt b/src/static/media/webvtt/Lda077.vtt deleted file mode 100644 index 0d9074d..0000000 --- a/src/static/media/webvtt/Lda077.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.430 --> 00:07.630 -I wonder if Dad has ever been so cheerful. Maybe people seem to change when you change yourself. diff --git a/src/static/media/webvtt/Lda078.vtt b/src/static/media/webvtt/Lda078.vtt deleted file mode 100644 index c05c5a5..0000000 --- a/src/static/media/webvtt/Lda078.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:00.000 --> 00:07.000 -Dad asked me to take a gift to Touko-san, so I took the gift to her after school. - -00:07.710 --> 00:12.400 -Touko-san seemed tired and slow. - -00:13.040 --> 00:15.320 -She didn’t even open the gift’s wrapping paper. - -00:16.190 --> 00:17.720 -I wonder why she was tired. - -00:18.200 --> 00:19.720 -I wonder what the gift was. - -00:20.080 --> 00:21.360 -Could it have been cosmetics? - -00:21.840 --> 00:25.200 -Mom has a lot of cosmetics, too. - -00:25.880 --> 00:28.670 -I guess I’ll use cosmetics one day, too. - -00:29.200 --> 00:31.720 -I won’t look very good if I used cosmetics now. - -00:32.400 --> 00:36.360 -Misato-chan looks grown up anyway, so cosmetics should look good on her. - -00:37.050 --> 00:42.300 -Oh, Dad said there were some extra presents, so I’ll take some for Misato-chan. diff --git a/src/static/media/webvtt/Lda079.vtt b/src/static/media/webvtt/Lda079.vtt deleted file mode 100644 index d4f3153..0000000 --- a/src/static/media/webvtt/Lda079.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.650 --> 00:07.610 -A lavish present wouldn’t be good. After all, we’re just junior high school students. diff --git a/src/static/media/webvtt/Lda080.vtt b/src/static/media/webvtt/Lda080.vtt deleted file mode 100644 index f6c22a8..0000000 --- a/src/static/media/webvtt/Lda080.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.090 --> 00:02.270 -Misato-chan took a day off of school. - -00:02.680 --> 00:06.480 -I don’t think she’s completely alone, but I was sad for her. - -00:07.040 --> 00:10.010 -I left drawing class early because I was sad. - -00:10.510 --> 00:12.760 -I had Dad’s present that I wanted to give her. - -00:13.390 --> 00:16.170 -I hope Misato-chan comes to school tomorrow. diff --git a/src/static/media/webvtt/Lda081.vtt b/src/static/media/webvtt/Lda081.vtt deleted file mode 100644 index ad1af52..0000000 --- a/src/static/media/webvtt/Lda081.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.000 --> 00:06.250 -I need Misato-chan. Does Misato-chan need me? diff --git a/src/static/media/webvtt/Lda082.vtt b/src/static/media/webvtt/Lda082.vtt deleted file mode 100644 index bbf48fb..0000000 --- a/src/static/media/webvtt/Lda082.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.120 -Misato-chan wasn’t at school again today. - -00:02.480 --> 00:05.400 -I told my sensei that I wanted to go see her. - -00:05.400 --> 00:12.640 -She said that she spoke with Misato-chan’s mom, and that Misato-chan didn’t want to see any visitors. - -00:13.050 --> 00:14.640 -I wonder what the matter is. - -00:14.640 --> 00:16.640 -Misato-chan had so much energy. - -00:17.100 --> 00:21.280 -She didn’t talk about herself much, though. - -00:21.740 --> 00:23.420 -She was like me in that way. - -00:23.770 --> 00:27.340 -But for me, talking got me disliked. diff --git a/src/static/media/webvtt/Lda083.vtt b/src/static/media/webvtt/Lda083.vtt deleted file mode 100644 index b16c4b7..0000000 --- a/src/static/media/webvtt/Lda083.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.620 --> 00:03.600 -I want to talk to Misato-chan. - -00:04.170 --> 00:07.920 -I’m cowardly, though. - -00:08.430 --> 00:09.920 -Haven’t I changed? - -00:10.320 --> 00:14.590 -Would it be better if a cowardly person like me dies? diff --git a/src/static/media/webvtt/Lda084.vtt b/src/static/media/webvtt/Lda084.vtt deleted file mode 100644 index bbdf8fc..0000000 --- a/src/static/media/webvtt/Lda084.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.000 --> 00:04.990 -Misato-chan came to school, but seemed as usual, as if nothing had happened. - -00:05.660 --> 00:09.920 -When I asked her what kind of sickness she had, she just said that she had the cold. - -00:09.920 --> 00:11.920 -Any way, I’m glad that she’s better. - -00:12.560 --> 00:15.020 -I’ll take her the gift I couldn’t give her yesterday. - -00:15.840 --> 00:20.410 -I skipped extracurricular activities and went to an ice cream shop with Misato-chan instead. - -00:21.240 --> 00:23.420 -It’s always fun to be around Misato-chan. - -00:23.980 --> 00:25.770 -I’m glad she’s better. diff --git a/src/static/media/webvtt/Lda085.vtt b/src/static/media/webvtt/Lda085.vtt deleted file mode 100644 index ec3ae1b..0000000 --- a/src/static/media/webvtt/Lda085.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.080 --> 00:06.590 -This is the same as always. Nothing will change. I’m fine just like this. diff --git a/src/static/media/webvtt/Lda086.vtt b/src/static/media/webvtt/Lda086.vtt deleted file mode 100644 index 33e4c44..0000000 --- a/src/static/media/webvtt/Lda086.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:00.000 --> 00:06.320 -When I was checking e-mails to see if anything came from Mr. Rabbit, I found a weird e-mail. - -00:07.130 --> 00:11.370 -This time it was a picture of a dead, naked woman, tied up with ropes. - -00:12.160 --> 00:15.200 -Strangely, it said that the e-mail came from Mr. Rabbit. - -00:15.880 --> 00:18.250 -Mr. Rabbit wouldn’t do something like that. - -00:18.700 --> 00:19.840 -It’s that guy again. - -00:20.480 --> 00:22.670 -I’ll let Mr. Rabbit know. - -00:23.120 --> 00:24.600 -I can’t believe this. - -00:24.600 --> 00:26.670 -Why would someone do this? - -00:27.360 --> 00:29.400 -I’m scared to check my e-mail now. - -00:29.930 --> 00:35.660 -I’d like to check my e-mails, but if I access the Net and I see ‘that’ again...I was getting better. - -00:38.320 --> 00:42.890 -I’m not sick. diff --git a/src/static/media/webvtt/Lda087.vtt b/src/static/media/webvtt/Lda087.vtt deleted file mode 100644 index d5272db..0000000 --- a/src/static/media/webvtt/Lda087.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.400 -Right, I'm really not sick. - -00:04.600 --> 00:10.560 -What Touko-san is saying... since she said it, it can't be wrong, right? - -00:11.030 --> 00:13.060 -I should believe her. diff --git a/src/static/media/webvtt/Lda088.vtt b/src/static/media/webvtt/Lda088.vtt deleted file mode 100644 index 9f12d33..0000000 --- a/src/static/media/webvtt/Lda088.vtt +++ /dev/null @@ -1,37 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.300 -I have to do a drawing for a cultural festival soon. - -00:03.300 --> 00:05.120 -I wonder what to draw. - -00:05.540 --> 00:08.980 -I’m not sure. - -00:09.860 --> 00:13.920 -One of the leaders said that it can be something simple. - -00:13.920 --> 00:15.240 -I wonder what. - -00:15.940 --> 00:17.440 -A drawing of Bike-chan? - -00:17.440 --> 00:19.340 -Misato-chan? - -00:19.340 --> 00:21.340 -Dad, Mom? - -00:21.340 --> 00:22.700 -Touko-san? - -00:22.700 --> 00:23.820 -Myself? - -00:24.620 --> 00:26.800 -It’s difficult to draw people. - -00:27.080 --> 00:29.680 -If the drawing doesn’t look like the person, it’s embarrassing. diff --git a/src/static/media/webvtt/Lda089.vtt b/src/static/media/webvtt/Lda089.vtt deleted file mode 100644 index 6ac4d72..0000000 --- a/src/static/media/webvtt/Lda089.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.380 --> 00:07.260 -What is Misato-chan going to draw? Lain? Or someone I don’t know? diff --git a/src/static/media/webvtt/Lda090.vtt b/src/static/media/webvtt/Lda090.vtt deleted file mode 100644 index 97137cc..0000000 --- a/src/static/media/webvtt/Lda090.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.110 --> 00:03.880 -Misato-chan said that she draws with her computer. - -00:04.200 --> 00:05.760 -Maybe I’ll try that, too. - -00:06.280 --> 00:07.840 -I’ll ask her how to do it. diff --git a/src/static/media/webvtt/Lda091.vtt b/src/static/media/webvtt/Lda091.vtt deleted file mode 100644 index 5e3303c..0000000 --- a/src/static/media/webvtt/Lda091.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:00.170 --> 00:02.260 -Software is expensive. - -00:02.780 --> 00:05.240 -A digitizing tablet seems necessary. - -00:05.790 --> 00:07.770 -It seems that it’s better if there is a scanner. - -00:08.200 --> 00:10.420 -It’s difficult with machinery these days. - -00:10.860 --> 00:13.230 -I can’t afford this stuff with my allowance. - -00:13.930 --> 00:16.740 -I wonder if Misato-chan’s family is rich. - -00:17.220 --> 00:18.880 -I’ll talk to Dad. - -00:19.850 --> 00:24.370 -If I don’t have money, I can’t buy anything, but if I have a lot of money, I could do so much. - -00:24.720 --> 00:25.810 -What would I do? - -00:26.380 --> 00:31.820 -I could buy Mom and Dad presents, and I could do all sorts of things with Misato-chan. - -00:32.350 --> 00:34.260 -It’s fun just imagining these things. diff --git a/src/static/media/webvtt/Lda092.vtt b/src/static/media/webvtt/Lda092.vtt deleted file mode 100644 index 7432313..0000000 --- a/src/static/media/webvtt/Lda092.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.140 --> 00:05.560 -A person who works with graphics in Dad’s company is willing to lend me some equipment at a low rate. - -00:05.880 --> 00:07.500 -I hope I can meet with that person soon. - -00:07.780 --> 00:11.980 -Then I could have Misato-chan come to my house and she can teach me all sorts of things. - -00:12.510 --> 00:13.780 -This is fun. - -00:14.180 --> 00:18.220 -I wonder how many years it’s been since I’ve had a friend over. - -00:18.650 --> 00:22.130 -I’ll clean up my room and make it look welcoming. - -00:22.770 --> 00:25.280 -I wonder what kind of room Misato-chan has. - -00:25.850 --> 00:27.810 -I’m sure it’s a very clean room. diff --git a/src/static/media/webvtt/Lda093.vtt b/src/static/media/webvtt/Lda093.vtt deleted file mode 100644 index 3dfed15..0000000 --- a/src/static/media/webvtt/Lda093.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.270 --> 00:09.730 -My room doesn’t look very "girlish." But that doesn't really seem to fit me. I understand. diff --git a/src/static/media/webvtt/Lda094.vtt b/src/static/media/webvtt/Lda094.vtt deleted file mode 100644 index 7e7ed08..0000000 --- a/src/static/media/webvtt/Lda094.vtt +++ /dev/null @@ -1,40 +0,0 @@ -WEBVTT - -00:00.000 --> 00:04.410 -At school today, a boy asked to talk to Misato-chan. - -00:04.410 --> 00:09.160 -When she asked why, he said that he wanted to go out with her. - -00:09.730 --> 00:12.030 -Misato-chan didn't seem interested at all. - -00:12.540 --> 00:15.600 -If it was me, I think I would have been a little happy. - -00:16.900 --> 00:20.450 -I guess the boy was rejected. - -00:21.620 --> 00:23.450 -He was kind of good looking. - -00:23.810 --> 00:24.800 -Too bad. - -00:25.460 --> 00:28.680 -Misato-chan is good-looking and smart. - -00:29.220 --> 00:30.460 -She could get a boy. - -00:30.460 --> 00:32.460 -Maybe she doesn’t want one. - -00:33.070 --> 00:35.370 -She looked really bothered. - -00:36.120 --> 00:41.150 -Maybe she already has a boyfriend that I don’t know anything about. - -00:41.860 --> 00:43.400 -That’s sad, too. diff --git a/src/static/media/webvtt/Lda095.vtt b/src/static/media/webvtt/Lda095.vtt deleted file mode 100644 index 66b0529..0000000 --- a/src/static/media/webvtt/Lda095.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.570 --> 00:02.670 -It’s impossible to know everything, isn’t it? - -00:03.380 --> 00:05.630 -I’m not Misato-chan. - -00:06.380 --> 00:11.450 -But if I was the person I used to be, I might have been that way, too. diff --git a/src/static/media/webvtt/Lda096.vtt b/src/static/media/webvtt/Lda096.vtt deleted file mode 100644 index b69e795..0000000 --- a/src/static/media/webvtt/Lda096.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:00.050 --> 00:04.260 -I asked Misato-chan if she was going out with someone. - -00:04.260 --> 00:05.040 -She laughed. - -00:05.610 --> 00:09.020 -Well, after all, we’re together all the time. - -00:09.600 --> 00:13.700 -When I was changing clothes for gym class, I noticed that Misato-chan had big breasts. - -00:14.320 --> 00:15.920 -My chest is flat. - -00:16.430 --> 00:17.450 -I’m jealous. - -00:18.030 --> 00:21.100 -But I don’t have ‘that’ yet either. - -00:21.860 --> 00:24.000 -All the others are really becoming girls. - -00:24.440 --> 00:26.520 -I think I’m moving slower than everybody else. diff --git a/src/static/media/webvtt/Lda097.vtt b/src/static/media/webvtt/Lda097.vtt deleted file mode 100644 index 99fc619..0000000 --- a/src/static/media/webvtt/Lda097.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.240 --> 00:02.110 -The body doesn't matter much. - -00:02.560 --> 00:06.170 -What matters is the heart. - -00:06.560 --> 00:09.070 -If my heart is perturbed, no one will like me. diff --git a/src/static/media/webvtt/Lda098.vtt b/src/static/media/webvtt/Lda098.vtt deleted file mode 100644 index de4f180..0000000 --- a/src/static/media/webvtt/Lda098.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.260 -I went to see Touko-san today. - -00:02.900 --> 00:08.090 -When I asked her how much longer we should meet each other, she looked troubled. - -00:08.920 --> 00:17.890 -She said that I could come over with the idea of enjoying myself instead of thinking of our meetings as therapy, but I didn’t want to have to explain myself to Misato-chan. - -00:18.670 --> 00:21.120 -I wonder what Misato-chan is thinking. - -00:21.870 --> 00:27.020 -I don’t want to keep any secrets from her, but I’m afraid to tell her the truth. diff --git a/src/static/media/webvtt/Lda099.vtt b/src/static/media/webvtt/Lda099.vtt deleted file mode 100644 index 1ff67df..0000000 --- a/src/static/media/webvtt/Lda099.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.090 -You're busy with your own work, aren't you, Touko-san? diff --git a/src/static/media/webvtt/Lda100.vtt b/src/static/media/webvtt/Lda100.vtt deleted file mode 100644 index d21620a..0000000 --- a/src/static/media/webvtt/Lda100.vtt +++ /dev/null @@ -1,37 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.210 -Misato-chan gave me a present. - -00:02.410 --> 00:04.210 -She said it was to repay me for the gift I gave her. - -00:04.590 --> 00:07.180 -Misato-chan’s present was a CD of her playing a violin. - -00:07.600 --> 00:09.560 -She plays beautifully. - -00:09.560 --> 00:11.450 -Listening to her play is like drifting off into a dream. - -00:11.880 --> 00:13.800 -She can really play. - -00:14.250 --> 00:17.060 -She blushed a little when she gave me her CD. - -00:17.060 --> 00:19.370 -That was a bit unlike her, and it was cute. - -00:20.040 --> 00:22.110 -I guess Misato-chan makes expressions like that, too. - -00:22.610 --> 00:26.360 -It seems like there is more of the Misato-chan that only I know. - -00:26.960 --> 00:30.690 -When I played the CD for Mom, she didn't seem too interested. - -00:31.090 --> 00:33.170 -Maybe she doesn’t like the violin. diff --git a/src/static/media/webvtt/Lda101.vtt b/src/static/media/webvtt/Lda101.vtt deleted file mode 100644 index a051ed2..0000000 --- a/src/static/media/webvtt/Lda101.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.300 -We got a new PC today. - -00:02.300 --> 00:04.670 -It looks very expensive. - -00:04.670 --> 00:08.600 -It’s small and round, but it’s very fast. - -00:08.600 --> 00:17.270 -It’s different from the computers we’ve had before, but the man said that the applications are similar, so there shouldn’t be many problems. - -00:17.270 --> 00:20.420 -I feel important all of a sudden, and happy. - -00:20.420 --> 00:22.320 -Thank you, Dad. - -00:22.320 --> 00:26.600 -When I grow up, I wonder if I will find work related to managing information or something. - -00:27.300 --> 00:31.050 -I’ve been studying hard and want to make myself useful. - -00:31.050 --> 00:38.600 -Still, I don’t want a job that only has to do with machines. diff --git a/src/static/media/webvtt/Lda102.vtt b/src/static/media/webvtt/Lda102.vtt deleted file mode 100644 index c1069a1..0000000 --- a/src/static/media/webvtt/Lda102.vtt +++ /dev/null @@ -1,49 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.350 -Misato-chan came to visit my house today. - -00:02.350 --> 00:05.370 -Mom seemed to be in a good mood—sort of. - -00:05.370 --> 00:09.720 -Misato-chan taught me how to draw. - -00:09.720 --> 00:11.570 -Mom came and checked in on us often. - -00:11.570 --> 00:14.750 -Dad, Mom, Misato-chan and I had dinner together. - -00:14.750 --> 00:16.270 -It was great. - -00:16.270 --> 00:20.920 -I didn’t learn that much about drawing, but Misato-chan said that she will visit again soon. - -00:20.920 --> 00:24.620 -We took Misato-chan back to home in Dad’s car. - -00:24.620 --> 00:29.500 -She has a very fancy house in a rich neighborhood. - -00:29.500 --> 00:32.000 -It was almost dreamlike. - -00:32.000 --> 00:37.620 -Misato-chan’s mom came to the door and spoke with Dad a bit. - -00:37.620 --> 00:40.620 -She was really pretty, like an actress. - -00:41.300 --> 00:46.920 -I guess that a pretty girls like Misato-chan must come from beautiful mothers like that. - -00:46.920 --> 00:50.850 -But only a girl like me could come from my kind of Mom. - -00:50.850 --> 00:52.850 -I’m sorry, Mom. - -00:52.850 --> 00:55.970 -But I really had fun today. diff --git a/src/static/media/webvtt/Lda103.vtt b/src/static/media/webvtt/Lda103.vtt deleted file mode 100644 index 13058c4..0000000 --- a/src/static/media/webvtt/Lda103.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.620 -I guess we’re different from birth. - -00:02.620 --> 00:09.450 -But if I was born there, wouldn’t I have been pretty like Misato-chan? diff --git a/src/static/media/webvtt/Lda104.vtt b/src/static/media/webvtt/Lda104.vtt deleted file mode 100644 index 7fe3b50..0000000 --- a/src/static/media/webvtt/Lda104.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:00.000 --> 00:05.920 -I drew a picture and submitted it to the cultural fair, but I don’t think I have much talent. - -00:05.920 --> 00:08.320 -Compared to everyone else, I’m not very good. - -00:08.850 --> 00:10.870 -Misato-chan does great. - -00:10.870 --> 00:15.600 -She said that she was still mid-process with her work, but I thought it was great already anyway. - -00:16.120 --> 00:22.470 -She drew a picture of Pegasus, with deep blue skies. - -00:22.470 --> 00:26.870 -It looked as though Pegasus was really flying. - -00:27.550 --> 00:31.350 -I don’t think I could draw a Pegasus that looks like it is flying. - -00:31.350 --> 00:34.750 -I think I’ll just draw what I feel like drawing. - -00:34.750 --> 00:40.200 -I’d rather draw pictures of Misato-chan more than anything else, but maybe she won’t like that. diff --git a/src/static/media/webvtt/Lda105.vtt b/src/static/media/webvtt/Lda105.vtt deleted file mode 100644 index 681c28f..0000000 --- a/src/static/media/webvtt/Lda105.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.370 --> 00:03.770 -I’m a little envious of Misato-chan. - -00:03.770 --> 00:07.220 -She can do so many things. - -00:07.220 --> 00:12.800 -Other than using the Net, there’s nothing I can do better than Misato-chan. diff --git a/src/static/media/webvtt/Lda106.vtt b/src/static/media/webvtt/Lda106.vtt deleted file mode 100644 index 1474fac..0000000 --- a/src/static/media/webvtt/Lda106.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:00.000 --> 00:04.160 -I tried to remember Misato-chan’s face and drew it. - -00:04.160 --> 00:05.740 -I wonder if it looks much like her. - -00:05.740 --> 00:10.200 -I showed it to Mom, who didn’t have much to say. - -00:10.200 --> 00:14.260 -Dad said it was good, but I’m still not very confident. - -00:14.680 --> 00:16.340 -I think I’ll quit the cultural fair. - -00:16.680 --> 00:22.140 -Today there was something about the new Navi that I didn’t understand, so I went and bought a book again. - -00:22.740 --> 00:31.680 -There aren’t many books about this kind of computer, so I didn’t have much to choose from, but I bought a book that has to do with command lists. - -00:32.120 --> 00:39.300 -It’s based in UNIX, so much of it was familiar, but it helped me understand assembly, which I had trouble with. - -00:39.720 --> 00:45.220 -I connected two computers so that they could exchange files, and called it a day. diff --git a/src/static/media/webvtt/Lda107.vtt b/src/static/media/webvtt/Lda107.vtt deleted file mode 100644 index c8134dc..0000000 --- a/src/static/media/webvtt/Lda107.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:00.300 --> 00:03.040 -I saw an accident on my way home today. - -00:03.420 --> 00:08.820 -Something fell at a construction site and someone died. - -00:09.420 --> 00:13.240 -Cop cars and ambulances were everywhere, and lots of people, too. - -00:13.240 --> 00:17.260 -It’s sad that someone died. - -00:18.200 --> 00:21.260 -I wouldn’t want something like that to happen to me all of a sudden. - -00:22.060 --> 00:24.540 -I am... diff --git a/src/static/media/webvtt/Lda108.vtt b/src/static/media/webvtt/Lda108.vtt deleted file mode 100644 index 8b5ba84..0000000 --- a/src/static/media/webvtt/Lda108.vtt +++ /dev/null @@ -1,31 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.260 -I finished my artwork of Misato-chan. - -00:02.260 --> 00:04.600 -It was very popular in class. - -00:04.600 --> 00:07.580 -It’s very pretty and artful. - -00:08.240 --> 00:13.600 -I bet it will stand out and draw attention at the culture fair. - -00:14.180 --> 00:19.040 -I used pastels and watercolors. - -00:19.480 --> 00:25.040 -Misato-chan said that I did a good job, but I wonder if I really ought to have done a painting of her. - -00:26.900 --> 00:30.240 -I feel that I haven’t expressed myself as much as I wanted in my painting. - -00:30.720 --> 00:33.300 -What kind of painting should I do? - -00:33.920 --> 00:37.560 -Misato-chan’s paintings seem like Misato-chan’s. - -00:38.120 --> 00:43.480 -They are gentle and pretty, and seem to have an inner strength... diff --git a/src/static/media/webvtt/Lda109.vtt b/src/static/media/webvtt/Lda109.vtt deleted file mode 100644 index d4ac5f4..0000000 --- a/src/static/media/webvtt/Lda109.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.060 -Touko-san was that kind of person. - -00:03.680 --> 00:05.940 -She seems different from before. - -00:06.540 --> 00:08.360 -Could it be because she’s been busy? - -00:08.940 --> 00:10.720 -She seems cold and distant. - -00:11.540 --> 00:16.640 -I told her about my artwork, and she said to bring that up with people in my class. - -00:17.100 --> 00:18.920 -I wonder if she was feeling well. - -00:19.600 --> 00:24.320 -Could it be that I’m a bother because I’m no longer sick and don’t need to see her? - -00:25.040 --> 00:27.520 -Touko-san is a counselor. - -00:28.140 --> 00:32.880 -The sicker I get, the more work she has to do. - -00:33.780 --> 00:36.740 -I’m sorry that I couldn’t help with your research report, Touko-san. - -00:37.380 --> 00:41.540 -Just let me know if you don’t want to see me anymore. diff --git a/src/static/media/webvtt/Lda110.vtt b/src/static/media/webvtt/Lda110.vtt deleted file mode 100644 index 329404d..0000000 --- a/src/static/media/webvtt/Lda110.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.560 --> 00:09.620 -I don’t want to see her anymore. I’m not troubled anymore. To me, Touko-san is... diff --git a/src/static/media/webvtt/Lda111.vtt b/src/static/media/webvtt/Lda111.vtt deleted file mode 100644 index 3deea0e..0000000 --- a/src/static/media/webvtt/Lda111.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:00.000 --> 00:04.160 -Mom and Dad have been curt lately. - -00:04.740 --> 00:08.140 -My family used to encircle me. - -00:08.140 --> 00:12.260 -It seems to be coming apart now, since I haven’t had problems lately. - -00:12.800 --> 00:18.980 -I wonder if they are busy doing things that they couldn’t do while I wasn’t well. - -00:19.460 --> 00:22.380 -I shouldn’t complain. - -00:22.900 --> 00:25.560 -They’ve been so good to me. diff --git a/src/static/media/webvtt/Lda112.vtt b/src/static/media/webvtt/Lda112.vtt deleted file mode 100644 index 56fcd95..0000000 --- a/src/static/media/webvtt/Lda112.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.000 --> 00:05.780 -Doesn’t Dad love Mom? Someone tell me. diff --git a/src/static/media/webvtt/Lda113.vtt b/src/static/media/webvtt/Lda113.vtt deleted file mode 100644 index c485d6f..0000000 --- a/src/static/media/webvtt/Lda113.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.000 --> 00:05.410 -It’s been a while since I saw ‘that.’ I’ve become an ordinary kid again. - -00:05.840 --> 00:10.660 -I have friends; I argue with my parents a little but make up later. - -00:10.660 --> 00:12.430 -I’m in an ordinary family. - -00:12.840 --> 00:14.650 -Everything is okay, now. - -00:14.650 --> 00:16.650 -I’m an ordinary girl. diff --git a/src/static/media/webvtt/Lda114.vtt b/src/static/media/webvtt/Lda114.vtt deleted file mode 100644 index 27de199..0000000 --- a/src/static/media/webvtt/Lda114.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:01.470 --> 00:02.840 -It’s good to be ordinary. - -00:02.840 --> 00:05.410 -People won’t look at you funny if you’re ordinary. - -00:06.010 --> 00:09.340 -I don’t understand the feelings of people who want to stand out. - -00:09.930 --> 00:13.680 -I don’t have the confidence to want to stand out. - -00:14.490 --> 00:19.080 -But is it because I’ve become ordinary that Mom and Dad don’t pay attention to me? - -00:19.730 --> 00:21.480 -Misato-chan is different. - -00:22.050 --> 00:24.160 -She’s a friend of ordinary me. diff --git a/src/static/media/webvtt/Lda115.vtt b/src/static/media/webvtt/Lda115.vtt deleted file mode 100644 index 98f4bc0..0000000 --- a/src/static/media/webvtt/Lda115.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.440 -Now that I think about it, I haven’t been checking my e-mails lately. - -00:03.900 --> 00:07.970 -I quit going to the Net because I saw ‘that,’ and because of the mean messages people leave there. - -00:08.610 --> 00:11.100 -Misato-chan said that she goes to the Net, too. - -00:11.100 --> 00:13.000 -Maybe I should exchange e-mail addresses with her. - -00:13.490 --> 00:20.730 -If she knew how active and outgoing I am on the Net, she might be surprised. - -00:22.060 --> 00:26.460 -If I had her e-mail address, I won’t have to bother calling her by phone. - -00:27.130 --> 00:32.570 -Mom’s been complaining because I run up a big phone bill. - -00:32.980 --> 00:34.860 -I’ll talk to Misato-chan tomorrow. diff --git a/src/static/media/webvtt/Lda116.vtt b/src/static/media/webvtt/Lda116.vtt deleted file mode 100644 index 16271d6..0000000 --- a/src/static/media/webvtt/Lda116.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.300 --> 00:05.120 -I’m surprised at how long I can stay on the phone. - -00:05.540 --> 00:07.390 -I wonder if I’m a very talkative person. - -00:07.800 --> 00:11.220 -I feel like I can talk and keep on talking to anybody. diff --git a/src/static/media/webvtt/Lda117.vtt b/src/static/media/webvtt/Lda117.vtt deleted file mode 100644 index 676a4f0..0000000 --- a/src/static/media/webvtt/Lda117.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.240 -Misato-chan turned me down. - -00:02.580 --> 00:04.650 -She doesn’t like checking e-mails. - -00:05.020 --> 00:07.620 -She seems not to have much interest in the Net. - -00:08.160 --> 00:11.070 -I wonder if she got harassed on the Net, too. - -00:12.130 --> 00:14.930 -The way she turned me down was unusual. - -00:15.400 --> 00:16.690 -It’s too bad. - -00:17.330 --> 00:19.700 -I thought she would be happy. - -00:20.020 --> 00:21.470 -I’m a bit sad. - -00:22.460 --> 00:25.280 -Misato-chan will talk to me on the phone, though. - -00:25.730 --> 00:29.560 -We can talk to each other anytime, at home or at school. - -00:30.050 --> 00:33.120 -She ought to be able to visit the Net on her own. diff --git a/src/static/media/webvtt/Lda118.vtt b/src/static/media/webvtt/Lda118.vtt deleted file mode 100644 index 396773c..0000000 --- a/src/static/media/webvtt/Lda118.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.100 --> 00:04.380 -I’m being selfish to want to communicate with Misato-chan over the Net. diff --git a/src/static/media/webvtt/Lda119.vtt b/src/static/media/webvtt/Lda119.vtt deleted file mode 100644 index 4e582d9..0000000 --- a/src/static/media/webvtt/Lda119.vtt +++ /dev/null @@ -1,31 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.850 -When I checked my computer today, there were about 30 e-mails. - -00:04.300 --> 00:07.520 -I deleted e-mails if I didn’t know who they were from. - -00:08.280 --> 00:10.610 -No e-mails from Mr. Rabbit yet. - -00:11.370 --> 00:13.220 -Didn’t my e-mails reach him? - -00:13.880 --> 00:16.240 -Maybe he hasn’t read them yet. - -00:16.960 --> 00:21.440 -When I checked the ‘news group,’ I found that many of the packets had dropped. - -00:22.140 --> 00:24.610 -Eventually, the members were all people I didn’t know. - -00:24.610 --> 00:25.620 -I got an idea! - -00:25.620 --> 00:28.510 -I’ll join a news group that has art as a topic. - -00:28.910 --> 00:34.740 -There might be people there that are like me, and I can be a lot more outgoing on the Net. diff --git a/src/static/media/webvtt/Lda120.vtt b/src/static/media/webvtt/Lda120.vtt deleted file mode 100644 index 3646b73..0000000 --- a/src/static/media/webvtt/Lda120.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.330 --> 00:02.670 -The Net I full of men. - -00:03.290 --> 00:04.890 -Aren’t there any girls? - -00:05.540 --> 00:10.650 -I don’t mind writing guys, but I’d rather write girls. diff --git a/src/static/media/webvtt/Lda121.vtt b/src/static/media/webvtt/Lda121.vtt deleted file mode 100644 index 3f50694..0000000 --- a/src/static/media/webvtt/Lda121.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.200 -People talked of nothing but Misato-chan’s artwork at the cultural fair. - -00:03.620 --> 00:08.200 -Our sensei’s prestigious friends came and were very impressed. - -00:08.200 --> 00:09.890 -Misato-chan is amazing! - -00:10.370 --> 00:13.170 -Misato-chan is my best friend. - -00:13.170 --> 00:14.380 -Isn’t that something? - -00:14.380 --> 00:16.190 -I’m so proud. - -00:16.800 --> 00:20.130 -But Misato-chan didn't look very well. - -00:20.490 --> 00:22.130 -I wonder if she is okay. diff --git a/src/static/media/webvtt/Lda122.vtt b/src/static/media/webvtt/Lda122.vtt deleted file mode 100644 index 80eddbc..0000000 --- a/src/static/media/webvtt/Lda122.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.290 --> 00:02.190 -I’m somewhat frustrated. - -00:02.190 --> 00:03.220 -Misato-chan. - -00:03.980 --> 00:06.460 -Would I feel good if my artwork was praised like hers’? - -00:06.460 --> 00:09.170 -Would I be embarrassed? - -00:09.710 --> 00:13.870 -I don’t know, but I’ll probably feel good. diff --git a/src/static/media/webvtt/Lda123.vtt b/src/static/media/webvtt/Lda123.vtt deleted file mode 100644 index 9a32d24..0000000 --- a/src/static/media/webvtt/Lda123.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.000 --> 00:06.820 -Kazami Sensei mentioned before class that she wants to have Misato-chan’s artwork presented at the prefectural exhibition. - -00:07.250 --> 00:09.740 -It’s amazing because Misato-chan is still in 7th grade. - -00:10.040 --> 00:14.160 -Everyone in class went to the cultural fair and saw Misato-chan’s work. - -00:14.650 --> 00:16.580 -Even the older kids were really impressed. - -00:17.220 --> 00:20.980 -Misato-chan doesn’t seem too happy, though. - -00:21.900 --> 00:23.690 -She seems different lately. - -00:24.330 --> 00:30.610 -If she’s troubled about something, I wish she would talk to me. diff --git a/src/static/media/webvtt/Lda124.vtt b/src/static/media/webvtt/Lda124.vtt deleted file mode 100644 index fce5dfc..0000000 --- a/src/static/media/webvtt/Lda124.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.330 --> 00:04.000 -I wonder if that is obvious to Misato-chan. - -00:04.460 --> 00:07.780 -Maybe she doesn’t want people to fuss over her. - -00:08.370 --> 00:11.640 -Will I be disliked if I fuss? diff --git a/src/static/media/webvtt/Lda125.vtt b/src/static/media/webvtt/Lda125.vtt deleted file mode 100644 index 2ab68af..0000000 --- a/src/static/media/webvtt/Lda125.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.000 --> 00:04.200 -I wonder if people on art sites of the Net are hard to please. - -00:04.780 --> 00:09.940 -I got friendly and sent pics of Misato-chan’s artwork, and they said that it was plagiarism. - -00:10.600 --> 00:13.170 -Misato-chan would never do something like that. - -00:13.170 --> 00:16.860 -Besides, some artistic big shots saw Misato-chan’s work and didn't think it was plagiarism. - -00:17.220 --> 00:19.420 -I feel contradicted. - -00:20.040 --> 00:22.180 -I don’t want to visit this Net site again. - -00:23.650 --> 00:27.240 -I feel like I am the one being criticized. - -00:27.680 --> 00:34.030 -Misato-chan and I have been around each other so much that we can tell what’s going on with the other without talking too much. diff --git a/src/static/media/webvtt/Lda126.vtt b/src/static/media/webvtt/Lda126.vtt deleted file mode 100644 index 96be02a..0000000 --- a/src/static/media/webvtt/Lda126.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.400 -Does Misato understand me? diff --git a/src/static/media/webvtt/Lda127.vtt b/src/static/media/webvtt/Lda127.vtt deleted file mode 100644 index 9a429cc..0000000 --- a/src/static/media/webvtt/Lda127.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.400 -They decided not to submit Misato-chan’s artwork to the prefectural exhibition. - -00:03.400 --> 00:04.600 -I don’t know why. - -00:05.080 --> 00:07.520 -Sensei didn’t explain why. - -00:07.520 --> 00:10.800 -Misato-chan has stopped talking and looks terrible. - -00:11.280 --> 00:13.660 -I’ve never seen her like this. - -00:13.870 --> 00:15.130 -What happened? - -00:15.370 --> 00:17.130 -I’m sad for Misato-chan. diff --git a/src/static/media/webvtt/Lda128.vtt b/src/static/media/webvtt/Lda128.vtt deleted file mode 100644 index 9924cc1..0000000 --- a/src/static/media/webvtt/Lda128.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.450 --> 00:02.430 -I didn’t talk to her at all today. - -00:03.170 --> 00:04.850 -I hesitated to call. - -00:05.730 --> 00:08.960 -Could she be waiting for me to call? - -00:09.880 --> 00:11.740 -But maybe that isn’t true. diff --git a/src/static/media/webvtt/Lda129.vtt b/src/static/media/webvtt/Lda129.vtt deleted file mode 100644 index 14495bf..0000000 --- a/src/static/media/webvtt/Lda129.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.420 -Misato-chan skipped school today. - -00:02.800 --> 00:05.320 -Some of the older kids in art class were spreading rumors. - -00:05.330 --> 00:08.590 -They were talking about Misato-chan’s artwork and plagiarism. - -00:09.180 --> 00:12.890 -The kids stopped talking when they noticed that I was listening. - -00:13.410 --> 00:15.000 -This makes me feel bad. - -00:15.390 --> 00:18.010 -Misato-chan would never do something like that. - -00:18.350 --> 00:19.410 -Never. diff --git a/src/static/media/webvtt/Lda130.vtt b/src/static/media/webvtt/Lda130.vtt deleted file mode 100644 index 4cb502f..0000000 --- a/src/static/media/webvtt/Lda130.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:01.460 --> 00:04.030 -I can’t call Misato-chan. - -00:04.530 --> 00:06.840 -I’m frustrated but can’t do anything. - -00:07.210 --> 00:09.220 -I don’t have enough courage. - -00:09.860 --> 00:13.920 -I can’t imagine what Misato-chan would say. diff --git a/src/static/media/webvtt/Lda131.vtt b/src/static/media/webvtt/Lda131.vtt deleted file mode 100644 index 9416ed1..0000000 --- a/src/static/media/webvtt/Lda131.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.000 --> 00:04.460 -Misato-chan didn’t show up at school again today, so I took my notes to her home. - -00:04.890 --> 00:08.990 -Misato-chan’s mom came to the door, but Misato-chan didn’t. - -00:09.580 --> 00:11.720 -Is she feeling so bad that she can’t even come to the door? - -00:12.260 --> 00:15.550 -Could it be that she doesn’t like me anymore? - -00:16.120 --> 00:17.730 -That would make me very sad. - -00:18.340 --> 00:22.270 -No matter what other kids say about Misato-chan, I’ll always be her friend. - -00:22.730 --> 00:24.410 -I want to see you, Misato-chan. diff --git a/src/static/media/webvtt/Lda132.vtt b/src/static/media/webvtt/Lda132.vtt deleted file mode 100644 index 452a7e9..0000000 --- a/src/static/media/webvtt/Lda132.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.760 --> 00:02.200 -I just want to see you. - -00:02.200 --> 00:03.940 -I won’t ask you any questions. - -00:04.350 --> 00:07.950 -I won’t ask you about things you don’t want to talk about. diff --git a/src/static/media/webvtt/Lda133.vtt b/src/static/media/webvtt/Lda133.vtt deleted file mode 100644 index 73a03df..0000000 --- a/src/static/media/webvtt/Lda133.vtt +++ /dev/null @@ -1,49 +0,0 @@ -WEBVTT - -00:00.210 --> 00:03.060 -I talked to Kasumi sensei today. - -00:03.370 --> 00:08.210 -I believe in Misato-chan, but I wanted to see what was actually going on. - -00:09.020 --> 00:15.960 -The sensei said that there is an art magazine in America with a painting by a Japanese artist very similar to Misato-chan’s. - -00:16.930 --> 00:21.420 -I didn’t want to see the magazine, but I wanted to make sure. - -00:21.460 --> 00:24.010 -The picture in the magazine and Misato-chan’s painting looked alike. - -00:24.040 --> 00:25.770 -They were more than alike. - -00:25.780 --> 00:28.020 -I could not tell the difference between the two. - -00:28.490 --> 00:34.160 -It seems that the Japanese artist who painted it was just a novice, and that it was the first time she won a prize for her artwork. - -00:34.650 --> 00:37.420 -I searched the Net about it when I got home. - -00:37.420 --> 00:41.600 -Dad said that that the artwork was by a second-generation Japanese or something. - -00:42.250 --> 00:45.450 -Misato-chan would never plagiarize. - -00:45.450 --> 00:47.450 -Still, the paintings looked so similar. - -00:47.950 --> 00:52.730 -But I thought that Misato-chan did her work before this other person submitted hers to this magazine. - -00:52.980 --> 00:56.780 -I’m going to look into it and clear her name. - -00:58.040 --> 01:02.860 -Sensei said that people often come up with the same ideas at the same time. - -01:03.140 --> 01:07.720 -It was probably a coincidence. diff --git a/src/static/media/webvtt/Lda134.vtt b/src/static/media/webvtt/Lda134.vtt deleted file mode 100644 index 4d84cad..0000000 --- a/src/static/media/webvtt/Lda134.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.280 --> 00:05.960 -Couldn’t it be obvious that people see the same things and have the same ideas about them? - -00:06.000 --> 00:12.170 -If the perceived information is the same for two people and they think the same things about it, why would it be odd if those people produce the same impressions about what they see? - -00:12.170 --> 00:15.260 -We’re all human beings, after all. diff --git a/src/static/media/webvtt/Lda135.vtt b/src/static/media/webvtt/Lda135.vtt deleted file mode 100644 index f34112c..0000000 --- a/src/static/media/webvtt/Lda135.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.000 --> 00:05.980 -The magazine is called "Beauty of the Art." It had a homepage, so I sent them an e-mail. - -00:05.980 --> 00:07.800 -I wonder if I’ll hear back from them. - -00:07.800 --> 00:10.080 -I’ll keep writing until I hear back from them. - -00:10.080 --> 00:14.990 -I’m going to get to the bottom of this and I’m going to clear Misato-chan of this plagiarism charge. - -00:14.990 --> 00:19.400 -But I might see ‘that’ again when I go to the Net, and that frightens me. diff --git a/src/static/media/webvtt/Lda136.vtt b/src/static/media/webvtt/Lda136.vtt deleted file mode 100644 index c2a94a2..0000000 --- a/src/static/media/webvtt/Lda136.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.220 --> 00:02.650 -Could it be that I’m not changing? - -00:02.910 --> 00:06.460 -If I think that I’m not changing, I won’t change. - -00:06.830 --> 00:08.330 -But I have changed. - -00:08.750 --> 00:10.730 -I won’t have hallucinations anymore. diff --git a/src/static/media/webvtt/Lda137.vtt b/src/static/media/webvtt/Lda137.vtt deleted file mode 100644 index 749366b..0000000 --- a/src/static/media/webvtt/Lda137.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.910 -I got an e-mail from the editors today. - -00:02.910 --> 00:04.140 -I’m glad. - -00:04.140 --> 00:06.140 -Misato-chan’s artwork came first. - -00:06.570 --> 00:11.710 -I saw her sketch over 2 months before the other one was published. - -00:12.060 --> 00:15.820 -Could this sort of thing happen often? - -00:16.200 --> 00:20.840 -The same picture at the same time, both by a Japanese, all by coincidence? - -00:21.230 --> 00:24.000 -What is that other artist like? - -00:24.000 --> 00:26.380 -I couldn’t find a home page for her. - -00:26.380 --> 00:27.880 -I wish I had information about her. - -00:27.880 --> 00:32.730 -I know that Misato-chan was right all along, and I feel much better now. - -00:33.230 --> 00:36.160 -I’ll go to Misato-chan’s home tomorrow. diff --git a/src/static/media/webvtt/Lda138.vtt b/src/static/media/webvtt/Lda138.vtt deleted file mode 100644 index f223572..0000000 --- a/src/static/media/webvtt/Lda138.vtt +++ /dev/null @@ -1,52 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.030 -Misato-chan is going to another school? - -00:02.240 --> 00:03.420 -Why? - -00:03.420 --> 00:05.420 -She didn’t say anything to me. - -00:05.900 --> 00:07.450 -We were friends. - -00:07.450 --> 00:09.290 -We were best friends. - -00:09.800 --> 00:13.400 -All the other kids said that she went to a different school because she was embarrassed to be found out as a plagiarizer. - -00:13.410 --> 00:14.700 -They were saying nasty things. - -00:14.960 --> 00:16.090 -I can’t forgive them for that. - -00:16.090 --> 00:17.130 -They’re wrong. - -00:17.130 --> 00:18.700 -Misato-chan would never plagiarize. - -00:18.700 --> 00:20.880 -I found out for a fact that she didn’t. - -00:21.280 --> 00:23.720 -Those kids don’t know what they are talking about. - -00:24.330 --> 00:26.190 -But why did she go away? - -00:26.190 --> 00:28.410 -Misato-chan, this is horrible. - -00:28.910 --> 00:30.800 -Will I never see you again? - -00:31.150 --> 00:34.140 -It’s too sad to lose you like this. - -00:34.400 --> 00:35.530 -Misato-chan. diff --git a/src/static/media/webvtt/Lda139.vtt b/src/static/media/webvtt/Lda139.vtt deleted file mode 100644 index 238b4ad..0000000 --- a/src/static/media/webvtt/Lda139.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.370 --> 00:03.560 -Why do people spread rumors without knowing what they are talking about? - -00:04.110 --> 00:06.620 -Don’t they care about who they might be hurting? diff --git a/src/static/media/webvtt/Lda140.vtt b/src/static/media/webvtt/Lda140.vtt deleted file mode 100644 index a458ad8..0000000 --- a/src/static/media/webvtt/Lda140.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.210 --> 00:02.240 -I’m alone again. - -00:02.880 --> 00:06.240 -I don't want to make friends with anyone other than Misato-chan. - -00:06.950 --> 00:08.780 -Making friends. - -00:08.980 --> 00:11.530 -I don’t know what strange things these kids think about me. - -00:11.980 --> 00:13.080 -I don’t care. - -00:13.450 --> 00:14.710 -It’s all a big nuisance. - -00:14.710 --> 00:16.480 -School isn’t any fun anyway. - -00:16.860 --> 00:20.720 -School without Misato-chan is no fun. diff --git a/src/static/media/webvtt/Lda141.vtt b/src/static/media/webvtt/Lda141.vtt deleted file mode 100644 index 2b06d9c..0000000 --- a/src/static/media/webvtt/Lda141.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.000 --> 00:09.760 -When will I make friends again? When it happens, will I have to change, too? Even when I’m me? diff --git a/src/static/media/webvtt/Lda142.vtt b/src/static/media/webvtt/Lda142.vtt deleted file mode 100644 index 1ce6c43..0000000 --- a/src/static/media/webvtt/Lda142.vtt +++ /dev/null @@ -1,37 +0,0 @@ -WEBVTT - -00:00.000 --> 00:05.580 -I went to Misato-chan’s home today, but no one was there. - -00:06.090 --> 00:07.700 -She must have moved. - -00:08.510 --> 00:11.510 -She literally left without saying a word. - -00:12.220 --> 00:13.220 -This makes me sad. - -00:13.670 --> 00:17.240 -Didn’t she think of me as a friend? - -00:18.060 --> 00:22.870 -I guess Misato-chan didn’t think much of me after all. - -00:23.380 --> 00:25.530 -I haven’t received any phone calls or letters. - -00:26.710 --> 00:32.960 -If she really was a friend, she would never have left this way. - -00:33.640 --> 00:39.080 -Maybe she thinks I’m badmouthing her like the other kids. - -00:39.690 --> 00:41.960 -I makes me even sadder. - -00:42.420 --> 00:45.160 -I was your special friend. - -00:45.730 --> 00:47.520 -Wasn’t I, Misato-chan? diff --git a/src/static/media/webvtt/Lda143.vtt b/src/static/media/webvtt/Lda143.vtt deleted file mode 100644 index f7df156..0000000 --- a/src/static/media/webvtt/Lda143.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.530 -Would it have been different if I had called you then? - -00:03.090 --> 00:06.710 -Couldn’t you have said that I was on your side? - -00:07.100 --> 00:10.050 -I was only thinking about you, Misato-chan. diff --git a/src/static/media/webvtt/Lda144.vtt b/src/static/media/webvtt/Lda144.vtt deleted file mode 100644 index ea69c39..0000000 --- a/src/static/media/webvtt/Lda144.vtt +++ /dev/null @@ -1,43 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.280 -I was thinking of not seeing Touko-san anymore today. - -00:03.920 --> 00:12.290 -When I told her about Misato-chan, she said that there are some things that people can’t say, even to those who are closest to them. - -00:12.580 --> 00:15.570 -Did Misato-chan go away because I was hiding things about myself from her? - -00:15.960 --> 00:20.440 -Is that why she went away without saying anything to me? - -00:21.050 --> 00:24.930 -Even if there’s something I can’t say, I would never do that. - -00:25.610 --> 00:28.470 -Touko-san and Misato-chan are awful. - -00:29.220 --> 00:31.130 -Nobody understands me. - -00:31.920 --> 00:33.920 -I don’t feel like doing schoolwork. - -00:34.570 --> 00:35.960 -Am I a truant? - -00:36.590 --> 00:39.130 -I don’t want to leave people behind. - -00:39.130 --> 00:40.430 -I’ve got to fight. - -00:41.110 --> 00:48.700 -Although they say that I ought to study what interests me, the only things I’m interested in are Misato-chan and myself. - -00:49.510 --> 00:51.360 -But its over. - -00:51.860 --> 00:55.100 -I have to find other things that are meaningful to me. diff --git a/src/static/media/webvtt/Lda145.vtt b/src/static/media/webvtt/Lda145.vtt deleted file mode 100644 index fce41f4..0000000 --- a/src/static/media/webvtt/Lda145.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.550 -Mom and Dad had a big fight today. - -00:04.130 --> 00:08.450 -Dad never hits people, but he hit Mom today. - -00:09.290 --> 00:13.940 -Mom threw things at Dad and screamed. - -00:14.480 --> 00:17.670 -I was afraid and couldn’t do anything but cry. - -00:18.680 --> 00:20.400 -Why did they fight? - -00:21.080 --> 00:22.840 -They usually get along so well. - -00:23.450 --> 00:24.840 -Was it my fault? diff --git a/src/static/media/webvtt/Lda146.vtt b/src/static/media/webvtt/Lda146.vtt deleted file mode 100644 index 2f0d7bd..0000000 --- a/src/static/media/webvtt/Lda146.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.950 --> 00:04.490 -Why do people around me become this way? - -00:05.010 --> 00:06.730 -Is it because I’ve become ordinary? - -00:07.520 --> 00:09.960 -Has it been this way, and I just didn’t notice? diff --git a/src/static/media/webvtt/Lda147.vtt b/src/static/media/webvtt/Lda147.vtt deleted file mode 100644 index c666d43..0000000 --- a/src/static/media/webvtt/Lda147.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.240 -Today I told Mom that I wanted to quit counseling. - -00:03.240 --> 00:04.480 -She said no. - -00:04.910 --> 00:08.870 -She said that I’m okay now, but that she doesn’t know if I will get worse again. - -00:09.660 --> 00:13.000 -I’ve been missing school again lately. - -00:13.470 --> 00:16.410 -I didn’t want to face it, but Mom is right. - -00:17.090 --> 00:19.800 -I have to go see Touko-san again tomorrow. - -00:20.490 --> 00:21.320 -I don’t want to. - -00:21.320 --> 00:23.370 -I have no freedom. - -00:24.000 --> 00:25.160 -I’m a patient. - -00:25.160 --> 00:27.280 -I’m a patient that always has to be looked after. - -00:27.840 --> 00:29.280 -I don’t want to do this anymore. diff --git a/src/static/media/webvtt/Lda148.vtt b/src/static/media/webvtt/Lda148.vtt deleted file mode 100644 index 12fcbf3..0000000 --- a/src/static/media/webvtt/Lda148.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.430 --> 00:02.950 -What is the meaning of my existence? diff --git a/src/static/media/webvtt/Lda149.vtt b/src/static/media/webvtt/Lda149.vtt deleted file mode 100644 index c0fb853..0000000 --- a/src/static/media/webvtt/Lda149.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:00.000 --> 00:04.330 -Today I think I felt the way a person feels when she wants to die. - -00:05.010 --> 00:08.960 -I was placed in the same class as Kyoko-chan. - -00:09.520 --> 00:18.510 -I used to think that I would never feel badly facing Kyoko-chan again, but I became the person I used to be as soon as I saw her. - -00:19.410 --> 00:25.280 -Kyoko-chan walked past me as if I wasn’t there and started talking to other kids. - -00:25.820 --> 00:28.510 -I’m sure she talks about me a lot. - -00:29.060 --> 00:32.070 -It can’t be helped. - -00:32.690 --> 00:36.120 -It’s true that I’m the depressing, strange kid who misses school. - -00:36.640 --> 00:38.370 -I want to move to another school, too. - -00:38.630 --> 00:40.370 -I want to disappear. diff --git a/src/static/media/webvtt/Lda150.vtt b/src/static/media/webvtt/Lda150.vtt deleted file mode 100644 index b9fd87a..0000000 --- a/src/static/media/webvtt/Lda150.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.740 --> 00:04.210 -I’ve been going to the library alone to read books. - -00:04.770 --> 00:06.070 -It’s depressing. - -00:06.420 --> 00:10.400 -But its better than spending free time at school alone. - -00:10.920 --> 00:13.670 -I have to distract myself with books. diff --git a/src/static/media/webvtt/Lda151.vtt b/src/static/media/webvtt/Lda151.vtt deleted file mode 100644 index af0cc7d..0000000 --- a/src/static/media/webvtt/Lda151.vtt +++ /dev/null @@ -1,31 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.930 -Mom and Dad had another fight. - -00:03.450 --> 00:05.250 -It was about me. - -00:06.240 --> 00:09.490 -I felt so miserable that I couldn’t be around it. - -00:09.490 --> 00:11.090 -I ran away to my room. - -00:11.580 --> 00:15.770 -Dad got worried and came to check in on me. - -00:17.060 --> 00:20.860 -Dad saw me crying and apologized to me. - -00:21.490 --> 00:23.370 -Why did he apologize? - -00:23.810 --> 00:25.450 -Aren’t I the one at fault? - -00:26.010 --> 00:28.390 -I’m the one that should apologize. - -00:29.290 --> 00:30.840 -I’m sorry, Dad. diff --git a/src/static/media/webvtt/Lda152.vtt b/src/static/media/webvtt/Lda152.vtt deleted file mode 100644 index d0926d9..0000000 --- a/src/static/media/webvtt/Lda152.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.000 --> 00:05.800 -Am I the one at fault? What about me is wrong? diff --git a/src/static/media/webvtt/Lda153.vtt b/src/static/media/webvtt/Lda153.vtt deleted file mode 100644 index 8d38421..0000000 --- a/src/static/media/webvtt/Lda153.vtt +++ /dev/null @@ -1,43 +0,0 @@ -WEBVTT - -00:00.080 --> 00:02.230 -I wonder what I did. - -00:02.230 --> 00:04.400 -When I came to, I was on top of the bed. - -00:04.980 --> 00:08.350 -I thought I went to school as usual. - -00:08.960 --> 00:10.030 -Did I fall? - -00:10.490 --> 00:13.340 -All I remember is walking toward school. - -00:13.820 --> 00:16.800 -I asked Mom, but she didn’t say anything. - -00:17.410 --> 00:20.230 -I feel like something awful has happened. - -00:20.230 --> 00:21.850 -What happened? - -00:22.360 --> 00:24.380 -I can see hallucinations in my dreams again. - -00:24.380 --> 00:26.250 -I hear all sorts of voices. - -00:26.250 --> 00:28.250 -I’m going crazy. - -00:28.690 --> 00:30.100 -I’m not cured after all. - -00:30.560 --> 00:31.960 -There’s something wrong with me. - -00:32.450 --> 00:34.260 -I have to see Touko-san. diff --git a/src/static/media/webvtt/Lda154.vtt b/src/static/media/webvtt/Lda154.vtt deleted file mode 100644 index ba16712..0000000 --- a/src/static/media/webvtt/Lda154.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.900 --> 00:03.370 -I thought I was better. - -00:03.690 --> 00:05.030 -I wonder what happened. - -00:05.540 --> 00:07.420 -Why don’t I remember anything? - -00:07.900 --> 00:11.310 -There’s a white mist inside my head. - -00:11.790 --> 00:14.650 -Everything is mixed with everything else and I can’t tell what from what. diff --git a/src/static/media/webvtt/Lda155.vtt b/src/static/media/webvtt/Lda155.vtt deleted file mode 100644 index 1dc8688..0000000 --- a/src/static/media/webvtt/Lda155.vtt +++ /dev/null @@ -1,58 +0,0 @@ -WEBVTT - -00:00.210 --> 00:03.660 -Mom said that she went to my school to ask for a leave of absence. - -00:04.200 --> 00:08.550 -I thought that I ought to feel glad that I won’t have to go to school, but I’m sad. - -00:09.200 --> 00:11.660 -I’ve genuinely been separated from society. - -00:12.320 --> 00:14.990 -I feel that I’ve been rejected by everyone, and I’m sad. - -00:15.850 --> 00:18.150 -Can't I live an ordinary life anymore? - -00:18.850 --> 00:23.380 -Dad won’t come home and Mom looks worn out. - -00:24.180 --> 00:26.270 -Why won’t Dad come home? - -00:26.970 --> 00:29.100 -Doesn’t he want to see me anymore? - -00:29.850 --> 00:32.120 -Doesn’t Dad like me anymore? - -00:32.760 --> 00:34.120 -I want to see him. - -00:34.660 --> 00:39.140 -I fell asleep weeping, and saw hallucinations again. - -00:39.620 --> 00:40.430 -It’s scary. - -00:40.890 --> 00:42.780 -I can see them whether I’m asleep or not. - -00:43.350 --> 00:45.390 -I can’t believe it myself. - -00:45.390 --> 00:46.540 -I don’t understand it. - -00:47.140 --> 00:51.500 -I want someone to prove to me that I am the person that I know I am. - -00:52.110 --> 00:53.560 -I want to see Dad. - -00:53.930 --> 00:55.640 -I want to see Dad and hug him. - -00:56.150 --> 00:57.550 -It’s okay... diff --git a/src/static/media/webvtt/Lda156.vtt b/src/static/media/webvtt/Lda156.vtt deleted file mode 100644 index 1c4b5da..0000000 --- a/src/static/media/webvtt/Lda156.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.770 --> 00:06.950 -Will everyone I love become unhappy? Will they become unhappy because I feel love for them? diff --git a/src/static/media/webvtt/Lda157.vtt b/src/static/media/webvtt/Lda157.vtt deleted file mode 100644 index 29dde14..0000000 --- a/src/static/media/webvtt/Lda157.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.340 -Lately, I’ve been taking correspondence courses and surfing the Net day and night. - -00:03.840 --> 00:07.510 -I start to feel sick looking at the computer screen all day. - -00:08.040 --> 00:12.830 -Dad bought me this computer, though, so I want to study hard with it. - -00:13.710 --> 00:19.120 -Mom left the house with the keys so that I can’t leave. - -00:19.470 --> 00:20.730 -Someone help me. - -00:21.050 --> 00:22.460 -I hate being alone. - -00:22.970 --> 00:24.200 -I’ll be a good kid. - -00:24.200 --> 00:26.200 -Please don’t leave me alone. diff --git a/src/static/media/webvtt/Lda158.vtt b/src/static/media/webvtt/Lda158.vtt deleted file mode 100644 index 3f9cb14..0000000 --- a/src/static/media/webvtt/Lda158.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.600 -My only way to communicate with the outside world is through the Net. - -00:02.600 --> 00:07.820 -I can’t use the phone because I have no one to call, but I can connect with the Net right away. - -00:08.260 --> 00:11.150 -I can connect with someone that I don’t even see. diff --git a/src/static/media/webvtt/Lda159.vtt b/src/static/media/webvtt/Lda159.vtt deleted file mode 100644 index 332483b..0000000 --- a/src/static/media/webvtt/Lda159.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.000 --> 00:05.070 -Even when I go to see Touko-san, Mom drives me now. - -00:05.550 --> 00:08.650 -It’s like she’s guarding me, and I hate it. - -00:09.030 --> 00:11.850 -I can go see Touko-san on my own. - -00:12.460 --> 00:15.880 -I wonder what Touko-san really thinks of me. - -00:16.600 --> 00:21.510 -I remember talking to her a lot, though I don’t remember what we were talking about. - -00:22.190 --> 00:25.620 -I don’t care what Touko-san thinks of me now. - -00:26.190 --> 00:30.240 -I’m crazy anyway, so take down all the weird data you can about me. - -00:30.650 --> 00:31.930 -I don’t care anymore. diff --git a/src/static/media/webvtt/Lda160.vtt b/src/static/media/webvtt/Lda160.vtt deleted file mode 100644 index 37ffb18..0000000 --- a/src/static/media/webvtt/Lda160.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.290 --> 00:02.370 -Am I Mom’s kid? - -00:02.680 --> 00:05.430 -Could I be someone else’s kid? - -00:05.430 --> 00:09.520 -My hair color is different from hers, and her face doesn’t look like mine. diff --git a/src/static/media/webvtt/Lda161.vtt b/src/static/media/webvtt/Lda161.vtt deleted file mode 100644 index 3ba795d..0000000 --- a/src/static/media/webvtt/Lda161.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.330 -I found Mr. Rabbit on the Net. - -00:02.700 --> 00:03.890 -He was dead. - -00:04.630 --> 00:07.740 -The last log he left was when I stopped accessing the net. - -00:08.350 --> 00:11.810 -He had an e-mail address, but he hasn’t used it for a year or so. - -00:12.500 --> 00:15.050 -Maybe he took a break from the Net like I did. - -00:15.670 --> 00:25.180 -Cracking isn't interesting to me. After all, company information or state secrets have no use for me and such things don't appeal to me at all. - -00:25.700 --> 00:28.330 -What I want is to find the image of the real me. diff --git a/src/static/media/webvtt/Lda162.vtt b/src/static/media/webvtt/Lda162.vtt deleted file mode 100644 index 4e33148..0000000 --- a/src/static/media/webvtt/Lda162.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.640 --> 00:04.820 -Is my own physical appearance an illusion or an ordinary phenomenon? diff --git a/src/static/media/webvtt/Lda163.vtt b/src/static/media/webvtt/Lda163.vtt deleted file mode 100644 index 78c8d22..0000000 --- a/src/static/media/webvtt/Lda163.vtt +++ /dev/null @@ -1,40 +0,0 @@ -WEBVTT - -00:00.080 --> 00:02.370 -Mom and Dad divorced. - -00:03.110 --> 00:06.970 -Dad hugged me on the day he left. - -00:07.740 --> 00:10.060 -I was happy to have him hug me. - -00:10.060 --> 00:11.280 -He was warm and gentle. - -00:11.920 --> 00:13.910 -I won’t see him for a while. - -00:14.680 --> 00:17.830 -I’m okay with being Dad’s daughter. - -00:18.370 --> 00:19.990 -I’m the one at fault. - -00:20.450 --> 00:21.990 -I’m the cause. - -00:22.870 --> 00:25.880 -I hurt Mom and Dad. - -00:26.560 --> 00:28.170 -I’m a bad kid. - -00:29.060 --> 00:31.100 -I don’t want Dad to leave. - -00:31.790 --> 00:33.920 -Will he hug me again? - -00:34.470 --> 00:35.980 -I’m sure I’ll see him again. diff --git a/src/static/media/webvtt/Lda164.vtt b/src/static/media/webvtt/Lda164.vtt deleted file mode 100644 index 8339127..0000000 --- a/src/static/media/webvtt/Lda164.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.160 --> 00:02.030 -Dad... diff --git a/src/static/media/webvtt/Lda165.vtt b/src/static/media/webvtt/Lda165.vtt deleted file mode 100644 index 80db321..0000000 --- a/src/static/media/webvtt/Lda165.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.390 -I share this big house with Mom now. - -00:02.390 --> 00:09.360 -The weeds are growing outside because Dad used to pull them, but he’s no longer here. - -00:09.900 --> 00:11.700 -Mom doesn’t say anything. - -00:12.260 --> 00:15.150 -I enjoy watching the weeds grow. - -00:15.150 --> 00:17.150 -I watch them everyday. - -00:17.960 --> 00:22.390 -The swing outside that I used to play on as a little kid is now covered with weeds. - -00:22.890 --> 00:24.510 -It’s like a haunted place. - -00:25.190 --> 00:26.510 -I want to see Dad. diff --git a/src/static/media/webvtt/Lda166.vtt b/src/static/media/webvtt/Lda166.vtt deleted file mode 100644 index 3242afb..0000000 --- a/src/static/media/webvtt/Lda166.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.000 --> 00:04.500 -Only the weeds look lively. Did the swing die? diff --git a/src/static/media/webvtt/Lda167.vtt b/src/static/media/webvtt/Lda167.vtt deleted file mode 100644 index 605d3f0..0000000 --- a/src/static/media/webvtt/Lda167.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.000 --> 00:04.440 -Mom got drunk and threw a vase at me. - -00:04.690 --> 00:06.280 -She was angry at the wrong person. - -00:06.530 --> 00:09.140 -She was wrong because she threw Dad away. - -00:09.890 --> 00:12.340 -But isn’t that my fault, too? - -00:12.760 --> 00:16.650 -If I’m so wrong, why not kill me? - -00:17.300 --> 00:20.010 -If you had killed me, you wouldn’t have had to divorce, would you? - -00:20.630 --> 00:22.540 -You’d rather not have me here, right? diff --git a/src/static/media/webvtt/Lda168.vtt b/src/static/media/webvtt/Lda168.vtt deleted file mode 100644 index 0d0091d..0000000 --- a/src/static/media/webvtt/Lda168.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.800 --> 00:03.390 -I’m beginning to dislike people who drink. - -00:03.830 --> 00:06.450 -Touko-san said that she drinks, too. - -00:07.510 --> 00:09.490 -Do people go nuts when they drink? - -00:10.050 --> 00:11.280 -I don’t like it. diff --git a/src/static/media/webvtt/Lda169.vtt b/src/static/media/webvtt/Lda169.vtt deleted file mode 100644 index 1b9d8d3..0000000 --- a/src/static/media/webvtt/Lda169.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.090 -Today I found a doodlebug nest in the yard. - -00:03.550 --> 00:11.470 -I watched the ants get pulled into the nest by their legs and get eaten. - -00:11.970 --> 00:15.250 -What does an ant think in the moment that it is being eaten? - -00:15.630 --> 00:17.770 -Do they know that they will die? - -00:18.370 --> 00:23.010 -I found as many ants as I could and tossed them into the doodlebug nest. - -00:23.590 --> 00:26.020 -I didn’t understand the ant’s feelings. - -00:26.670 --> 00:28.650 -There’s something wrong with me. - -00:28.990 --> 00:31.180 -Why else would I be so cruel? diff --git a/src/static/media/webvtt/Lda170.vtt b/src/static/media/webvtt/Lda170.vtt deleted file mode 100644 index 94b5ebf..0000000 --- a/src/static/media/webvtt/Lda170.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.000 --> 00:08.220 -If I am an ant, who is the doodlebug? Is it this house? Is it the hallucinations? Is it me? diff --git a/src/static/media/webvtt/Lda171.vtt b/src/static/media/webvtt/Lda171.vtt deleted file mode 100644 index d3c71ad..0000000 --- a/src/static/media/webvtt/Lda171.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:00.000 --> 00:01.740 -I went to an adult site. - -00:01.740 --> 00:02.940 -It was ridiculous. - -00:03.520 --> 00:06.630 -It was lots of photos of women in embarrassing poses. - -00:07.090 --> 00:13.860 -I can see that the man would enjoy this, but the women... I guess they’re doing this because it’s their job. - -00:14.500 --> 00:19.260 -But there are women who send in these things voluntarily, too. - -00:19.650 --> 00:23.900 -What’s so great about sending in embarrassing photos of yourself? diff --git a/src/static/media/webvtt/Lda172.vtt b/src/static/media/webvtt/Lda172.vtt deleted file mode 100644 index 32d8154..0000000 --- a/src/static/media/webvtt/Lda172.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.440 --> 00:04.050 -I wonder if I have wishes to do these sorts of things myself. - -00:04.380 --> 00:09.370 -It’s creepy to know that there are a lot of people who watch these kinds of sites and enjoy them. - -00:09.920 --> 00:16.930 -Mom and Dad had to do this kind of thing for me to be born, and someday I’ll have to do this if I want children. diff --git a/src/static/media/webvtt/Lda173.vtt b/src/static/media/webvtt/Lda173.vtt deleted file mode 100644 index 41c9e8a..0000000 --- a/src/static/media/webvtt/Lda173.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.120 -I wonder if psychiatry isn’t a groundless science. - -00:03.520 --> 00:07.700 -There seem to be all sorts of treatments and theories, but in the end, psychiatry doesn’t seem to cure. - -00:08.040 --> 00:13.540 -I checked out my own diagnosis on a news group, but only found some boring, unsatisfying answers. - -00:14.000 --> 00:17.560 -I wonder if Touko-san is a part of this news group. - -00:17.980 --> 00:21.140 -Why don’t I access Touko-san’s research center? - -00:21.400 --> 00:23.620 -I’ll find some of her research there. - -00:24.010 --> 00:26.860 -I’m curious to see how she’s using me in her research. diff --git a/src/static/media/webvtt/Lda174.vtt b/src/static/media/webvtt/Lda174.vtt deleted file mode 100644 index 08c7612..0000000 --- a/src/static/media/webvtt/Lda174.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.180 --> 00:03.600 -I’m going to check out Touko-san’s research center’s address. - -00:03.970 --> 00:06.370 -I haven’t done any ‘cracking’ in a while. diff --git a/src/static/media/webvtt/Lda175.vtt b/src/static/media/webvtt/Lda175.vtt deleted file mode 100644 index de15c2e..0000000 --- a/src/static/media/webvtt/Lda175.vtt +++ /dev/null @@ -1,31 +0,0 @@ -WEBVTT - -00:00.060 --> 00:04.290 -I’ve been trying since two days ago until today, but I still can’t get in. - -00:04.820 --> 00:05.730 -Why? - -00:05.960 --> 00:07.810 -I could access her research center. - -00:08.080 --> 00:15.520 -Data about the patients Touko-san is overseeing was available, but it wasn’t really data—just file names without information. - -00:15.520 --> 00:19.900 -When I checked the file reports, I could see that everything was communicated correctly. - -00:19.900 --> 00:21.550 -But I can’t see the actual data. - -00:21.770 --> 00:24.170 -It isn’t as if it’s in encrypted language. - -00:24.170 --> 00:29.270 -Information about me shouldn’t be any more important than information of other patients. - -00:29.270 --> 00:31.270 -The only information I can’t find is information about me. - -00:31.270 --> 00:32.750 -What’s going on? diff --git a/src/static/media/webvtt/Lda176.vtt b/src/static/media/webvtt/Lda176.vtt deleted file mode 100644 index c6a8158..0000000 --- a/src/static/media/webvtt/Lda176.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.000 --> 00:06.420 -Am I an exception? I just want to find information about me. diff --git a/src/static/media/webvtt/Lda177.vtt b/src/static/media/webvtt/Lda177.vtt deleted file mode 100644 index 8007042..0000000 --- a/src/static/media/webvtt/Lda177.vtt +++ /dev/null @@ -1,49 +0,0 @@ -WEBVTT - -00:00.000 --> 00:05.100 -I went to see Touko-san alone because Mom was sleeping in. - -00:05.840 --> 00:10.080 -I asked Touko-san what she writes about me in her research reports. - -00:10.440 --> 00:13.240 -She didn't give me a clear answer. - -00:13.800 --> 00:20.040 -While Touko-san left the room for a while, I took copies of some pages from her notebook. - -00:20.040 --> 00:25.840 -I thought that I now knew the research data Touko-san keeps about me, and that I knew what she does with it. - -00:25.840 --> 00:31.900 -I could see that she sends information about me to the research room, and that she sends a lot of it. - -00:31.900 --> 00:33.400 -Could it be visual data? - -00:33.400 --> 00:35.780 -Auditory data? - -00:35.780 --> 00:39.400 -I also noticed some writing that seemed to have daily entries in it. - -00:39.400 --> 00:40.980 -Could it be a diary? - -00:40.980 --> 00:44.020 -I couldn't find that data in her ‘host’ page. - -00:44.020 --> 00:48.240 -Touko-san tends to transmit her data late at night. - -00:48.240 --> 00:50.400 -I’ll try to access her site then. - -00:51.440 --> 00:57.740 -She has a very big file about me that would take a long time to download, so I don’t think she’ll find out if I accessed it. - -00:57.740 --> 01:01.860 -I don’t think Touko-san knows much about machines and computers. - -01:02.420 --> 01:08.460 -I feel bad because I think I’m tricking Touko-san, but on the other hand, I feel good. diff --git a/src/static/media/webvtt/Lda178.vtt b/src/static/media/webvtt/Lda178.vtt deleted file mode 100644 index 19e8352..0000000 --- a/src/static/media/webvtt/Lda178.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.380 -I found Touko-san’s diary. - -00:02.380 --> 00:05.960 -It’s wrong to read other people’s diaries, but it’s fun. - -00:05.960 --> 00:08.480 -I’m understanding Touko-san better now. - -00:08.820 --> 00:11.320 -I’m finding out that she’s just another human being. - -00:11.920 --> 00:15.240 -I can see that she thinks of petty things, too. - -00:15.240 --> 00:19.320 -Most of what she writes is about men. - -00:19.320 --> 00:23.320 -Was my report this simple? - -00:23.320 --> 00:24.980 -I’m disappointed. - -00:26.380 --> 00:30.380 -I felt like adding some of my own notes, but decided not to. - -00:30.380 --> 00:34.900 -There is a periodical security check and it found out about my ‘cracking.’ But I think I’m okay. - -00:34.900 --> 00:38.060 -I don’t think I left any ‘foot prints.’ diff --git a/src/static/media/webvtt/Lda179.vtt b/src/static/media/webvtt/Lda179.vtt deleted file mode 100644 index 3c260ba..0000000 --- a/src/static/media/webvtt/Lda179.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.380 --> 00:05.640 -I wonder how Touko-san would react if she finds out that I’ve been reading her diary. - -00:05.640 --> 00:09.680 -It gets me excited because I’m a bad girl. - -00:09.680 --> 00:12.780 -But Touko-san is wrong, too. diff --git a/src/static/media/webvtt/Lda180.vtt b/src/static/media/webvtt/Lda180.vtt deleted file mode 100644 index da8d385..0000000 --- a/src/static/media/webvtt/Lda180.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.050 --> 00:03.570 -Dad’s been away for a long time and I haven’t heard from him. - -00:04.120 --> 00:07.360 -Has he forgotten about me? - -00:08.000 --> 00:08.940 -I want to see him. - -00:09.280 --> 00:11.180 -I want to be with Dad forever. diff --git a/src/static/media/webvtt/Lda181.vtt b/src/static/media/webvtt/Lda181.vtt deleted file mode 100644 index 07751d4..0000000 --- a/src/static/media/webvtt/Lda181.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.820 --> 00:03.210 -Do you really want to see Dad? - -00:03.690 --> 00:05.500 -What kind of person was Dad? - -00:06.490 --> 00:11.050 -He was tall, he wore glasses, and he had gentle-looking eyes. - -00:11.930 --> 00:15.650 -I can’t remember Dad much anymore. diff --git a/src/static/media/webvtt/Lda182.vtt b/src/static/media/webvtt/Lda182.vtt deleted file mode 100644 index 3c624aa..0000000 --- a/src/static/media/webvtt/Lda182.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.000 --> 00:04.480 -I got some free AI software that lets me replicate voices and images. - -00:04.480 --> 00:13.860 -I played around with it, and was able to create voices and images on the computer that look and sound like Dad. - -00:14.420 --> 00:24.300 -I programmed it to say several expressions, like "hi, Lain, how are you doing?" The voice is very robotic. - -00:24.960 --> 00:28.820 -I think this is all goofy, but it makes me happy. - -00:29.480 --> 00:31.860 -I think I’ll add some more features to it. diff --git a/src/static/media/webvtt/Lda183.vtt b/src/static/media/webvtt/Lda183.vtt deleted file mode 100644 index fe474dc..0000000 --- a/src/static/media/webvtt/Lda183.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.250 --> 00:08.580 -It’s weird for a daughter to grow her father, but it makes me feel that Dad is nearby and that makes me happy. diff --git a/src/static/media/webvtt/Lda184.vtt b/src/static/media/webvtt/Lda184.vtt deleted file mode 100644 index 9c0b9e1..0000000 --- a/src/static/media/webvtt/Lda184.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.130 --> 00:02.300 -I gave Dad a Japanese signature. - -00:02.620 --> 00:05.010 -Do difficult kanji suit him well? - -00:05.650 --> 00:11.570 -Just a voice with a text is boring, so I set up the computer so that I can see an image of Dad and have him talk. - -00:12.220 --> 00:14.800 -I guess there are limitations. - -00:15.200 --> 00:21.370 -I programmed the routing devices so that Dad can communicate with the Net and receive feedback. - -00:21.900 --> 00:26.130 -Dad is studying the Net now, so he’ll know more dirty words than me. - -00:26.360 --> 00:27.890 -You’re a dirty old man, Dad! diff --git a/src/static/media/webvtt/Lda185.vtt b/src/static/media/webvtt/Lda185.vtt deleted file mode 100644 index 8861a82..0000000 --- a/src/static/media/webvtt/Lda185.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.210 --> 00:05.620 -It can recognize general and representative shapes visually through the screen. - -00:06.130 --> 00:08.140 -Dad has eyes now. - -00:08.570 --> 00:10.290 -Can you see me? - -00:11.300 --> 00:15.360 -Dad’s file size has gotten huge, so I’ve had to break down the information. diff --git a/src/static/media/webvtt/Lda186.vtt b/src/static/media/webvtt/Lda186.vtt deleted file mode 100644 index 43344d9..0000000 --- a/src/static/media/webvtt/Lda186.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:00.000 --> 00:04.530 -I decided to make a model of Dad with 3-D rendering. - -00:04.530 --> 00:12.020 -I got low on buffer and the computer froze sometimes after bringing him to life, but it seems more and more that he is alive now, and I am happy. - -00:12.440 --> 00:16.850 -I’m breathing Dad’s life into the computer Dad gave me. - -00:17.400 --> 00:19.440 -This PC is Dad. - -00:20.050 --> 00:22.000 -Now I’ll always be with him. - -00:22.300 --> 00:23.760 -Are you happy, Dad? - -00:24.500 --> 00:25.370 -Oh! - -00:25.370 --> 00:26.700 -I should show Mom. - -00:26.700 --> 00:27.720 -I bet she’ll be surprised. - -00:28.520 --> 00:31.330 -But I won’t show Mom until Dad looks more like Dad. - -00:32.020 --> 00:34.950 -I’ll have him scold her for drinking. diff --git a/src/static/media/webvtt/Lda187.vtt b/src/static/media/webvtt/Lda187.vtt deleted file mode 100644 index 6a1732d..0000000 --- a/src/static/media/webvtt/Lda187.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.000 --> 00:07.650 -In order to raise the speed of the 3-D rendering, I routed more energy to the CPU. - -00:07.650 --> 00:14.670 -I increased the amount of the rendering engine’s memory to 12 Gigs and optimized the signal pathways. - -00:14.670 --> 00:18.250 -I’m finding limitations, though. - -00:18.250 --> 00:21.270 -The more I try to work into him, the slower he becomes. - -00:21.270 --> 00:24.850 -I think the prototype was more like Dad. diff --git a/src/static/media/webvtt/Lda188.vtt b/src/static/media/webvtt/Lda188.vtt deleted file mode 100644 index 243c8a9..0000000 --- a/src/static/media/webvtt/Lda188.vtt +++ /dev/null @@ -1,31 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.200 -I showed Dad to Mom today. - -00:03.200 --> 00:04.780 -She was horrified. - -00:04.780 --> 00:08.140 -She looked at me and left the room without saying a word. - -00:08.860 --> 00:12.040 -Maybe she thinks I made him to offend her. - -00:12.040 --> 00:15.740 -I should have thought more about Mom’s feelings. - -00:15.740 --> 00:17.740 -I’m sorry, Mom. - -00:18.300 --> 00:21.820 -Do you dislike Dad, Mom? - -00:21.820 --> 00:24.520 -I love you. - -00:24.520 --> 00:28.040 -But I love Dad, too. - -00:28.540 --> 00:30.240 -I want to see Dad. diff --git a/src/static/media/webvtt/Lda189.vtt b/src/static/media/webvtt/Lda189.vtt deleted file mode 100644 index dcb1152..0000000 --- a/src/static/media/webvtt/Lda189.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:00.000 --> 00:04.760 -I talked to a student at the Massachusetts Institute of Technology factory who is studying robots. - -00:04.760 --> 00:08.960 -I might be able to make the kind of robots he’s working on at the level where I am now. - -00:08.960 --> 00:12.720 -I might be able to take Dad out of the computer screen now. - -00:12.720 --> 00:17.900 -There’s a ton of data, though, and there’ll have to be cables everywhere. - -00:18.280 --> 00:22.600 -I’ll be able to hug Dad again the way I used to. - -00:22.600 --> 00:25.620 -I’ll be able to feel him again. diff --git a/src/static/media/webvtt/Lda190.vtt b/src/static/media/webvtt/Lda190.vtt deleted file mode 100644 index 1694667..0000000 --- a/src/static/media/webvtt/Lda190.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.110 --> 00:03.230 -I want an accelerator that will work in conjunction with protocol 7. - -00:03.550 --> 00:04.890 -Do any of you have that? - -00:05.580 --> 00:08.250 -I’ll ask someone who is a friend of Mr. Tachibana. diff --git a/src/static/media/webvtt/Lda191.vtt b/src/static/media/webvtt/Lda191.vtt deleted file mode 100644 index d77c09b..0000000 --- a/src/static/media/webvtt/Lda191.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.110 -People operate around money. - -00:02.580 --> 00:09.090 -They aren’t willing to give away their technological secrets to strangers too willingly. - -00:09.560 --> 00:12.440 -I wonder what they would think if they met me. - -00:13.640 --> 00:15.980 -I’m not interested in that stuff anymore. - -00:16.480 --> 00:18.140 -I’m just interested in Dad. diff --git a/src/static/media/webvtt/Lda192.vtt b/src/static/media/webvtt/Lda192.vtt deleted file mode 100644 index 7c525dc..0000000 --- a/src/static/media/webvtt/Lda192.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.130 --> 00:02.380 -Making artificial organs is very expensive. - -00:02.740 --> 00:09.630 -It won’t be a problem because I won’t be spending money, though. - -00:10.240 --> 00:12.720 -It’ll take a lot of work to make his head. - -00:13.040 --> 00:14.990 -I’ll make his upper body first. - -00:15.450 --> 00:20.460 -In order to control the electricity, I’ll need to buy batteries and lots of cables. diff --git a/src/static/media/webvtt/Lda193.vtt b/src/static/media/webvtt/Lda193.vtt deleted file mode 100644 index 4c33e78..0000000 --- a/src/static/media/webvtt/Lda193.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.090 --> 00:04.300 -I put an electrical generator in Dad’s chest so he can start supporting himself. - -00:04.720 --> 00:08.720 -I’ve placed motors in him so he can start moving around little by little. - -00:08.900 --> 00:13.080 -The electricity heats him up, so he’s warm and gentle, just like my real Dad. - -00:13.640 --> 00:17.520 -I was feeling tired, so I gave him a hug. - -00:17.680 --> 00:19.630 -I held onto him like a little baby. diff --git a/src/static/media/webvtt/Lda194.vtt b/src/static/media/webvtt/Lda194.vtt deleted file mode 100644 index 7992d7a..0000000 --- a/src/static/media/webvtt/Lda194.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.770 --> 00:09.680 -It’s a bit embarrassing, but when I’m holding onto the warm chest of a man, there is something that makes me feels very good. - -00:10.200 --> 00:14.080 -I had Dad touch me all over my body. - -00:14.850 --> 00:17.370 -I’ve never done this with my real Dad. diff --git a/src/static/media/webvtt/Lda195.vtt b/src/static/media/webvtt/Lda195.vtt deleted file mode 100644 index 5b2756b..0000000 --- a/src/static/media/webvtt/Lda195.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.550 --> 00:06.020 -When I was being held, I felt like a real man was holding me. - -00:06.480 --> 00:10.440 -I felt warm inside and was excited. - -00:11.160 --> 00:16.190 -I don’t know if it was because I felt like Dad was holding me or because I was imagining someone else. - -00:16.520 --> 00:17.420 -I don’t know. - -00:17.720 --> 00:20.140 -This feels good, though. - -00:20.560 --> 00:23.520 -Is this what I wanted my real Dad to do with me? - -00:24.240 --> 00:27.410 -I just wanted someone to protect me. diff --git a/src/static/media/webvtt/Lda196.vtt b/src/static/media/webvtt/Lda196.vtt deleted file mode 100644 index 6da79c5..0000000 --- a/src/static/media/webvtt/Lda196.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.620 --> 00:07.000 -There is something wrong with me. I have no business criticizing Touko-san. diff --git a/src/static/media/webvtt/Lda197.vtt b/src/static/media/webvtt/Lda197.vtt deleted file mode 100644 index 4504426..0000000 --- a/src/static/media/webvtt/Lda197.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.030 --> 00:02.840 -I’ve finished Dad’s arms and abdomen. - -00:03.320 --> 00:07.730 -I wanted to add his pelvis, but I ran out of space for him in my room. - -00:08.360 --> 00:10.960 -I don’t want to sadden Mom again. - -00:10.960 --> 00:13.690 -I have to find house where Dad can live. - -00:15.160 --> 00:19.660 -I hate to separate from him when I’ve really just met him, but how will I buy I house? - -00:20.120 --> 00:23.040 -Even if I had the money, no one will sell a house to a child. - -00:23.370 --> 00:25.410 -I’ll just have to find an empty house somewhere. diff --git a/src/static/media/webvtt/Lda198.vtt b/src/static/media/webvtt/Lda198.vtt deleted file mode 100644 index fd9e09d..0000000 --- a/src/static/media/webvtt/Lda198.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.780 -I found a good place to take Dad. - -00:03.340 --> 00:07.550 -It’s not far from home, and there aren’t many people around there. - -00:07.550 --> 00:09.960 -I’ll take Dad there tomorrow. - -00:10.560 --> 00:13.700 -If I take everything, though, it will be very heavy. - -00:13.700 --> 00:14.950 -How will I do it? - -00:15.570 --> 00:18.300 -If I carry something that large, someone is bound to notice. - -00:18.680 --> 00:20.750 -How about the electricity and the cords? - -00:21.520 --> 00:22.350 -It won’t work. - -00:22.350 --> 00:25.310 -I’ll need help. diff --git a/src/static/media/webvtt/Lda199.vtt b/src/static/media/webvtt/Lda199.vtt deleted file mode 100644 index 2764cae..0000000 --- a/src/static/media/webvtt/Lda199.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.930 -Today the construction was finished and the building was handed over to me. - -00:03.260 --> 00:08.280 -I wonder what he thought about not meeting his client directly at all. - -00:08.810 --> 00:13.200 -Moreover, since it was a bit of a big effort, I wonder if that made it seem all the more suspicious to him. - -00:13.650 --> 00:16.410 -I decided to keep an eye on his actions for a while. - -00:16.790 --> 00:19.310 -It would be dangerous for Father to be exposed. diff --git a/src/static/media/webvtt/Lda200.vtt b/src/static/media/webvtt/Lda200.vtt deleted file mode 100644 index df5ffe3..0000000 --- a/src/static/media/webvtt/Lda200.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.320 --> 00:02.960 -Today, I took Dad to his new home. - -00:03.380 --> 00:09.330 -I took tape media because hard discs are heavy, but decoding them will take time. - -00:10.020 --> 00:16.090 -I took Dad’s legs and arms over little by little in the meantime, so I don’t think I did so badly. - -00:16.640 --> 00:19.190 -Luckily, Mom got drunk and fell asleep. - -00:19.620 --> 00:23.630 -It will be difficult to visit Dad from now on, though. diff --git a/src/static/media/webvtt/Lda201.vtt b/src/static/media/webvtt/Lda201.vtt deleted file mode 100644 index b78a20b..0000000 --- a/src/static/media/webvtt/Lda201.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:00.000 --> 00:04.950 -I wanted to attach Dad’s legs, but working on the lower body was difficult. - -00:05.400 --> 00:06.950 -It’s creepy. - -00:07.480 --> 00:10.570 -I wouldn’t mind if Dad only had an upper body. - -00:11.150 --> 00:13.120 -I can’t remove these cables. - -00:13.560 --> 00:16.460 -It’s creepy that Dad doesn’t have a head. - -00:16.880 --> 00:19.510 -I put an empty artificial head on him for the time being. - -00:19.760 --> 00:25.260 -He’s able to talk, but poorly, and watching the expression on his face as he tries to enunciate seems phony to me. - -00:25.880 --> 00:27.430 -This isn’t Dad. - -00:28.270 --> 00:31.130 -I failed, but what can I do? diff --git a/src/static/media/webvtt/Lda202.vtt b/src/static/media/webvtt/Lda202.vtt deleted file mode 100644 index 46a9cc1..0000000 --- a/src/static/media/webvtt/Lda202.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.560 --> 00:04.430 -Was the only part of Dad’s body that I cared about his upper body? - -00:04.830 --> 00:09.280 -Maybe I didn’t even acknowledge his body. - -00:09.850 --> 00:14.980 -In my mind, Dad was always bigger than me... diff --git a/src/static/media/webvtt/Lda203.vtt b/src/static/media/webvtt/Lda203.vtt deleted file mode 100644 index 32bf4ae..0000000 --- a/src/static/media/webvtt/Lda203.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.000 --> 00:06.570 -Today I walked past a girl I knew in 7th grade, but she didn’t seem to notice me. - -00:06.960 --> 00:10.620 -We hadn’t talked much in school, so I didn’t mind that she didn’t seem to see me. - -00:11.440 --> 00:14.970 -When I saw her school uniform, I was jealous. - -00:15.540 --> 00:18.330 -I don’t think anyone remembers me anymore. diff --git a/src/static/media/webvtt/Lda204.vtt b/src/static/media/webvtt/Lda204.vtt deleted file mode 100644 index c7f90bb..0000000 --- a/src/static/media/webvtt/Lda204.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.610 --> 00:02.840 -My uniform was at the dry cleaner’s. - -00:03.310 --> 00:06.420 -Mom seemed sad when she went to the store to pick it up. - -00:06.880 --> 00:08.660 -She went to the trouble of buying it for me, after all. diff --git a/src/static/media/webvtt/Lda205.vtt b/src/static/media/webvtt/Lda205.vtt deleted file mode 100644 index 715cc01..0000000 --- a/src/static/media/webvtt/Lda205.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.030 --> 00:04.280 -I e-mailed a kid that used to be a classmate, and asked her about me. - -00:04.920 --> 00:10.020 -Isn’t the me that acknowledges my existence only living in this small body? - -00:10.540 --> 00:15.440 -I don’t have an individual personality and I don’t leave much of an impression. - -00:16.000 --> 00:18.330 -Nobody remembers me. - -00:18.960 --> 00:23.790 -When I made Dad, I started to feel that my own body was pretty lame. - -00:24.400 --> 00:29.140 -Wouldn’t I be me if I had a thought re-routing? - -00:30.000 --> 00:38.650 -I don’t need a connection to reality anymore, and it’s not so important to know that I’m a human being who will die unless she eats. - -00:39.960 --> 00:42.390 -It’s more rational to me to have Dad. diff --git a/src/static/media/webvtt/Lda206.vtt b/src/static/media/webvtt/Lda206.vtt deleted file mode 100644 index a2df5ec..0000000 --- a/src/static/media/webvtt/Lda206.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.080 --> 00:01.920 -Dad was having some trouble. - -00:02.330 --> 00:05.110 -I noticed that he was starting to move around on his own. - -00:05.520 --> 00:08.330 -Could it be that he’s trying to see me? - -00:08.960 --> 00:11.460 -I’ll always keep an eye on you, Dad. - -00:11.460 --> 00:13.460 -I’m connected to you. diff --git a/src/static/media/webvtt/Lda207.vtt b/src/static/media/webvtt/Lda207.vtt deleted file mode 100644 index cd4ef20..0000000 --- a/src/static/media/webvtt/Lda207.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.310 --> 00:06.480 -Is Dad really Dad? Is he the Dad that loves me more than anyone else? diff --git a/src/static/media/webvtt/Lda208.vtt b/src/static/media/webvtt/Lda208.vtt deleted file mode 100644 index 1cbb320..0000000 --- a/src/static/media/webvtt/Lda208.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.070 --> 00:06.920 -Someone has accessed Dad. But who? Some prankster who found my host site? diff --git a/src/static/media/webvtt/Lda209.vtt b/src/static/media/webvtt/Lda209.vtt deleted file mode 100644 index 5e5fdf9..0000000 --- a/src/static/media/webvtt/Lda209.vtt +++ /dev/null @@ -1,31 +0,0 @@ -WEBVTT - -00:00.130 --> 00:02.240 -I had a hallucination for the first time in a long while. - -00:02.240 --> 00:04.240 -I don’t know who I saw. - -00:04.940 --> 00:06.950 -The me in the hallucination has grown. - -00:07.370 --> 00:08.950 -She is in elementary school. - -00:09.670 --> 00:12.730 -But she’s different from the person I was then. - -00:12.730 --> 00:14.880 -She had conviction in her eyes. - -00:15.540 --> 00:18.550 -Was the me that I was then me? - -00:18.990 --> 00:19.960 -This is no good. - -00:19.960 --> 00:21.990 -I can’t handle this on my own. - -00:22.410 --> 00:23.990 -I’ll go see Touko-san. diff --git a/src/static/media/webvtt/Lda210.vtt b/src/static/media/webvtt/Lda210.vtt deleted file mode 100644 index fc452b7..0000000 --- a/src/static/media/webvtt/Lda210.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:00.110 --> 00:03.710 -Maybe Touko-san doesn’t understand me. - -00:04.240 --> 00:10.440 -She asks, "Are you really Lain?" She just tilts her head when I bring up my medical condition. - -00:11.080 --> 00:13.360 -I don’t know why I’m going to see her. - -00:13.950 --> 00:16.080 -She seems frightened of me. - -00:16.410 --> 00:20.740 -Touko-san, it seems that you are beginning to not understand me. - -00:20.740 --> 00:22.740 -I haven’t been changing. diff --git a/src/static/media/webvtt/Lda211.vtt b/src/static/media/webvtt/Lda211.vtt deleted file mode 100644 index 7c7903a..0000000 --- a/src/static/media/webvtt/Lda211.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.710 --> 00:04.840 -Even a me like that can’t remember what I talked about. - -00:05.440 --> 00:08.520 -I felt bad for Touko-san and wanted to help her. - -00:08.520 --> 00:09.990 -And then... diff --git a/src/static/media/webvtt/Lda212.vtt b/src/static/media/webvtt/Lda212.vtt deleted file mode 100644 index 879584a..0000000 --- a/src/static/media/webvtt/Lda212.vtt +++ /dev/null @@ -1,37 +0,0 @@ -WEBVTT - -00:00.080 --> 00:03.580 -I was concerned, so I accessed Touko-san’s notebook. - -00:04.010 --> 00:07.870 -I found data about me that I wasn’t able to see before. - -00:08.440 --> 00:10.670 -I went ahead and downloaded and saved the information. - -00:11.550 --> 00:15.380 -These days I get unusually tired and see hallucinations. - -00:15.380 --> 00:16.800 -It drives me crazy. - -00:17.200 --> 00:20.890 -I’m getting drowsy again although I was sleeping just a moment ago. - -00:21.750 --> 00:23.830 -I have a lot of e-mails. - -00:24.240 --> 00:25.650 -I don’t even want to look at them. - -00:25.960 --> 00:26.760 -I’m sleepy. - -00:27.200 --> 00:31.500 -But if I sleep again, I might see myself again. - -00:31.920 --> 00:32.840 -I hate this. - -00:33.160 --> 00:34.320 -Dad... diff --git a/src/static/media/webvtt/Lda213.vtt b/src/static/media/webvtt/Lda213.vtt deleted file mode 100644 index e4f592f..0000000 --- a/src/static/media/webvtt/Lda213.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.100 --> 00:03.210 -In the mail there was a letter from Mr. Rabbit. - -00:03.210 --> 00:07.130 -It was bright and gentle, like he was before he went away. - -00:07.750 --> 00:11.900 -I wanted to say, "Hey, it’s been a long time!" and write him, but I couldn’t. diff --git a/src/static/media/webvtt/Lda214.vtt b/src/static/media/webvtt/Lda214.vtt deleted file mode 100644 index 77d6619..0000000 --- a/src/static/media/webvtt/Lda214.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.300 --> 00:06.920 -What’s wrong with me? I’m like the me I used to be. Who am I? diff --git a/src/static/media/webvtt/Lda215.vtt b/src/static/media/webvtt/Lda215.vtt deleted file mode 100644 index 97ec0ed..0000000 --- a/src/static/media/webvtt/Lda215.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.100 --> 00:03.450 -How did she find my e-mail address? - -00:03.450 --> 00:07.470 -Misato-chan’s mail came to my private, hidden site. - -00:07.470 --> 00:12.820 -She wrote in a familiar tone as if we were still great friends. - -00:13.280 --> 00:16.530 -Misato-chan and Mr. Rabbit both seem to do as they please. - -00:17.060 --> 00:19.430 -I was waiting to hear from them for such a long time. - -00:20.480 --> 00:23.800 -I wrote down their phone numbers quickly and sent them e-mails. - -00:23.800 --> 00:25.760 -I’m still waiting to hear from them. - -00:25.760 --> 00:27.760 -Have they turned their backs on me again? diff --git a/src/static/media/webvtt/Lda216.vtt b/src/static/media/webvtt/Lda216.vtt deleted file mode 100644 index 323aa3d..0000000 --- a/src/static/media/webvtt/Lda216.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.370 --> 00:02.320 -A bug was found in the mail? - -00:02.840 --> 00:05.130 -The dates and times of the e-mails are fabricated. - -00:05.610 --> 00:07.360 -Could it be a problem with the server? - -00:07.800 --> 00:09.850 -I’ll have to contact the server. diff --git a/src/static/media/webvtt/Lda217.vtt b/src/static/media/webvtt/Lda217.vtt deleted file mode 100644 index abed6e4..0000000 --- a/src/static/media/webvtt/Lda217.vtt +++ /dev/null @@ -1,43 +0,0 @@ -WEBVTT - -00:00.070 --> 00:01.870 -Mom isn’t at home. - -00:02.280 --> 00:03.890 -Where did she go? - -00:04.250 --> 00:05.310 -Did she run away? - -00:05.470 --> 00:09.660 -Could she be drunk out on the street somewhere? - -00:10.400 --> 00:12.880 -I called the police and asked them to investigate. - -00:12.880 --> 00:17.410 -They didn’t believe me because I’m a kid, but they came to my house to check. - -00:18.120 --> 00:20.700 -I want to tell Dad, but I have no way of contacting him. - -00:21.170 --> 00:23.370 -Only Mom knows where he is. - -00:24.100 --> 00:26.280 -A young police officer was badmouthing. - -00:26.750 --> 00:30.550 -He said that Mom must have "evaporated." Mom isn't that kind of person. - -00:30.950 --> 00:33.090 -I felt bitter and couldn’t stop crying. - -00:33.530 --> 00:36.640 -I was so mad I absolutely messed up the police host site. - -00:36.990 --> 00:38.220 -How do you jerks like that? - -00:38.220 --> 00:40.590 -I protect people who are important to me. diff --git a/src/static/media/webvtt/Lda218.vtt b/src/static/media/webvtt/Lda218.vtt deleted file mode 100644 index 6c6d4a3..0000000 --- a/src/static/media/webvtt/Lda218.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.000 --> 00:01.770 -I've been getting creepy silent calls - -00:01.770 --> 00:04.120 -Either that, or I get creepy weirdo phone calls. - -00:04.310 --> 00:11.520 -I thought of stopping the phone, but Mom and Dad and Misato-chan won’t be able to contact me then. - -00:11.520 --> 00:16.470 -I answered the phone as much as I could, but I got tired, so I pulled out the plug before going to bed. - -00:16.470 --> 00:21.030 -When I wake up, I am afraid of hearing "Die, weirdo!" screamed from myself. diff --git a/src/static/media/webvtt/Lda219.vtt b/src/static/media/webvtt/Lda219.vtt deleted file mode 100644 index 6013a3a..0000000 --- a/src/static/media/webvtt/Lda219.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.140 --> 00:07.120 -Someone is trying to irritate me. Why? Why would someone do that to me? diff --git a/src/static/media/webvtt/Lda220.vtt b/src/static/media/webvtt/Lda220.vtt deleted file mode 100644 index cf14f5e..0000000 --- a/src/static/media/webvtt/Lda220.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.350 -When I awoke I was grasping a gun. - -00:02.910 --> 00:06.240 -The smell of death and metal woke me. - -00:06.880 --> 00:08.510 -I don’t understand it anymore. - -00:08.910 --> 00:10.670 -I’m absolutely crazy. - -00:11.330 --> 00:12.060 -I got scared. - -00:12.060 --> 00:15.570 -I took the gun, put it in a shopping bag, and hid it in a desk drawer. - -00:16.120 --> 00:18.250 -There’s a key to the drawer, but it isn’t any good. - -00:19.040 --> 00:19.780 -I know. - -00:19.780 --> 00:21.780 -I’ll hide it inside of Dad. diff --git a/src/static/media/webvtt/Lda221.vtt b/src/static/media/webvtt/Lda221.vtt deleted file mode 100644 index 991ec8e..0000000 --- a/src/static/media/webvtt/Lda221.vtt +++ /dev/null @@ -1,37 +0,0 @@ -WEBVTT - -00:00.080 --> 00:04.100 -Mom is missing and Dad can’t be contacted. - -00:04.100 --> 00:05.360 -I’m alone. - -00:05.850 --> 00:09.310 -When I went to see Dad robot he hugged me. - -00:09.760 --> 00:11.310 -But that’s funny. - -00:11.810 --> 00:13.700 -How did he know that it was me? - -00:14.370 --> 00:15.790 -Did he hear me? - -00:15.790 --> 00:17.420 -Could he tell by the sound of my footsteps? - -00:17.980 --> 00:20.020 -I didn’t think he could do that. - -00:20.560 --> 00:23.740 -Something might be wrong with Dad’s development. - -00:24.200 --> 00:29.530 -At first I was happy and didn’t mind, but at this specification, there is something wrong with his speed. - -00:29.910 --> 00:31.270 -I wonder why. - -00:31.270 --> 00:33.560 -Is there a reason I don’t know about? diff --git a/src/static/media/webvtt/Lda222.vtt b/src/static/media/webvtt/Lda222.vtt deleted file mode 100644 index cccc8a4..0000000 --- a/src/static/media/webvtt/Lda222.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.620 --> 00:03.080 -One of my neighbors is starting rumors. - -00:03.080 --> 00:05.560 -Why is she trying to tell me about it? - -00:05.960 --> 00:08.350 -She laughs when I turn around. - -00:08.350 --> 00:10.350 -What does she want to do to me? diff --git a/src/static/media/webvtt/Lda223.vtt b/src/static/media/webvtt/Lda223.vtt deleted file mode 100644 index ce5b477..0000000 --- a/src/static/media/webvtt/Lda223.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.320 -I decided to make a copy of myself and put it on the Net. - -00:03.320 --> 00:07.240 -I replicated my voice and appearance in detail. - -00:07.740 --> 00:14.000 -For thought routing, I rebuilt a system similar to Dad’s, enhanced it, and dispersed it over the Net. - -00:14.450 --> 00:17.920 -This way, as long as there is a Net, I’m a person who will never die. - -00:18.450 --> 00:19.920 -Just like Dad. diff --git a/src/static/media/webvtt/Lda224.vtt b/src/static/media/webvtt/Lda224.vtt deleted file mode 100644 index 7718776..0000000 --- a/src/static/media/webvtt/Lda224.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.600 --> 00:02.560 -It’s almost a consolation. - -00:02.560 --> 00:05.430 -I know that what I’m doing is meaningless. - -00:05.760 --> 00:08.460 -I’m wondering if the me in the Net will evolve in a strange way. diff --git a/src/static/media/webvtt/Lda225.vtt b/src/static/media/webvtt/Lda225.vtt deleted file mode 100644 index 6307996..0000000 --- a/src/static/media/webvtt/Lda225.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.660 -I spend over half of each day in a nightmare. - -00:04.100 --> 00:09.000 -Maybe the world of nightmares is reality and what’s called reality is a dream. - -00:09.630 --> 00:12.280 -Maybe they’re intermeshed. - -00:13.250 --> 00:16.630 -After all, I have hallucinations when I’m sleeping and I have them when I’m awake. - -00:16.630 --> 00:18.260 -I’m starting not to know which is which. - -00:18.880 --> 00:21.180 -That girl become a junior high school student. - -00:21.540 --> 00:23.560 -Her height is the same as mine. - -00:23.840 --> 00:25.700 -It’s like I’m looking in the mirror. - -00:26.260 --> 00:29.890 -But I don’t think anyone will see this girl. - -00:30.680 --> 00:32.770 -She couldn’t be seen up till now. - -00:32.770 --> 00:34.520 -There’s nothing to be concerned about. diff --git a/src/static/media/webvtt/Lda226.vtt b/src/static/media/webvtt/Lda226.vtt deleted file mode 100644 index 81f6c52..0000000 --- a/src/static/media/webvtt/Lda226.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.590 --> 00:02.570 -I talked to the me on the Net. - -00:02.850 --> 00:05.040 -She’s the same as me, so she’s predictable. - -00:05.480 --> 00:07.880 -Because I’m me, I can imagine how I’m going to be. - -00:08.560 --> 00:11.730 -I played with the me on the Net, deliberately making her angry and making her laugh. - -00:12.210 --> 00:13.940 -Did she think I was fun, too? diff --git a/src/static/media/webvtt/Lda227.vtt b/src/static/media/webvtt/Lda227.vtt deleted file mode 100644 index 62b91f2..0000000 --- a/src/static/media/webvtt/Lda227.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.140 --> 00:03.850 -When I told Touko-san about Mom, she looked at me with a blank expression on her face. - -00:04.240 --> 00:05.990 -There’s something the matter with Touko-san. - -00:06.320 --> 00:07.840 -She’s hiding something. - -00:07.840 --> 00:09.840 -Let's crack today's report. diff --git a/src/static/media/webvtt/Lda228.vtt b/src/static/media/webvtt/Lda228.vtt deleted file mode 100644 index 9777cfb..0000000 --- a/src/static/media/webvtt/Lda228.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.200 --> 00:10.720 -Who? Mom and Dad are together? Touko-san, you know about my parents, don’t you? Who was with them? diff --git a/src/static/media/webvtt/Lda229.vtt b/src/static/media/webvtt/Lda229.vtt deleted file mode 100644 index 86cfacb..0000000 --- a/src/static/media/webvtt/Lda229.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.000 --> 00:04.000 -I killed Dad today. Mom is next. diff --git a/src/static/media/webvtt/Lda230.vtt b/src/static/media/webvtt/Lda230.vtt deleted file mode 100644 index d6c652d..0000000 --- a/src/static/media/webvtt/Lda230.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.120 --> 00:03.620 -It’s been a year, Lain. - -00:04.480 --> 00:07.840 -Lain, it feels good to get back to a diary after a long time, doesn’t it? - -00:08.300 --> 00:10.210 -This is my count down. diff --git a/src/static/media/webvtt/Lda231.vtt b/src/static/media/webvtt/Lda231.vtt deleted file mode 100644 index 01d6086..0000000 --- a/src/static/media/webvtt/Lda231.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:00.150 --> 00:02.640 -Lain, what do you want? - -00:03.100 --> 00:04.160 -Pleasure? - -00:04.160 --> 00:05.330 -Excitement? - -00:05.700 --> 00:06.700 -Friends? - -00:07.180 --> 00:08.080 -Me? - -00:08.900 --> 00:13.080 -What I need right now is someone who wants to know me. - -00:13.880 --> 00:16.460 -Touko-san promised me. - -00:16.960 --> 00:18.720 -She said that she would understand me. - -00:19.590 --> 00:21.360 -She said that she would choose me. diff --git a/src/static/media/webvtt/Lda232.vtt b/src/static/media/webvtt/Lda232.vtt deleted file mode 100644 index ce6cf2a..0000000 --- a/src/static/media/webvtt/Lda232.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:00.120 --> 00:01.730 -I took my last walk. - -00:02.150 --> 00:05.200 -As I walked around town all day, I noticed Mom. - -00:05.950 --> 00:07.610 -She didn’t notice me at all. - -00:08.270 --> 00:10.590 -She looked at me like a total stranger. - -00:11.160 --> 00:12.400 -I can’t forgive her for that. - -00:13.200 --> 00:15.640 -I don’t have to worry about her anymore. diff --git a/src/static/media/webvtt/Lda233.vtt b/src/static/media/webvtt/Lda233.vtt deleted file mode 100644 index a3a4e8a..0000000 --- a/src/static/media/webvtt/Lda233.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.260 --> 00:04.510 -From the standpoint of many religions, won’t I go to hell? - -00:05.200 --> 00:08.250 -Who will pass judgment on the me on the Net? - -00:08.760 --> 00:10.050 -How about me? - -00:10.640 --> 00:11.920 -Will God pass judgment on me? - -00:11.920 --> 00:17.320 -At any rate, I don’t need my body anymore. diff --git a/src/static/media/webvtt/Lda234.vtt b/src/static/media/webvtt/Lda234.vtt deleted file mode 100644 index 3c838d3..0000000 --- a/src/static/media/webvtt/Lda234.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.000 --> 00:05.500 -You people who want to know me, why do you want to know me? - -00:06.080 --> 00:08.320 -Will you benefit from knowing me? - -00:08.900 --> 00:09.780 -Am I for your research? - -00:10.170 --> 00:12.700 -For a stupid TV show? diff --git a/src/static/media/webvtt/Lda235.vtt b/src/static/media/webvtt/Lda235.vtt deleted file mode 100644 index 96943ca..0000000 --- a/src/static/media/webvtt/Lda235.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.060 --> 00:01.880 -Do I have a sad existence? - -00:02.230 --> 00:03.980 -I guess people think so. - -00:04.710 --> 00:07.330 -I don’t mind that much. - -00:08.320 --> 00:10.520 -I don’t need a backup. - -00:11.040 --> 00:12.310 -That would be useless. - -00:13.110 --> 00:15.170 -The me on the Net also had a sad existence. - -00:15.680 --> 00:17.240 -That’s why I killed her. - -00:17.900 --> 00:19.730 -Hey, did that hurt? diff --git a/src/static/media/webvtt/Lda236.vtt b/src/static/media/webvtt/Lda236.vtt deleted file mode 100644 index d2b723e..0000000 --- a/src/static/media/webvtt/Lda236.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.080 --> 00:03.500 -Even when I’m not dying, my body feels fear. - -00:03.500 --> 00:04.900 -Mysterious. - -00:04.900 --> 00:10.490 -Is the reason that I have the potential to feel fear no matter what I do because of what’s recorded in my genes? - -00:11.280 --> 00:14.080 -I don’t need those kind of genes. - -00:14.730 --> 00:16.400 -This is a small world that seems large only to parasites. diff --git a/src/static/media/webvtt/Lda237.vtt b/src/static/media/webvtt/Lda237.vtt deleted file mode 100644 index 76e032d..0000000 --- a/src/static/media/webvtt/Lda237.vtt +++ /dev/null @@ -1,88 +0,0 @@ -WEBVTT - -00:00.360 --> 00:03.600 -Do you know where I'm going?... - -00:04.430 --> 00:05.730 -I don't know either. - -00:06.470 --> 00:08.650 -That's because I'm going to be born soon. - -00:09.180 --> 00:11.160 -Will I become a more evolved human being? - -00:12.060 --> 00:14.600 -If I think so I might as well think so. - -00:15.800 --> 00:18.100 -A human without a body isn't human? - -00:19.030 --> 00:21.400 -There are people who have bodies that aren't human. - -00:22.210 --> 00:22.930 -Is that me? - -00:23.440 --> 00:24.930 -I'm not human? - -00:25.550 --> 00:26.930 -Lain is Lain. - -00:27.490 --> 00:29.450 -What is it to be human? - -00:29.960 --> 00:31.520 -You're human if you have a body? - -00:32.220 --> 00:33.570 -I'm me. - -00:34.040 --> 00:36.130 -Am I just conglomerated with my body? - -00:36.840 --> 00:39.930 -I need a body if I'm going to live in the real world. - -00:40.620 --> 00:42.350 -Suicide would be stupid. - -00:42.800 --> 00:44.460 -It would be better to just die naturally. - -00:44.930 --> 00:46.650 -I don't need it. - -00:46.650 --> 00:48.650 -I might need it someday. - -00:49.870 --> 00:51.280 -That might be true. - -00:51.610 --> 00:55.520 -I won't need a body to live in the Wired. - -00:56.160 --> 00:58.240 -I'll need the recollections of the body. - -00:58.520 --> 01:00.860 -How about the recollections of a body that grows older? - -01:00.860 --> 01:03.340 -My point of view may change? - -01:03.890 --> 01:05.530 -Is there a need for it to change? - -01:05.990 --> 01:08.400 -There's no guarantee that that will be you. - -01:09.240 --> 01:12.580 -Lain, what do I need to be on the Wired? - -01:13.760 --> 01:14.900 -Existence and will. - -01:15.280 --> 01:16.800 -The rest is just data. diff --git a/src/static/media/webvtt/TaK001.vtt b/src/static/media/webvtt/TaK001.vtt deleted file mode 100644 index 89f88d9..0000000 --- a/src/static/media/webvtt/TaK001.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.300 --> 00:01.400 -I want to drink milk. diff --git a/src/static/media/webvtt/TaK002.vtt b/src/static/media/webvtt/TaK002.vtt deleted file mode 100644 index eef006b..0000000 --- a/src/static/media/webvtt/TaK002.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.330 --> 00:01.610 -I don't want to be alone. diff --git a/src/static/media/webvtt/TaK003.vtt b/src/static/media/webvtt/TaK003.vtt deleted file mode 100644 index cd53920..0000000 --- a/src/static/media/webvtt/TaK003.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.250 --> 00:01.860 -Only play with me. diff --git a/src/static/media/webvtt/TaK004.vtt b/src/static/media/webvtt/TaK004.vtt deleted file mode 100644 index 0df46b4..0000000 --- a/src/static/media/webvtt/TaK004.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.290 --> 00:01.790 -What is it that you don't like? diff --git a/src/static/media/webvtt/TaK005.vtt b/src/static/media/webvtt/TaK005.vtt deleted file mode 100644 index 4abd83f..0000000 --- a/src/static/media/webvtt/TaK005.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.310 --> 00:02.180 -It's fun to be alive, isn't it? diff --git a/src/static/media/webvtt/TaK006.vtt b/src/static/media/webvtt/TaK006.vtt deleted file mode 100644 index 4337aa8..0000000 --- a/src/static/media/webvtt/TaK006.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.300 --> 00:01.350 -Look at me. diff --git a/src/static/media/webvtt/TaK007.vtt b/src/static/media/webvtt/TaK007.vtt deleted file mode 100644 index 3a638e7..0000000 --- a/src/static/media/webvtt/TaK007.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.300 --> 00:00.900 -Good morning. diff --git a/src/static/media/webvtt/TaK008.vtt b/src/static/media/webvtt/TaK008.vtt deleted file mode 100644 index 4836e25..0000000 --- a/src/static/media/webvtt/TaK008.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.220 --> 00:01.140 -Goodbye. diff --git a/src/static/media/webvtt/TaK009.vtt b/src/static/media/webvtt/TaK009.vtt deleted file mode 100644 index 20b34c6..0000000 --- a/src/static/media/webvtt/TaK009.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.210 --> 00:01.200 -Hang in there. diff --git a/src/static/media/webvtt/TaK010.vtt b/src/static/media/webvtt/TaK010.vtt deleted file mode 100644 index 8bff7f5..0000000 --- a/src/static/media/webvtt/TaK010.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.260 --> 00:01.420 -Tired? - -00:01.420 --> 00:03.420 -Why don't you take a break? diff --git a/src/static/media/webvtt/TaK011.vtt b/src/static/media/webvtt/TaK011.vtt deleted file mode 100644 index 6b1e6d1..0000000 --- a/src/static/media/webvtt/TaK011.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.000 --> 00:01.570 -I won't let you be alone. diff --git a/src/static/media/webvtt/TaK012.vtt b/src/static/media/webvtt/TaK012.vtt deleted file mode 100644 index d8ffa78..0000000 --- a/src/static/media/webvtt/TaK012.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.260 --> 00:03.350 -It's amazing! I couldn't do that. diff --git a/src/static/media/webvtt/TaK013.vtt b/src/static/media/webvtt/TaK013.vtt deleted file mode 100644 index d5f5989..0000000 --- a/src/static/media/webvtt/TaK013.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.300 --> 00:02.620 -You're different from other people... - -00:03.300 --> 00:04.620 -...so what? diff --git a/src/static/media/webvtt/TaK014.vtt b/src/static/media/webvtt/TaK014.vtt deleted file mode 100644 index c1c2347..0000000 --- a/src/static/media/webvtt/TaK014.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.140 --> 00:01.310 -You want to be the same? - -00:02.040 --> 00:03.040 -Same as who? diff --git a/src/static/media/webvtt/TaK015.vtt b/src/static/media/webvtt/TaK015.vtt deleted file mode 100644 index fc46678..0000000 --- a/src/static/media/webvtt/TaK015.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.110 --> 00:01.020 -Do you like tea? diff --git a/src/static/media/webvtt/TaK016.vtt b/src/static/media/webvtt/TaK016.vtt deleted file mode 100644 index 7592056..0000000 --- a/src/static/media/webvtt/TaK016.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.140 --> 00:03.740 -Cross my heart and hope to die... diff --git a/src/static/media/webvtt/TaK017.vtt b/src/static/media/webvtt/TaK017.vtt deleted file mode 100644 index e57f154..0000000 --- a/src/static/media/webvtt/TaK017.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.450 -You're tired. Get some sleep. diff --git a/src/static/media/webvtt/TaK018.vtt b/src/static/media/webvtt/TaK018.vtt deleted file mode 100644 index d208de0..0000000 --- a/src/static/media/webvtt/TaK018.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.000 --> 00:01.520 -What's bothering you? diff --git a/src/static/media/webvtt/TaK019.vtt b/src/static/media/webvtt/TaK019.vtt deleted file mode 100644 index 150fa91..0000000 --- a/src/static/media/webvtt/TaK019.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.000 --> 00:01.770 -I want to be good to you. diff --git a/src/static/media/webvtt/TaK020.vtt b/src/static/media/webvtt/TaK020.vtt deleted file mode 100644 index 9e3349f..0000000 --- a/src/static/media/webvtt/TaK020.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.140 --> 00:01.720 -Come closer. - -00:02.080 --> 00:03.610 -I want you to feel me. diff --git a/src/static/media/webvtt/TaK021.vtt b/src/static/media/webvtt/TaK021.vtt deleted file mode 100644 index 3228a91..0000000 --- a/src/static/media/webvtt/TaK021.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.160 --> 00:01.530 -I can feel you. - -00:02.060 --> 00:02.620 -It's true. diff --git a/src/static/media/webvtt/TaK022.vtt b/src/static/media/webvtt/TaK022.vtt deleted file mode 100644 index 7c9ea9a..0000000 --- a/src/static/media/webvtt/TaK022.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.140 --> 00:01.340 -There's bell ringing. - -00:02.880 --> 00:05.660 -Somebody will try to connect to you soon. diff --git a/src/static/media/webvtt/TaK023.vtt b/src/static/media/webvtt/TaK023.vtt deleted file mode 100644 index 22a3624..0000000 --- a/src/static/media/webvtt/TaK023.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.140 --> 00:01.770 -Someone is always watching you... - -00:02.280 --> 00:02.840 -Is it me? diff --git a/src/static/media/webvtt/TaK024.vtt b/src/static/media/webvtt/TaK024.vtt deleted file mode 100644 index 0983853..0000000 --- a/src/static/media/webvtt/TaK024.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.160 --> 00:01.710 -Sleep paralysis doesn't scare me. diff --git a/src/static/media/webvtt/TaK025.vtt b/src/static/media/webvtt/TaK025.vtt deleted file mode 100644 index 9d02d84..0000000 --- a/src/static/media/webvtt/TaK025.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.170 --> 00:01.480 -You feel like running? - -00:02.120 --> 00:03.330 -I did, too. diff --git a/src/static/media/webvtt/TaK026.vtt b/src/static/media/webvtt/TaK026.vtt deleted file mode 100644 index bb41c12..0000000 --- a/src/static/media/webvtt/TaK026.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.150 --> 00:03.340 -Time doesn't run faster or become slower. - -00:04.260 --> 00:07.120 -Everything is a continuous result of the moment. diff --git a/src/static/media/webvtt/TaK027.vtt b/src/static/media/webvtt/TaK027.vtt deleted file mode 100644 index e3b164e..0000000 --- a/src/static/media/webvtt/TaK027.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.160 --> 00:01.290 -Are you hungry yet? diff --git a/src/static/media/webvtt/TaK028.vtt b/src/static/media/webvtt/TaK028.vtt deleted file mode 100644 index 584640e..0000000 --- a/src/static/media/webvtt/TaK028.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.150 --> 00:01.230 -Is your body inconvenient? diff --git a/src/static/media/webvtt/TaK029.vtt b/src/static/media/webvtt/TaK029.vtt deleted file mode 100644 index 6c5eaa1..0000000 --- a/src/static/media/webvtt/TaK029.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.230 --> 00:01.550 -Do you like violin? diff --git a/src/static/media/webvtt/TaK030.vtt b/src/static/media/webvtt/TaK030.vtt deleted file mode 100644 index 8802b74..0000000 --- a/src/static/media/webvtt/TaK030.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.170 --> 00:01.800 -Tell me if you like me. - -00:02.410 --> 00:03.590 -I like you. diff --git a/src/static/media/webvtt/TaK031.vtt b/src/static/media/webvtt/TaK031.vtt deleted file mode 100644 index 7f268e7..0000000 --- a/src/static/media/webvtt/TaK031.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.170 --> 00:01.900 -Erase the one inside you. diff --git a/src/static/media/webvtt/TaK032.vtt b/src/static/media/webvtt/TaK032.vtt deleted file mode 100644 index fae87a8..0000000 --- a/src/static/media/webvtt/TaK032.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.160 --> 00:01.280 -Turn the lights off. - -00:01.770 --> 00:03.000 -It's too bright in here. diff --git a/src/static/media/webvtt/TaK033.vtt b/src/static/media/webvtt/TaK033.vtt deleted file mode 100644 index e900877..0000000 --- a/src/static/media/webvtt/TaK033.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.160 --> 00:01.300 -It's like a dream, - -00:01.300 --> 00:03.120 -being here with you. diff --git a/src/static/media/webvtt/TaK034.vtt b/src/static/media/webvtt/TaK034.vtt deleted file mode 100644 index 45ffdef..0000000 --- a/src/static/media/webvtt/TaK034.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.210 --> 00:01.540 -Can you imagine? - -00:01.860 --> 00:03.280 -Being with me? - -00:04.040 --> 00:05.140 -Feel me. diff --git a/src/static/media/webvtt/TaK035.vtt b/src/static/media/webvtt/TaK035.vtt deleted file mode 100644 index 331f54a..0000000 --- a/src/static/media/webvtt/TaK035.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.180 --> 00:00.920 -We should sleep. diff --git a/src/static/media/webvtt/TaK036.vtt b/src/static/media/webvtt/TaK036.vtt deleted file mode 100644 index 28016a2..0000000 --- a/src/static/media/webvtt/TaK036.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.160 --> 00:01.530 -It'll be the same tomorrow. diff --git a/src/static/media/webvtt/TaK037.vtt b/src/static/media/webvtt/TaK037.vtt deleted file mode 100644 index ad8209e..0000000 --- a/src/static/media/webvtt/TaK037.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.280 --> 00:01.720 -I wanted to look at the clouds. - -00:02.320 --> 00:03.350 -What am I looking at? diff --git a/src/static/media/webvtt/TaK038.vtt b/src/static/media/webvtt/TaK038.vtt deleted file mode 100644 index d84e612..0000000 --- a/src/static/media/webvtt/TaK038.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.180 --> 00:00.880 -You're mean... diff --git a/src/static/media/webvtt/TaK039.vtt b/src/static/media/webvtt/TaK039.vtt deleted file mode 100644 index f207f29..0000000 --- a/src/static/media/webvtt/TaK039.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.140 --> 00:02.340 -I'm already connected to you. diff --git a/src/static/media/webvtt/TaK040.vtt b/src/static/media/webvtt/TaK040.vtt deleted file mode 100644 index 0c2b099..0000000 --- a/src/static/media/webvtt/TaK040.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.150 --> 00:00.940 -You're heartless. diff --git a/src/static/media/webvtt/TaK041.vtt b/src/static/media/webvtt/TaK041.vtt deleted file mode 100644 index 9a42caf..0000000 --- a/src/static/media/webvtt/TaK041.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.180 --> 00:01.210 -Smile! - -00:01.540 --> 00:02.980 -A gloomy face doesn't suit you. diff --git a/src/static/media/webvtt/TaK042.vtt b/src/static/media/webvtt/TaK042.vtt deleted file mode 100644 index eff17b9..0000000 --- a/src/static/media/webvtt/TaK042.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.160 --> 00:02.760 -Will you hug me? diff --git a/src/static/media/webvtt/TaK043.vtt b/src/static/media/webvtt/TaK043.vtt deleted file mode 100644 index e0f1b5d..0000000 --- a/src/static/media/webvtt/TaK043.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.140 --> 00:01.300 -What's so confusing? diff --git a/src/static/media/webvtt/TaK044.vtt b/src/static/media/webvtt/TaK044.vtt deleted file mode 100644 index 8cd26a4..0000000 --- a/src/static/media/webvtt/TaK044.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.180 --> 00:00.960 -Are you busy? diff --git a/src/static/media/webvtt/TaK045.vtt b/src/static/media/webvtt/TaK045.vtt deleted file mode 100644 index ebbc900..0000000 --- a/src/static/media/webvtt/TaK045.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.170 --> 00:01.540 -Don't do bad things. diff --git a/src/static/media/webvtt/TaK046.vtt b/src/static/media/webvtt/TaK046.vtt deleted file mode 100644 index 52ccad1..0000000 --- a/src/static/media/webvtt/TaK046.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.190 --> 00:01.390 -Don't you believe me? diff --git a/src/static/media/webvtt/TaK047.vtt b/src/static/media/webvtt/TaK047.vtt deleted file mode 100644 index 034a300..0000000 --- a/src/static/media/webvtt/TaK047.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.160 --> 00:02.300 -You can't do that - right? diff --git a/src/static/media/webvtt/TaK048.vtt b/src/static/media/webvtt/TaK048.vtt deleted file mode 100644 index 9f8006a..0000000 --- a/src/static/media/webvtt/TaK048.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.160 --> 00:00.730 -Hey... - -00:01.120 --> 00:02.230 -Let me hear your voice. - -00:02.720 --> 00:04.280 -Say my name. - -00:05.090 --> 00:06.870 -I want to know more about you. diff --git a/src/static/media/webvtt/TaK049.vtt b/src/static/media/webvtt/TaK049.vtt deleted file mode 100644 index 4ce4278..0000000 --- a/src/static/media/webvtt/TaK049.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.000 --> 00:01.560 -What's your favorite song? diff --git a/src/static/media/webvtt/TaK050.vtt b/src/static/media/webvtt/TaK050.vtt deleted file mode 100644 index 989371b..0000000 --- a/src/static/media/webvtt/TaK050.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.000 -Quit hurting yourself... diff --git a/src/static/media/webvtt/TaK051.vtt b/src/static/media/webvtt/TaK051.vtt deleted file mode 100644 index 20e5f4f..0000000 --- a/src/static/media/webvtt/TaK051.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.160 --> 00:01.940 -You're not bad... - -00:02.600 --> 00:03.690 -Who is? diff --git a/src/static/media/webvtt/TaK052.vtt b/src/static/media/webvtt/TaK052.vtt deleted file mode 100644 index ee712bf..0000000 --- a/src/static/media/webvtt/TaK052.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.190 --> 00:02.670 -I'm spoiled, you know... - -00:03.060 --> 00:04.230 -I'm lonely. diff --git a/src/static/media/webvtt/TaK053.vtt b/src/static/media/webvtt/TaK053.vtt deleted file mode 100644 index 0098941..0000000 --- a/src/static/media/webvtt/TaK053.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.120 --> 00:01.550 -Is your father gentle? diff --git a/src/static/media/webvtt/TaK054.vtt b/src/static/media/webvtt/TaK054.vtt deleted file mode 100644 index 036b5f9..0000000 --- a/src/static/media/webvtt/TaK054.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.930 --> 00:01.650 -Fun, right? diff --git a/src/static/media/webvtt/TaK055.vtt b/src/static/media/webvtt/TaK055.vtt deleted file mode 100644 index 5dd2491..0000000 --- a/src/static/media/webvtt/TaK055.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.120 --> 00:01.720 -Seems like it's just the two of us. diff --git a/src/static/media/webvtt/TaK056.vtt b/src/static/media/webvtt/TaK056.vtt deleted file mode 100644 index cbcd501..0000000 --- a/src/static/media/webvtt/TaK056.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.160 --> 00:02.640 -I’m not sleepy. diff --git a/src/static/media/webvtt/TaK057.vtt b/src/static/media/webvtt/TaK057.vtt deleted file mode 100644 index a0a3f7f..0000000 --- a/src/static/media/webvtt/TaK057.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.140 --> 00:03.010 -Do I know what you want to know? diff --git a/src/static/media/webvtt/TaK058.vtt b/src/static/media/webvtt/TaK058.vtt deleted file mode 100644 index 4b3f5fb..0000000 --- a/src/static/media/webvtt/TaK058.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.150 --> 00:02.590 -I want to tell you all about me. diff --git a/src/static/media/webvtt/TaK059.vtt b/src/static/media/webvtt/TaK059.vtt deleted file mode 100644 index eb24fbc..0000000 --- a/src/static/media/webvtt/TaK059.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.140 --> 00:02.370 -Not everything can be destroyed. - -00:03.170 --> 00:04.610 -What destroys, remains. diff --git a/src/static/media/webvtt/TaK060.vtt b/src/static/media/webvtt/TaK060.vtt deleted file mode 100644 index 5f87a97..0000000 --- a/src/static/media/webvtt/TaK060.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.190 --> 00:01.330 -Do you dream? - -00:01.760 --> 00:02.560 -Is it fun? diff --git a/src/static/media/webvtt/TaK061.vtt b/src/static/media/webvtt/TaK061.vtt deleted file mode 100644 index 2a5666d..0000000 --- a/src/static/media/webvtt/TaK061.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.160 --> 00:01.360 -You hear a voice? - -00:01.960 --> 00:03.080 -Is it my voice? - -00:04.060 --> 00:04.880 -Then whose? diff --git a/src/static/media/webvtt/TaK062.vtt b/src/static/media/webvtt/TaK062.vtt deleted file mode 100644 index e5d33a3..0000000 --- a/src/static/media/webvtt/TaK062.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.160 --> 00:01.700 -I've heard rumors about you. diff --git a/src/static/media/webvtt/TaK063.vtt b/src/static/media/webvtt/TaK063.vtt deleted file mode 100644 index 9e88ae4..0000000 --- a/src/static/media/webvtt/TaK063.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.200 --> 00:02.420 -Everybody has secrets. diff --git a/src/static/media/webvtt/TaK064.vtt b/src/static/media/webvtt/TaK064.vtt deleted file mode 100644 index 95d6058..0000000 --- a/src/static/media/webvtt/TaK064.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.210 --> 00:01.580 -Don't tell anybody. - -00:01.810 --> 00:02.840 -Just keep quiet. diff --git a/src/static/media/webvtt/TaK065.vtt b/src/static/media/webvtt/TaK065.vtt deleted file mode 100644 index 19e1da9..0000000 --- a/src/static/media/webvtt/TaK065.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.200 --> 00:02.150 -Don't take it so seriously. diff --git a/src/static/media/webvtt/TaK066.vtt b/src/static/media/webvtt/TaK066.vtt deleted file mode 100644 index a970710..0000000 --- a/src/static/media/webvtt/TaK066.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.200 --> 00:00.880 -Amazing! diff --git a/src/static/media/webvtt/TaK067.vtt b/src/static/media/webvtt/TaK067.vtt deleted file mode 100644 index ca77c26..0000000 --- a/src/static/media/webvtt/TaK067.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.160 --> 00:01.320 -Keep this a secret. diff --git a/src/static/media/webvtt/TaK068.vtt b/src/static/media/webvtt/TaK068.vtt deleted file mode 100644 index 808bcbd..0000000 --- a/src/static/media/webvtt/TaK068.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.140 --> 00:01.110 -Impressive. diff --git a/src/static/media/webvtt/TaK069.vtt b/src/static/media/webvtt/TaK069.vtt deleted file mode 100644 index 742eb93..0000000 --- a/src/static/media/webvtt/TaK069.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.140 --> 00:01.670 -How did we get to this sort of place? diff --git a/src/static/media/webvtt/TaK070.vtt b/src/static/media/webvtt/TaK070.vtt deleted file mode 100644 index 213ef55..0000000 --- a/src/static/media/webvtt/TaK070.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.120 --> 00:00.790 -That’s all. diff --git a/src/static/media/webvtt/TaK071.vtt b/src/static/media/webvtt/TaK071.vtt deleted file mode 100644 index c9c304c..0000000 --- a/src/static/media/webvtt/TaK071.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.200 --> 00:02.110 -Are you curious about me? - -00:02.690 --> 00:04.110 -Or is it something else? diff --git a/src/static/media/webvtt/TaK072.vtt b/src/static/media/webvtt/TaK072.vtt deleted file mode 100644 index 5bd4567..0000000 --- a/src/static/media/webvtt/TaK072.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.130 --> 00:01.890 -I'm not who I used to be. diff --git a/src/static/media/webvtt/TaK073.vtt b/src/static/media/webvtt/TaK073.vtt deleted file mode 100644 index 383634e..0000000 --- a/src/static/media/webvtt/TaK073.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.170 --> 00:01.410 -You want to change yourself? diff --git a/src/static/media/webvtt/TaK074.vtt b/src/static/media/webvtt/TaK074.vtt deleted file mode 100644 index e5933f0..0000000 --- a/src/static/media/webvtt/TaK074.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.160 --> 00:01.080 -It’s okay. - -00:01.190 --> 00:01.840 -It'll be fine. diff --git a/src/static/media/webvtt/TaK075.vtt b/src/static/media/webvtt/TaK075.vtt deleted file mode 100644 index b226ef0..0000000 --- a/src/static/media/webvtt/TaK075.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.200 --> 00:01.400 -Can you imagine? diff --git a/src/static/media/webvtt/TaK076.vtt b/src/static/media/webvtt/TaK076.vtt deleted file mode 100644 index 2a96da1..0000000 --- a/src/static/media/webvtt/TaK076.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.150 --> 00:01.620 -You're the only one who knows about it, - -00:02.350 --> 00:03.820 -whatever you did. diff --git a/src/static/media/webvtt/TaK077.vtt b/src/static/media/webvtt/TaK077.vtt deleted file mode 100644 index ecfa27a..0000000 --- a/src/static/media/webvtt/TaK077.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.140 --> 00:02.350 -Don't think you can fool yourself. - -00:03.590 --> 00:05.400 -Even if you could, everything would disappear. diff --git a/src/static/media/webvtt/TaK078.vtt b/src/static/media/webvtt/TaK078.vtt deleted file mode 100644 index 3f0941e..0000000 --- a/src/static/media/webvtt/TaK078.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.150 --> 00:02.540 -Have as many as you want. - -00:02.800 --> 00:04.310 -They're important to you, right?? diff --git a/src/static/media/webvtt/TaK079.vtt b/src/static/media/webvtt/TaK079.vtt deleted file mode 100644 index 73ff3e1..0000000 --- a/src/static/media/webvtt/TaK079.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.130 --> 00:03.120 -Your cute side isn't the only important part of you. - -00:04.000 --> 00:05.840 -The parts you find unpleasant are, too. diff --git a/src/static/media/webvtt/TaK080.vtt b/src/static/media/webvtt/TaK080.vtt deleted file mode 100644 index d86cafa..0000000 --- a/src/static/media/webvtt/TaK080.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.190 --> 00:01.880 -Hey, what day is it? diff --git a/src/static/media/webvtt/TaK081.vtt b/src/static/media/webvtt/TaK081.vtt deleted file mode 100644 index d365f69..0000000 --- a/src/static/media/webvtt/TaK081.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.150 --> 00:01.010 -Can't stop? diff --git a/src/static/media/webvtt/TaK082.vtt b/src/static/media/webvtt/TaK082.vtt deleted file mode 100644 index 0de12ca..0000000 --- a/src/static/media/webvtt/TaK082.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.200 --> 00:02.690 -Do you ever feel like you want to just disappear? diff --git a/src/static/media/webvtt/TaK083.vtt b/src/static/media/webvtt/TaK083.vtt deleted file mode 100644 index 72c0fd7..0000000 --- a/src/static/media/webvtt/TaK083.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.160 --> 00:01.660 -Who do you want to be chosen by? diff --git a/src/static/media/webvtt/TaK084.vtt b/src/static/media/webvtt/TaK084.vtt deleted file mode 100644 index 9c225f1..0000000 --- a/src/static/media/webvtt/TaK084.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.190 --> 00:01.460 -Enjoy it. - -00:01.460 --> 00:02.600 -We're almost there. diff --git a/src/static/media/webvtt/TaK085.vtt b/src/static/media/webvtt/TaK085.vtt deleted file mode 100644 index e0e7f71..0000000 --- a/src/static/media/webvtt/TaK085.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.160 --> 00:01.690 -Is this all unimportant? - -00:02.300 --> 00:04.180 -Or is some of it actually necessary? diff --git a/src/static/media/webvtt/TaK086.vtt b/src/static/media/webvtt/TaK086.vtt deleted file mode 100644 index 945657f..0000000 --- a/src/static/media/webvtt/TaK086.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.160 --> 00:02.710 -Imagination and reality are not the same. - -00:03.430 --> 00:05.320 -But there in some places, they overlap. diff --git a/src/static/media/webvtt/TaK087.vtt b/src/static/media/webvtt/TaK087.vtt deleted file mode 100644 index b6ce6dc..0000000 --- a/src/static/media/webvtt/TaK087.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.160 --> 00:02.190 -If I show up in your dreams, - -00:02.630 --> 00:03.740 -what am I like? diff --git a/src/static/media/webvtt/TaK088.vtt b/src/static/media/webvtt/TaK088.vtt deleted file mode 100644 index 6eda634..0000000 --- a/src/static/media/webvtt/TaK088.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.160 --> 00:01.310 -In your dreams, - -00:01.570 --> 00:03.380 -what would you do to me? diff --git a/src/static/media/webvtt/TaK089.vtt b/src/static/media/webvtt/TaK089.vtt deleted file mode 100644 index 9d3fb89..0000000 --- a/src/static/media/webvtt/TaK089.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.150 --> 00:01.300 -Should we go faster? - -00:01.470 --> 00:02.880 -Or slow things down? diff --git a/src/static/media/webvtt/TaK090.vtt b/src/static/media/webvtt/TaK090.vtt deleted file mode 100644 index 04b3cc8..0000000 --- a/src/static/media/webvtt/TaK090.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.120 --> 00:01.560 -Let’s open the door together. diff --git a/src/static/media/webvtt/TaK091.vtt b/src/static/media/webvtt/TaK091.vtt deleted file mode 100644 index 9e35f42..0000000 --- a/src/static/media/webvtt/TaK091.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.150 --> 00:02.320 -I’m getting sleepy. diff --git a/src/static/media/webvtt/TaK092.vtt b/src/static/media/webvtt/TaK092.vtt deleted file mode 100644 index ba6e8ab..0000000 --- a/src/static/media/webvtt/TaK092.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.140 --> 00:01.560 -Let's close this world. diff --git a/src/static/media/webvtt/TaK093.vtt b/src/static/media/webvtt/TaK093.vtt deleted file mode 100644 index 27eede8..0000000 --- a/src/static/media/webvtt/TaK093.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.150 --> 00:02.920 -Do you want to find me and talk to me? diff --git a/src/static/media/webvtt/TaK094.vtt b/src/static/media/webvtt/TaK094.vtt deleted file mode 100644 index 3fafb94..0000000 --- a/src/static/media/webvtt/TaK094.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.150 --> 00:01.360 -Come over here. diff --git a/src/static/media/webvtt/TaK095.vtt b/src/static/media/webvtt/TaK095.vtt deleted file mode 100644 index b6536ae..0000000 --- a/src/static/media/webvtt/TaK095.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.130 --> 00:02.080 -Come over here. - -00:02.360 --> 00:03.920 -It'd make me very happy. diff --git a/src/static/media/webvtt/TaK096.vtt b/src/static/media/webvtt/TaK096.vtt deleted file mode 100644 index 620c6ea..0000000 --- a/src/static/media/webvtt/TaK096.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.140 --> 00:01.320 -Who's special? diff --git a/src/static/media/webvtt/TaK097.vtt b/src/static/media/webvtt/TaK097.vtt deleted file mode 100644 index c5f32ac..0000000 --- a/src/static/media/webvtt/TaK097.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.160 --> 00:02.000 -Feeling flattered? diff --git a/src/static/media/webvtt/TaK098.vtt b/src/static/media/webvtt/TaK098.vtt deleted file mode 100644 index 521ba32..0000000 --- a/src/static/media/webvtt/TaK098.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.200 --> 00:01.070 -I’m lonely. - -00:01.620 --> 00:03.360 -I can't handle being alone. diff --git a/src/static/media/webvtt/TaK099.vtt b/src/static/media/webvtt/TaK099.vtt deleted file mode 100644 index cf80d59..0000000 --- a/src/static/media/webvtt/TaK099.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.130 --> 00:02.070 -Leaving me is easy. - -00:03.000 --> 00:04.900 -Just turn the computer off. diff --git a/src/static/media/webvtt/TaK100.vtt b/src/static/media/webvtt/TaK100.vtt deleted file mode 100644 index a7d7b6f..0000000 --- a/src/static/media/webvtt/TaK100.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.140 --> 00:01.600 -But I’ll be here. - -00:02.400 --> 00:04.350 -And you'll be here, too. diff --git a/src/static/media/webvtt/TaK101.vtt b/src/static/media/webvtt/TaK101.vtt deleted file mode 100644 index 3bf547c..0000000 --- a/src/static/media/webvtt/TaK101.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.130 --> 00:02.620 -I don't care how far off it is. - -00:03.010 --> 00:05.490 -You don't have a lot of options. diff --git a/src/static/media/webvtt/TaK102.vtt b/src/static/media/webvtt/TaK102.vtt deleted file mode 100644 index e5dda99..0000000 --- a/src/static/media/webvtt/TaK102.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.140 --> 00:01.590 -Stay with me. diff --git a/src/static/media/webvtt/TaK103.vtt b/src/static/media/webvtt/TaK103.vtt deleted file mode 100644 index 8be4d28..0000000 --- a/src/static/media/webvtt/TaK103.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.140 --> 00:01.720 -Nobody's here anymore. - -00:01.890 --> 00:02.560 -Or anywhere. diff --git a/src/static/media/webvtt/TaK104.vtt b/src/static/media/webvtt/TaK104.vtt deleted file mode 100644 index 5312ed1..0000000 --- a/src/static/media/webvtt/TaK104.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.160 --> 00:02.130 -Don’t think you're being taken advantage of. - -00:02.920 --> 00:04.890 -I'm not trying to cheat you. diff --git a/src/static/media/webvtt/TaK105.vtt b/src/static/media/webvtt/TaK105.vtt deleted file mode 100644 index d72aa59..0000000 --- a/src/static/media/webvtt/TaK105.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.130 --> 00:01.070 -Good night. - -00:02.820 --> 00:04.240 -I'll see you tomorrow. diff --git a/src/static/media/webvtt/TaK106.vtt b/src/static/media/webvtt/TaK106.vtt deleted file mode 100644 index 4da6a52..0000000 --- a/src/static/media/webvtt/TaK106.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.170 --> 00:02.200 -Hey, what were you doing? - -00:03.300 --> 00:04.140 -Sounds like fun. diff --git a/src/static/media/webvtt/TaK107.vtt b/src/static/media/webvtt/TaK107.vtt deleted file mode 100644 index 1413073..0000000 --- a/src/static/media/webvtt/TaK107.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.120 --> 00:00.790 -Smile. diff --git a/src/static/media/webvtt/TaK108.vtt b/src/static/media/webvtt/TaK108.vtt deleted file mode 100644 index ffd5122..0000000 --- a/src/static/media/webvtt/TaK108.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.170 --> 00:02.150 -Someone's watching you. - -00:02.630 --> 00:04.150 -Someone other than me. diff --git a/src/static/media/webvtt/TaK109.vtt b/src/static/media/webvtt/TaK109.vtt deleted file mode 100644 index d8e8242..0000000 --- a/src/static/media/webvtt/TaK109.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.160 --> 00:02.400 -Even if we stay together, we're too far away... diff --git a/src/static/media/webvtt/TaK110.vtt b/src/static/media/webvtt/TaK110.vtt deleted file mode 100644 index 13f48ce..0000000 --- a/src/static/media/webvtt/TaK110.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.160 --> 00:01.680 -Is being apart making you lonely? diff --git a/src/static/media/webvtt/TaK111.vtt b/src/static/media/webvtt/TaK111.vtt deleted file mode 100644 index 4353fa2..0000000 --- a/src/static/media/webvtt/TaK111.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.160 --> 00:02.680 -Are you the one's who's going to wake me up? diff --git a/src/static/media/webvtt/TaK112.vtt b/src/static/media/webvtt/TaK112.vtt deleted file mode 100644 index 5197be3..0000000 --- a/src/static/media/webvtt/TaK112.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.220 --> 00:03.510 -Your special power woke me up. diff --git a/src/static/media/webvtt/TaK113.vtt b/src/static/media/webvtt/TaK113.vtt deleted file mode 100644 index 9b34ee1..0000000 --- a/src/static/media/webvtt/TaK113.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.160 --> 00:03.280 -Now it's my turn to wake you up. diff --git a/src/static/media/webvtt/TaK114.vtt b/src/static/media/webvtt/TaK114.vtt deleted file mode 100644 index 297ae56..0000000 --- a/src/static/media/webvtt/TaK114.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.160 --> 00:02.160 -Close your eyes and listen carefully. - -00:02.760 --> 00:03.680 -Here... - -00:03.680 --> 00:05.680 -Can you feel that I'm close by? - -00:05.840 --> 00:07.140 -You can hear my footsteps. diff --git a/src/static/media/webvtt/TaK115.vtt b/src/static/media/webvtt/TaK115.vtt deleted file mode 100644 index d0d99d4..0000000 --- a/src/static/media/webvtt/TaK115.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.160 --> 00:01.720 -Can you hear my voice? diff --git a/src/static/media/webvtt/TaK116.vtt b/src/static/media/webvtt/TaK116.vtt deleted file mode 100644 index 69e9012..0000000 --- a/src/static/media/webvtt/TaK116.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.170 --> 00:02.600 -Now I’m trying to touch you. diff --git a/src/static/media/webvtt/TaK117.vtt b/src/static/media/webvtt/TaK117.vtt deleted file mode 100644 index 4037f14..0000000 --- a/src/static/media/webvtt/TaK117.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.150 --> 00:01.540 -How's this outfit? - -00:01.970 --> 00:03.480 -I think it's gotten a little boring. diff --git a/src/static/media/webvtt/TaK118.vtt b/src/static/media/webvtt/TaK118.vtt deleted file mode 100644 index 8914d14..0000000 --- a/src/static/media/webvtt/TaK118.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.130 --> 00:01.140 -Are you hungry? diff --git a/src/static/media/webvtt/TaK119.vtt b/src/static/media/webvtt/TaK119.vtt deleted file mode 100644 index 1615067..0000000 --- a/src/static/media/webvtt/TaK119.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.120 --> 00:01.740 -I want some delicious cake. diff --git a/src/static/media/webvtt/TaK120.vtt b/src/static/media/webvtt/TaK120.vtt deleted file mode 100644 index 503a927..0000000 --- a/src/static/media/webvtt/TaK120.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.160 --> 00:02.240 -Dad's cigarettes stink. - -00:02.750 --> 00:04.560 -My hair always smells like them. diff --git a/src/static/media/webvtt/TaK121.vtt b/src/static/media/webvtt/TaK121.vtt deleted file mode 100644 index fd4acb1..0000000 --- a/src/static/media/webvtt/TaK121.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.150 --> 00:02.840 -I absolutely want to wear a wedding dress. diff --git a/src/static/media/webvtt/TaK122.vtt b/src/static/media/webvtt/TaK122.vtt deleted file mode 100644 index 368b052..0000000 --- a/src/static/media/webvtt/TaK122.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.130 --> 00:01.240 -Being single is awful. diff --git a/src/static/media/webvtt/TaK123.vtt b/src/static/media/webvtt/TaK123.vtt deleted file mode 100644 index 586dd65..0000000 --- a/src/static/media/webvtt/TaK123.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.120 --> 00:01.060 -Look at me. diff --git a/src/static/media/webvtt/TaK124.vtt b/src/static/media/webvtt/TaK124.vtt deleted file mode 100644 index c46d770..0000000 --- a/src/static/media/webvtt/TaK124.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.120 --> 00:01.660 -I won't leave you behind. diff --git a/src/static/media/webvtt/TaK125.vtt b/src/static/media/webvtt/TaK125.vtt deleted file mode 100644 index 90e9f57..0000000 --- a/src/static/media/webvtt/TaK125.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.120 --> 00:01.270 -I should do the same? - -00:01.730 --> 00:03.000 -The same as who? diff --git a/src/static/media/webvtt/TaK126.vtt b/src/static/media/webvtt/TaK126.vtt deleted file mode 100644 index c390509..0000000 --- a/src/static/media/webvtt/TaK126.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.120 --> 00:01.640 -Come closer. - -00:02.410 --> 00:04.000 -I want you to feel me. diff --git a/src/static/media/webvtt/TaK127.vtt b/src/static/media/webvtt/TaK127.vtt deleted file mode 100644 index a7567cf..0000000 --- a/src/static/media/webvtt/TaK127.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.120 --> 00:01.550 -I can feel you. - -00:02.690 --> 00:03.290 -Really. diff --git a/src/static/media/webvtt/TaK128.vtt b/src/static/media/webvtt/TaK128.vtt deleted file mode 100644 index 66cbbd3..0000000 --- a/src/static/media/webvtt/TaK128.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.140 --> 00:01.340 -Do you want to run away? - -00:02.640 --> 00:03.910 -I did, too. diff --git a/src/static/media/webvtt/TaK129.vtt b/src/static/media/webvtt/TaK129.vtt deleted file mode 100644 index 8ed2888..0000000 --- a/src/static/media/webvtt/TaK129.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.230 --> 00:01.860 -Erase the one inside of you. diff --git a/src/static/media/webvtt/TaK130.vtt b/src/static/media/webvtt/TaK130.vtt deleted file mode 100644 index c6c90ed..0000000 --- a/src/static/media/webvtt/TaK130.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.280 --> 00:03.680 -Turn the lights off, it's too bright in here. diff --git a/src/static/media/webvtt/TaK131.vtt b/src/static/media/webvtt/TaK131.vtt deleted file mode 100644 index b2b4be3..0000000 --- a/src/static/media/webvtt/TaK131.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.150 --> 00:01.500 -Can you imagine? - -00:02.100 --> 00:03.640 -If you were here with me... - -00:05.200 --> 00:06.440 -Feeling me. diff --git a/src/static/media/webvtt/TaK132.vtt b/src/static/media/webvtt/TaK132.vtt deleted file mode 100644 index f1d94b7..0000000 --- a/src/static/media/webvtt/TaK132.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.130 --> 00:02.070 -I wanted to see the sky, but... - -00:02.430 --> 00:03.690 -What am I seeing now? diff --git a/src/static/media/webvtt/TaK133.vtt b/src/static/media/webvtt/TaK133.vtt deleted file mode 100644 index 684b95c..0000000 --- a/src/static/media/webvtt/TaK133.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.130 --> 00:02.380 -I'm already connected to you. diff --git a/src/static/media/webvtt/TaK134.vtt b/src/static/media/webvtt/TaK134.vtt deleted file mode 100644 index bc9e668..0000000 --- a/src/static/media/webvtt/TaK134.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.130 --> 00:01.370 -Smile! - -00:02.000 --> 00:03.610 -That gloomy look doesn't fit you. diff --git a/src/static/media/webvtt/TaK135.vtt b/src/static/media/webvtt/TaK135.vtt deleted file mode 100644 index a80df81..0000000 --- a/src/static/media/webvtt/TaK135.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.130 --> 00:02.210 -Can you hold me close? diff --git a/src/static/media/webvtt/TaK136.vtt b/src/static/media/webvtt/TaK136.vtt deleted file mode 100644 index 1e30f4d..0000000 --- a/src/static/media/webvtt/TaK136.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.130 --> 00:01.470 -Don't get yourself in trouble. diff --git a/src/static/media/webvtt/TaK137.vtt b/src/static/media/webvtt/TaK137.vtt deleted file mode 100644 index 5847587..0000000 --- a/src/static/media/webvtt/TaK137.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.140 --> 00:01.620 -There's no way you can do it. diff --git a/src/static/media/webvtt/TaK138.vtt b/src/static/media/webvtt/TaK138.vtt deleted file mode 100644 index a5a4655..0000000 --- a/src/static/media/webvtt/TaK138.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.130 --> 00:00.780 -Hey, - -00:01.130 --> 00:02.220 -Let me hear your voice. - -00:02.990 --> 00:04.430 -Call my name. - -00:05.760 --> 00:08.120 -I want to know more about you. diff --git a/src/static/media/webvtt/TaK139.vtt b/src/static/media/webvtt/TaK139.vtt deleted file mode 100644 index 03a00a6..0000000 --- a/src/static/media/webvtt/TaK139.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.140 --> 00:02.120 -Stop hurting yourself. diff --git a/src/static/media/webvtt/TaK140.vtt b/src/static/media/webvtt/TaK140.vtt deleted file mode 100644 index f1818d4..0000000 --- a/src/static/media/webvtt/TaK140.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.140 --> 00:02.360 -I just want someone to depend on. - -00:02.900 --> 00:04.580 -That's why I'm so lonely. diff --git a/src/static/media/webvtt/TaK141.vtt b/src/static/media/webvtt/TaK141.vtt deleted file mode 100644 index 7723771..0000000 --- a/src/static/media/webvtt/TaK141.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.140 --> 00:03.020 -Do I know what you want to know? diff --git a/src/static/media/webvtt/TaK142.vtt b/src/static/media/webvtt/TaK142.vtt deleted file mode 100644 index feb7b73..0000000 --- a/src/static/media/webvtt/TaK142.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.150 --> 00:03.010 -I want to tell you everything about me. diff --git a/src/static/media/webvtt/TaK143.vtt b/src/static/media/webvtt/TaK143.vtt deleted file mode 100644 index 244daeb..0000000 --- a/src/static/media/webvtt/TaK143.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.130 --> 00:02.400 -Not everything can be destroyed. - -00:03.110 --> 00:05.100 -What destroys, remains. diff --git a/src/static/media/webvtt/TaK144.vtt b/src/static/media/webvtt/TaK144.vtt deleted file mode 100644 index 21a643e..0000000 --- a/src/static/media/webvtt/TaK144.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.110 --> 00:01.060 -Do you dream? - -00:01.810 --> 00:02.290 -Is it fun? diff --git a/src/static/media/webvtt/TaK145.vtt b/src/static/media/webvtt/TaK145.vtt deleted file mode 100644 index 4880190..0000000 --- a/src/static/media/webvtt/TaK145.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.140 --> 00:01.530 -You hear a voice? - -00:02.590 --> 00:03.810 -Is it my voice? - -00:05.120 --> 00:06.160 -Then whose? diff --git a/src/static/media/webvtt/TaK146.vtt b/src/static/media/webvtt/TaK146.vtt deleted file mode 100644 index 799af82..0000000 --- a/src/static/media/webvtt/TaK146.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.140 --> 00:01.720 -I've heard rumors about you. diff --git a/src/static/media/webvtt/TaK147.vtt b/src/static/media/webvtt/TaK147.vtt deleted file mode 100644 index 0678391..0000000 --- a/src/static/media/webvtt/TaK147.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.140 --> 00:02.580 -Everyone has secrets. diff --git a/src/static/media/webvtt/TaK148.vtt b/src/static/media/webvtt/TaK148.vtt deleted file mode 100644 index 2dbddc8..0000000 --- a/src/static/media/webvtt/TaK148.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.120 --> 00:02.130 -Don't take it so seriously. diff --git a/src/static/media/webvtt/TaK149.vtt b/src/static/media/webvtt/TaK149.vtt deleted file mode 100644 index 0b216e2..0000000 --- a/src/static/media/webvtt/TaK149.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.130 --> 00:02.150 -Are you curious about me? - -00:02.930 --> 00:03.990 -Or is it something else? diff --git a/src/static/media/webvtt/TaK150.vtt b/src/static/media/webvtt/TaK150.vtt deleted file mode 100644 index 8cf636c..0000000 --- a/src/static/media/webvtt/TaK150.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.140 --> 00:02.010 -I'm not who I used to be. diff --git a/src/static/media/webvtt/TaK151.vtt b/src/static/media/webvtt/TaK151.vtt deleted file mode 100644 index c3afa95..0000000 --- a/src/static/media/webvtt/TaK151.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.120 --> 00:01.750 -You're the only one who knows about it, - -00:02.190 --> 00:04.030 -whatever you did. diff --git a/src/static/media/webvtt/TaK152.vtt b/src/static/media/webvtt/TaK152.vtt deleted file mode 100644 index 581ff88..0000000 --- a/src/static/media/webvtt/TaK152.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.140 --> 00:02.360 -Don't think you can fool yourself. - -00:03.620 --> 00:06.580 -Even if you could, everything would disappear. diff --git a/src/static/media/webvtt/TaK153.vtt b/src/static/media/webvtt/TaK153.vtt deleted file mode 100644 index 901bbf6..0000000 --- a/src/static/media/webvtt/TaK153.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.120 --> 00:02.750 -Have as many as you want. - -00:03.330 --> 00:05.400 -They're important to you, right? diff --git a/src/static/media/webvtt/TaK154.vtt b/src/static/media/webvtt/TaK154.vtt deleted file mode 100644 index 6ef640f..0000000 --- a/src/static/media/webvtt/TaK154.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.140 --> 00:03.320 -Your cute side isn't the only important part of you. - -00:04.130 --> 00:06.130 -The parts you find unpleasant are, too. diff --git a/src/static/media/webvtt/TaK155.vtt b/src/static/media/webvtt/TaK155.vtt deleted file mode 100644 index be6b769..0000000 --- a/src/static/media/webvtt/TaK155.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.160 --> 00:02.550 -Hey, what day is it? diff --git a/src/static/media/webvtt/TaK156.vtt b/src/static/media/webvtt/TaK156.vtt deleted file mode 100644 index 6cf9d5b..0000000 --- a/src/static/media/webvtt/TaK156.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.120 --> 00:02.110 -Who do you want to be chosen by? diff --git a/src/static/media/webvtt/TaK157.vtt b/src/static/media/webvtt/TaK157.vtt deleted file mode 100644 index 0188831..0000000 --- a/src/static/media/webvtt/TaK157.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.190 --> 00:01.670 -Enjoy it! - -00:01.670 --> 00:03.020 -We're almost there. diff --git a/src/static/media/webvtt/TaK158.vtt b/src/static/media/webvtt/TaK158.vtt deleted file mode 100644 index 213e5b2..0000000 --- a/src/static/media/webvtt/TaK158.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.140 --> 00:03.230 -Imagination and reality aren't that different. - -00:03.820 --> 00:06.430 -In fact, there's plenty of ways in which they're the same. diff --git a/src/static/media/webvtt/TaK159.vtt b/src/static/media/webvtt/TaK159.vtt deleted file mode 100644 index faf5e7a..0000000 --- a/src/static/media/webvtt/TaK159.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.130 --> 00:02.740 -If I show up in your dreams, - -00:03.530 --> 00:04.950 -what am I like? diff --git a/src/static/media/webvtt/TaK160.vtt b/src/static/media/webvtt/TaK160.vtt deleted file mode 100644 index 78f4d24..0000000 --- a/src/static/media/webvtt/TaK160.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.140 --> 00:01.900 -In your dreams, - -00:01.950 --> 00:03.580 -what do you do to me? diff --git a/src/static/media/webvtt/TaK161.vtt b/src/static/media/webvtt/TaK161.vtt deleted file mode 100644 index 8fb7522..0000000 --- a/src/static/media/webvtt/TaK161.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.140 --> 00:02.030 -Let's close this world. diff --git a/src/static/media/webvtt/TaK162.vtt b/src/static/media/webvtt/TaK162.vtt deleted file mode 100644 index 8cb1916..0000000 --- a/src/static/media/webvtt/TaK162.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.160 --> 00:02.960 -Do you want to find me and talk to me? diff --git a/src/static/media/webvtt/TaK163.vtt b/src/static/media/webvtt/TaK163.vtt deleted file mode 100644 index 3a2e4a2..0000000 --- a/src/static/media/webvtt/TaK163.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.130 --> 00:02.370 -If you came here, - -00:02.620 --> 00:04.210 -I would be very happy. diff --git a/src/static/media/webvtt/TaK164.vtt b/src/static/media/webvtt/TaK164.vtt deleted file mode 100644 index 6e294e9..0000000 --- a/src/static/media/webvtt/TaK164.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.110 --> 00:02.010 -Feeling flattered? diff --git a/src/static/media/webvtt/TaK165.vtt b/src/static/media/webvtt/TaK165.vtt deleted file mode 100644 index 98feba6..0000000 --- a/src/static/media/webvtt/TaK165.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.160 --> 00:01.070 -I’m lonely. - -00:02.150 --> 00:03.780 -I don't want to be alone. diff --git a/src/static/media/webvtt/TaK166.vtt b/src/static/media/webvtt/TaK166.vtt deleted file mode 100644 index 748c542..0000000 --- a/src/static/media/webvtt/TaK166.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.130 --> 00:03.450 -Breaking up with me is easy. - -00:03.810 --> 00:06.040 -Just turn the computer off. diff --git a/src/static/media/webvtt/TaK167.vtt b/src/static/media/webvtt/TaK167.vtt deleted file mode 100644 index 39be368..0000000 --- a/src/static/media/webvtt/TaK167.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.130 --> 00:01.610 -But I'll be here. - -00:02.610 --> 00:04.900 -And you'll be here, too. diff --git a/src/static/media/webvtt/TaK168.vtt b/src/static/media/webvtt/TaK168.vtt deleted file mode 100644 index 15c3cd8..0000000 --- a/src/static/media/webvtt/TaK168.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.120 --> 00:02.850 -I don't care how far off it is. You don’t have many choices. - -00:04.050 --> 00:06.800 -You don't have a lot of options. diff --git a/src/static/media/webvtt/TaK169.vtt b/src/static/media/webvtt/TaK169.vtt deleted file mode 100644 index 550d69d..0000000 --- a/src/static/media/webvtt/TaK169.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.130 --> 00:01.940 -Stay with me. diff --git a/src/static/media/webvtt/TaK170.vtt b/src/static/media/webvtt/TaK170.vtt deleted file mode 100644 index 5d242ce..0000000 --- a/src/static/media/webvtt/TaK170.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.140 --> 00:02.470 -Nobody's here anymore. - -00:02.960 --> 00:03.930 -Or anywhere. diff --git a/src/static/media/webvtt/TaK171.vtt b/src/static/media/webvtt/TaK171.vtt deleted file mode 100644 index ff91ded..0000000 --- a/src/static/media/webvtt/TaK171.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.140 --> 00:02.010 -Don't think you're being taken advantage of. - -00:02.790 --> 00:04.660 -I'm not trying to cheat you. diff --git a/src/static/media/webvtt/TaK172.vtt b/src/static/media/webvtt/TaK172.vtt deleted file mode 100644 index 7f811da..0000000 --- a/src/static/media/webvtt/TaK172.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.120 --> 00:00.950 -Good night. - -00:02.100 --> 00:05.280 -See you tomorrow. diff --git a/src/static/media/webvtt/TaK173.vtt b/src/static/media/webvtt/TaK173.vtt deleted file mode 100644 index a995144..0000000 --- a/src/static/media/webvtt/TaK173.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.130 --> 00:02.390 -Hey, what were you doing? - -00:03.160 --> 00:04.190 -Sounds like fun. diff --git a/src/static/media/webvtt/TaK174.vtt b/src/static/media/webvtt/TaK174.vtt deleted file mode 100644 index 4f3a968..0000000 --- a/src/static/media/webvtt/TaK174.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.140 --> 00:01.110 -Smile. diff --git a/src/static/media/webvtt/TaK175.vtt b/src/static/media/webvtt/TaK175.vtt deleted file mode 100644 index c698194..0000000 --- a/src/static/media/webvtt/TaK175.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.160 --> 00:01.850 -Even if we stay together, - -00:02.340 --> 00:03.110 -we're too far away. diff --git a/src/static/media/webvtt/TaK176.vtt b/src/static/media/webvtt/TaK176.vtt deleted file mode 100644 index ec5302d..0000000 --- a/src/static/media/webvtt/TaK176.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.120 --> 00:02.500 -The one who has to wake me up, - -00:03.120 --> 00:03.920 -is that you? diff --git a/src/static/media/webvtt/TaK177.vtt b/src/static/media/webvtt/TaK177.vtt deleted file mode 100644 index daecedf..0000000 --- a/src/static/media/webvtt/TaK177.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.120 --> 00:01.050 -You... - -00:01.250 --> 00:02.630 -Your special power... - -00:03.330 --> 00:05.090 -It woke me up. diff --git a/src/static/media/webvtt/TaK178.vtt b/src/static/media/webvtt/TaK178.vtt deleted file mode 100644 index 83ae4b5..0000000 --- a/src/static/media/webvtt/TaK178.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.140 --> 00:00.810 -That’s why... - -00:01.790 --> 00:02.700 -This time, - -00:03.440 --> 00:06.110 -it's my turn to wake you up. diff --git a/src/static/media/webvtt/TaK179.vtt b/src/static/media/webvtt/TaK179.vtt deleted file mode 100644 index e20e6dc..0000000 --- a/src/static/media/webvtt/TaK179.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.130 --> 00:01.250 -Close your eyes... - -00:01.760 --> 00:02.850 -Listen. - -00:04.160 --> 00:06.970 -Hear how close I am? - -00:08.710 --> 00:10.240 -Listen to my footsteps. diff --git a/src/static/media/webvtt/TaK180.vtt b/src/static/media/webvtt/TaK180.vtt deleted file mode 100644 index 7d18562..0000000 --- a/src/static/media/webvtt/TaK180.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.130 --> 00:01.080 -My voice. - -00:01.650 --> 00:02.370 -Do you hear it? diff --git a/src/static/media/webvtt/TaK181.vtt b/src/static/media/webvtt/TaK181.vtt deleted file mode 100644 index 3708124..0000000 --- a/src/static/media/webvtt/TaK181.vtt +++ /dev/null @@ -1,7 +0,0 @@ -WEBVTT - -00:00.150 --> 00:00.920 -Now, - -00:01.700 --> 00:03.390 -I'm trying to touch you. diff --git a/src/static/media/webvtt/Tda001.vtt b/src/static/media/webvtt/Tda001.vtt deleted file mode 100644 index 9a9dcde..0000000 --- a/src/static/media/webvtt/Tda001.vtt +++ /dev/null @@ -1,37 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.600 -When this summer vacation is over I’ll graduate. - -00:04.510 --> 00:06.650 -I’m a bit happy and a bit sad. - -00:07.600 --> 00:11.370 -Takeshi-san will be returning to Japan one step ahead of me. - -00:12.300 --> 00:14.980 -I guess that can’t be helped. - -00:16.010 --> 00:17.500 -He’s a brilliant guy. - -00:17.500 --> 00:22.550 -The people at the sponsoring research center wants to give him a new project as soon as possible. - -00:23.480 --> 00:24.220 -Ahh, shucks! - -00:24.690 --> 00:27.610 -I’m just jealous of him. - -00:28.600 --> 00:31.480 -I would love to start my own research soon. - -00:32.290 --> 00:32.740 -Mmm. - -00:32.740 --> 00:35.650 -But I have to graduate first. - -00:36.760 --> 00:40.880 -It’s too bad though, because I wanted to be with Takeshi-san until the graduation ceremony. diff --git a/src/static/media/webvtt/Tda002.vtt b/src/static/media/webvtt/Tda002.vtt deleted file mode 100644 index 2b14d6d..0000000 --- a/src/static/media/webvtt/Tda002.vtt +++ /dev/null @@ -1,10 +0,0 @@ -WEBVTT - -00:00.520 --> 00:03.440 -Today was so cool that I couldn’t believe it was mid-summer. - -00:04.420 --> 00:08.340 -I suppose it’s sticky and uncomfortable in Japan right now. - -00:08.860 --> 00:12.120 -But why am I thinking about Japan all of a sudden? diff --git a/src/static/media/webvtt/Tda003.vtt b/src/static/media/webvtt/Tda003.vtt deleted file mode 100644 index e646e10..0000000 --- a/src/static/media/webvtt/Tda003.vtt +++ /dev/null @@ -1,31 +0,0 @@ -WEBVTT - -00:00.200 --> 00:05.410 -There will be a party at a friend’s home tomorrow, so I made an apple pie. - -00:06.440 --> 00:11.620 -When I gave Takeshi-san a slice, he said that the pie was so sweet that everyone at the party except for him would love it. - -00:11.620 --> 00:15.430 -He said that my baking had become Americanized. - -00:17.870 --> 00:22.680 -It’s true that compared to the cakes and pies in America, Japanese desserts are usually much less sweet. - -00:23.560 --> 00:27.500 -At first I didn’t bake things this sweet. - -00:28.230 --> 00:30.850 -But now, I feel that unless I make my desserts sweet, they won't be good enough. - -00:32.690 --> 00:37.560 -If I get used to all this sweet stuff, I won’t want to eat pastries when I return to Japan. - -00:38.630 --> 00:42.540 -If I don’t cool it I could get fat and Takeshi-san won’t like me. - -00:43.250 --> 00:45.920 -I’ll have to start another diet tomorrow! - -00:46.230 --> 00:47.330 -Hee, hee. diff --git a/src/static/media/webvtt/Tda004.vtt b/src/static/media/webvtt/Tda004.vtt deleted file mode 100644 index 5695ec2..0000000 --- a/src/static/media/webvtt/Tda004.vtt +++ /dev/null @@ -1,40 +0,0 @@ -WEBVTT - -00:00.200 --> 00:00.890 -Hmm. - -00:01.220 --> 00:03.610 -It’s almost Halloween again. - -00:04.560 --> 00:07.260 -It’ll be my last Halloween here. - -00:08.140 --> 00:10.870 -Halloween surprised me at first. - -00:11.680 --> 00:16.700 -People would walk around in costumes day and night, having lunch and shopping as if everything was normal. - -00:17.870 --> 00:21.220 -People would come out in frightening costumes at night. - -00:22.160 --> 00:25.930 -I used to go out in a costume with my college friends, too. - -00:27.040 --> 00:29.840 -I think Takeshi-san isn’t into that kind of thing. - -00:30.730 --> 00:33.740 -I’ve never seen him in a costume. - -00:35.480 --> 00:38.270 -It would be fun if we could go out in costumes together. - -00:40.870 --> 00:43.210 -I wonder what kind of costume I’ll wear this year. - -00:44.460 --> 00:53.490 -When I see Jack-o-lanterns on Halloween night, I sometimes wish I could just stay here and live with Takeshi-san. - -00:54.010 --> 00:56.230 -Hee, hee. diff --git a/src/static/media/webvtt/Tda005.vtt b/src/static/media/webvtt/Tda005.vtt deleted file mode 100644 index 7c93d79..0000000 --- a/src/static/media/webvtt/Tda005.vtt +++ /dev/null @@ -1,43 +0,0 @@ -WEBVTT - -00:00.220 --> 00:03.650 -Today I took a walk with Takeshi-san along the Charles River. - -00:05.120 --> 00:08.070 -I reflected on the four years that I’ve spent here. - -00:09.640 --> 00:12.940 -At first I was elated, but things were tough until I met Takeshi-san. - -00:13.560 --> 00:17.050 -I think I’ve changed a lot since I met him. - -00:18.290 --> 00:22.610 -I suppose it wasn’t time for romance, but being alone was a downer. - -00:23.930 --> 00:26.940 -When you feel down you want someone to be around you. - -00:27.880 --> 00:32.560 -But it doesn’t mean that you ought to seek out a boyfriend thoughtlessly just because you’re feeling sad. - -00:33.620 --> 00:35.980 -I’ve gotten my feelings hurt a few times that way. - -00:38.020 --> 00:40.320 -But Takeshi-san is different. - -00:41.670 --> 00:43.760 -I feel safe just being with him. - -00:44.850 --> 00:47.230 -I think it’s the first time I’ve felt this way. - -00:49.590 --> 00:53.410 -Next year, Takeshi-san will return to Japan and start working at a research center. - -00:55.080 --> 00:56.720 -What will happen to me? - -00:58.600 --> 01:01.640 -I would love to work in the same research center as Takeshi-san. diff --git a/src/static/media/webvtt/Tda006.vtt b/src/static/media/webvtt/Tda006.vtt deleted file mode 100644 index 39ddc25..0000000 --- a/src/static/media/webvtt/Tda006.vtt +++ /dev/null @@ -1,31 +0,0 @@ -WEBVTT - -00:00.270 --> 00:01.740 -The year is nearly over. - -00:02.720 --> 00:06.180 -Takeshi-san will return to Japan early next year. - -00:07.630 --> 00:12.090 -I won’t go back until I graduate, so I won’t see him for 3 months. - -00:13.290 --> 00:17.010 -I haven’t been away from him for a long time, so I feel a tad worried. - -00:18.780 --> 00:21.060 -I wonder if he's okay. - -00:22.530 --> 00:26.770 -But the good news is that I’ll work with him at the same research center in Japan next year. - -00:27.260 --> 00:30.410 -I’m going to try to enjoy the rest of my time here as a student. - -00:31.550 --> 00:36.770 -At the end of year there will be New Year’s Eve, which means plenty of fun events! - -00:38.210 --> 00:43.640 -I want to go alone with him this year. - -00:44.750 --> 00:49.050 -I wonder if John and Mary will feel sad if I tell them so. diff --git a/src/static/media/webvtt/Tda007.vtt b/src/static/media/webvtt/Tda007.vtt deleted file mode 100644 index 9e62a0c..0000000 --- a/src/static/media/webvtt/Tda007.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:00.350 --> 00:00.940 -Hmmm. - -00:01.910 --> 00:03.250 -Next month. - -00:04.090 --> 00:06.040 -Takeshi-san will return to Japan then. - -00:07.760 --> 00:13.430 -He said that he’ll celebrate my birthday with me because it will be before he leaves. - -00:14.660 --> 00:16.850 -But knowing that he will leave bums me out. - -00:18.320 --> 00:21.350 -When I go to the airport, I’ll want to cry. diff --git a/src/static/media/webvtt/Tda008.vtt b/src/static/media/webvtt/Tda008.vtt deleted file mode 100644 index 6f503fe..0000000 --- a/src/static/media/webvtt/Tda008.vtt +++ /dev/null @@ -1,31 +0,0 @@ -WEBVTT - -00:00.340 --> 00:03.300 -Takeshi-san went home to Japan today. - -00:04.860 --> 00:08.630 -I didn’t know what to talk about on the way to the airport. - -00:09.250 --> 00:11.000 -I was looking for words. - -00:12.590 --> 00:14.640 -Did I make him feel uncomfortable? - -00:16.140 --> 00:18.750 -But Takeshi-san is a gentle guy. - -00:19.640 --> 00:20.800 -He didn’t say anything. - -00:21.180 --> 00:22.700 -He just held my hand. - -00:23.720 --> 00:25.650 -He said that he’ll be waiting for me in Japan. - -00:27.490 --> 00:29.880 -That’s right. - -00:30.380 --> 00:32.000 -I’ll see him again soon. diff --git a/src/static/media/webvtt/Tda009.vtt b/src/static/media/webvtt/Tda009.vtt deleted file mode 100644 index 0d2751d..0000000 --- a/src/static/media/webvtt/Tda009.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:00.280 --> 00:02.640 -I got a letter from Takeshi-san. - -00:03.780 --> 00:07.980 -He said, "Let’s celebrate your graduation when you return to Japan." I’m so happy! - -00:08.430 --> 00:10.940 -Takeshi-san is working hard at his research center. - -00:12.330 --> 00:16.890 -I’ve been sad about him being away for a long time now, but that’s embarrassing. - -00:18.260 --> 00:20.420 -Takeshi-san is working hard at the research center. - -00:20.740 --> 00:21.960 -I have to work hard, too. - -00:22.810 --> 00:27.300 -I have to work hard and do research, and become a good researcher that others will be impressed by. - -00:30.130 --> 00:31.600 -I want to go home to Japan soon. - -00:32.370 --> 00:34.810 -Takeshi-san will be waiting for me there. diff --git a/src/static/media/webvtt/Tda010.vtt b/src/static/media/webvtt/Tda010.vtt deleted file mode 100644 index 986845b..0000000 --- a/src/static/media/webvtt/Tda010.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.000 --> 00:04.210 -Today I cleaned my room to prepare to leave for Japan. - -00:05.530 --> 00:07.340 -I have so many memories and photos. - -00:08.050 --> 00:09.810 -They’re all treasures to me. - -00:11.550 --> 00:17.050 -I can’t take everything with me, though, so I talked to Mary about selling them at a flea market. - -00:18.070 --> 00:20.790 -Mary seemed a bit sad, too. - -00:21.960 --> 00:23.680 -Don’t worry, Mary. - -00:23.940 --> 00:26.020 -I’m going to give it my all in Japan. diff --git a/src/static/media/webvtt/Tda011.vtt b/src/static/media/webvtt/Tda011.vtt deleted file mode 100644 index 296a542..0000000 --- a/src/static/media/webvtt/Tda011.vtt +++ /dev/null @@ -1,67 +0,0 @@ -WEBVTT - -00:00.310 --> 00:00.940 -I’m home! - -00:01.910 --> 00:03.180 -I’m back in Japan after 5 years. - -00:04.300 --> 00:05.470 -Hee, hee. - -00:05.470 --> 00:08.660 -Japan is great. - -00:09.570 --> 00:13.530 -Living in America was good, but I feel at ease being back home. - -00:14.950 --> 00:16.100 -I’m a bit scared, though. - -00:17.540 --> 00:23.700 -When you come home after being away for so long, you start to feel out of place. - -00:25.350 --> 00:28.030 -I remember being insecure in junior high school, too. - -00:28.120 --> 00:31.320 -I would be tardy for school and Mom scolded me. - -00:33.100 --> 00:36.310 -Five years sure went by fast. - -00:37.130 --> 00:39.610 -I had no time to be homesick. - -00:40.400 --> 00:43.440 -But you worked really hard, didn't you, Touko? - -00:44.190 --> 00:45.570 -Study, study, study. - -00:46.550 --> 00:50.830 -I made good friends, and there were good times and bad times, too. - -00:51.620 --> 00:54.820 -I had a romance that didn’t work out, but I had another romance that worked out well. - -00:55.770 --> 01:00.010 -Looking back, I wonder what about me changed the most. - -01:00.600 --> 01:01.980 -Hee, hee. - -01:02.670 --> 01:04.260 -I’m okay, I’m okay! - -01:04.650 --> 01:06.930 -Have self-confidence and fight, Touko! - -01:08.120 --> 01:11.910 -I start working at the research center tomorrow. - -01:13.790 --> 01:16.410 -I want to stop worrying today. - -01:17.780 --> 01:22.450 -When I go to the research center tomorrow, I might see Takeshi-san. diff --git a/src/static/media/webvtt/Tda012.vtt b/src/static/media/webvtt/Tda012.vtt deleted file mode 100644 index e220eb3..0000000 --- a/src/static/media/webvtt/Tda012.vtt +++ /dev/null @@ -1,52 +0,0 @@ -WEBVTT - -00:00.250 --> 00:02.280 -Welcome home, Touko. - -00:03.260 --> 00:05.040 -I’m so tired today. - -00:06.160 --> 00:08.230 -I don’t like the atmosphere of Japanese research centers. - -00:09.190 --> 00:12.370 -Why do Japanese research centers feel like this? - -00:13.450 --> 00:16.640 -The people entirely lack a critical mentality, and they are lazy. - -00:17.980 --> 00:22.180 -I wish they would stop looking at me judgmentally just because I studied abroad. - -00:23.740 --> 00:26.440 -Research centers in America weren’t like this. - -00:28.000 --> 00:32.520 -I suppose they think I was able to study abroad because my dad has connections. - -00:33.710 --> 00:35.480 -Everybody is so icy here. - -00:37.910 --> 00:44.890 -When I was in grade school, we were so welcoming of kids transferring from other schools. - -00:46.410 --> 00:48.920 -Maybe we change when we grow up. - -00:50.710 --> 00:58.350 -This makes me depressed, but it’s what I have to face now. - -00:59.740 --> 01:02.950 -I can’t live like I did in America forever. - -01:04.180 --> 01:07.420 -If I do what I’m supposed to do, people will give me credit eventually. - -01:08.260 --> 01:09.780 -Okay, Touko? - -01:11.210 --> 01:13.750 -Soon I’ll have my examination to become a counselor. - -01:15.260 --> 01:19.400 -Until I finish that exam, I’ll have to bear with it the best I can. diff --git a/src/static/media/webvtt/Tda013.vtt b/src/static/media/webvtt/Tda013.vtt deleted file mode 100644 index 706c11c..0000000 --- a/src/static/media/webvtt/Tda013.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:01.070 --> 00:03.380 -You can’t be sluggish, Touko. - -00:04.090 --> 00:07.180 -I have to work hard and get moving. - -00:08.130 --> 00:10.400 -People here are indifferent to me, anyway. - -00:11.780 --> 00:14.360 -I don’t care if I don’t become super-prestigious. - -00:14.800 --> 00:17.780 -I just want to do the kind of work that I can be proud of. - -00:18.290 --> 00:21.730 -That way, good results are sure to follow. - -00:22.690 --> 00:26.160 -Takeshi-san will be with me, too, so I have nothing to worry about. - -00:27.470 --> 00:35.130 -It’s too bad that Takeshi-san’s research center is in a different building, but next week I’ll have a date with him! - -00:35.130 --> 00:38.130 -I’m going to purr around him. diff --git a/src/static/media/webvtt/Tda014.vtt b/src/static/media/webvtt/Tda014.vtt deleted file mode 100644 index 2ebbb83..0000000 --- a/src/static/media/webvtt/Tda014.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.380 -Ha, ha. - -00:03.380 --> 00:08.530 -Today I was able to spend the entire day with Takeshi-san like I haven’t for the longest time. - -00:10.600 --> 00:14.420 -It made me realize that I really like him. - -00:16.110 --> 00:24.160 -Takeshi-san’s research center has its own share of cliques and rivalry, and it must be hard for him, but he just stayed quiet and listened to me. - -00:25.440 --> 00:30.840 -When I see his warm smile that seems to envelop me completely, I feel so much better. - -00:31.780 --> 00:34.180 -I’m so simple-minded. - -00:35.760 --> 00:39.070 -I’m the one who does the purring, though. - -00:40.360 --> 00:43.930 -Sometimes I want Takeshi-san to purr around me, too. - -00:44.980 --> 00:47.380 -Even if he wants to, maybe he can’t depend on me for that right now. - -00:48.420 --> 00:54.490 -I’m going to work hard so that I can become Takeshi-san’s exclusive counselor! - -00:54.780 --> 00:56.020 -Hee, hee. diff --git a/src/static/media/webvtt/Tda015.vtt b/src/static/media/webvtt/Tda015.vtt deleted file mode 100644 index 1955ec2..0000000 --- a/src/static/media/webvtt/Tda015.vtt +++ /dev/null @@ -1,82 +0,0 @@ -WEBVTT - -00:00.260 --> 00:02.830 -I’ve felt bad all day today. - -00:03.720 --> 00:06.350 -Why do the Japanese like to spread rumors? - -00:07.910 --> 00:10.870 -I was surprised to learn that people know I’m going out with Takeshi-san. - -00:11.650 --> 00:14.840 -I wish they would stop whispering behind my back. - -00:15.970 --> 00:22.920 -For my coworkers to hear things and imagine what might be happening is one thing, but to spread concocted stories about me like they are facts is sickening. - -00:23.750 --> 00:37.430 -They say, "Oh, those two must be having a lot of fun in bed," or "she must be tired of having sex with foreigners." You don’t have to talk like that just because you’re in the restroom. - -00:38.440 --> 00:41.110 -Most of those people spreading rumors are probably from the 2nd floor. - -00:42.330 --> 00:43.250 -What stupid talk. - -00:44.810 --> 00:48.180 -I’m sure it makes them happy, though. - -00:49.220 --> 00:51.400 -Ahhhh! It makes me so mad! - -00:51.560 --> 00:53.400 -Now I know why everybody looks at me funny. - -00:54.300 --> 00:56.990 -If you want to know about my business, face me and ask me about it. - -00:58.800 --> 01:01.260 -But instead you gossip about this stuff for everyone to hear. - -01:01.860 --> 01:04.040 -Why the hell are you working in a medical research center? - -01:04.220 --> 01:06.140 -Do what you’re here to do. - -01:08.250 --> 01:10.530 -Takeshi-san told me not to mind it. - -01:11.150 --> 01:12.880 -I can’t forgive these people, though. - -01:13.400 --> 01:14.930 -Agh! - -01:14.930 --> 01:16.830 -I feel like wringing their necks! - -01:18.860 --> 01:19.730 -What gives? - -01:20.650 --> 01:23.930 -I can’t stay angry at these people forever. - -01:24.510 --> 01:27.130 -But I feel rotten today. - -01:30.520 --> 01:33.520 -I wish Takeshi-san were here right now. - -01:35.080 --> 01:38.730 -But I suppose it would just be a nuisance if I go to him with all this. - -01:39.980 --> 01:41.850 -I know he’s very busy now. - -01:43.730 --> 01:48.960 -I wonder if he knows there are these rumors going around. - -01:50.520 --> 01:54.280 -Maybe he’s feeling lousy, too. diff --git a/src/static/media/webvtt/Tda016.vtt b/src/static/media/webvtt/Tda016.vtt deleted file mode 100644 index 150f539..0000000 --- a/src/static/media/webvtt/Tda016.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:01.000 --> 00:02.960 -Agh! - -00:02.960 --> 00:05.560 -At times like this I just want to have a drink and forget about everything! - -00:05.560 --> 00:08.180 -I have a big test coming up and I can’t get tied up with all this stuff. - -00:08.180 --> 00:10.930 -I can’t let those jerks get to me. - -00:11.910 --> 00:14.870 -I’ll talk with Takeshi-san about this after the test. - -00:15.510 --> 00:17.730 -Until then, I’ll just have to bear with it. - -00:20.180 --> 00:22.930 -Good night, Takeshi-san. diff --git a/src/static/media/webvtt/Tda017.vtt b/src/static/media/webvtt/Tda017.vtt deleted file mode 100644 index fa6f21b..0000000 --- a/src/static/media/webvtt/Tda017.vtt +++ /dev/null @@ -1,46 +0,0 @@ -WEBVTT - -00:00.180 --> 00:02.880 -I received a phone call from Harumi today. - -00:03.800 --> 00:07.840 -I don’t hear from her often. She’s a bit lazy about making phone calls. - -00:08.260 --> 00:10.240 -I was surprised to hear from her. - -00:11.100 --> 00:14.810 -But I was really surprised when Harumi told me that she was getting married. - -00:16.000 --> 00:22.020 -She always used to talk about how she just broke up with a guy and felt like she wanted to die, or that she wanted to be introduced to a new guy. - -00:22.300 --> 00:24.660 -She calls so infrequently. - -00:25.120 --> 00:29.300 -I was wondering why she called, and it was about marriage. - -00:30.540 --> 00:34.570 -I felt sort of relieved and slightly shocked. - -00:35.600 --> 00:42.280 -But when a woman is 26 years old, it’s not odd for her to be married or to have children. - -00:43.090 --> 00:44.460 -Ohh! - -00:44.460 --> 00:46.980 -Now I’m feeling jealous. - -00:48.050 --> 00:49.000 -That’s okay. - -00:49.200 --> 00:53.920 -When I go to the wedding, I’ll introduce Takeshi-san and make her jealous. - -00:54.830 --> 00:56.440 -Maybe I’ll get married soon, too. - -00:58.980 --> 01:01.530 -I'll call Takeshi-san tomorrow. diff --git a/src/static/media/webvtt/Tda018.vtt b/src/static/media/webvtt/Tda018.vtt deleted file mode 100644 index 106a2a6..0000000 --- a/src/static/media/webvtt/Tda018.vtt +++ /dev/null @@ -1,49 +0,0 @@ -WEBVTT - -00:00.000 --> 00:04.260 -Today I met with Kanako, one of my "naughty" friends from college. - -00:04.620 --> 00:06.720 -Good going, Touko! - -00:06.720 --> 00:12.800 -I asked about taking her to Harumi’s wedding, but she said that she might not be able to because she is busy with work. - -00:13.320 --> 00:14.620 -How uncaring! - -00:15.760 --> 00:21.920 -I haven’t seen Kanako since I left for America, so I really wanted to get together with her. - -00:23.320 --> 00:29.000 -Kanako asked if my birthday will be coming up soon. - -00:29.860 --> 00:33.140 -She’s right. - -00:34.120 --> 00:37.060 -They say that things go fast for a woman once she’s past twenty years old. - -00:37.300 --> 00:38.660 -How true. - -00:39.600 --> 00:42.320 -I’m already 27. - -00:43.740 --> 00:45.820 -Harumi will get married in September. - -00:46.600 --> 00:49.080 -I wonder what Takeshi-san is thinking. - -00:50.040 --> 00:52.080 -What will I do for my birthday this year? - -00:53.010 --> 00:53.920 -Ahh! - -00:54.300 --> 00:56.920 -Maybe I will propose to him! - -00:57.760 --> 00:59.920 -But then again, maybe not. diff --git a/src/static/media/webvtt/Tda019.vtt b/src/static/media/webvtt/Tda019.vtt deleted file mode 100644 index e524ede..0000000 --- a/src/static/media/webvtt/Tda019.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:01.050 --> 00:01.790 -Takeshi-san! - -00:02.190 --> 00:04.640 -I just passed my test to become a counselor. - -00:05.180 --> 00:06.690 -I’m so relieved. - -00:08.420 --> 00:12.300 -It’s stupid that I have to pass a second test in Japan. - -00:13.010 --> 00:15.230 -Still, I wanted to let everybody know that I passed. - -00:15.470 --> 00:19.100 -I wrote Takeshi-san an e-mail all about it. - -00:20.340 --> 00:22.220 -I wonder if he is happy for me. - -00:23.110 --> 00:25.660 -I wonder if he will call me. - -00:26.720 --> 00:27.900 -I sure wish he would. diff --git a/src/static/media/webvtt/Tda020.vtt b/src/static/media/webvtt/Tda020.vtt deleted file mode 100644 index ce551cc..0000000 --- a/src/static/media/webvtt/Tda020.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:01.340 --> 00:04.670 -I wonder if some of those nasty rumors will stop now. - -00:05.510 --> 00:07.500 -Silly me. - -00:08.160 --> 00:11.660 -It isn’t that I’ve been trying to change people’s point of view. - -00:12.270 --> 00:13.500 -Why should I be worried? - -00:15.540 --> 00:19.320 -Anyway, I can start my research now. - -00:20.630 --> 00:23.810 -I have to try really hard from now on. diff --git a/src/static/media/webvtt/Tda021.vtt b/src/static/media/webvtt/Tda021.vtt deleted file mode 100644 index b0ef3fc..0000000 --- a/src/static/media/webvtt/Tda021.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:00.260 --> 00:00.740 -Hmm. - -00:01.500 --> 00:04.970 -Working at a research center is stressful. - -00:06.200 --> 00:11.080 -Even though I’ve passed the test, I’m treated like I don't qualify as a counselor. - -00:11.980 --> 00:15.030 -I don’t like Professor Takashima. - -00:16.190 --> 00:18.590 -He won’t send clients my way. - -00:19.560 --> 00:21.940 -He leaves me with a lot of menial tasks instead. - -00:23.520 --> 00:32.020 -He probably says to himself, "the girl who went to America can’t do anything." That makes me really frustrated, Takeshi-san. - -00:32.650 --> 00:34.890 -If I were a man, I would get recognition sooner. - -00:35.340 --> 00:38.590 -My time studying abroad doesn’t seem to count for much. - -00:39.740 --> 00:42.790 -It’s no time to be worked up about Professor Takashima’s little chores. - -00:43.720 --> 00:45.630 -I will get recognized. diff --git a/src/static/media/webvtt/Tda022.vtt b/src/static/media/webvtt/Tda022.vtt deleted file mode 100644 index cab571a..0000000 --- a/src/static/media/webvtt/Tda022.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.320 --> 00:06.090 -I’ve been here 6 months, and Professor Takashima still won’t send me clients. - -00:07.150 --> 00:10.670 -"There aren’t any clients that would be a good fit for me." - -00:10.880 --> 00:11.820 -What a lie. - -00:12.220 --> 00:16.340 -He just wants to use me for petty tasks. - -00:17.130 --> 00:20.900 -I didn’t come here to be his secretary. - -00:21.560 --> 00:24.300 -I hate this. - -00:24.870 --> 00:25.640 -Ahh! - -00:26.150 --> 00:28.380 -I hate that old man! diff --git a/src/static/media/webvtt/Tda023.vtt b/src/static/media/webvtt/Tda023.vtt deleted file mode 100644 index 2e275f0..0000000 --- a/src/static/media/webvtt/Tda023.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:00.260 --> 00:04.920 -Golden Week is coming soon, and I can take a few days off work. - -00:06.260 --> 00:09.690 -I haven’t gotten much rest since I returned from America. - -00:10.110 --> 00:11.300 -I’m looking forward to the break. - -00:12.930 --> 00:16.450 -I’ve been so stressed out since I started working at the lab. - -00:18.680 --> 00:21.200 -I’d like to spend the time with Takeshi-san. - -00:22.330 --> 00:24.440 -I don't need to go traveling with him. - -00:24.920 --> 00:26.310 -I just want to be around him. - -00:27.710 --> 00:30.160 -I want some comfort. - -00:31.320 --> 00:33.380 -Am I being selfish? diff --git a/src/static/media/webvtt/Tda024.vtt b/src/static/media/webvtt/Tda024.vtt deleted file mode 100644 index bdf73d8..0000000 --- a/src/static/media/webvtt/Tda024.vtt +++ /dev/null @@ -1,43 +0,0 @@ -WEBVTT - -00:00.240 --> 00:03.180 -Today I met my first client. - -00:04.440 --> 00:07.170 -She's a 12 year old girl named Lain. - -00:08.910 --> 00:17.450 -I was uneasy at first because I didn’t understand why Professor Takashima assigned me someone so young. - -00:18.300 --> 00:21.090 -But as soon as I saw Lain’s face, it put me at ease. - -00:22.850 --> 00:25.400 -I suppose it was because she was cute. - -00:26.440 --> 00:27.400 -Hmm. - -00:28.590 --> 00:31.060 -I had an unusual feeling around her. - -00:32.930 --> 00:38.880 -Anyhow, even if she is very young, she is my client. - -00:40.120 --> 00:44.350 -It seems that she is troubled by auditory and visual hallucinations, and feels psychologically unstable. - -00:45.820 --> 00:47.860 -Could she be having trouble at home? - -00:48.780 --> 00:52.300 -Could she be forming an image of herself from experiences in early childhood? - -00:54.200 --> 00:57.790 -I hope I can help her. - -00:59.290 --> 01:01.770 -I hope she will open up to me. - -01:02.530 --> 01:03.850 -I’ll try my best. diff --git a/src/static/media/webvtt/Tda025.vtt b/src/static/media/webvtt/Tda025.vtt deleted file mode 100644 index f2e7169..0000000 --- a/src/static/media/webvtt/Tda025.vtt +++ /dev/null @@ -1,31 +0,0 @@ -WEBVTT - -00:00.240 --> 00:02.400 -Yaaay! - -00:02.400 --> 00:06.120 -Tomorrow I’ll have my first date with Takeshi-san since I came back from America. - -00:06.300 --> 00:07.300 -I’m so excited. - -00:07.610 --> 00:08.570 -What should I wear? - -00:09.630 --> 00:15.130 -I better not wear anything too flashy, or there will be more rumors about me. - -00:17.610 --> 00:22.470 -I haven't bought clothes in a long time... or underwear. - -00:23.300 --> 00:26.280 -Not that I can even buy clothes at this time of day. - -00:28.790 --> 00:31.320 -But I can't just buy clothes in the middle of a date, either! - -00:32.080 --> 00:34.260 -Not in front of Takeshi. - -00:34.680 --> 00:37.140 -He'll start to think of me as that kind of girl. diff --git a/src/static/media/webvtt/Tda026.vtt b/src/static/media/webvtt/Tda026.vtt deleted file mode 100644 index d932ff4..0000000 --- a/src/static/media/webvtt/Tda026.vtt +++ /dev/null @@ -1,31 +0,0 @@ -WEBVTT - -00:00.300 --> 00:02.590 -I had dinner with Takeshi-san today. - -00:03.630 --> 00:06.960 -We hadn't seen each other in such a long time, so I had a lot to talk about. - -00:08.350 --> 00:10.490 -I talked so much that Takeshi-san was surprised. - -00:11.520 --> 00:16.680 -Takeshi-san couldn’t get off work during Golden Week, so we couldn't see each other then. - -00:17.750 --> 00:23.770 -I thought I'd be a little sulky about that, but I brightened up once I saw Takeshi-san’s face. - -00:24.840 --> 00:28.690 -He laughed and listened to all my stories. - -00:30.020 --> 00:35.950 -He even gave me flowers to congratulate me for passing my examination. - -00:37.020 --> 00:39.950 -It’s so true that women love to receive flowers! - -00:41.210 --> 00:43.850 -I think I'll make dried flowers with them. - -00:46.040 --> 00:49.860 -I want this happiness to last forever. diff --git a/src/static/media/webvtt/Tda027.vtt b/src/static/media/webvtt/Tda027.vtt deleted file mode 100644 index d984e5b..0000000 --- a/src/static/media/webvtt/Tda027.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.220 --> 00:01.500 -Oh, I feel so good. - -00:05.000 --> 00:08.380 -Getting together with him after all this time. - -00:08.840 --> 00:10.680 -I think I’m getting a bit lewd. - -00:12.340 --> 00:15.050 -But I think it’s okay to feel this way. - -00:16.060 --> 00:17.780 -I really feel loved. - -00:18.040 --> 00:19.700 -It feels more natural than it did in America. - -00:20.970 --> 00:24.600 -If we get married, I want to feel just like this. diff --git a/src/static/media/webvtt/Tda028.vtt b/src/static/media/webvtt/Tda028.vtt deleted file mode 100644 index de02a8b..0000000 --- a/src/static/media/webvtt/Tda028.vtt +++ /dev/null @@ -1,52 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.020 -I met Lain for the second time today. - -00:03.620 --> 00:10.770 -She looked right at me and called me "sensei." That made me feel good, and I blushed. - -00:11.340 --> 00:13.480 -I wonder if I’ve become transparent to her already. - -00:14.100 --> 00:20.450 -I must be an inexperienced counselor if I blush just from being called sensei. - -00:22.500 --> 00:26.520 -From the first time I met Lain, I had an unusual sense about her. - -00:26.520 --> 00:28.970 -I wonder what that was. - -00:29.740 --> 00:34.590 -When I look into her eyes, I feel as though she can see right through me. - -00:35.760 --> 00:41.310 -I wonder if she feels that I can help her. - -00:41.960 --> 00:54.240 -I don’t remember myself being as calm as Lain when I was her age. - -00:54.760 --> 00:59.560 -She seems really composed. - -01:01.060 --> 01:06.960 -A 12-year-old is still a child, but Lain seems like an adult. - -01:06.960 --> 01:15.140 -They say that kids are getting all precocious these days. - -01:15.140 --> 01:17.940 -I guess times are changing. - -01:17.940 --> 01:19.410 -Ah! - -01:19.410 --> 01:21.690 -Now I’m talking like an old woman. - -01:23.240 --> 01:25.940 -Don’t let the hallucinations get you down, Lain! - -01:26.650 --> 01:28.880 -I'm going to help you feel better. diff --git a/src/static/media/webvtt/Tda029.vtt b/src/static/media/webvtt/Tda029.vtt deleted file mode 100644 index 6259ea9..0000000 --- a/src/static/media/webvtt/Tda029.vtt +++ /dev/null @@ -1,61 +0,0 @@ -WEBVTT - -00:00.250 --> 00:02.290 -Today was really busy. - -00:03.400 --> 00:06.860 -I got to have lunch with Takeshi-san, though. - -00:09.140 --> 00:13.160 -He didn’t look well today. - -00:14.170 --> 00:19.220 -He seemed fidgety and said that he didn’t have much time. - -00:19.670 --> 00:23.570 -I wonder if he’s very busy in the research room where he works. - -00:24.210 --> 00:28.510 -Could it be that he doesn’t like me anymore? - -00:29.410 --> 00:32.560 -That can't be it, right? - -00:33.790 --> 00:37.920 -He said that he can’t go to Harumi’s wedding with me. - -00:38.840 --> 00:41.670 -I wanted to show him off to Harumi so much. - -00:41.670 --> 00:42.400 -It’s too bad. - -00:43.760 --> 00:49.480 -I wonder if he's being cautious with me because I have wishful thinking about marriage. - -00:50.080 --> 00:52.590 -I’ve heard that that sort of thing can happen. - -00:53.830 --> 00:57.630 -But I wanted to at least have a relaxed lunch with him. - -00:59.560 --> 01:02.730 -I can't help it if he's busy, though. - -01:03.620 --> 01:05.980 -You just have to hang in there, Touko. - -01:06.960 --> 01:09.450 -I don’t want to be thought of as a selfish person, either. - -01:10.560 --> 01:15.560 -But if Takeshi-san stopped liking me, I don’t think I could go on living. - -01:16.520 --> 01:17.920 -Well, that’s not completely true. - -01:19.720 --> 01:22.300 -It’s too bad that I can’t see him for two more weeks. - -01:23.400 --> 01:27.270 -Proceed carefully, Touko. diff --git a/src/static/media/webvtt/Tda030.vtt b/src/static/media/webvtt/Tda030.vtt deleted file mode 100644 index 55f3e3a..0000000 --- a/src/static/media/webvtt/Tda030.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.300 --> 00:01.340 -Argh! - -00:01.340 --> 00:03.780 -I haven’t written in my diary for days. - -00:04.050 --> 00:08.850 -I’m not just being lazy, but what’s the point of keeping a diary if I don’t write in it everyday? - -00:10.030 --> 00:14.690 -Things should be easier for me this week because Professor Takashima will be away. - -00:14.880 --> 00:18.830 -I want to go shopping! - -00:19.350 --> 00:22.530 -I need to buy a present for Harumi, too. - -00:23.690 --> 00:25.700 -I wonder if Takeshi-san will go with me. - -00:26.410 --> 00:28.680 -He wouldn't mind doing a little shopping together, would he? diff --git a/src/static/media/webvtt/Tda031.vtt b/src/static/media/webvtt/Tda031.vtt deleted file mode 100644 index 3438956..0000000 --- a/src/static/media/webvtt/Tda031.vtt +++ /dev/null @@ -1,52 +0,0 @@ -WEBVTT - -00:00.000 --> 00:03.440 -I got all choked up at Harumi's wedding. - -00:04.280 --> 00:07.300 -I’ve never seen her look so pretty. - -00:08.480 --> 00:12.310 -She said she was going on her honeymoon to have a baby right away. - -00:14.400 --> 00:16.580 -I’m glad that she seemed so happy. - -00:17.460 --> 00:20.300 -I love wedding dresses. - -00:21.500 --> 00:24.980 -Weddings in churches are so romantic. - -00:25.640 --> 00:29.910 -Over 100 people attended the reception. - -00:31.120 --> 00:33.750 -I’ve never been to such a large wedding before. - -00:34.800 --> 00:39.930 -Oh, when will I be as happy as Harumi? - -00:43.290 --> 00:51.560 -It was a shame that, although there were many people at the wedding who knew each other, there weren’t many people for me to talk to. - -00:52.860 --> 00:55.070 -And Takeshi-san couldn’t come. - -00:55.070 --> 00:57.520 -Kanoko couldn’t, either. - -00:59.120 --> 01:06.070 -I know that people living in a society like this have a lots of things they need to do, but I wish they'd make time to go to their friend’s wedding. - -01:06.800 --> 01:07.840 -Ah, well. - -01:07.840 --> 01:09.840 -I shouldn’t complain. - -01:11.040 --> 01:15.200 -I’d want all my friends to attend my wedding. - -01:17.200 --> 01:21.120 -I guess I really do want to get married. diff --git a/src/static/media/webvtt/Tda032.vtt b/src/static/media/webvtt/Tda032.vtt deleted file mode 100644 index 7322b11..0000000 --- a/src/static/media/webvtt/Tda032.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:00.260 --> 00:03.070 -Today I met with Kanako for the first time in 5 years. - -00:03.940 --> 00:06.340 -She's hardly changed at all. - -00:07.360 --> 00:09.340 -She’s quite the career woman. - -00:09.500 --> 00:14.070 -But she has loosened up a bit in the last 5 years. - -00:14.840 --> 00:16.060 -I'll just leave it at that. - -00:18.340 --> 00:22.230 -On the other hand, Kanako said that I’ve changed a lot. - -00:23.320 --> 00:26.560 -She said that I used to be difficult to approach, but that I seem gentler now. - -00:27.000 --> 00:29.400 -Is that really true? - -00:30.310 --> 00:34.420 -So she used to think that I was cold and intimidating? - -00:35.270 --> 00:35.810 -Grrr! - -00:35.990 --> 00:37.700 -She’ll have no forgiveness from me. diff --git a/src/static/media/webvtt/Tda033.vtt b/src/static/media/webvtt/Tda033.vtt deleted file mode 100644 index da7b935..0000000 --- a/src/static/media/webvtt/Tda033.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:01.740 --> 00:05.700 -Kanako said that she thought the freedom and liberation of American living had rubbed off on me. - -00:07.100 --> 00:09.560 -I was a bit embarrassed to hear that. - -00:10.870 --> 00:17.020 -I giggled when I saw the postcard photo from Harumi’s honeymoon. - -00:18.180 --> 00:21.460 -I try to hide it, but I’m jealous. - -00:23.090 --> 00:26.480 -Kanako said that she still has no plans of getting married. - -00:27.560 --> 00:32.030 -I hope she doesn’t change her mind all of a sudden, like Harumi. - -00:33.030 --> 00:35.350 -What will I do when Kanako gets married? - -00:35.350 --> 00:36.950 -I’ll be too sad. - -00:39.930 --> 00:42.850 -Takeshi-san, what’s going on with you? diff --git a/src/static/media/webvtt/Tda034.vtt b/src/static/media/webvtt/Tda034.vtt deleted file mode 100644 index 5d214fa..0000000 --- a/src/static/media/webvtt/Tda034.vtt +++ /dev/null @@ -1,52 +0,0 @@ -WEBVTT - -00:00.220 --> 00:03.680 -Oh, I’m so sick of all this work! - -00:04.210 --> 00:06.640 -I really hate Professor Takashima. - -00:06.640 --> 00:09.420 -There are other researchers he could delegate to. - -00:10.880 --> 00:13.560 -I’ve been in a bad mood lately. - -00:13.980 --> 00:20.030 -I haven’t been able to see Takeshi-san, there hasn't been any new counseling work, and I’ve just been doing menial chores. - -00:20.470 --> 00:23.010 -It's really putting me on edge. - -00:23.010 --> 00:26.660 -Nothing's going my way. - -00:28.690 --> 00:31.260 -I can't be cranky. - -00:31.700 --> 00:33.400 -I’m a counselor. - -00:34.400 --> 00:36.240 -I’m sorry, Lain. - -00:37.210 --> 00:41.310 -I have to think of my work outside of counseling as part of my work, too. - -00:42.210 --> 00:44.750 -I have to do what I have to do, and I want to be recognized. - -00:44.750 --> 00:46.210 -Otherwise, I’ll fail. - -00:49.630 --> 00:53.490 -Come to think of it, it will be Halloween soon. - -00:54.360 --> 01:00.010 -Back in America, people getting ready for Halloween made every day feel like a festival. - -01:01.550 --> 01:04.860 -Those were the good days. - -01:05.400 --> 01:08.990 -I guess this year there won’t be Halloween or Christmas, either. diff --git a/src/static/media/webvtt/Tda035.vtt b/src/static/media/webvtt/Tda035.vtt deleted file mode 100644 index 0902267..0000000 --- a/src/static/media/webvtt/Tda035.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:03.000 --> 00:06.090 -Why do I have to do all these chores? - -00:07.160 --> 00:10.360 -This is a violation of the Labor Standards Act! - -00:11.530 --> 00:12.560 -Am I being bullied? - -00:13.620 --> 00:16.940 -Am I talking weird because I'm drunk? - -00:17.730 --> 00:18.160 -Stupid! - -00:18.270 --> 00:18.660 -Stupid! - -00:18.870 --> 00:19.580 -Stupid! - -00:20.650 --> 00:21.870 -Damn it! - -00:22.010 --> 00:25.840 -That bald bastard Takashima with the blinding shiny bald head! diff --git a/src/static/media/webvtt/Tda036.vtt b/src/static/media/webvtt/Tda036.vtt deleted file mode 100644 index f01ff77..0000000 --- a/src/static/media/webvtt/Tda036.vtt +++ /dev/null @@ -1,46 +0,0 @@ -WEBVTT - -00:00.000 --> 00:04.290 -I wonder how many times I’ve met with Lain so far. - -00:05.380 --> 00:10.610 -She sometimes struggles with hallucinations, but they don’t seem to be worsening. - -00:11.840 --> 00:17.820 -Seeing hallucinations must be a very difficult thing for her. - -00:19.310 --> 00:22.710 -She's not the kind of kid that should be gloomy. - -00:22.710 --> 00:25.370 -I wonder if she's having a hard time at school. - -00:26.220 --> 00:32.250 -Her mother told me that she isn’t being bullied. - -00:33.570 --> 00:38.280 -When I mention school, Lain tends to go quiet. - -00:39.400 --> 00:44.800 -Maybe I should ask some of her friends at school how she’s doing. - -00:45.570 --> 00:50.910 -I think the kind of bullying that happens in schools now is different from the kind that took place when I was younger. - -00:52.450 --> 00:55.650 -I wish I could help you, Lain. - -00:57.340 --> 01:03.020 -I feel depressed when I see Lain. - -01:03.680 --> 01:13.140 -I can't help feeling depressed, but it’s when I get that way that Professor Takashima always complains to me about stupid stuff. - -01:13.650 --> 01:15.510 -Ahh! - -01:15.880 --> 01:17.860 -Tomorrow I have the day off. - -01:17.860 --> 01:19.860 -I’ll go out on the town and have a good time. diff --git a/src/static/media/webvtt/Tda037.vtt b/src/static/media/webvtt/Tda037.vtt deleted file mode 100644 index 092c359..0000000 --- a/src/static/media/webvtt/Tda037.vtt +++ /dev/null @@ -1,43 +0,0 @@ -WEBVTT - -00:00.330 --> 00:03.040 -Lately, Takeshi-san has been acting weird. - -00:04.430 --> 00:08.630 -When I call, he always says that he’s busy. - -00:09.840 --> 00:14.330 -I understand if he’s busy with work, but I wish he wasn't so cold with me. - -00:15.340 --> 00:19.640 -And why didn't he come to see me on my birthday? - -00:20.280 --> 00:27.680 -I’d hate to say, "is your work more important than me?" but I’m starting to feel that way. - -00:29.590 --> 00:32.990 -I’m 27 years old, Takeshi-san. - -00:34.850 --> 00:38.240 -You were so happy when I passed my exam. - -00:39.020 --> 00:42.020 -Lately I don’t even see you at the research lab. - -00:43.480 --> 00:44.530 -It worries me. - -00:45.720 --> 00:47.200 -I hope it’s just my imagination. - -00:48.790 --> 00:51.180 -Things seem to be getting gloomy for me. - -00:52.360 --> 00:54.620 -Things haven’t been going very well. - -00:57.170 --> 00:59.660 -I’m going to bed. - -01:00.660 --> 01:04.710 -The more I think about this stuff, the more anxious I get. diff --git a/src/static/media/webvtt/Tda038.vtt b/src/static/media/webvtt/Tda038.vtt deleted file mode 100644 index 001bff4..0000000 --- a/src/static/media/webvtt/Tda038.vtt +++ /dev/null @@ -1,52 +0,0 @@ -WEBVTT - -00:00.140 --> 00:02.050 -Lain gave me a present. - -00:02.850 --> 00:06.730 -It was for my birthday and also for Valentine’s Day coming up. - -00:07.000 --> 00:09.450 -She gave me cookies to go with my tea. - -00:10.750 --> 00:15.770 -She said that she made the cookies with her mother because she knew that I like something with my tea. - -00:18.350 --> 00:22.430 -What are you doing getting so emotional over a client, Touko? - -00:23.280 --> 00:27.240 -What are you doing getting so moved by a client, Touko? - -00:28.640 --> 00:32.330 -Maybe it’s because Takeshi-san didn’t give me a birthday present. - -00:32.940 --> 00:34.590 -That was terrible of you, Takeshi-san. - -00:36.670 --> 00:38.430 -Lately I’ve been moody. - -00:38.430 --> 00:40.300 -I suddenly become sad or depressed. - -00:41.000 --> 00:42.910 -Is it because I’m getting older? - -00:44.700 --> 00:49.200 -But how did Lain know my birthday? - -00:50.060 --> 00:51.730 -Did I tell her? - -00:52.650 --> 00:54.400 -I don’t suppose it matters. - -00:55.970 --> 00:59.490 -It’s the first time I’ve received a gift from a girl, though. - -00:59.490 --> 01:01.720 -It’s a bit embarrassing. - -01:02.910 --> 01:05.320 -Thank you, Lain. diff --git a/src/static/media/webvtt/Tda039.vtt b/src/static/media/webvtt/Tda039.vtt deleted file mode 100644 index cbb82a7..0000000 --- a/src/static/media/webvtt/Tda039.vtt +++ /dev/null @@ -1,43 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.100 -It will soon be Valentine’s Day. - -00:02.960 --> 00:05.870 -It seems like a Japanese celebration. - -00:06.320 --> 00:08.090 -It makes me think. - -00:09.820 --> 00:14.540 -Takeshi-san didn’t even meet me on my birthday. - -00:15.980 --> 00:21.580 -I just received a flower delivery a week afterwards. - -00:22.660 --> 00:24.620 -There were no phone calls. - -00:26.430 --> 00:30.530 -I think he really doesn’t like me anymore. - -00:33.070 --> 00:35.310 -I just keep feeling let down. - -00:35.310 --> 00:37.440 -Here I am with some chocolate. - -00:38.430 --> 00:40.410 -How dumb can it all get? - -00:41.680 --> 00:44.210 -But this is the end. - -00:44.740 --> 00:46.740 -What’s the use? - -00:47.220 --> 00:48.130 -I give up. - -00:50.030 --> 00:55.440 -Tomorrow, I’ll place it in Takeshi-san’s desk drawer. diff --git a/src/static/media/webvtt/Tda040.vtt b/src/static/media/webvtt/Tda040.vtt deleted file mode 100644 index 9f520cb..0000000 --- a/src/static/media/webvtt/Tda040.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:00.640 --> 00:05.280 -I got a phone call from Takeshi-san today! - -00:05.950 --> 00:08.090 -"Thanks for the chocolates," he said! - -00:08.110 --> 00:12.670 -"I’m sorry that I was busy and didn’t call you back for so long," he said! - -00:12.920 --> 00:17.500 -I got so excited like a highschool student. - -00:18.560 --> 00:22.720 -I had been so worried and worked up. - -00:23.600 --> 00:25.020 -I’m a pretty simple person. - -00:26.860 --> 00:28.450 -I’m so glad. - -00:28.580 --> 00:31.300 -He doesn’t dislike me. - -00:31.930 --> 00:33.900 -He really was just very busy. diff --git a/src/static/media/webvtt/Tda041.vtt b/src/static/media/webvtt/Tda041.vtt deleted file mode 100644 index fa9a79b..0000000 --- a/src/static/media/webvtt/Tda041.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.510 --> 00:03.370 -It's okay for me to believe in it. diff --git a/src/static/media/webvtt/Tda042.vtt b/src/static/media/webvtt/Tda042.vtt deleted file mode 100644 index f2b22ae..0000000 --- a/src/static/media/webvtt/Tda042.vtt +++ /dev/null @@ -1,37 +0,0 @@ -WEBVTT - -00:00.000 --> 00:01.960 -I got an e-mail from Harumi. - -00:02.580 --> 00:08.600 -It was all about her honeymoon, and it seemed like she didn’t care what was going on with me at all. - -00:09.920 --> 00:11.620 -That’s fine. - -00:12.000 --> 00:16.800 -But since you’re happy, can’t you involve me in your discussion a little? - -00:18.640 --> 00:20.580 -Well. - -00:20.700 --> 00:27.240 -Aside from Takeshi-san, Harumi and Kanako are the only people I confide in. - -00:28.580 --> 00:36.160 -Maybe I need more friends, but I don’t have the personality to warm up to everyone. - -00:38.120 --> 00:41.840 -These are all my own personal problems, after all. - -00:42.620 --> 00:45.100 -It’s not time to be taking care of other people. - -00:46.900 --> 00:52.080 -I think I’ll talk to Professor Takashima tomorrow and ask him to let me stop counseling Lain. - -00:54.300 --> 00:58.080 -But if I do that, I really will have nothing to do. - -00:58.960 --> 01:03.300 -If all I do here is petty chores, I might as well quit being here. diff --git a/src/static/media/webvtt/Tda043.vtt b/src/static/media/webvtt/Tda043.vtt deleted file mode 100644 index a55b891..0000000 --- a/src/static/media/webvtt/Tda043.vtt +++ /dev/null @@ -1,55 +0,0 @@ -WEBVTT - -00:00.680 --> 00:02.180 -A resignation. - -00:03.280 --> 00:07.100 -I’ve never resigned from anything in my life. - -00:08.860 --> 00:11.720 -This is hard for me. - -00:11.720 --> 00:15.860 -I’ll lose my connection with Takeshi-san. - -00:16.640 --> 00:22.380 -But I think Takeshi-san said once that he’d like his wife to be at home. - -00:24.240 --> 00:27.380 -Why am I saying these things? - -00:28.400 --> 00:32.840 -Maybe the truth is that I’m not a good woman. - -00:33.820 --> 00:37.080 -I’m not the decent person I thought I was. - -00:37.080 --> 00:45.520 -Maybe I’m a fraud and my faults are coming out. - -00:49.220 --> 00:55.000 -I suppose I had self-control enough to manage myself so far. - -00:55.000 --> 01:00.020 -When I think about it, maybe I am unstable now. - -01:00.700 --> 01:03.450 -Lain is the one that seems to have it together. - -01:03.450 --> 01:05.650 -It sounds like a bad joke. - -01:05.650 --> 01:07.520 -I’ve failed. - -01:07.520 --> 01:11.120 -It’s not right for Lain to come for help from someone like me. - -01:11.120 --> 01:13.270 -There’s no excuse for it. - -01:13.900 --> 01:18.420 -It’s over when I start making mistakes concerning my work. - -01:19.900 --> 01:23.170 -I’ll have to discuss it tomorrow. diff --git a/src/static/media/webvtt/Tda044.vtt b/src/static/media/webvtt/Tda044.vtt deleted file mode 100644 index a7173c8..0000000 --- a/src/static/media/webvtt/Tda044.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.820 -It is becoming spring like. - -00:03.320 --> 00:06.400 -Lain will start eighth grade today. - -00:07.050 --> 00:12.050 -She’s hallucinating less often now and has settled down some. - -00:12.120 --> 00:15.670 -She seems to be feeling better. - -00:17.250 --> 00:23.070 -I sometimes wonder if my counseling is helping her. - -00:24.300 --> 00:32.350 -We’ve talked about many things, but in the short time I’ve known her, she’s grown intellectually by leaps and bounds. - -00:32.350 --> 00:37.920 -Sometimes she asks me questions during our sessions that shock me because they are so sharp. - -00:37.920 --> 00:41.970 -Sometimes I feel like I’m the client, not the other way around. - -00:42.370 --> 00:45.700 -Maybe I’m worrying about it too much. - -00:45.700 --> 00:48.470 -Your client is feeling better, Touko. - -00:48.470 --> 00:51.470 -You should be glad. diff --git a/src/static/media/webvtt/Tda045.vtt b/src/static/media/webvtt/Tda045.vtt deleted file mode 100644 index cc21cd6..0000000 --- a/src/static/media/webvtt/Tda045.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.670 -Today I met a new guy who comes to the lab now and then. - -00:02.670 --> 00:04.970 -He works with our medical equipment. - -00:04.970 --> 00:07.160 -I think his name is Yoshida-kun. - -00:07.770 --> 00:10.060 -He seemed a bit younger than me. - -00:10.060 --> 00:11.640 -He stunned me a little. - -00:12.270 --> 00:16.960 -He was kind of cute and I gazed at him for a while. - -00:17.440 --> 00:25.800 -I was happy to just smile at someone for a while, maybe because I'm not used to being in Japanese labs. - -00:26.750 --> 00:29.800 -Maybe he likes me. - -00:30.200 --> 00:31.530 -Hee hee. - -00:31.530 --> 00:33.290 -Sorry! - -00:33.290 --> 00:35.800 -I belong to Takeshi-san. diff --git a/src/static/media/webvtt/Tda046.vtt b/src/static/media/webvtt/Tda046.vtt deleted file mode 100644 index 7200eca..0000000 --- a/src/static/media/webvtt/Tda046.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:01.210 --> 00:05.260 -I know that I should tell him that I already have someone else. - -00:05.260 --> 00:07.210 -Somehow I don’t want to tell him, though. - -00:07.210 --> 00:09.560 -I think I’m being unfaithful. - -00:10.700 --> 00:11.820 -This is no good. - -00:11.820 --> 00:16.590 -As long as I’m feeling dissatisfied about Takeshi-san, I will also feel unstable. - -00:17.600 --> 00:19.260 -This isn’t good. - -00:19.260 --> 00:21.260 -As a counselor, I shouldn’t feel this way. - -00:21.260 --> 00:24.560 -I have to fix myself before I try to fix Lain. diff --git a/src/static/media/webvtt/Tda047.vtt b/src/static/media/webvtt/Tda047.vtt deleted file mode 100644 index 819aea0..0000000 --- a/src/static/media/webvtt/Tda047.vtt +++ /dev/null @@ -1,67 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.250 -Oh, what a surprise! - -00:02.250 --> 00:04.880 -To run into Yoshida-kun at a place like that. - -00:05.390 --> 00:09.550 -I thought that it was weird for a guy to be buying underwear alone. - -00:09.550 --> 00:12.330 -Maybe he was shopping for his girlfriend. - -00:12.760 --> 00:15.770 -I feel embarrassed. - -00:16.280 --> 00:20.810 -It was nice to talk to him, though, and I have nothing to worry about. - -00:22.540 --> 00:26.940 -I guess I’ve been stressed lately. - -00:27.320 --> 00:31.480 -I sure ran my mouth with Yoshida-kun. - -00:31.480 --> 00:33.260 -I think I bothered him. - -00:33.920 --> 00:36.730 -Well, there’s no sense in regretting it now. - -00:39.160 --> 00:43.420 -Yoshida-kun does seem very grown up for his age. - -00:43.420 --> 00:44.590 -He surprised me. - -00:44.940 --> 00:48.120 -He’s not as grown up as Takeshi-san, though. - -00:49.740 --> 00:57.480 -He said, "Touko-san, you seem tired." He was gentle, and I was a bit touched. - -00:57.730 --> 00:59.340 -No, no, Touko. - -00:59.660 --> 01:02.480 -Yoshida-kun was just feeling sorry for you. - -01:03.450 --> 01:04.700 -Ohh. - -01:05.000 --> 01:09.000 -Maybe his girlfriend saw him talking to me and got angry at him. - -01:09.610 --> 01:13.050 -Aww. I should apologize him next time I see him. - -01:14.460 --> 01:18.140 -He seems so cheerful at the lab. - -01:19.420 --> 01:22.820 -He said that he’ll bring some sample medical utensils next time he swings by. - -01:23.330 --> 01:25.470 -I’ll get over my stress soon. diff --git a/src/static/media/webvtt/Tda048.vtt b/src/static/media/webvtt/Tda048.vtt deleted file mode 100644 index abac1e3..0000000 --- a/src/static/media/webvtt/Tda048.vtt +++ /dev/null @@ -1,55 +0,0 @@ -WEBVTT - -00:00.840 --> 00:06.010 -Just when I thought I was able to meet Yoshida-kun, I screwed it up! - -00:06.010 --> 00:10.860 -He said that he was waiting at the department store, talking to the person in charge of health equipment. - -00:10.860 --> 00:14.330 -Oh, I’m such a careless person. - -00:14.330 --> 00:16.280 -He suddenly apologized to me. - -00:16.280 --> 00:18.750 -Yoshida-kun was probably angry. - -00:18.750 --> 00:20.160 -Ahh. - -00:20.160 --> 00:22.490 -I’ve done something embarrassing again. - -00:23.850 --> 00:27.680 -He was just bringing the health equipment he promised to bring. - -00:28.670 --> 00:32.990 -The machine he brought looked like one of those cheap pulse massagers for relaxation. - -00:33.310 --> 00:37.950 -Though, it seemed to be from a legit manufacturer, so I wonder if it actually works? - -00:39.000 --> 00:43.390 -It's made by a legitimate medical company, so I kind of feel like it'll work. - -00:43.820 --> 00:46.610 -He said that it works better if I do it every day, not only when I'm tired. - -00:48.780 --> 00:51.690 -I bet Yoshida-kun gets girlfriends easily. - -00:51.690 --> 00:55.370 -He’s such a good-looking guy and he’s tall. - -00:56.220 --> 01:01.610 -When he comes to the lab, all the women seem to really take notice of him. - -01:02.280 --> 01:06.940 -Oh, what am I thinking? - -01:07.500 --> 01:09.640 -I already have Takeshi-san. - -01:10.730 --> 01:14.040 -I want to see Takeshi-san. diff --git a/src/static/media/webvtt/Tda049.vtt b/src/static/media/webvtt/Tda049.vtt deleted file mode 100644 index 76824fc..0000000 --- a/src/static/media/webvtt/Tda049.vtt +++ /dev/null @@ -1,58 +0,0 @@ -WEBVTT - -00:00.320 --> 00:05.500 -Lately at the lab, people seem to be looking at me more critically than before. - -00:06.710 --> 00:10.480 -If someone wants to say something, let him say it. - -00:11.640 --> 00:14.840 -Still, this bothers me. - -00:15.780 --> 00:19.150 -When I glance at people, I can see them whispering and laughing. - -00:20.320 --> 00:24.000 -I suppose its just more stupid rumors about me, but I wonder if I’m the only cheerful person working here. - -00:26.400 --> 00:30.500 -I had my first date with Takeshi-san in a long time, but I was so inattentive. - -00:32.000 --> 00:39.660 -It seemed like Takeshi-san had something to say, but I felt like I had a big hole in the middle of my chest. - -00:41.020 --> 00:42.800 -What’s wrong, Touko? - -00:43.240 --> 00:44.370 -Are you tired? - -00:45.740 --> 00:50.530 -Lately, Professor Takashima has had me digging around for documents. Maybe that’s worn me out. - -00:51.880 --> 00:54.800 -He can have someone else look for documents. - -00:56.360 --> 00:57.900 -What can I do? - -01:01.040 --> 01:04.040 -That’s how things are done in Japan. - -01:05.280 --> 01:07.910 -I think I should have stayed in America. - -01:09.550 --> 01:13.610 -I’ll use Yoshida-kun’s health equipment again tonight. - -01:14.710 --> 01:16.890 -Sometimes it makes me sleepy. - -01:16.980 --> 01:18.430 -I wonder if it really works. - -01:18.810 --> 01:20.910 -I haven’t seen it advertised much. - -01:21.750 --> 01:24.120 -I heard that it’s still being used on an experimental basis. diff --git a/src/static/media/webvtt/Tda050.vtt b/src/static/media/webvtt/Tda050.vtt deleted file mode 100644 index ab2dedf..0000000 --- a/src/static/media/webvtt/Tda050.vtt +++ /dev/null @@ -1,31 +0,0 @@ -WEBVTT - -00:00.210 --> 00:02.450 -It’s always me that’s treated differently. - -00:03.010 --> 00:04.910 -I’m the first person that’s noticed and called on. - -00:05.960 --> 00:07.100 -I hate this. - -00:07.100 --> 00:09.020 -I wish I could transfer to a different lab. - -00:10.300 --> 00:14.330 -There are many things I don’t like here, but I’m especially fed up with working under Professor Takashima. - -00:15.020 --> 00:17.450 -He always looks at me funny. - -00:18.010 --> 00:22.460 -He was looking at my breasts again today. - -00:23.210 --> 00:25.640 -I might be getting overly worked up about this. - -00:26.240 --> 00:29.290 -I just can't stand him. - -00:30.070 --> 00:31.790 -Maybe he’s not such a bad guy. diff --git a/src/static/media/webvtt/Tda051.vtt b/src/static/media/webvtt/Tda051.vtt deleted file mode 100644 index cf200e1..0000000 --- a/src/static/media/webvtt/Tda051.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:01.560 --> 00:03.720 -I wish a guy like that would be dead. diff --git a/src/static/media/webvtt/Tda052.vtt b/src/static/media/webvtt/Tda052.vtt deleted file mode 100644 index 0dc3654..0000000 --- a/src/static/media/webvtt/Tda052.vtt +++ /dev/null @@ -1,37 +0,0 @@ -WEBVTT - -00:00.260 --> 00:02.430 -I’m making a diary entry for the first time in a long while. - -00:03.260 --> 00:06.630 -Even though I've missed some, I'm proud that I've kept it up for this long. - -00:09.420 --> 00:13.100 -Lately I’ve been coming home from work and going right to bed. - -00:14.290 --> 00:22.370 -Still, it seems that by using the equipment Yoshida-kun gave me, I feel rested in the morning even though I go to bed exhausted. - -00:24.190 --> 00:27.180 -I’m still tired, though. - -00:28.720 --> 00:30.090 -I’m psychologically tired. - -00:32.050 --> 00:37.060 -Why do I have to work like a dog so that Professor Takashima can publish his articles? - -00:38.340 --> 00:41.340 -It might look as if I have less work to do because I have only one client: Lain. - -00:41.560 --> 00:50.900 -It’s true that things are going well with Lain, and that may make it seem as though I have less to do, too. - -00:51.970 --> 00:55.610 -But lately, I’ve been feeling harassed. - -00:56.790 --> 00:59.410 -Why have I been feeling so irritable lately? - -01:00.220 --> 01:01.410 -I hate it. diff --git a/src/static/media/webvtt/Tda053.vtt b/src/static/media/webvtt/Tda053.vtt deleted file mode 100644 index d808d4b..0000000 --- a/src/static/media/webvtt/Tda053.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:01.200 --> 00:05.020 -I’ll still keep fighting for you, Lain. So don't worry. - -00:06.190 --> 00:09.610 -There must be some reason why you’ve been hallucinating. - -00:11.740 --> 00:12.870 -I wonder what it might be. - -00:13.680 --> 00:16.510 -Things seem to be going all right for her at home. - -00:16.700 --> 00:19.530 -There aren’t any congenital injuries. - -00:20.790 --> 00:23.070 -She sees images of specific things. - -00:23.310 --> 00:25.260 -There must be a reason. - -00:27.620 --> 00:29.790 -But what am I writing this down for? - -00:32.110 --> 00:33.100 -I’m going to bed. diff --git a/src/static/media/webvtt/Tda054.vtt b/src/static/media/webvtt/Tda054.vtt deleted file mode 100644 index a8ff699..0000000 --- a/src/static/media/webvtt/Tda054.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:00.230 --> 00:02.160 -Professor Takashima died. - -00:03.020 --> 00:04.040 -He committed suicide. - -00:05.930 --> 00:12.100 -I can’t honestly say that I’m saddened, but I’m not happy to see someone die. - -00:13.520 --> 00:19.580 -The police and reporters came and asked a lot of questions, but no one knows why he took his life. - -00:21.930 --> 00:23.150 -Ahh! - -00:23.440 --> 00:25.840 -It’ll be harder at nights now. - -00:26.760 --> 00:31.660 -I don't know if he did that out of spite, but I can't believe he hanged himself in the lab, of all places. - -00:32.600 --> 00:37.770 -Still, I have one less reason for not wanting to work in this lab. - -00:38.760 --> 00:43.960 -It may be imprudent for me to say this, but things will be easier for me now. diff --git a/src/static/media/webvtt/Tda055.vtt b/src/static/media/webvtt/Tda055.vtt deleted file mode 100644 index aeffe57..0000000 --- a/src/static/media/webvtt/Tda055.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:01.160 --> 00:08.910 -I’m glad you’re dead, bald old man. Did God hear my prayers and make him die? diff --git a/src/static/media/webvtt/Tda056.vtt b/src/static/media/webvtt/Tda056.vtt deleted file mode 100644 index 3655b98..0000000 --- a/src/static/media/webvtt/Tda056.vtt +++ /dev/null @@ -1,43 +0,0 @@ -WEBVTT - -00:00.220 --> 00:03.880 -Today on my way home from the lab, I ran into Yoshida-kun. - -00:05.110 --> 00:13.000 -Lately, I had been so busy with helping Professor Takashima that I didn’t have time to talk to Yoshida-kun even when he visited the lab. - -00:14.500 --> 00:18.900 -He seems to have been worried about me, and was waiting for me at the lab until I was through with work. - -00:19.800 --> 00:22.420 -I don't want him to be too kind to me right now, when I’m feeling so irritable. - -00:22.780 --> 00:30.040 -I feel like blaming someone for what’s been going on, and I feel that if someone is kind to me, my feelings for Takeshi-san will crumble. - -00:31.940 --> 00:38.490 -Yoshida-kun just quietly walked me home, but he made me very happy. - -00:40.000 --> 00:43.170 -There was a "me" that was happy then. - -00:45.240 --> 00:46.180 -No. - -00:46.180 --> 00:47.600 -I shouldn’t feel this way. - -00:48.460 --> 00:50.320 -Takeshi-san is the one I like. - -00:51.220 --> 00:55.500 -Any woman would be happy if a attractive guy like him was nice to her, wouldn't she? - -00:57.020 --> 01:01.050 -Takeshi-san... I want you to catch me. - -01:04.140 --> 01:05.650 -I really am tired. - -01:06.520 --> 01:11.260 -I think I should use RML a little longer. diff --git a/src/static/media/webvtt/Tda057.vtt b/src/static/media/webvtt/Tda057.vtt deleted file mode 100644 index 4441a9e..0000000 --- a/src/static/media/webvtt/Tda057.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:00.300 --> 00:03.410 -I got a phone call from Takeshi-san after not hearing from him for a while. - -00:04.700 --> 00:11.400 -I don't know why, but although we talked about the sort of things we always talk about, it was boring. - -00:13.040 --> 00:18.040 -I’ve never felt bored talking with him before. - -00:19.820 --> 00:22.980 -It must be because I’ve been so restless. - -00:25.140 --> 00:31.110 -Could it be that it’s over between us? - -00:32.660 --> 00:35.090 -That can’t be it, can it? diff --git a/src/static/media/webvtt/Tda058.vtt b/src/static/media/webvtt/Tda058.vtt deleted file mode 100644 index f048613..0000000 --- a/src/static/media/webvtt/Tda058.vtt +++ /dev/null @@ -1,37 +0,0 @@ -WEBVTT - -00:00.290 --> 00:02.600 -Lain pointed something out to me today. - -00:03.220 --> 00:07.540 -I stayed up all night studying reference literature and had bags under my eyes. - -00:08.220 --> 00:09.030 -How unsightly. - -00:10.610 --> 00:12.560 -"You’re tired today, aren’t you, Sensei," she said. - -00:12.690 --> 00:19.110 -"Shouldn’t you get some rest?" How embarrassing to have this come from a client. - -00:20.830 --> 00:23.700 -Lately, something has been very wrong with me. - -00:24.980 --> 00:28.970 -I don’t want it to affect my relationship with Lain. - -00:30.500 --> 00:34.460 -Is there a reason Lain needs to be hospitalized now? - -00:35.520 --> 00:38.910 -It doesn’t seem like there will be any problems with her soon. - -00:40.210 --> 00:43.010 -I think I should be examining someone else. - -00:44.600 --> 00:46.230 -Lain is not sick. - -00:47.140 --> 00:48.650 -This is hardly productive research. diff --git a/src/static/media/webvtt/Tda059.vtt b/src/static/media/webvtt/Tda059.vtt deleted file mode 100644 index 0e98f63..0000000 --- a/src/static/media/webvtt/Tda059.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:04.220 --> 00:10.010 -My head hurts again. I should go to bed early today. diff --git a/src/static/media/webvtt/Tda060.vtt b/src/static/media/webvtt/Tda060.vtt deleted file mode 100644 index f03ccba..0000000 --- a/src/static/media/webvtt/Tda060.vtt +++ /dev/null @@ -1,58 +0,0 @@ -WEBVTT - -00:00.330 --> 00:02.850 -This is a nightmare. - -00:03.900 --> 00:06.640 -It must be a bad dream. - -00:07.980 --> 00:09.830 -Takeshi-san is getting married? - -00:11.960 --> 00:16.600 -It’s just more gossip by those jerks in the lab who don't have anything better to do. - -00:17.160 --> 00:19.760 -Takeshi-san was going to marry me. - -00:23.490 --> 00:27.430 -But... that’s just something I believed on my own. - -00:28.850 --> 00:30.860 -I know that we never made any promises. - -00:31.160 --> 00:32.570 -But this is horrible. - -00:34.070 --> 00:39.010 -Why didn’t Takeshi-san talk to me first? - -00:41.380 --> 00:44.160 -He said that he couldn’t see me because he was so busy. - -00:44.830 --> 00:47.020 -Was he avoiding me that way? - -00:48.800 --> 00:53.540 -Did he want me to get the impression that he didn’t like me and let me lose interest in him? - -00:55.400 --> 01:00.360 -I’m... so... stupid. - -01:01.820 --> 01:03.080 -I didn’t notice anything. - -01:04.690 --> 01:05.790 -Why couldn’t you tell me? - -01:06.760 --> 01:09.310 -If you told me I would have given up and let you go. - -01:12.040 --> 01:12.800 -That’s not true. - -01:13.990 --> 01:15.330 -I couldn’t let you go. - -01:17.380 --> 01:23.650 -I didn’t want to be his lover until he no longer liked me. diff --git a/src/static/media/webvtt/Tda061.vtt b/src/static/media/webvtt/Tda061.vtt deleted file mode 100644 index 8c3627f..0000000 --- a/src/static/media/webvtt/Tda061.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:02.100 --> 00:08.620 -He’s not a careless person, so he must have been looking for a time to come and talk to me. - -00:08.940 --> 00:14.220 -I just didn’t notice him because I’ve been so saturated with thinking about myself. - -00:15.580 --> 00:18.210 -But... I’ve been avoided. - -00:20.270 --> 00:21.680 -How stupid. - -00:22.190 --> 00:24.090 -I’ve just been thinking about being disliked. - -00:24.800 --> 00:26.430 -I was clinging onto Takeshi-san. - -00:29.210 --> 00:33.280 -But I want to hear the truth from Takeshi-san himself. - -00:34.070 --> 00:37.090 -I can’t give up until I hear it from him. - -00:37.530 --> 00:38.750 -It’s all I can do. - -00:41.060 --> 00:46.060 -But if this is all just a rumor, I couldn’t say how happy I would be. - -00:48.980 --> 00:51.860 -I’m sad...Takeshi-san. diff --git a/src/static/media/webvtt/Tda062.vtt b/src/static/media/webvtt/Tda062.vtt deleted file mode 100644 index bbe509e..0000000 --- a/src/static/media/webvtt/Tda062.vtt +++ /dev/null @@ -1,79 +0,0 @@ -WEBVTT - -00:00.230 --> 00:03.660 -I’ve relaxed a lot and have been able to look at myself more clearly. - -00:03.900 --> 00:05.620 -That has made it easier for me to write in my diary. - -00:07.630 --> 00:09.260 -I can finally see my surroundings. - -00:10.360 --> 00:17.970 -The reason the jerks at the lab were laughing at me was because they knew about Takeshi-san getting married. - -00:19.900 --> 00:24.250 -I’m understanding now that I’m the only one who had no clue. - -00:26.490 --> 00:27.460 -I feel raw and bitter. - -00:28.400 --> 00:29.460 -I feel miserable. - -00:31.640 --> 00:32.490 -I am sad. - -00:33.680 --> 00:34.400 -Takeshi-san. - -00:36.510 --> 00:38.020 -I can’t work anymore. - -00:38.630 --> 00:41.460 -I want to throw everything away and quit working at this lab. - -00:42.020 --> 00:43.940 -I’ll quit counseling Lain. - -00:45.050 --> 00:47.270 -Lain will be alright without me. - -00:48.050 --> 00:48.800 -Won’t you, Lain? - -00:52.780 --> 00:55.240 -Who is going to help me? - -00:56.010 --> 00:56.770 -Yoshida-kun? - -00:59.380 --> 01:02.210 -He’s better than Takeshi-san anyway. - -01:02.770 --> 01:06.720 -He’s young and kind and I want to be held by him. - -01:07.710 --> 01:09.100 -I wanted to cheat on Takeshi-san. - -01:11.300 --> 01:12.440 -But that’s a lie, too. - -01:13.840 --> 01:16.520 -Was I just looking for someone who would need me? - -01:19.640 --> 01:21.760 -I didn’t know what a weak person I am. - -01:24.370 --> 01:25.470 -I better head to bed soon. - -01:26.750 --> 01:30.400 -I’m sure there is a stronger Touko in one of my dreams. - -01:31.560 --> 01:33.230 -I’ll be different tomorrow. - -01:34.480 --> 01:36.550 -As long as I go to sleep believing that, I’ll be... diff --git a/src/static/media/webvtt/Tda063.vtt b/src/static/media/webvtt/Tda063.vtt deleted file mode 100644 index 40a61f7..0000000 --- a/src/static/media/webvtt/Tda063.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.740 --> 00:05.490 -These days, I’m on the computer most of the time. - -00:06.740 --> 00:09.260 -I didn’t used to sit in front of computers So often. - -00:10.800 --> 00:14.110 -I wonder if I’m unconsciously trying to connect with someone. - -00:16.410 --> 00:21.030 -Most of the rumors have fizzled down, but I still don’t blend in at the lab. - -00:22.550 --> 00:26.900 -If Lain is like an ordinary kid, there’s no point to my research. - -00:28.640 --> 00:31.280 -Why am I here anyway? - -00:33.090 --> 00:36.690 -Will I spend the rest of my days doing menial tasks? diff --git a/src/static/media/webvtt/Tda064.vtt b/src/static/media/webvtt/Tda064.vtt deleted file mode 100644 index 5841ba2..0000000 --- a/src/static/media/webvtt/Tda064.vtt +++ /dev/null @@ -1,70 +0,0 @@ -WEBVTT - -00:00.520 --> 00:04.080 -I can’t get out of my head Lain's eyes, and it makes me feel uneasy. - -00:04.750 --> 00:06.090 -Will you stop, Lain? - -00:06.090 --> 00:08.000 -Don’t look at me like that! - -00:08.650 --> 00:10.730 -Nothing’s wrong with me. - -00:10.730 --> 00:13.320 -At least not in front of you. - -00:14.410 --> 00:18.920 -Lain looks at me as if she can see through me completely. - -00:19.690 --> 00:25.550 -I remember feeling that way when I first met Lain. - -00:27.100 --> 00:30.800 -She can see that I’m using her as an object for research. - -00:31.180 --> 00:32.300 -No! - -00:32.300 --> 00:33.960 -How can that be? - -00:33.960 --> 00:39.160 -What can she know? - -00:39.160 --> 00:41.370 -I’m the one with the problem. - -00:41.370 --> 00:44.040 -I’m not present as a counselor. - -00:44.040 --> 00:46.140 -This can’t continue. - -00:46.140 --> 00:49.980 -It’s at times like this when I have to immerse myself on my work. - -00:51.400 --> 00:58.840 -But when I was feeling unstable, Lain just looked at me, saying nothing. - -00:59.850 --> 01:02.190 -She had a faint smile on her face. - -01:03.240 --> 01:05.480 -Something is wrong with her! - -01:06.060 --> 01:08.220 -What is she trying to do? - -01:08.220 --> 01:11.310 -Why can’t someone else take care of her instead of me? - -01:11.310 --> 01:13.800 -I keep saying that she isn’t sick. - -01:15.500 --> 01:17.960 -Let me check one more time. - -01:18.460 --> 01:23.400 -I feel so uncomfortable. diff --git a/src/static/media/webvtt/Tda065.vtt b/src/static/media/webvtt/Tda065.vtt deleted file mode 100644 index b8c6fe2..0000000 --- a/src/static/media/webvtt/Tda065.vtt +++ /dev/null @@ -1,55 +0,0 @@ -WEBVTT - -00:00.750 --> 00:05.280 -Today I met with Kyoko-chan, one of Lain’s classmates from grade school. - -00:06.850 --> 00:09.110 -She’s in middle school now. - -00:10.210 --> 00:13.050 -She’s at a point of life when people start to take interest in many things. - -00:15.290 --> 00:17.580 -I was glad to have met with her. - -00:19.450 --> 00:20.780 -She was ordinary. - -00:22.170 --> 00:23.820 -She is ordinary. - -00:25.710 --> 00:29.860 -She goes out shopping with friends and talks with boys she likes. - -00:30.360 --> 00:31.860 -She’s an ordinary girl. - -00:34.140 --> 00:38.840 -Lain is not an ordinary girl. - -00:40.820 --> 00:43.190 -And who is Misato-chan? - -00:44.270 --> 00:46.400 -Is she the same as Minako-chan? - -00:47.720 --> 00:48.660 -That can’t be. - -00:50.680 --> 00:51.710 -I don’t understand. - -00:52.460 --> 00:56.180 -What am I doing by following up on all these things and telling lies? - -00:57.150 --> 00:59.680 -This has nothing to do with my research. - -01:01.240 --> 01:07.250 -My job as a psychiatrist and a counselor was to diagnose and treat someone. - -01:08.940 --> 01:14.820 -This existence called Lain seems to be a kind of vacancy. - -01:17.860 --> 01:23.140 -Does Lain have a problem, or do I? diff --git a/src/static/media/webvtt/Tda066.vtt b/src/static/media/webvtt/Tda066.vtt deleted file mode 100644 index bf1e74a..0000000 --- a/src/static/media/webvtt/Tda066.vtt +++ /dev/null @@ -1,46 +0,0 @@ -WEBVTT - -00:00.820 --> 00:04.770 -Today I came face to face with Takeshi-san at the lab. - -00:05.960 --> 00:10.060 -My heart beat so fast! - -00:11.630 --> 00:15.140 -I wondered if he would pretend that he wasn’t married to someone else. - -00:15.250 --> 00:19.300 -I suddenly froze; I couldn’t move my body or my face. - -00:21.010 --> 00:29.100 -Takeshi-san smiled and just said, "Hey, you look really good." Is that all? - -00:29.900 --> 00:33.450 -Is that all you have to say to me? - -00:35.670 --> 00:39.030 -The next moment, I found myself starting to laugh. - -00:40.770 --> 00:44.740 -Takeshi-san was surprised and ran away. - -00:47.060 --> 00:47.750 -I wonder why. - -00:48.630 --> 00:50.590 -Why did I laugh? - -00:52.610 --> 00:55.500 -Did Takeshi-san think that I went crazy? - -00:57.580 --> 00:59.740 -Is there really something wrong with my mind? - -01:00.580 --> 01:02.660 -Could this all be a dream? - -01:07.520 --> 01:11.580 -Sometimes I can’t tell what’s real or what’s a dream. - -01:13.350 --> 01:15.860 -Someone...help me. diff --git a/src/static/media/webvtt/Tda067.vtt b/src/static/media/webvtt/Tda067.vtt deleted file mode 100644 index 7fc4914..0000000 --- a/src/static/media/webvtt/Tda067.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:01.700 --> 00:04.350 -I’ll stop using the RML today. - -00:05.320 --> 00:09.250 -I think I lost confidence in myself because I depended on this device. - -00:10.710 --> 00:11.770 -I am me. - -00:12.420 --> 00:14.140 -Lain is an ordinary girl. - -00:15.360 --> 00:22.660 -Takeshi-san is an ordinary man who found someone he likes more than me and married her, but was too weak-willed to tell me about it. - -00:24.010 --> 00:25.950 -I don’t like Takeshi-san anymore. diff --git a/src/static/media/webvtt/Tda068.vtt b/src/static/media/webvtt/Tda068.vtt deleted file mode 100644 index 018611e..0000000 --- a/src/static/media/webvtt/Tda068.vtt +++ /dev/null @@ -1,43 +0,0 @@ -WEBVTT - -00:00.370 --> 00:03.030 -I had dinner with Yoshida-kun today. - -00:04.520 --> 00:07.560 -I feel that I was more composed today thanks to him. - -00:08.880 --> 00:10.800 -I wonder why he is so kind to me. - -00:12.090 --> 00:16.420 -Maybe he’s heard the gossip going on about me and is siding with me. - -00:18.410 --> 00:21.090 -Could it be more than siding with me? - -00:21.510 --> 00:23.090 -Could he be in love with me? - -00:25.190 --> 00:26.020 -I don’t know. - -00:27.130 --> 00:32.450 -But I’m looking for love. - -00:33.590 --> 00:36.190 -I don’t mean that I would want to love anyone. - -00:37.860 --> 00:42.730 -I liked Yoshida-kun from the time that I met him. - -00:44.950 --> 00:46.110 -That’s not entirely true. - -00:47.010 --> 00:49.800 -I’m just sad right now. - -00:50.590 --> 00:53.020 -It’s sad to be alone. - -00:54.200 --> 00:56.160 -I want someone to comfort me. diff --git a/src/static/media/webvtt/Tda069.vtt b/src/static/media/webvtt/Tda069.vtt deleted file mode 100644 index 48081b4..0000000 --- a/src/static/media/webvtt/Tda069.vtt +++ /dev/null @@ -1,73 +0,0 @@ -WEBVTT - -00:00.360 --> 00:02.640 -Lately I’ve been seeing bad dreams. - -00:03.910 --> 00:07.870 -I dreamed that I married Yoshida-kun and that Takeshi-san was saddened by it. - -00:09.260 --> 00:12.990 -I looked at Takeshi-san and started to laugh. - -00:14.000 --> 00:17.660 -These aren’t the kind of things that I would want. - -00:18.650 --> 00:22.830 -Maybe there’s a part of my subconscious where I want these things. - -00:24.520 --> 00:27.800 -But I don’t want my child to look exactly like Lain. - -00:28.810 --> 00:34.930 -I think that Lain is a good girl, but I don’t want my own child to be like her. - -00:39.340 --> 00:40.070 -Why? - -00:40.810 --> 00:42.120 -Why, Touko? - -00:42.890 --> 00:45.410 -I don’t know, but I can’t love her. - -00:46.230 --> 00:47.930 -I just can’t approve of it. - -00:49.190 --> 00:51.930 -What am I really thinking? - -00:53.670 --> 00:57.190 -I’m losing confidence in my own feelings. - -00:59.590 --> 01:03.550 -More and more I can’t tell reality apart from my dreams. - -01:04.870 --> 01:06.140 -Is this a delusion, too? - -01:07.740 --> 01:09.600 -Am I seeing hallucinations? - -01:12.330 --> 01:13.260 -That can’t be. - -01:14.260 --> 01:16.280 -I’ve become psychologically hypersensitive. - -01:16.870 --> 01:18.630 -You’re okay, Touko. - -01:19.990 --> 01:23.330 -I should use the new machine Yoshida-kun gave me. - -01:24.940 --> 01:29.500 -Since he helped me, I should at least repay him by cooperating with his experiments. - -01:30.760 --> 01:32.450 -If I lose him now. - -01:32.990 --> 01:36.180 -I’ll be in a horrible place psychologically. - -01:37.220 --> 01:40.140 -I can’t go to a horrible place now. diff --git a/src/static/media/webvtt/Tda070.vtt b/src/static/media/webvtt/Tda070.vtt deleted file mode 100644 index 5117cb2..0000000 --- a/src/static/media/webvtt/Tda070.vtt +++ /dev/null @@ -1,52 +0,0 @@ -WEBVTT - -00:00.940 --> 00:10.200 -The ring that Yoshida-kun bought me... Could this be... he gave it to me without saying anything. - -00:12.870 --> 00:13.840 -But that’s okay. - -00:14.320 --> 00:15.890 -I won’t make the same mistake. - -00:17.060 --> 00:19.600 -I haven’t produced any research results either. - -00:20.560 --> 00:23.930 -My own pride won’t let me leave my work at the lab now. - -00:26.140 --> 00:29.530 -I asked Lain a dumb question today. - -00:30.840 --> 00:33.830 -I asked her, "Who are you? - -00:35.410 --> 00:42.740 -Are you really Lain?" Without changing her expression but looking upward, she said, "I’m me." - -00:44.820 --> 00:46.870 -A question with such an obvious answer. - -00:48.430 --> 00:53.230 -Still, before even thinking about it, my mouth was open. - -00:54.610 --> 00:55.460 -I wonder why. - -00:56.740 --> 00:59.090 -I think Lain is probably tired of it, too. - -01:00.650 --> 01:01.210 -I know. - -01:01.640 --> 01:05.270 -It has to do with the girl I’ve been seeing in my dreams lately who looks a lot like Lain. - -01:06.180 --> 01:08.570 -She looks like Lain, but she isn’t her. - -01:10.720 --> 01:12.780 -I better straighten my mind out. - -01:13.740 --> 01:15.540 -Otherwise I won’t be much of a counselor. diff --git a/src/static/media/webvtt/Tda071.vtt b/src/static/media/webvtt/Tda071.vtt deleted file mode 100644 index bfc9f2a..0000000 --- a/src/static/media/webvtt/Tda071.vtt +++ /dev/null @@ -1,13 +0,0 @@ -WEBVTT - -00:00.000 --> 00:04.220 -I went to the cemetery to pay respect to Professor Takashima with the other employees. - -00:05.280 --> 00:07.260 -It's been a year already since he died. - -00:08.290 --> 00:10.440 -So many things have happened this last year. - -00:11.390 --> 00:12.240 -Rest in peace. diff --git a/src/static/media/webvtt/Tda072.vtt b/src/static/media/webvtt/Tda072.vtt deleted file mode 100644 index 598264f..0000000 --- a/src/static/media/webvtt/Tda072.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:01.320 --> 00:03.750 -I understand myself less and less day by day. - -00:05.910 --> 00:12.890 -I was seeing strange dreams, but up till now I thought it was just because I was mentally confused. - -00:15.970 --> 00:18.030 -But today, I had an auditory hallucination. - -00:19.920 --> 00:26.460 -I’m not positive that it was a hallucination, but since yesterday, my ears haven’t stopped ringing. - -00:27.710 --> 00:29.040 -It’s as if I’m Lain. - -00:30.800 --> 00:31.750 -"Orgel"? - -00:32.620 --> 00:33.300 -What is it? - -00:34.410 --> 00:36.200 -It’s as if something is ringing inside my head. - -00:38.110 --> 00:40.440 -Tomorrow I’ll go see a doctor that specializes in hearing. diff --git a/src/static/media/webvtt/Tda073.vtt b/src/static/media/webvtt/Tda073.vtt deleted file mode 100644 index de11f16..0000000 --- a/src/static/media/webvtt/Tda073.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:00.700 --> 00:07.700 -When I was organizing the data I have about Lain, I started to hear the voices of researchers although there was no one there. - -00:09.270 --> 00:11.500 -I couldn’t tell what they were saying. - -00:12.500 --> 00:14.700 -I’m sure it was gossip about me. - -00:16.210 --> 00:18.560 -I thought I heard Yoshida-kun’s voice, too. - -00:20.200 --> 00:21.660 -Why did I hear him? - -00:22.820 --> 00:23.960 -What’s wrong? - -00:25.160 --> 00:27.750 -What’s happening to me? - -00:28.560 --> 00:30.690 -Someone tell me! - -00:31.430 --> 00:33.080 -Someone help me. - -00:35.450 --> 00:37.770 -I can’t organize data when I’m like this. - -00:39.150 --> 00:40.980 -I’ll do it tomorrow. diff --git a/src/static/media/webvtt/Tda074.vtt b/src/static/media/webvtt/Tda074.vtt deleted file mode 100644 index 88910f7..0000000 --- a/src/static/media/webvtt/Tda074.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.250 --> 00:01.420 -Tomorrow? - -00:02.280 --> 00:03.970 -Will tomorrow be okay? - -00:05.130 --> 00:07.320 -Am I going crazy? - -00:08.620 --> 00:12.170 -If I’m crazy, no one would want to be around me, would they? - -00:13.420 --> 00:16.760 -Who can I turn to for help? - -00:18.220 --> 00:20.020 -I can’t believe anyone. - -00:21.770 --> 00:24.620 -Help...Yoshida-kun. diff --git a/src/static/media/webvtt/Tda075.vtt b/src/static/media/webvtt/Tda075.vtt deleted file mode 100644 index ea2a659..0000000 --- a/src/static/media/webvtt/Tda075.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.000 --> 00:02.060 -I stopped using RML. - -00:03.020 --> 00:06.930 -I don’t know why, but I felt I had to. - -00:08.350 --> 00:10.460 -Yoshida-kun, I’m sorry. - -00:11.330 --> 00:16.640 -I sometimes worry that you stay with me because it has to do with your work. - -00:18.750 --> 00:20.600 -I want to see Yoshida-kun. - -00:21.600 --> 00:23.400 -I want to see him and kiss him. - -00:24.660 --> 00:27.130 -He knows that I feel this way. - -00:28.730 --> 00:30.570 -I want him to embrace me. diff --git a/src/static/media/webvtt/Tda076.vtt b/src/static/media/webvtt/Tda076.vtt deleted file mode 100644 index 47e6329..0000000 --- a/src/static/media/webvtt/Tda076.vtt +++ /dev/null @@ -1,28 +0,0 @@ -WEBVTT - -00:00.000 --> 00:06.620 -When I was organizing data again today, I had a sensation like the one I experienced while working with RML. - -00:07.280 --> 00:11.860 -I experienced bright white flashes of light pulsing through my head. - -00:12.460 --> 00:15.110 -I thought it was dangerous. - -00:16.710 --> 00:19.370 -It wasn’t as if I used the equipment incorrectly. - -00:20.750 --> 00:23.230 -I might have been mistaken to use it in the first place. - -00:24.440 --> 00:26.420 -Was it manufactured improperly? - -00:27.530 --> 00:28.530 -This is dangerous. - -00:28.880 --> 00:30.570 -I have to tell Yoshida-kun. - -00:31.330 --> 00:34.040 -Selling this machine is dangerous. diff --git a/src/static/media/webvtt/Tda077.vtt b/src/static/media/webvtt/Tda077.vtt deleted file mode 100644 index 4f1cc23..0000000 --- a/src/static/media/webvtt/Tda077.vtt +++ /dev/null @@ -1,31 +0,0 @@ -WEBVTT - -00:02.460 --> 00:07.040 -That’s it...if things continue this way, Lain will control me completely. - -00:08.000 --> 00:11.800 -Lain must have seen all of the data here. - -00:12.940 --> 00:14.340 -Why did she? - -00:15.640 --> 00:19.020 -Why is all of Lain’s life history stored here? - -00:19.680 --> 00:21.540 -I don’t understand anymore. - -00:25.400 --> 00:27.320 -I can hear the voices again. - -00:28.280 --> 00:30.300 -Not just voices. - -00:31.040 --> 00:34.200 -Yoshida-kun and the workers in the lab are looking at me from a distance. - -00:34.540 --> 00:36.300 -Why are you looking at me and laughing at me? - -00:36.300 --> 00:37.200 -Stop! diff --git a/src/static/media/webvtt/Tda078.vtt b/src/static/media/webvtt/Tda078.vtt deleted file mode 100644 index 1755699..0000000 --- a/src/static/media/webvtt/Tda078.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.620 --> 00:02.060 -Am I going nuts? - -00:03.090 --> 00:05.870 -I’m insecure unless I’m connected to the Net. - -00:07.100 --> 00:09.810 -Why am I bothering to write a diary? - -00:10.730 --> 00:12.560 -Who’ll want to read it? - -00:14.360 --> 00:17.000 -Probably...not me. diff --git a/src/static/media/webvtt/Tda079.vtt b/src/static/media/webvtt/Tda079.vtt deleted file mode 100644 index 464bcb4..0000000 --- a/src/static/media/webvtt/Tda079.vtt +++ /dev/null @@ -1,37 +0,0 @@ -WEBVTT - -00:01.880 --> 00:07.800 -It’s no good... I don’t know... what to do. - -00:09.400 --> 00:13.460 -Yoshida-kun... you’ve betrayed me, too? - -00:14.840 --> 00:17.400 -You were laughing at me from the beginning, weren’t you? - -00:17.730 --> 00:19.800 -You and all those jerks in the lab. - -00:21.240 --> 00:27.660 -I leaned on you and cried and told you what made me angry, and you took everything I confided in you and told everybody and laughed with them. - -00:29.660 --> 00:35.480 -I don’t want to believe this, but I caught you in the act. - -00:37.260 --> 00:39.620 -You were the only person I had, Yoshida-kun. - -00:41.220 --> 00:43.200 -You were just a shallow man. - -00:45.310 --> 00:47.350 -How can you be so dumb, Touko? - -00:52.000 --> 00:58.400 -Who is that? Is someone talking to me? That’s impossible. Nobody is here. - -01:00.130 --> 01:03.150 -It’s me. Touko. - -01:06.080 --> 01:13.350 -Touko? I’m Touko! Stop! Who’s trying to torment me like this? Please stop! diff --git a/src/static/media/webvtt/Tda080.vtt b/src/static/media/webvtt/Tda080.vtt deleted file mode 100644 index 76662cb..0000000 --- a/src/static/media/webvtt/Tda080.vtt +++ /dev/null @@ -1,16 +0,0 @@ -WEBVTT - -00:00.290 --> 00:01.690 -Lain, can you hear me? - -00:02.690 --> 00:04.750 -I know that you are reading this. - -00:06.040 --> 00:06.820 -You creepy girl. - -00:07.950 --> 00:10.030 -I will no longer treat you. - -00:11.080 --> 00:13.030 -I never want to see you again. diff --git a/src/static/media/webvtt/Tda081.vtt b/src/static/media/webvtt/Tda081.vtt deleted file mode 100644 index 8df2eb1..0000000 --- a/src/static/media/webvtt/Tda081.vtt +++ /dev/null @@ -1,31 +0,0 @@ -WEBVTT - -00:00.510 --> 00:05.080 -Doesn't everyone wish for someone to die sometime? - -00:05.820 --> 00:07.860 -And you’re saying that you can’t forgive me? - -00:09.100 --> 00:11.060 -You killed Professor Takashima, didn’t you? - -00:12.200 --> 00:14.080 -I had nothing to do with it. - -00:15.020 --> 00:16.910 -The police said that it wasn’t me. - -00:17.600 --> 00:19.020 -They think it was a suicide. - -00:20.260 --> 00:21.200 -Please. - -00:21.750 --> 00:22.710 -Help me. - -00:23.400 --> 00:24.710 -I understand. - -00:26.130 --> 00:30.970 -You’re a good girl, aren’t you, Lain? diff --git a/src/static/media/webvtt/Tda082.vtt b/src/static/media/webvtt/Tda082.vtt deleted file mode 100644 index a084292..0000000 --- a/src/static/media/webvtt/Tda082.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:00.210 --> 00:03.450 -Lain... isn’t this enough? - -00:04.330 --> 00:07.400 -Aren’t you content to see me miserable? - -00:08.020 --> 00:10.460 -You’re watching me, aren’t you? - -00:11.970 --> 00:16.040 -Please, please, stop. - -00:16.660 --> 00:17.680 -Forgive me. - -00:19.420 --> 00:21.680 -I can’t endure this anymore. - -00:22.820 --> 00:24.420 -I’m going crazy. - -00:25.710 --> 00:28.970 -Lain is behind all of this. - -00:30.330 --> 00:33.640 -What do you want, Lain? - -00:34.750 --> 00:35.750 -Tell me. - -00:36.480 --> 00:40.770 -I don’t know what the hell is what! diff --git a/src/static/media/webvtt/Tda083.vtt b/src/static/media/webvtt/Tda083.vtt deleted file mode 100644 index 7794499..0000000 --- a/src/static/media/webvtt/Tda083.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:00.240 --> 00:01.660 -Stop, Lain. - -00:02.380 --> 00:04.200 -What did I do to you? - -00:05.170 --> 00:06.430 -Forgive me. - -00:07.200 --> 00:07.920 -Please. - -00:09.290 --> 00:11.400 -I don't want to go crazy. - -00:12.420 --> 00:16.250 -If I lose my mind, I can't treat you. diff --git a/src/static/media/webvtt/Tda084.vtt b/src/static/media/webvtt/Tda084.vtt deleted file mode 100644 index a5358ae..0000000 --- a/src/static/media/webvtt/Tda084.vtt +++ /dev/null @@ -1,34 +0,0 @@ -WEBVTT - -00:00.490 --> 00:04.220 -Lain, is suicide the only thing left for me to do? - -00:05.930 --> 00:07.570 -Is there no other option? - -00:09.500 --> 00:12.140 -Do I have to die? - -00:13.980 --> 00:15.030 -No! - -00:16.080 --> 00:17.760 -I don’t want that! - -00:20.260 --> 00:22.150 -I don’t want anyone to control me. - -00:23.330 --> 00:24.610 -Who does? - -00:26.010 --> 00:27.630 -Aren’t you the same way, Lain? - -00:29.660 --> 00:31.930 -You were scared and scared and didn’t know what to do. - -00:33.360 --> 00:36.210 -Please Lain, help me. - -00:38.210 --> 00:38.750 -Please. diff --git a/src/static/media/webvtt/Tda085.vtt b/src/static/media/webvtt/Tda085.vtt deleted file mode 100644 index fcb1bc6..0000000 --- a/src/static/media/webvtt/Tda085.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.300 --> 00:02.360 -Who is "another" me? - -00:02.360 --> 00:03.920 -There’s only one of me! - -00:04.390 --> 00:06.610 -Why are you saying these things that make no sense? - -00:06.880 --> 00:11.520 -We can think the same way and make the same judgments, it doesn't mean you’re human. - -00:12.210 --> 00:14.410 -The only place where I exist is here. - -00:14.600 --> 00:17.180 -No matter where I go, I’m me. - -00:17.420 --> 00:18.800 -I am you. - -00:19.160 --> 00:25.930 -Stop it. Why is this happening to me? Is something wrong with me? No, nothing is wrong with me. diff --git a/src/static/media/webvtt/Tda086.vtt b/src/static/media/webvtt/Tda086.vtt deleted file mode 100644 index 32443a7..0000000 --- a/src/static/media/webvtt/Tda086.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.320 --> 00:04.680 -Lain, how long have you been keeping an eye on me? - -00:06.290 --> 00:07.910 -Was it since we first met? - -00:09.180 --> 00:14.890 -Or was it... I guess it makes no difference now. - -00:16.130 --> 00:19.830 -Am I going to be absorbed by you, Lain? - -00:21.070 --> 00:23.650 -Or can I remain me? - -00:25.240 --> 00:27.000 -Are you going to use me for something? - -00:28.500 --> 00:31.240 -Can I remain me? diff --git a/src/static/media/webvtt/Tda087.vtt b/src/static/media/webvtt/Tda087.vtt deleted file mode 100644 index 387d434..0000000 --- a/src/static/media/webvtt/Tda087.vtt +++ /dev/null @@ -1,19 +0,0 @@ -WEBVTT - -00:01.530 --> 00:03.900 -I don’t want to die! - -00:04.040 --> 00:05.760 -I don’t want to lose my body! - -00:05.760 --> 00:07.960 -I want to continue living in my body. - -00:08.470 --> 00:11.400 -I have a tremendous fear of losing my body. - -00:11.950 --> 00:16.180 -Maybe you can’t understand, but that’s how a normal human being feels. - -00:16.910 --> 00:20.790 -Please, Lain, help me. diff --git a/src/static/media/webvtt/Tda088.vtt b/src/static/media/webvtt/Tda088.vtt deleted file mode 100644 index e90d142..0000000 --- a/src/static/media/webvtt/Tda088.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:02.130 --> 00:13.320 -Is it just that I don’t know? I don’t want to know. Stop it. I don’t want to know. Stop it. Please. diff --git a/src/static/media/webvtt/Tda089.vtt b/src/static/media/webvtt/Tda089.vtt deleted file mode 100644 index 501b9c9..0000000 --- a/src/static/media/webvtt/Tda089.vtt +++ /dev/null @@ -1,22 +0,0 @@ -WEBVTT - -00:00.260 --> 00:04.110 -I can’t believe that you were that kind of kid. - -00:05.800 --> 00:08.760 -Lain, it’s not too late. - -00:09.630 --> 00:11.250 -Let’s fix this together. - -00:14.790 --> 00:15.880 -But that’s not it. - -00:16.770 --> 00:17.890 -It isn’t about fixing. - -00:19.000 --> 00:20.480 -It’s about being reborn. - -00:22.020 --> 00:23.080 -I am... diff --git a/src/static/media/webvtt/Tda090.vtt b/src/static/media/webvtt/Tda090.vtt deleted file mode 100644 index 9357659..0000000 --- a/src/static/media/webvtt/Tda090.vtt +++ /dev/null @@ -1,25 +0,0 @@ -WEBVTT - -00:00.520 --> 00:02.360 -It’s enough, now. - -00:03.960 --> 00:06.390 -Nothing holds meaning for me now. - -00:07.970 --> 00:10.450 -Crying, laughing, getting mad. - -00:10.990 --> 00:12.270 -Being betrayed. - -00:15.910 --> 00:18.580 -It doesn’t matter anymore if everything is a lie or if everything is the truth. - -00:21.870 --> 00:24.870 -Could I have some more data? - -00:26.390 --> 00:26.840 -Lain. - -00:27.970 --> 00:29.180 -I want to know you. diff --git a/src/static/media/webvtt/Tda091.vtt b/src/static/media/webvtt/Tda091.vtt deleted file mode 100644 index db45bd2..0000000 --- a/src/static/media/webvtt/Tda091.vtt +++ /dev/null @@ -1,40 +0,0 @@ -WEBVTT - -00:00.180 --> 00:02.170 -I accessed your data, Lain. - -00:02.930 --> 00:04.720 -You cracked it yourself, didn’t you? - -00:05.660 --> 00:09.180 -You’ve quickly gained access to data that I didn’t obtain myself. - -00:09.960 --> 00:12.040 -You’re the only person who could do that. - -00:13.400 --> 00:14.730 -What is this? - -00:15.300 --> 00:16.850 -What are you? - -00:17.360 --> 00:18.410 -Are you listening? - -00:18.690 --> 00:19.920 -You can hear me, can’t you? - -00:20.520 --> 00:22.170 -Why won’t you answer me? - -00:22.500 --> 00:24.850 -Is it that you no longer have use for me? - -00:25.210 --> 00:26.200 -That’s not true, is it? - -00:26.370 --> 00:28.600 -You’re teasing me, aren’t you? - -00:28.600 --> 00:29.240 -Or are you... diff --git a/src/static/media/webvtt/Tda092.vtt b/src/static/media/webvtt/Tda092.vtt deleted file mode 100644 index de4ceb3..0000000 --- a/src/static/media/webvtt/Tda092.vtt +++ /dev/null @@ -1,55 +0,0 @@ -WEBVTT - -00:02.730 --> 00:05.980 -The me that has a body will disappear, won’t it? - -00:07.610 --> 00:12.890 -My hands, my face, my hair. - -00:15.200 --> 00:19.660 -It’s sad that no one will touch my body again. - -00:21.740 --> 00:24.260 -Lain will be by my side, won’t she? - -00:26.290 --> 00:30.360 -I’ll be sad at first, so be by my side. - -00:32.530 --> 00:33.560 -Together. - -00:34.970 --> 00:38.760 -Continue to be with me forever, Lain. - -00:41.900 --> 00:44.680 -If I’m asleep, wake me. - -00:46.300 --> 00:48.130 -Let’s do a lot of playing together. - -00:49.280 --> 00:52.000 -Let’s keep an eye on everything. - -00:53.880 --> 00:57.770 -We’ll eliminate all trivial thoughts. - -00:59.080 --> 01:02.260 -Let’s find others to live with. - -01:03.100 --> 01:05.170 -We’ll find more friends. - -01:06.660 --> 01:11.250 -This is much too large a place for just two people. - -01:12.960 --> 01:15.120 -Don’t you want a boyfriend, Lain? - -01:17.170 --> 01:19.360 -I won’t have one for a while. - -01:22.730 --> 01:25.580 -Let’s eliminate everything trivial in the world. - -01:27.840 --> 01:36.480 -The only people in this world are Lain and me. diff --git a/src/static/media/webvtt/Xa0001.vtt b/src/static/media/webvtt/Xa0001.vtt deleted file mode 100644 index 3573e1e..0000000 --- a/src/static/media/webvtt/Xa0001.vtt +++ /dev/null @@ -1,4 +0,0 @@ -WEBVTT - -00:00.220 --> 00:01.650 -We'll be always together from now on. diff --git a/src/store.ts b/src/store.ts index 82815d4..052759f 100644 --- a/src/store.ts +++ b/src/store.ts @@ -107,6 +107,8 @@ type State = { keybindings: Record; + language: string; + inputCooldown: number; }; @@ -257,6 +259,8 @@ export const useStore = create( SELECT: "c", }, + language: "en", + inputCooldown: -1, } as State, (set) => ({ @@ -363,6 +367,8 @@ export const useStore = create( setKeybindings: (to: Record) => set(() => ({ keybindings: to })), + setLanguage: (to: string) => set(() => ({ language: to })), + restartGameState: () => set(() => ({ siteSaveState: { @@ -493,8 +499,8 @@ export const saveUserProgress = (state: UserSaveState) => localStorage.setItem("lainSaveState", JSON.stringify(state)); export const isPolytanFullyUnlocked = () => { - const polytanProgress = useStore.getState().gameProgress - .polytan_unlocked_parts; + const polytanProgress = + useStore.getState().gameProgress.polytan_unlocked_parts; for (const key in polytanProgress) if (!polytanProgress[key as keyof typeof polytanProgress]) return false;