-
Notifications
You must be signed in to change notification settings - Fork 18
/
Heikinchi OP.ass
7216 lines (7213 loc) · 943 KB
/
Heikinchi OP.ass
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[Script Info]
; Script generated by Aegisub 3.2.2
; http://www.aegisub.org/
Synch Point: 0
ScriptType: v4.00+
PlayResX: 1920
PlayResY: 1080
Timer: 100.0
YCbCr Matrix: TV.709
WrapStyle: 0
ScaledBorderAndShadow: yes
[Aegisub Project Garbage]
Last Style Storage: Default
Audio File: [igzm] Watashi Nouryoku wa Heikinchi de tte Itta yo ne! - 08 [1080p][HEVC x265 10bit].mkv
Video File: [igzm] Watashi Nouryoku wa Heikinchi de tte Itta yo ne! - 08 [1080p][HEVC x265 10bit].mkv
Video AR Mode: 4
Video AR Value: 1.777778
Video Zoom Percent: 0.125000
Active Line: 45
Video Position: 1853
[V4+ Styles]
Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut, ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, Encoding
Style: OPCN 2-furigana,方正姚体_GBK,18.5,&H00FFFFFF,&HFF000000,&H006B2AFD,&H00000000,0,0,0,0,150,100,2,0,1,1,0,2,0,0,65,1
Style: OPCN-furigana,方正姚体_GBK,18.5,&H00FFFFFF,&HFF000000,&H006B2AFD,&H00000000,0,0,0,0,150,100,2,0,1,1,0,2,0,0,15,1
Style: OPJP 2-furigana,FOT-Chiaro Std B,27.5,&H00FFFFFF,&HFF000000,&H006B2AFD,&H00000000,0,0,0,0,100,100,0,0,1,1,0,8,0,0,65,1
Style: OPJP-furigana,FOT-Chiaro Std B,22.5,&H00FFFFFF,&HFF000000,&H006B2AFD,&H00000000,0,0,0,0,100,100,10,0,1,1,0,8,0,0,15,1
Style: Default-furigana,方正准圆_GBK,32.5,&H00FFFFFF,&H000B24FF,&H0028385B,&H0062605E,0,0,0,0,100,100,3,0,1,2,0,2,10,10,20,1
Style: Default,方正准圆_GBK,65,&H00FFFFFF,&H000B24FF,&H0028385B,&H0062605E,0,0,0,0,100,100,3,0,1,4,0,2,10,10,20,1
Style: OPJP,FOT-Chiaro Std B,45,&H00FFFFFF,&HFF000000,&H006B2AFD,&H00000000,0,0,0,0,100,100,10,0,1,2,0,8,0,0,15,1
Style: OPJP 2,FOT-Chiaro Std B,55,&H00FFFFFF,&HFF000000,&H006B2AFD,&H00000000,0,0,0,0,100,100,0,0,1,2,0,8,0,0,65,1
Style: OPCN,方正姚体_GBK,37,&H00FFFFFF,&HFF000000,&H006B2AFD,&H00000000,0,0,0,0,150,100,2,0,1,2,0,2,0,0,15,1
Style: OPCN 2,方正姚体_GBK,37,&H00FFFFFF,&HFF000000,&H006B2AFD,&H00000000,0,0,0,0,150,100,2,0,1,2,0,2,0,0,65,1
[Events]
Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text
Comment: 0,0:00:00.00,0:00:00.00,Default,,0,0,0,,---------------OPJP---------------
Comment: 1,0:00:00.00,0:00:00.00,OPJP,,0,0,0,template char noblank,!retime("start2syl",($si-1)*30-200,0)!{\an5\pos($center,$middle)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}
Comment: 1,0:00:00.00,0:00:00.00,OPJP,,0,0,0,template char noblank,!maxloop(10)!!retime("syl",(j-1)*$sdur*0.1,j*$sdur*0.1-$sdur)!{\an5\pos($center,$middle)\1c&H6B2AFD&\blur3\iclip(m $center !$middle-16-(j-1)*8! l !$center+6+(j-1)*3! $middle l $center !$middle+16+(j-1)*8! l !$center-6-(j-1)*3! $middle)\fs55}
Comment: 0,0:00:00.00,0:00:00.00,OPJP,,0,0,0,template char noblank,!retime("syl",0,0)!{\an5\pos($center,$middle)\blur3\fs55}
Comment: 1,0:00:00.00,0:00:00.00,OPJP,,0,0,0,template char noblank,!retime("syl2end",0,($si-1)*30+200)!{\an5\pos($center,$middle)\blur3\fs55\fad(0,200)}
Comment: 0,0:01:17.26,0:01:18.14,OPJP,,0,0,0,karaoke,{\k36}笑っ{\k34}ちゃい{\k18}な!
Dialogue: 0,0:01:18.16,0:01:18.94,OPJP 2,,0,0,0,,{\blur3\fad(200,200)}わっほーわっはー!
Comment: 0,0:01:18.94,0:01:19.86,OPJP,,0,0,0,karaoke,{\k36}笑っ{\k32}ちゃっ{\k24}て
Dialogue: 0,0:01:19.89,0:01:20.68,OPJP 2,,0,0,0,karaoke,{\blur3\fad(200,200)}何でもなりそう!
Comment: 0,0:01:20.68,0:01:21.56,OPJP,,0,0,0,karaoke,{\k28}笑っ{\k27}ちゃい{\k12}な{\k21}よ!
Dialogue: 0,0:01:21.56,0:01:22.51,OPJP 2,,0,0,0,,{\blur3\fad(200,200)}わっほーわっはー
Comment: 0,0:01:22.51,0:01:24.19,OPJP,,0,0,0,karaoke,{\k32}今日{\k22}は{\k30}元{\k16}気{\k26}で{\k15}す{\k27}か?
Comment: 0,0:01:24.19,0:01:29.31,OPJP,,0,0,0,karaoke,{\k50}頼{\k16}り {\k42}頼{\k13}ら{\k20}れ{\k28}て {\k34}ス{\k22}キ{\k24}で{\k46}す{\k55}か{\k21}れ{\k141}て
Comment: 0,0:01:29.63,0:01:37.42,OPJP,,0,0,0,karaoke,{\k36}こ{\k42}れっ{\k12}て{\k64}最{\k134}高{\k82}!{\k40}思{\k21}わ{\k89}ず{\k63}叫{\k19}び{\k34}た{\k23}く{\k29}な{\k27}る{\k64}よ
Comment: 0,0:01:37.42,0:01:43.42,OPJP,,0,0,0,karaoke,{\k39}ね{\k51}え {\k37}一{\k34}人{\k91}で{\k36} {\k102}戦{\k28}う{\k36}よ{\k21}り{\k11}も{\k114}さ
Comment: 0,0:01:44.08,0:01:47.51,OPJP,,0,0,0,karaoke,{\k46}一{\k32}緒{\k24}に{\k18}い{\k12}た{\k18}い{\k2} {\k44}心{\k26}配{\k26}ばっ{\k28}か{\k45}し{\k15}て{\k7}も
Comment: 0,0:01:47.51,0:01:48.36,OPJP,,0,0,0,karaoke,{\k29}笑っ{\k31}ちゃい{\k25}な!
Dialogue: 0,0:01:48.38,0:01:49.20,OPJP 2,,0,0,0,,{\blur3\fad(200,200)}わっほーわっはー!
Comment: 0,0:01:49.20,0:01:50.08,OPJP,,0,0,0,karaoke,{\k31}笑っ{\k39}ちゃっ{\k18}て {\k0}
Dialogue: 0,0:01:50.08,0:01:50.87,OPJP 2,,0,0,0,,{\blur3\fad(200,200)}何とかなりそう!
Comment: 0,0:01:50.87,0:01:51.79,OPJP,,0,0,0,karaoke,{\k27}笑っ{\k30}ちゃい{\k12}な{\k23}よ!
Dialogue: 0,0:01:51.79,0:01:52.71,OPJP 2,,0,0,0,,{\blur3\fad(200,200)}わっほーわっはー!
Comment: 0,0:01:52.71,0:01:54.15,OPJP,,0,0,0,karaoke,{\k36}もっ{\k18}と{\k33}冒{\k36}険{\k10}しよ{\k11}う
Comment: 0,0:01:54.16,0:01:57.69,OPJP,,0,0,0,karaoke,{\k34}正{\k26}直{\k28}辛{\k8}い{\k19}と{\k24}き{\k22}に{\k10}は{\k18} {\k24}泣{\k23}くん{\k12}で{\k16}も{\k27}いいん{\k12}じゃ{\k24}な{\k23}い{\k3}か
Comment: 0,0:01:57.69,0:01:58.44,OPJP,,0,0,0,karaoke,{\k33}笑っ{\k32}た{\k10}な! {\k0}
Dialogue: 0,0:01:58.45,0:01:59.45,OPJP 2,,0,0,0,,{\blur3\fad(200,200)}わっほーわっはー!
Comment: 0,0:01:59.45,0:02:02.79,OPJP,,0,0,0,karaoke,{\k22}立{\k28}ち{\k82}直{\k25}る {\k23}元{\k10}気{\k22}に{\k10}な{\k12}れ{\k32}みん{\k13}な{\k23}みん{\k32}な
Comment: 0,0:02:02.85,0:02:07.29,OPJP,,0,0,0,karaoke,{\k21}こ{\k11}の{\k16}世{\k26}界{\k28}生{\k26}き{\k20}て{\k127}く{\k27}{\k21}仲{\k21}間{\k35}だ{\k34}も{\k31}ん
Comment: 0,0:02:07.72,0:02:10.92,OPJP,,0,0,0,karaoke,{\k26}チャン{\k42}ス{\k17}も{\k17}ハッ{\k28}ピー{\k13}も{\k49}待っ{\k15}て{\k19}だ{\k28}け{\k16}来{\k8}な{\k18}い{\k24}よ
Comment: 0,0:02:10.96,0:02:13.53,OPJP,,0,0,0,karaoke,{\k50}捕{\k19}ま{\k28}え{\k17}な{\k18}く{\k30}ちゃ{\k95}ね!
Dialogue: 0,0:02:13.56,0:02:14.21,OPJP 2,,0,0,0,,{\blur3\fad(200,200)}ですねー!
Comment: 0,0:02:14.27,0:02:17.76,OPJP,,0,0,0,karaoke,{\k14}そ{\k36}う{\k14}い{\k36}う{\k25}こ{\k18}と{\k16}が{\k43}分{\k31}かっ{\k26}て{\k26}き{\k24}た{\k40}よ
Comment: 0,0:02:17.91,0:02:20.20,OPJP,,0,0,0,karaoke,{\k23}明{\k26}日{\k25}は{\k23}ど{\k20}こ{\k19}行{\k27}こ{\k66}う?
Dialogue: 0,0:02:20.25,0:02:20.95,OPJP 2,,0,0,0,,{\blur3\fad(200,200)}まかせなさい!
Comment: 0,0:02:20.98,0:02:24.30,OPJP,,0,0,0,karaoke,{\k50}真{\k44}剣{\k43}だっ{\k20}て{\k46}ふ{\k21}ざ{\k15}け{\k28}て{\k44}たっ{\k21}て
Comment: 0,0:02:24.37,0:02:26.91,OPJP,,0,0,0,karaoke,{\k29}負{\k28}け{\k20}た{\k26}く{\k19}な{\k22}い{\k23}か{\k87}ら {\k0}
Dialogue: 0,0:02:26.91,0:02:27.75,OPJP 2,,0,0,0,,{\blur3\fad(200,200)}がんばっちゃう?
Comment: 0,0:02:27.75,0:02:31.18,OPJP,,0,0,0,karaoke,{\k49}本{\k41}気{\k20}出{\k22}す{\k16}よ {\k28}そ{\k28}ろ{\k28}そ{\k28}ろ{\k20}出{\k23}す{\k40}よ
Comment: 0,0:02:31.30,0:02:36.18,OPJP,,0,0,0,karaoke,{\k31}もっ{\k24}と{\k31}楽{\k33}し{\k18}く{\k168}ね!{\k183}OK!
Dialogue: 0,0:02:34.58,0:02:36.18,OPJP 2,,0,0,0,,{\blur3\fad(200,200)}スマイルスキル=スキスキル
Comment: 0,0:02:36.18,0:02:37.06,OPJP,,0,0,0,karaoke,{\k32}笑っ{\k36}ちゃい{\k20}な!
Dialogue: 0,0:02:37.07,0:02:37.88,OPJP 2,,0,0,0,,{\blur3\fad(200,200)}わっほーわっはー!
Comment: 0,0:02:37.88,0:02:38.75,OPJP,,0,0,0,karaoke,{\k30}笑っ{\k39}ちゃっ{\k18}て {\k0}
Dialogue: 0,0:02:38.77,0:02:39.53,OPJP 2,,0,0,0,,{\blur3\fad(200,200)}何とかなりそう!
Comment: 0,0:02:39.53,0:02:40.38,OPJP,,0,0,0,karaoke,{\k29}笑っ{\k30}ちゃい{\k9}な{\k17}よ! {\k0}
Dialogue: 0,0:02:40.40,0:02:41.44,OPJP 2,,0,0,0,,{\blur3\fad(200,200)}わっほーわっはー!
Comment: 0,0:02:41.53,0:02:44.06,OPJP,,0,0,0,karaoke,{\k22}今日{\k15}も{\k29}元{\k11}気{\k31}で{\k16}す{\k10}よ!{\k12}ス{\k42}マ{\k43}イ{\k22}ル!
Comment: 0,0:01:15.18,0:01:17.18,OPCN,,0,0,0,,---------------OPCN---------------
Comment: 0,0:00:00.00,0:00:00.00,OPCN,,0,0,0,template char noblank,!retime("line",($si-1)*30-200,-$ldur)!{\an5\pos($center,$middle)\blur3\fs47}
Comment: 1,0:00:00.00,0:00:00.00,OPCN,,0,0,0,template char noblank,!maxloop(10)!!retime("line",(j-1)*20+($si-1)*30-200,j*20+($si-1)*30-$ldur)!{\an5\pos($center,$middle)\1c&H6B2AFD&\blur3\iclip(m $center !$middle-16-(j-1)*8! l !$center+6+(j-1)*3! $middle l $center !$middle+16+(j-1)*8! l !$center-6-(j-1)*3! $middle)\fs47}
Comment: 0,0:00:00.00,0:00:00.00,OPCN,,0,0,0,template char noblank,!retime("line",0,($si-1)*30+200)!{\an5\pos($center,$middle)\blur3\fs47\fad(0,200)}
Comment: 0,0:00:00.00,0:00:00.00,OPCN 2,,0,0,0,template char noblank,!retime("line",0,0)!{\an5\pos($center,$middle)\blur3\fs47\fad(200,200)}
Comment: 0,0:01:17.26,0:01:18.14,OPCN,,0,0,0,karaoke,{\k12}为{\k12}什{\k12}么{\k12}不{\k12}笑{\k12}呢{\k12}!
Comment: 0,0:01:18.16,0:01:18.94,OPCN 2,,0,0,0,karaoke,{\k20}哇{\k20}哈{\k20}哈{\k20}!
Comment: 0,0:01:18.94,0:01:19.86,OPCN,,0,0,0,karaoke,{\k23}请{\k23}笑{\k23}一{\k23}个
Comment: 0,0:01:19.89,0:01:20.68,OPCN 2,,0,0,0,karaoke,{\k10}什{\k10}么{\k10}都{\k10}不{\k10}算{\k10}问{\k10}题{\k10}!
Comment: 0,0:01:20.68,0:01:21.56,OPCN,,0,0,0,karaoke,{\k12}要{\k12}笑{\k12}出{\k12}来{\k12}了{\k12}呢{\k12}!
Comment: 0,0:01:21.56,0:01:22.51,OPCN 2,,0,0,0,karaoke,{\k24}哇{\k24}哈{\k24}哈{\k24}!
Comment: 0,0:01:22.51,0:01:24.19,OPCN,,0,0,0,karaoke,{\k21}你{\k21}今{\k21}天{\k21}过{\k21}得{\k21}好{\k21}吗{\k21}?
Comment: 0,0:01:24.19,0:01:29.31,OPCN,,0,0,0,karaoke,{\k36}喜{\k36}欢{\k36}被{\k36}依{\k36}赖{\k36} {\k36}相{\k36}对{\k36}的{\k36}也{\k36}喜{\k36}欢{\k36}依{\k36}赖
Comment: 0,0:01:29.63,0:01:37.42,OPCN,,0,0,0,karaoke,{\k46}这{\k46}不{\k46}是{\k46}很{\k46}棒{\k46}了{\k46}!{\k46}不{\k46}假{\k46}思{\k46}索{\k46}的{\k46}大{\k46}声{\k46}地{\k46}呼{\k46}喊
Comment: 0,0:01:37.42,0:01:43.42,OPCN,,0,0,0,karaoke,{\k54}呐{\k54} {\k54}比{\k54}起{\k54}孤{\k54}单{\k54}一{\k54}人{\k54}的{\k54}战{\k54}斗
Comment: 0,0:01:44.08,0:01:47.51,OPCN,,0,0,0,karaoke,{\k24}更{\k24}想{\k24}在{\k24}一{\k24}起{\k24} {\k24}虽{\k24}然{\k24}总{\k24}是{\k24}让{\k24}我{\k24}担{\k24}心
Comment: 0,0:01:47.51,0:01:48.36,OPCN,,0,0,0,karaoke,{\k12}为{\k12}什{\k12}么{\k12}不{\k12}笑{\k12}呢{\k12}!
Comment: 0,0:01:48.38,0:01:49.20,OPCN 2,,0,0,0,karaoke,{\k20}哇{\k20}哈{\k20}哈{\k20}!
Comment: 0,0:01:49.20,0:01:50.08,OPCN,,0,0,0,karaoke,{\k29}笑{\k29}一{\k29}个
Comment: 0,0:01:50.08,0:01:50.87,OPCN 2,,0,0,0,karaoke,{\k10}什{\k10}么{\k10}都{\k10}不{\k10}算{\k10}问{\k10}题{\k10}!
Comment: 0,0:01:50.87,0:01:51.79,OPCN,,0,0,0,karaoke,{\k13}要{\k13}笑{\k13}出{\k13}来{\k13}了{\k13}呢{\k13}!
Comment: 0,0:01:51.79,0:01:52.71,OPCN 2,,0,0,0,karaoke,{\k23}哇{\k23}哈{\k23}哈{\k23}!
Comment: 0,0:01:52.71,0:01:54.15,OPCN,,0,0,0,karaoke,{\k20}再{\k20}一{\k20}起{\k20}去{\k20}探{\k20}险{\k20}吧
Comment: 0,0:01:54.16,0:01:57.69,OPCN,,0,0,0,karaoke,{\k24}真{\k24}的{\k24}痛{\k24}苦{\k24}时{\k24} {\k24}哭{\k24}一{\k24}下{\k24}不{\k24}也{\k24}挺{\k24}好{\k24}的{\k24}吗
Comment: 0,0:01:57.69,0:01:58.44,OPCN,,0,0,0,karaoke,{\k25}笑{\k25}了{\k25}!
Comment: 0,0:01:58.45,0:01:59.45,OPCN 2,,0,0,0,karaoke,{\k25}哇{\k25}哈{\k25}哈{\k25}!
Comment: 0,0:01:59.45,0:02:02.79,OPCN,,0,0,0,karaoke,{\k28}重{\k28}新{\k28}站{\k28}起{\k28}来{\k28} {\k28}大{\k28}家{\k28}都{\k28}振{\k28}作{\k28}点
Comment: 0,0:02:02.85,0:02:07.29,OPCN,,0,0,0,karaoke,{\k30}我{\k30}们{\k30}都{\k30}是{\k30}一{\k30}同{\k30}生{\k30}活{\k30}在{\k30}这{\k30}世{\k30}界{\k30}的{\k30}伙{\k30}伴
Comment: 0,0:02:07.72,0:02:10.92,OPCN,,0,0,0,karaoke,{\k20}机{\k20}会{\k20}和{\k20}快{\k20}乐{\k20}并{\k20}不{\k20}是{\k20}光{\k20}等{\k20}待{\k20}就{\k20}会{\k20}到{\k20}来{\k20}的
Comment: 0,0:02:10.96,0:02:13.53,OPCN,,0,0,0,karaoke,{\k28}这{\k28}样{\k28}是{\k28}抓{\k28}不{\k28}住{\k28}的{\k28}哦{\k28}!
Comment: 0,0:02:13.56,0:02:14.21,OPCN 2,,0,0,0,karaoke,{\k32}也{\k32}对
Comment: 0,0:02:14.27,0:02:17.76,OPCN,,0,0,0,karaoke,{\k39}这{\k39}种{\k39}事{\k39}我{\k39}当{\k39}然{\k39}也{\k39}明{\k39}白
Comment: 0,0:02:17.91,0:02:20.20,OPCN,,0,0,0,karaoke,{\k33}明{\k33}天{\k33}该{\k33}去{\k33}哪{\k33}里{\k33}?
Comment: 0,0:02:20.25,0:02:20.95,OPCN 2,,0,0,0,karaoke,{\k14}交{\k14}给{\k14}我{\k14}了{\k14}!
Comment: 0,0:02:20.98,0:02:24.30,OPCN,,0,0,0,karaoke,{\k37}认{\k37}真{\k37}也{\k37}好{\k37} {\k37}胡{\k37}闹{\k37}也{\k37}好
Comment: 0,0:02:24.37,0:02:26.91,OPCN,,0,0,0,karaoke,{\k36}我{\k36}也{\k36}不{\k36}想{\k36}认{\k36}输{\k36}呢
Comment: 0,0:02:26.91,0:02:27.75,OPCN,,0,0,0,karaoke,{\k14}再{\k14}加{\k14}把{\k14}劲{\k14}吗{\k14}?
Comment: 0,0:02:27.75,0:02:31.18,OPCN,,0,0,0,karaoke,{\k23}要{\k23}拿{\k23}出{\k23}真{\k23}本{\k23}事{\k23}了{\k23} {\k23}就{\k23}要{\k23}放{\k23}出{\k23}来{\k23}了{\k23}哟
Comment: 0,0:02:31.30,0:02:36.18,OPCN,,0,0,0,karaoke,{\k49}再{\k49}让{\k49}我{\k49}尽{\k49}兴{\k49}一{\k49}点{\k49}吧{\k49}!{\k49}OK!
Comment: 0,0:02:34.58,0:02:36.18,OPCN 2,,0,0,0,karaoke,{\k18}微{\k18}笑{\k18}等{\k18}于{\k18}最{\k18}强{\k18}的{\k18}技{\k18}能
Comment: 0,0:02:36.18,0:02:37.06,OPCN,,0,0,0,karaoke,{\k12}为{\k12}什{\k12}么{\k12}不{\k12}笑{\k12}呢{\k12}!
Comment: 0,0:02:37.07,0:02:37.88,OPCN 2,,0,0,0,karaoke,{\k20}哇{\k20}哈{\k20}哈{\k20}!
Comment: 0,0:02:37.88,0:02:38.75,OPCN,,0,0,0,karaoke,{\k22}请{\k22}笑{\k22}一{\k22}个
Comment: 0,0:02:38.77,0:02:39.53,OPCN 2,,0,0,0,karaoke,{\k10}什{\k10}么{\k10}都{\k10}不{\k10}算{\k10}问{\k10}题{\k10}!
Comment: 0,0:02:39.53,0:02:40.38,OPCN,,0,0,0,karaoke,{\k12}要{\k12}笑{\k12}出{\k12}来{\k12}了{\k12}呢{\k12}!
Comment: 0,0:02:40.40,0:02:41.44,OPCN 2,,0,0,0,karaoke,{\k26}哇{\k26}哈{\k26}哈{\k26}!
Comment: 0,0:02:41.53,0:02:44.06,OPCN,,0,0,0,karaoke,{\k23}我{\k23}今{\k23}天{\k23}也{\k23}过{\k23}得{\k23}很{\k23}好{\k23}!{\k23}微{\k23}笑
Dialogue: 1,0:01:17.06,0:01:17.26,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}笑
Dialogue: 1,0:01:17.06,0:01:17.26,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}っ
Dialogue: 1,0:01:17.26,0:01:17.29,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 22 l 825 38 l 819 54 l 813 38)\fs55}笑
Dialogue: 1,0:01:17.29,0:01:17.33,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 14 l 828 38 l 819 62 l 810 38)\fs55}笑
Dialogue: 1,0:01:17.33,0:01:17.36,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 6 l 831 38 l 819 70 l 807 38)\fs55}笑
Dialogue: 1,0:01:17.36,0:01:17.40,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -2 l 834 38 l 819 78 l 804 38)\fs55}笑
Dialogue: 1,0:01:17.40,0:01:17.44,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -10 l 837 38 l 819 86 l 801 38)\fs55}笑
Dialogue: 1,0:01:17.44,0:01:17.47,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -18 l 840 38 l 819 94 l 798 38)\fs55}笑
Dialogue: 1,0:01:17.47,0:01:17.51,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -26 l 843 38 l 819 102 l 795 38)\fs55}笑
Dialogue: 1,0:01:17.51,0:01:17.54,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -34 l 846 38 l 819 110 l 792 38)\fs55}笑
Dialogue: 1,0:01:17.54,0:01:17.58,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -42 l 849 38 l 819 118 l 789 38)\fs55}笑
Dialogue: 1,0:01:17.58,0:01:17.62,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -50 l 852 38 l 819 126 l 786 38)\fs55}笑
Dialogue: 1,0:01:17.26,0:01:17.29,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 22 l 872 38 l 866 54 l 860 38)\fs55}っ
Dialogue: 1,0:01:17.29,0:01:17.33,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 14 l 875 38 l 866 62 l 857 38)\fs55}っ
Dialogue: 1,0:01:17.33,0:01:17.36,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 6 l 878 38 l 866 70 l 854 38)\fs55}っ
Dialogue: 1,0:01:17.36,0:01:17.40,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -2 l 881 38 l 866 78 l 851 38)\fs55}っ
Dialogue: 1,0:01:17.40,0:01:17.44,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -10 l 884 38 l 866 86 l 848 38)\fs55}っ
Dialogue: 1,0:01:17.44,0:01:17.47,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -18 l 887 38 l 866 94 l 845 38)\fs55}っ
Dialogue: 1,0:01:17.47,0:01:17.51,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -26 l 890 38 l 866 102 l 842 38)\fs55}っ
Dialogue: 1,0:01:17.51,0:01:17.54,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -34 l 893 38 l 866 110 l 839 38)\fs55}っ
Dialogue: 1,0:01:17.54,0:01:17.58,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -42 l 896 38 l 866 118 l 836 38)\fs55}っ
Dialogue: 1,0:01:17.58,0:01:17.62,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -50 l 899 38 l 866 126 l 833 38)\fs55}っ
Dialogue: 0,0:01:17.26,0:01:17.62,OPJP,,0,0,0,fx,{\an5\pos(819,38)\blur3\fs55}笑
Dialogue: 0,0:01:17.26,0:01:17.62,OPJP,,0,0,0,fx,{\an5\pos(866,38)\blur3\fs55}っ
Dialogue: 1,0:01:17.62,0:01:18.34,OPJP,,0,0,0,fx,{\an5\pos(819,38)\blur3\fs55\fad(0,200)}笑
Dialogue: 1,0:01:17.62,0:01:18.34,OPJP,,0,0,0,fx,{\an5\pos(866,38)\blur3\fs55\fad(0,200)}っ
Dialogue: 1,0:01:17.09,0:01:17.62,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}ち
Dialogue: 1,0:01:17.09,0:01:17.62,OPJP,,0,0,0,fx,{\an5\pos(960,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}ゃ
Dialogue: 1,0:01:17.09,0:01:17.62,OPJP,,0,0,0,fx,{\an5\pos(1007,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}い
Dialogue: 1,0:01:17.62,0:01:17.65,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 22 l 919 38 l 913 54 l 907 38)\fs55}ち
Dialogue: 1,0:01:17.65,0:01:17.68,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 14 l 922 38 l 913 62 l 904 38)\fs55}ち
Dialogue: 1,0:01:17.68,0:01:17.72,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 6 l 925 38 l 913 70 l 901 38)\fs55}ち
Dialogue: 1,0:01:17.72,0:01:17.75,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -2 l 928 38 l 913 78 l 898 38)\fs55}ち
Dialogue: 1,0:01:17.75,0:01:17.79,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -10 l 931 38 l 913 86 l 895 38)\fs55}ち
Dialogue: 1,0:01:17.79,0:01:17.82,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -18 l 934 38 l 913 94 l 892 38)\fs55}ち
Dialogue: 1,0:01:17.82,0:01:17.85,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -26 l 937 38 l 913 102 l 889 38)\fs55}ち
Dialogue: 1,0:01:17.85,0:01:17.89,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -34 l 940 38 l 913 110 l 886 38)\fs55}ち
Dialogue: 1,0:01:17.89,0:01:17.92,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -42 l 943 38 l 913 118 l 883 38)\fs55}ち
Dialogue: 1,0:01:17.92,0:01:17.96,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -50 l 946 38 l 913 126 l 880 38)\fs55}ち
Dialogue: 1,0:01:17.62,0:01:17.65,OPJP,,0,0,0,fx,{\an5\pos(960,38)\1c&H6B2AFD&\blur3\iclip(m 960 22 l 966 38 l 960 54 l 954 38)\fs55}ゃ
Dialogue: 1,0:01:17.65,0:01:17.68,OPJP,,0,0,0,fx,{\an5\pos(960,38)\1c&H6B2AFD&\blur3\iclip(m 960 14 l 969 38 l 960 62 l 951 38)\fs55}ゃ
Dialogue: 1,0:01:17.68,0:01:17.72,OPJP,,0,0,0,fx,{\an5\pos(960,38)\1c&H6B2AFD&\blur3\iclip(m 960 6 l 972 38 l 960 70 l 948 38)\fs55}ゃ
Dialogue: 1,0:01:17.72,0:01:17.75,OPJP,,0,0,0,fx,{\an5\pos(960,38)\1c&H6B2AFD&\blur3\iclip(m 960 -2 l 975 38 l 960 78 l 945 38)\fs55}ゃ
Dialogue: 1,0:01:17.75,0:01:17.79,OPJP,,0,0,0,fx,{\an5\pos(960,38)\1c&H6B2AFD&\blur3\iclip(m 960 -10 l 978 38 l 960 86 l 942 38)\fs55}ゃ
Dialogue: 1,0:01:17.79,0:01:17.82,OPJP,,0,0,0,fx,{\an5\pos(960,38)\1c&H6B2AFD&\blur3\iclip(m 960 -18 l 981 38 l 960 94 l 939 38)\fs55}ゃ
Dialogue: 1,0:01:17.82,0:01:17.85,OPJP,,0,0,0,fx,{\an5\pos(960,38)\1c&H6B2AFD&\blur3\iclip(m 960 -26 l 984 38 l 960 102 l 936 38)\fs55}ゃ
Dialogue: 1,0:01:17.85,0:01:17.89,OPJP,,0,0,0,fx,{\an5\pos(960,38)\1c&H6B2AFD&\blur3\iclip(m 960 -34 l 987 38 l 960 110 l 933 38)\fs55}ゃ
Dialogue: 1,0:01:17.89,0:01:17.92,OPJP,,0,0,0,fx,{\an5\pos(960,38)\1c&H6B2AFD&\blur3\iclip(m 960 -42 l 990 38 l 960 118 l 930 38)\fs55}ゃ
Dialogue: 1,0:01:17.92,0:01:17.96,OPJP,,0,0,0,fx,{\an5\pos(960,38)\1c&H6B2AFD&\blur3\iclip(m 960 -50 l 993 38 l 960 126 l 927 38)\fs55}ゃ
Dialogue: 1,0:01:17.62,0:01:17.65,OPJP,,0,0,0,fx,{\an5\pos(1007,38)\1c&H6B2AFD&\blur3\iclip(m 1007 22 l 1013 38 l 1007 54 l 1001 38)\fs55}い
Dialogue: 1,0:01:17.65,0:01:17.68,OPJP,,0,0,0,fx,{\an5\pos(1007,38)\1c&H6B2AFD&\blur3\iclip(m 1007 14 l 1016 38 l 1007 62 l 998 38)\fs55}い
Dialogue: 1,0:01:17.68,0:01:17.72,OPJP,,0,0,0,fx,{\an5\pos(1007,38)\1c&H6B2AFD&\blur3\iclip(m 1007 6 l 1019 38 l 1007 70 l 995 38)\fs55}い
Dialogue: 1,0:01:17.72,0:01:17.75,OPJP,,0,0,0,fx,{\an5\pos(1007,38)\1c&H6B2AFD&\blur3\iclip(m 1007 -2 l 1022 38 l 1007 78 l 992 38)\fs55}い
Dialogue: 1,0:01:17.75,0:01:17.79,OPJP,,0,0,0,fx,{\an5\pos(1007,38)\1c&H6B2AFD&\blur3\iclip(m 1007 -10 l 1025 38 l 1007 86 l 989 38)\fs55}い
Dialogue: 1,0:01:17.79,0:01:17.82,OPJP,,0,0,0,fx,{\an5\pos(1007,38)\1c&H6B2AFD&\blur3\iclip(m 1007 -18 l 1028 38 l 1007 94 l 986 38)\fs55}い
Dialogue: 1,0:01:17.82,0:01:17.85,OPJP,,0,0,0,fx,{\an5\pos(1007,38)\1c&H6B2AFD&\blur3\iclip(m 1007 -26 l 1031 38 l 1007 102 l 983 38)\fs55}い
Dialogue: 1,0:01:17.85,0:01:17.89,OPJP,,0,0,0,fx,{\an5\pos(1007,38)\1c&H6B2AFD&\blur3\iclip(m 1007 -34 l 1034 38 l 1007 110 l 980 38)\fs55}い
Dialogue: 1,0:01:17.89,0:01:17.92,OPJP,,0,0,0,fx,{\an5\pos(1007,38)\1c&H6B2AFD&\blur3\iclip(m 1007 -42 l 1037 38 l 1007 118 l 977 38)\fs55}い
Dialogue: 1,0:01:17.92,0:01:17.96,OPJP,,0,0,0,fx,{\an5\pos(1007,38)\1c&H6B2AFD&\blur3\iclip(m 1007 -50 l 1040 38 l 1007 126 l 974 38)\fs55}い
Dialogue: 0,0:01:17.62,0:01:17.96,OPJP,,0,0,0,fx,{\an5\pos(913,38)\blur3\fs55}ち
Dialogue: 0,0:01:17.62,0:01:17.96,OPJP,,0,0,0,fx,{\an5\pos(960,38)\blur3\fs55}ゃ
Dialogue: 0,0:01:17.62,0:01:17.96,OPJP,,0,0,0,fx,{\an5\pos(1007,38)\blur3\fs55}い
Dialogue: 1,0:01:17.96,0:01:18.37,OPJP,,0,0,0,fx,{\an5\pos(913,38)\blur3\fs55\fad(0,200)}ち
Dialogue: 1,0:01:17.96,0:01:18.37,OPJP,,0,0,0,fx,{\an5\pos(960,38)\blur3\fs55\fad(0,200)}ゃ
Dialogue: 1,0:01:17.96,0:01:18.37,OPJP,,0,0,0,fx,{\an5\pos(1007,38)\blur3\fs55\fad(0,200)}い
Dialogue: 1,0:01:17.12,0:01:17.96,OPJP,,0,0,0,fx,{\an5\pos(1054,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}な
Dialogue: 1,0:01:17.12,0:01:17.96,OPJP,,0,0,0,fx,{\an5\pos(1101,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}!
Dialogue: 1,0:01:17.96,0:01:17.97,OPJP,,0,0,0,fx,{\an5\pos(1054,38)\1c&H6B2AFD&\blur3\iclip(m 1054 22 l 1060 38 l 1054 54 l 1048 38)\fs55}な
Dialogue: 1,0:01:17.97,0:01:17.99,OPJP,,0,0,0,fx,{\an5\pos(1054,38)\1c&H6B2AFD&\blur3\iclip(m 1054 14 l 1063 38 l 1054 62 l 1045 38)\fs55}な
Dialogue: 1,0:01:17.99,0:01:18.01,OPJP,,0,0,0,fx,{\an5\pos(1054,38)\1c&H6B2AFD&\blur3\iclip(m 1054 6 l 1066 38 l 1054 70 l 1042 38)\fs55}な
Dialogue: 1,0:01:18.01,0:01:18.03,OPJP,,0,0,0,fx,{\an5\pos(1054,38)\1c&H6B2AFD&\blur3\iclip(m 1054 -2 l 1069 38 l 1054 78 l 1039 38)\fs55}な
Dialogue: 1,0:01:18.03,0:01:18.05,OPJP,,0,0,0,fx,{\an5\pos(1054,38)\1c&H6B2AFD&\blur3\iclip(m 1054 -10 l 1072 38 l 1054 86 l 1036 38)\fs55}な
Dialogue: 1,0:01:18.05,0:01:18.06,OPJP,,0,0,0,fx,{\an5\pos(1054,38)\1c&H6B2AFD&\blur3\iclip(m 1054 -18 l 1075 38 l 1054 94 l 1033 38)\fs55}な
Dialogue: 1,0:01:18.06,0:01:18.08,OPJP,,0,0,0,fx,{\an5\pos(1054,38)\1c&H6B2AFD&\blur3\iclip(m 1054 -26 l 1078 38 l 1054 102 l 1030 38)\fs55}な
Dialogue: 1,0:01:18.08,0:01:18.10,OPJP,,0,0,0,fx,{\an5\pos(1054,38)\1c&H6B2AFD&\blur3\iclip(m 1054 -34 l 1081 38 l 1054 110 l 1027 38)\fs55}な
Dialogue: 1,0:01:18.10,0:01:18.12,OPJP,,0,0,0,fx,{\an5\pos(1054,38)\1c&H6B2AFD&\blur3\iclip(m 1054 -42 l 1084 38 l 1054 118 l 1024 38)\fs55}な
Dialogue: 1,0:01:18.12,0:01:18.14,OPJP,,0,0,0,fx,{\an5\pos(1054,38)\1c&H6B2AFD&\blur3\iclip(m 1054 -50 l 1087 38 l 1054 126 l 1021 38)\fs55}な
Dialogue: 1,0:01:17.96,0:01:17.97,OPJP,,0,0,0,fx,{\an5\pos(1101,38)\1c&H6B2AFD&\blur3\iclip(m 1101 22 l 1107 38 l 1101 54 l 1095 38)\fs55}!
Dialogue: 1,0:01:17.97,0:01:17.99,OPJP,,0,0,0,fx,{\an5\pos(1101,38)\1c&H6B2AFD&\blur3\iclip(m 1101 14 l 1110 38 l 1101 62 l 1092 38)\fs55}!
Dialogue: 1,0:01:17.99,0:01:18.01,OPJP,,0,0,0,fx,{\an5\pos(1101,38)\1c&H6B2AFD&\blur3\iclip(m 1101 6 l 1113 38 l 1101 70 l 1089 38)\fs55}!
Dialogue: 1,0:01:18.01,0:01:18.03,OPJP,,0,0,0,fx,{\an5\pos(1101,38)\1c&H6B2AFD&\blur3\iclip(m 1101 -2 l 1116 38 l 1101 78 l 1086 38)\fs55}!
Dialogue: 1,0:01:18.03,0:01:18.05,OPJP,,0,0,0,fx,{\an5\pos(1101,38)\1c&H6B2AFD&\blur3\iclip(m 1101 -10 l 1119 38 l 1101 86 l 1083 38)\fs55}!
Dialogue: 1,0:01:18.05,0:01:18.06,OPJP,,0,0,0,fx,{\an5\pos(1101,38)\1c&H6B2AFD&\blur3\iclip(m 1101 -18 l 1122 38 l 1101 94 l 1080 38)\fs55}!
Dialogue: 1,0:01:18.06,0:01:18.08,OPJP,,0,0,0,fx,{\an5\pos(1101,38)\1c&H6B2AFD&\blur3\iclip(m 1101 -26 l 1125 38 l 1101 102 l 1077 38)\fs55}!
Dialogue: 1,0:01:18.08,0:01:18.10,OPJP,,0,0,0,fx,{\an5\pos(1101,38)\1c&H6B2AFD&\blur3\iclip(m 1101 -34 l 1128 38 l 1101 110 l 1074 38)\fs55}!
Dialogue: 1,0:01:18.10,0:01:18.12,OPJP,,0,0,0,fx,{\an5\pos(1101,38)\1c&H6B2AFD&\blur3\iclip(m 1101 -42 l 1131 38 l 1101 118 l 1071 38)\fs55}!
Dialogue: 1,0:01:18.12,0:01:18.14,OPJP,,0,0,0,fx,{\an5\pos(1101,38)\1c&H6B2AFD&\blur3\iclip(m 1101 -50 l 1134 38 l 1101 126 l 1068 38)\fs55}!
Dialogue: 0,0:01:17.96,0:01:18.14,OPJP,,0,0,0,fx,{\an5\pos(1054,38)\blur3\fs55}な
Dialogue: 0,0:01:17.96,0:01:18.14,OPJP,,0,0,0,fx,{\an5\pos(1101,38)\blur3\fs55}!
Dialogue: 1,0:01:18.14,0:01:18.40,OPJP,,0,0,0,fx,{\an5\pos(1054,38)\blur3\fs55\fad(0,200)}な
Dialogue: 1,0:01:18.14,0:01:18.40,OPJP,,0,0,0,fx,{\an5\pos(1101,38)\blur3\fs55\fad(0,200)}!
Dialogue: 1,0:01:18.74,0:01:18.94,OPJP,,0,0,0,fx,{\an5\pos(842,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}笑
Dialogue: 1,0:01:18.74,0:01:18.94,OPJP,,0,0,0,fx,{\an5\pos(889,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}っ
Dialogue: 1,0:01:18.94,0:01:18.97,OPJP,,0,0,0,fx,{\an5\pos(842,38)\1c&H6B2AFD&\blur3\iclip(m 842 22 l 848 38 l 842 54 l 836 38)\fs55}笑
Dialogue: 1,0:01:18.97,0:01:19.01,OPJP,,0,0,0,fx,{\an5\pos(842,38)\1c&H6B2AFD&\blur3\iclip(m 842 14 l 851 38 l 842 62 l 833 38)\fs55}笑
Dialogue: 1,0:01:19.01,0:01:19.04,OPJP,,0,0,0,fx,{\an5\pos(842,38)\1c&H6B2AFD&\blur3\iclip(m 842 6 l 854 38 l 842 70 l 830 38)\fs55}笑
Dialogue: 1,0:01:19.04,0:01:19.08,OPJP,,0,0,0,fx,{\an5\pos(842,38)\1c&H6B2AFD&\blur3\iclip(m 842 -2 l 857 38 l 842 78 l 827 38)\fs55}笑
Dialogue: 1,0:01:19.08,0:01:19.12,OPJP,,0,0,0,fx,{\an5\pos(842,38)\1c&H6B2AFD&\blur3\iclip(m 842 -10 l 860 38 l 842 86 l 824 38)\fs55}笑
Dialogue: 1,0:01:19.12,0:01:19.15,OPJP,,0,0,0,fx,{\an5\pos(842,38)\1c&H6B2AFD&\blur3\iclip(m 842 -18 l 863 38 l 842 94 l 821 38)\fs55}笑
Dialogue: 1,0:01:19.15,0:01:19.19,OPJP,,0,0,0,fx,{\an5\pos(842,38)\1c&H6B2AFD&\blur3\iclip(m 842 -26 l 866 38 l 842 102 l 818 38)\fs55}笑
Dialogue: 1,0:01:19.19,0:01:19.22,OPJP,,0,0,0,fx,{\an5\pos(842,38)\1c&H6B2AFD&\blur3\iclip(m 842 -34 l 869 38 l 842 110 l 815 38)\fs55}笑
Dialogue: 1,0:01:19.22,0:01:19.26,OPJP,,0,0,0,fx,{\an5\pos(842,38)\1c&H6B2AFD&\blur3\iclip(m 842 -42 l 872 38 l 842 118 l 812 38)\fs55}笑
Dialogue: 1,0:01:19.26,0:01:19.30,OPJP,,0,0,0,fx,{\an5\pos(842,38)\1c&H6B2AFD&\blur3\iclip(m 842 -50 l 875 38 l 842 126 l 809 38)\fs55}笑
Dialogue: 1,0:01:18.94,0:01:18.97,OPJP,,0,0,0,fx,{\an5\pos(889,38)\1c&H6B2AFD&\blur3\iclip(m 889 22 l 895 38 l 889 54 l 883 38)\fs55}っ
Dialogue: 1,0:01:18.97,0:01:19.01,OPJP,,0,0,0,fx,{\an5\pos(889,38)\1c&H6B2AFD&\blur3\iclip(m 889 14 l 898 38 l 889 62 l 880 38)\fs55}っ
Dialogue: 1,0:01:19.01,0:01:19.04,OPJP,,0,0,0,fx,{\an5\pos(889,38)\1c&H6B2AFD&\blur3\iclip(m 889 6 l 901 38 l 889 70 l 877 38)\fs55}っ
Dialogue: 1,0:01:19.04,0:01:19.08,OPJP,,0,0,0,fx,{\an5\pos(889,38)\1c&H6B2AFD&\blur3\iclip(m 889 -2 l 904 38 l 889 78 l 874 38)\fs55}っ
Dialogue: 1,0:01:19.08,0:01:19.12,OPJP,,0,0,0,fx,{\an5\pos(889,38)\1c&H6B2AFD&\blur3\iclip(m 889 -10 l 907 38 l 889 86 l 871 38)\fs55}っ
Dialogue: 1,0:01:19.12,0:01:19.15,OPJP,,0,0,0,fx,{\an5\pos(889,38)\1c&H6B2AFD&\blur3\iclip(m 889 -18 l 910 38 l 889 94 l 868 38)\fs55}っ
Dialogue: 1,0:01:19.15,0:01:19.19,OPJP,,0,0,0,fx,{\an5\pos(889,38)\1c&H6B2AFD&\blur3\iclip(m 889 -26 l 913 38 l 889 102 l 865 38)\fs55}っ
Dialogue: 1,0:01:19.19,0:01:19.22,OPJP,,0,0,0,fx,{\an5\pos(889,38)\1c&H6B2AFD&\blur3\iclip(m 889 -34 l 916 38 l 889 110 l 862 38)\fs55}っ
Dialogue: 1,0:01:19.22,0:01:19.26,OPJP,,0,0,0,fx,{\an5\pos(889,38)\1c&H6B2AFD&\blur3\iclip(m 889 -42 l 919 38 l 889 118 l 859 38)\fs55}っ
Dialogue: 1,0:01:19.26,0:01:19.30,OPJP,,0,0,0,fx,{\an5\pos(889,38)\1c&H6B2AFD&\blur3\iclip(m 889 -50 l 922 38 l 889 126 l 856 38)\fs55}っ
Dialogue: 0,0:01:18.94,0:01:19.30,OPJP,,0,0,0,fx,{\an5\pos(842,38)\blur3\fs55}笑
Dialogue: 0,0:01:18.94,0:01:19.30,OPJP,,0,0,0,fx,{\an5\pos(889,38)\blur3\fs55}っ
Dialogue: 1,0:01:19.30,0:01:20.06,OPJP,,0,0,0,fx,{\an5\pos(842,38)\blur3\fs55\fad(0,200)}笑
Dialogue: 1,0:01:19.30,0:01:20.06,OPJP,,0,0,0,fx,{\an5\pos(889,38)\blur3\fs55\fad(0,200)}っ
Dialogue: 1,0:01:18.77,0:01:19.30,OPJP,,0,0,0,fx,{\an5\pos(936,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}ち
Dialogue: 1,0:01:18.77,0:01:19.30,OPJP,,0,0,0,fx,{\an5\pos(984,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}ゃ
Dialogue: 1,0:01:18.77,0:01:19.30,OPJP,,0,0,0,fx,{\an5\pos(1031,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}っ
Dialogue: 1,0:01:19.30,0:01:19.33,OPJP,,0,0,0,fx,{\an5\pos(936,38)\1c&H6B2AFD&\blur3\iclip(m 936 22 l 942 38 l 936 54 l 930 38)\fs55}ち
Dialogue: 1,0:01:19.33,0:01:19.36,OPJP,,0,0,0,fx,{\an5\pos(936,38)\1c&H6B2AFD&\blur3\iclip(m 936 14 l 945 38 l 936 62 l 927 38)\fs55}ち
Dialogue: 1,0:01:19.36,0:01:19.39,OPJP,,0,0,0,fx,{\an5\pos(936,38)\1c&H6B2AFD&\blur3\iclip(m 936 6 l 948 38 l 936 70 l 924 38)\fs55}ち
Dialogue: 1,0:01:19.39,0:01:19.42,OPJP,,0,0,0,fx,{\an5\pos(936,38)\1c&H6B2AFD&\blur3\iclip(m 936 -2 l 951 38 l 936 78 l 921 38)\fs55}ち
Dialogue: 1,0:01:19.42,0:01:19.46,OPJP,,0,0,0,fx,{\an5\pos(936,38)\1c&H6B2AFD&\blur3\iclip(m 936 -10 l 954 38 l 936 86 l 918 38)\fs55}ち
Dialogue: 1,0:01:19.46,0:01:19.49,OPJP,,0,0,0,fx,{\an5\pos(936,38)\1c&H6B2AFD&\blur3\iclip(m 936 -18 l 957 38 l 936 94 l 915 38)\fs55}ち
Dialogue: 1,0:01:19.49,0:01:19.52,OPJP,,0,0,0,fx,{\an5\pos(936,38)\1c&H6B2AFD&\blur3\iclip(m 936 -26 l 960 38 l 936 102 l 912 38)\fs55}ち
Dialogue: 1,0:01:19.52,0:01:19.55,OPJP,,0,0,0,fx,{\an5\pos(936,38)\1c&H6B2AFD&\blur3\iclip(m 936 -34 l 963 38 l 936 110 l 909 38)\fs55}ち
Dialogue: 1,0:01:19.55,0:01:19.58,OPJP,,0,0,0,fx,{\an5\pos(936,38)\1c&H6B2AFD&\blur3\iclip(m 936 -42 l 966 38 l 936 118 l 906 38)\fs55}ち
Dialogue: 1,0:01:19.58,0:01:19.62,OPJP,,0,0,0,fx,{\an5\pos(936,38)\1c&H6B2AFD&\blur3\iclip(m 936 -50 l 969 38 l 936 126 l 903 38)\fs55}ち
Dialogue: 1,0:01:19.30,0:01:19.33,OPJP,,0,0,0,fx,{\an5\pos(984,38)\1c&H6B2AFD&\blur3\iclip(m 984 22 l 990 38 l 984 54 l 978 38)\fs55}ゃ
Dialogue: 1,0:01:19.33,0:01:19.36,OPJP,,0,0,0,fx,{\an5\pos(984,38)\1c&H6B2AFD&\blur3\iclip(m 984 14 l 993 38 l 984 62 l 975 38)\fs55}ゃ
Dialogue: 1,0:01:19.36,0:01:19.39,OPJP,,0,0,0,fx,{\an5\pos(984,38)\1c&H6B2AFD&\blur3\iclip(m 984 6 l 996 38 l 984 70 l 972 38)\fs55}ゃ
Dialogue: 1,0:01:19.39,0:01:19.42,OPJP,,0,0,0,fx,{\an5\pos(984,38)\1c&H6B2AFD&\blur3\iclip(m 984 -2 l 999 38 l 984 78 l 969 38)\fs55}ゃ
Dialogue: 1,0:01:19.42,0:01:19.46,OPJP,,0,0,0,fx,{\an5\pos(984,38)\1c&H6B2AFD&\blur3\iclip(m 984 -10 l 1002 38 l 984 86 l 966 38)\fs55}ゃ
Dialogue: 1,0:01:19.46,0:01:19.49,OPJP,,0,0,0,fx,{\an5\pos(984,38)\1c&H6B2AFD&\blur3\iclip(m 984 -18 l 1005 38 l 984 94 l 963 38)\fs55}ゃ
Dialogue: 1,0:01:19.49,0:01:19.52,OPJP,,0,0,0,fx,{\an5\pos(984,38)\1c&H6B2AFD&\blur3\iclip(m 984 -26 l 1008 38 l 984 102 l 960 38)\fs55}ゃ
Dialogue: 1,0:01:19.52,0:01:19.55,OPJP,,0,0,0,fx,{\an5\pos(984,38)\1c&H6B2AFD&\blur3\iclip(m 984 -34 l 1011 38 l 984 110 l 957 38)\fs55}ゃ
Dialogue: 1,0:01:19.55,0:01:19.58,OPJP,,0,0,0,fx,{\an5\pos(984,38)\1c&H6B2AFD&\blur3\iclip(m 984 -42 l 1014 38 l 984 118 l 954 38)\fs55}ゃ
Dialogue: 1,0:01:19.58,0:01:19.62,OPJP,,0,0,0,fx,{\an5\pos(984,38)\1c&H6B2AFD&\blur3\iclip(m 984 -50 l 1017 38 l 984 126 l 951 38)\fs55}ゃ
Dialogue: 1,0:01:19.30,0:01:19.33,OPJP,,0,0,0,fx,{\an5\pos(1031,38)\1c&H6B2AFD&\blur3\iclip(m 1031 22 l 1037 38 l 1031 54 l 1025 38)\fs55}っ
Dialogue: 1,0:01:19.33,0:01:19.36,OPJP,,0,0,0,fx,{\an5\pos(1031,38)\1c&H6B2AFD&\blur3\iclip(m 1031 14 l 1040 38 l 1031 62 l 1022 38)\fs55}っ
Dialogue: 1,0:01:19.36,0:01:19.39,OPJP,,0,0,0,fx,{\an5\pos(1031,38)\1c&H6B2AFD&\blur3\iclip(m 1031 6 l 1043 38 l 1031 70 l 1019 38)\fs55}っ
Dialogue: 1,0:01:19.39,0:01:19.42,OPJP,,0,0,0,fx,{\an5\pos(1031,38)\1c&H6B2AFD&\blur3\iclip(m 1031 -2 l 1046 38 l 1031 78 l 1016 38)\fs55}っ
Dialogue: 1,0:01:19.42,0:01:19.46,OPJP,,0,0,0,fx,{\an5\pos(1031,38)\1c&H6B2AFD&\blur3\iclip(m 1031 -10 l 1049 38 l 1031 86 l 1013 38)\fs55}っ
Dialogue: 1,0:01:19.46,0:01:19.49,OPJP,,0,0,0,fx,{\an5\pos(1031,38)\1c&H6B2AFD&\blur3\iclip(m 1031 -18 l 1052 38 l 1031 94 l 1010 38)\fs55}っ
Dialogue: 1,0:01:19.49,0:01:19.52,OPJP,,0,0,0,fx,{\an5\pos(1031,38)\1c&H6B2AFD&\blur3\iclip(m 1031 -26 l 1055 38 l 1031 102 l 1007 38)\fs55}っ
Dialogue: 1,0:01:19.52,0:01:19.55,OPJP,,0,0,0,fx,{\an5\pos(1031,38)\1c&H6B2AFD&\blur3\iclip(m 1031 -34 l 1058 38 l 1031 110 l 1004 38)\fs55}っ
Dialogue: 1,0:01:19.55,0:01:19.58,OPJP,,0,0,0,fx,{\an5\pos(1031,38)\1c&H6B2AFD&\blur3\iclip(m 1031 -42 l 1061 38 l 1031 118 l 1001 38)\fs55}っ
Dialogue: 1,0:01:19.58,0:01:19.62,OPJP,,0,0,0,fx,{\an5\pos(1031,38)\1c&H6B2AFD&\blur3\iclip(m 1031 -50 l 1064 38 l 1031 126 l 998 38)\fs55}っ
Dialogue: 0,0:01:19.30,0:01:19.62,OPJP,,0,0,0,fx,{\an5\pos(936,38)\blur3\fs55}ち
Dialogue: 0,0:01:19.30,0:01:19.62,OPJP,,0,0,0,fx,{\an5\pos(984,38)\blur3\fs55}ゃ
Dialogue: 0,0:01:19.30,0:01:19.62,OPJP,,0,0,0,fx,{\an5\pos(1031,38)\blur3\fs55}っ
Dialogue: 1,0:01:19.62,0:01:20.09,OPJP,,0,0,0,fx,{\an5\pos(936,38)\blur3\fs55\fad(0,200)}ち
Dialogue: 1,0:01:19.62,0:01:20.09,OPJP,,0,0,0,fx,{\an5\pos(984,38)\blur3\fs55\fad(0,200)}ゃ
Dialogue: 1,0:01:19.62,0:01:20.09,OPJP,,0,0,0,fx,{\an5\pos(1031,38)\blur3\fs55\fad(0,200)}っ
Dialogue: 1,0:01:18.80,0:01:19.62,OPJP,,0,0,0,fx,{\an5\pos(1078,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}て
Dialogue: 1,0:01:19.62,0:01:19.64,OPJP,,0,0,0,fx,{\an5\pos(1078,38)\1c&H6B2AFD&\blur3\iclip(m 1078 22 l 1084 38 l 1078 54 l 1072 38)\fs55}て
Dialogue: 1,0:01:19.64,0:01:19.66,OPJP,,0,0,0,fx,{\an5\pos(1078,38)\1c&H6B2AFD&\blur3\iclip(m 1078 14 l 1087 38 l 1078 62 l 1069 38)\fs55}て
Dialogue: 1,0:01:19.66,0:01:19.69,OPJP,,0,0,0,fx,{\an5\pos(1078,38)\1c&H6B2AFD&\blur3\iclip(m 1078 6 l 1090 38 l 1078 70 l 1066 38)\fs55}て
Dialogue: 1,0:01:19.69,0:01:19.71,OPJP,,0,0,0,fx,{\an5\pos(1078,38)\1c&H6B2AFD&\blur3\iclip(m 1078 -2 l 1093 38 l 1078 78 l 1063 38)\fs55}て
Dialogue: 1,0:01:19.71,0:01:19.74,OPJP,,0,0,0,fx,{\an5\pos(1078,38)\1c&H6B2AFD&\blur3\iclip(m 1078 -10 l 1096 38 l 1078 86 l 1060 38)\fs55}て
Dialogue: 1,0:01:19.74,0:01:19.76,OPJP,,0,0,0,fx,{\an5\pos(1078,38)\1c&H6B2AFD&\blur3\iclip(m 1078 -18 l 1099 38 l 1078 94 l 1057 38)\fs55}て
Dialogue: 1,0:01:19.76,0:01:19.78,OPJP,,0,0,0,fx,{\an5\pos(1078,38)\1c&H6B2AFD&\blur3\iclip(m 1078 -26 l 1102 38 l 1078 102 l 1054 38)\fs55}て
Dialogue: 1,0:01:19.78,0:01:19.81,OPJP,,0,0,0,fx,{\an5\pos(1078,38)\1c&H6B2AFD&\blur3\iclip(m 1078 -34 l 1105 38 l 1078 110 l 1051 38)\fs55}て
Dialogue: 1,0:01:19.81,0:01:19.83,OPJP,,0,0,0,fx,{\an5\pos(1078,38)\1c&H6B2AFD&\blur3\iclip(m 1078 -42 l 1108 38 l 1078 118 l 1048 38)\fs55}て
Dialogue: 1,0:01:19.83,0:01:19.86,OPJP,,0,0,0,fx,{\an5\pos(1078,38)\1c&H6B2AFD&\blur3\iclip(m 1078 -50 l 1111 38 l 1078 126 l 1045 38)\fs55}て
Dialogue: 0,0:01:19.62,0:01:19.86,OPJP,,0,0,0,fx,{\an5\pos(1078,38)\blur3\fs55}て
Dialogue: 1,0:01:19.86,0:01:20.12,OPJP,,0,0,0,fx,{\an5\pos(1078,38)\blur3\fs55\fad(0,200)}て
Dialogue: 1,0:01:20.48,0:01:20.68,OPJP,,0,0,0,fx,{\an5\pos(795,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}笑
Dialogue: 1,0:01:20.48,0:01:20.68,OPJP,,0,0,0,fx,{\an5\pos(842,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}っ
Dialogue: 1,0:01:20.68,0:01:20.70,OPJP,,0,0,0,fx,{\an5\pos(795,38)\1c&H6B2AFD&\blur3\iclip(m 795 22 l 801 38 l 795 54 l 789 38)\fs55}笑
Dialogue: 1,0:01:20.70,0:01:20.73,OPJP,,0,0,0,fx,{\an5\pos(795,38)\1c&H6B2AFD&\blur3\iclip(m 795 14 l 804 38 l 795 62 l 786 38)\fs55}笑
Dialogue: 1,0:01:20.73,0:01:20.76,OPJP,,0,0,0,fx,{\an5\pos(795,38)\1c&H6B2AFD&\blur3\iclip(m 795 6 l 807 38 l 795 70 l 783 38)\fs55}笑
Dialogue: 1,0:01:20.76,0:01:20.79,OPJP,,0,0,0,fx,{\an5\pos(795,38)\1c&H6B2AFD&\blur3\iclip(m 795 -2 l 810 38 l 795 78 l 780 38)\fs55}笑
Dialogue: 1,0:01:20.79,0:01:20.82,OPJP,,0,0,0,fx,{\an5\pos(795,38)\1c&H6B2AFD&\blur3\iclip(m 795 -10 l 813 38 l 795 86 l 777 38)\fs55}笑
Dialogue: 1,0:01:20.82,0:01:20.84,OPJP,,0,0,0,fx,{\an5\pos(795,38)\1c&H6B2AFD&\blur3\iclip(m 795 -18 l 816 38 l 795 94 l 774 38)\fs55}笑
Dialogue: 1,0:01:20.84,0:01:20.87,OPJP,,0,0,0,fx,{\an5\pos(795,38)\1c&H6B2AFD&\blur3\iclip(m 795 -26 l 819 38 l 795 102 l 771 38)\fs55}笑
Dialogue: 1,0:01:20.87,0:01:20.90,OPJP,,0,0,0,fx,{\an5\pos(795,38)\1c&H6B2AFD&\blur3\iclip(m 795 -34 l 822 38 l 795 110 l 768 38)\fs55}笑
Dialogue: 1,0:01:20.90,0:01:20.93,OPJP,,0,0,0,fx,{\an5\pos(795,38)\1c&H6B2AFD&\blur3\iclip(m 795 -42 l 825 38 l 795 118 l 765 38)\fs55}笑
Dialogue: 1,0:01:20.93,0:01:20.96,OPJP,,0,0,0,fx,{\an5\pos(795,38)\1c&H6B2AFD&\blur3\iclip(m 795 -50 l 828 38 l 795 126 l 762 38)\fs55}笑
Dialogue: 1,0:01:20.68,0:01:20.70,OPJP,,0,0,0,fx,{\an5\pos(842,38)\1c&H6B2AFD&\blur3\iclip(m 842 22 l 848 38 l 842 54 l 836 38)\fs55}っ
Dialogue: 1,0:01:20.70,0:01:20.73,OPJP,,0,0,0,fx,{\an5\pos(842,38)\1c&H6B2AFD&\blur3\iclip(m 842 14 l 851 38 l 842 62 l 833 38)\fs55}っ
Dialogue: 1,0:01:20.73,0:01:20.76,OPJP,,0,0,0,fx,{\an5\pos(842,38)\1c&H6B2AFD&\blur3\iclip(m 842 6 l 854 38 l 842 70 l 830 38)\fs55}っ
Dialogue: 1,0:01:20.76,0:01:20.79,OPJP,,0,0,0,fx,{\an5\pos(842,38)\1c&H6B2AFD&\blur3\iclip(m 842 -2 l 857 38 l 842 78 l 827 38)\fs55}っ
Dialogue: 1,0:01:20.79,0:01:20.82,OPJP,,0,0,0,fx,{\an5\pos(842,38)\1c&H6B2AFD&\blur3\iclip(m 842 -10 l 860 38 l 842 86 l 824 38)\fs55}っ
Dialogue: 1,0:01:20.82,0:01:20.84,OPJP,,0,0,0,fx,{\an5\pos(842,38)\1c&H6B2AFD&\blur3\iclip(m 842 -18 l 863 38 l 842 94 l 821 38)\fs55}っ
Dialogue: 1,0:01:20.84,0:01:20.87,OPJP,,0,0,0,fx,{\an5\pos(842,38)\1c&H6B2AFD&\blur3\iclip(m 842 -26 l 866 38 l 842 102 l 818 38)\fs55}っ
Dialogue: 1,0:01:20.87,0:01:20.90,OPJP,,0,0,0,fx,{\an5\pos(842,38)\1c&H6B2AFD&\blur3\iclip(m 842 -34 l 869 38 l 842 110 l 815 38)\fs55}っ
Dialogue: 1,0:01:20.90,0:01:20.93,OPJP,,0,0,0,fx,{\an5\pos(842,38)\1c&H6B2AFD&\blur3\iclip(m 842 -42 l 872 38 l 842 118 l 812 38)\fs55}っ
Dialogue: 1,0:01:20.93,0:01:20.96,OPJP,,0,0,0,fx,{\an5\pos(842,38)\1c&H6B2AFD&\blur3\iclip(m 842 -50 l 875 38 l 842 126 l 809 38)\fs55}っ
Dialogue: 0,0:01:20.68,0:01:20.96,OPJP,,0,0,0,fx,{\an5\pos(795,38)\blur3\fs55}笑
Dialogue: 0,0:01:20.68,0:01:20.96,OPJP,,0,0,0,fx,{\an5\pos(842,38)\blur3\fs55}っ
Dialogue: 1,0:01:20.96,0:01:21.76,OPJP,,0,0,0,fx,{\an5\pos(795,38)\blur3\fs55\fad(0,200)}笑
Dialogue: 1,0:01:20.96,0:01:21.76,OPJP,,0,0,0,fx,{\an5\pos(842,38)\blur3\fs55\fad(0,200)}っ
Dialogue: 1,0:01:20.51,0:01:20.96,OPJP,,0,0,0,fx,{\an5\pos(889,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}ち
Dialogue: 1,0:01:20.51,0:01:20.96,OPJP,,0,0,0,fx,{\an5\pos(936,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}ゃ
Dialogue: 1,0:01:20.51,0:01:20.96,OPJP,,0,0,0,fx,{\an5\pos(984,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}い
Dialogue: 1,0:01:20.96,0:01:20.98,OPJP,,0,0,0,fx,{\an5\pos(889,38)\1c&H6B2AFD&\blur3\iclip(m 889 22 l 895 38 l 889 54 l 883 38)\fs55}ち
Dialogue: 1,0:01:20.98,0:01:21.01,OPJP,,0,0,0,fx,{\an5\pos(889,38)\1c&H6B2AFD&\blur3\iclip(m 889 14 l 898 38 l 889 62 l 880 38)\fs55}ち
Dialogue: 1,0:01:21.01,0:01:21.04,OPJP,,0,0,0,fx,{\an5\pos(889,38)\1c&H6B2AFD&\blur3\iclip(m 889 6 l 901 38 l 889 70 l 877 38)\fs55}ち
Dialogue: 1,0:01:21.04,0:01:21.06,OPJP,,0,0,0,fx,{\an5\pos(889,38)\1c&H6B2AFD&\blur3\iclip(m 889 -2 l 904 38 l 889 78 l 874 38)\fs55}ち
Dialogue: 1,0:01:21.06,0:01:21.09,OPJP,,0,0,0,fx,{\an5\pos(889,38)\1c&H6B2AFD&\blur3\iclip(m 889 -10 l 907 38 l 889 86 l 871 38)\fs55}ち
Dialogue: 1,0:01:21.09,0:01:21.12,OPJP,,0,0,0,fx,{\an5\pos(889,38)\1c&H6B2AFD&\blur3\iclip(m 889 -18 l 910 38 l 889 94 l 868 38)\fs55}ち
Dialogue: 1,0:01:21.12,0:01:21.14,OPJP,,0,0,0,fx,{\an5\pos(889,38)\1c&H6B2AFD&\blur3\iclip(m 889 -26 l 913 38 l 889 102 l 865 38)\fs55}ち
Dialogue: 1,0:01:21.14,0:01:21.17,OPJP,,0,0,0,fx,{\an5\pos(889,38)\1c&H6B2AFD&\blur3\iclip(m 889 -34 l 916 38 l 889 110 l 862 38)\fs55}ち
Dialogue: 1,0:01:21.17,0:01:21.20,OPJP,,0,0,0,fx,{\an5\pos(889,38)\1c&H6B2AFD&\blur3\iclip(m 889 -42 l 919 38 l 889 118 l 859 38)\fs55}ち
Dialogue: 1,0:01:21.20,0:01:21.23,OPJP,,0,0,0,fx,{\an5\pos(889,38)\1c&H6B2AFD&\blur3\iclip(m 889 -50 l 922 38 l 889 126 l 856 38)\fs55}ち
Dialogue: 1,0:01:20.96,0:01:20.98,OPJP,,0,0,0,fx,{\an5\pos(936,38)\1c&H6B2AFD&\blur3\iclip(m 936 22 l 942 38 l 936 54 l 930 38)\fs55}ゃ
Dialogue: 1,0:01:20.98,0:01:21.01,OPJP,,0,0,0,fx,{\an5\pos(936,38)\1c&H6B2AFD&\blur3\iclip(m 936 14 l 945 38 l 936 62 l 927 38)\fs55}ゃ
Dialogue: 1,0:01:21.01,0:01:21.04,OPJP,,0,0,0,fx,{\an5\pos(936,38)\1c&H6B2AFD&\blur3\iclip(m 936 6 l 948 38 l 936 70 l 924 38)\fs55}ゃ
Dialogue: 1,0:01:21.04,0:01:21.06,OPJP,,0,0,0,fx,{\an5\pos(936,38)\1c&H6B2AFD&\blur3\iclip(m 936 -2 l 951 38 l 936 78 l 921 38)\fs55}ゃ
Dialogue: 1,0:01:21.06,0:01:21.09,OPJP,,0,0,0,fx,{\an5\pos(936,38)\1c&H6B2AFD&\blur3\iclip(m 936 -10 l 954 38 l 936 86 l 918 38)\fs55}ゃ
Dialogue: 1,0:01:21.09,0:01:21.12,OPJP,,0,0,0,fx,{\an5\pos(936,38)\1c&H6B2AFD&\blur3\iclip(m 936 -18 l 957 38 l 936 94 l 915 38)\fs55}ゃ
Dialogue: 1,0:01:21.12,0:01:21.14,OPJP,,0,0,0,fx,{\an5\pos(936,38)\1c&H6B2AFD&\blur3\iclip(m 936 -26 l 960 38 l 936 102 l 912 38)\fs55}ゃ
Dialogue: 1,0:01:21.14,0:01:21.17,OPJP,,0,0,0,fx,{\an5\pos(936,38)\1c&H6B2AFD&\blur3\iclip(m 936 -34 l 963 38 l 936 110 l 909 38)\fs55}ゃ
Dialogue: 1,0:01:21.17,0:01:21.20,OPJP,,0,0,0,fx,{\an5\pos(936,38)\1c&H6B2AFD&\blur3\iclip(m 936 -42 l 966 38 l 936 118 l 906 38)\fs55}ゃ
Dialogue: 1,0:01:21.20,0:01:21.23,OPJP,,0,0,0,fx,{\an5\pos(936,38)\1c&H6B2AFD&\blur3\iclip(m 936 -50 l 969 38 l 936 126 l 903 38)\fs55}ゃ
Dialogue: 1,0:01:20.96,0:01:20.98,OPJP,,0,0,0,fx,{\an5\pos(984,38)\1c&H6B2AFD&\blur3\iclip(m 984 22 l 990 38 l 984 54 l 978 38)\fs55}い
Dialogue: 1,0:01:20.98,0:01:21.01,OPJP,,0,0,0,fx,{\an5\pos(984,38)\1c&H6B2AFD&\blur3\iclip(m 984 14 l 993 38 l 984 62 l 975 38)\fs55}い
Dialogue: 1,0:01:21.01,0:01:21.04,OPJP,,0,0,0,fx,{\an5\pos(984,38)\1c&H6B2AFD&\blur3\iclip(m 984 6 l 996 38 l 984 70 l 972 38)\fs55}い
Dialogue: 1,0:01:21.04,0:01:21.06,OPJP,,0,0,0,fx,{\an5\pos(984,38)\1c&H6B2AFD&\blur3\iclip(m 984 -2 l 999 38 l 984 78 l 969 38)\fs55}い
Dialogue: 1,0:01:21.06,0:01:21.09,OPJP,,0,0,0,fx,{\an5\pos(984,38)\1c&H6B2AFD&\blur3\iclip(m 984 -10 l 1002 38 l 984 86 l 966 38)\fs55}い
Dialogue: 1,0:01:21.09,0:01:21.12,OPJP,,0,0,0,fx,{\an5\pos(984,38)\1c&H6B2AFD&\blur3\iclip(m 984 -18 l 1005 38 l 984 94 l 963 38)\fs55}い
Dialogue: 1,0:01:21.12,0:01:21.14,OPJP,,0,0,0,fx,{\an5\pos(984,38)\1c&H6B2AFD&\blur3\iclip(m 984 -26 l 1008 38 l 984 102 l 960 38)\fs55}い
Dialogue: 1,0:01:21.14,0:01:21.17,OPJP,,0,0,0,fx,{\an5\pos(984,38)\1c&H6B2AFD&\blur3\iclip(m 984 -34 l 1011 38 l 984 110 l 957 38)\fs55}い
Dialogue: 1,0:01:21.17,0:01:21.20,OPJP,,0,0,0,fx,{\an5\pos(984,38)\1c&H6B2AFD&\blur3\iclip(m 984 -42 l 1014 38 l 984 118 l 954 38)\fs55}い
Dialogue: 1,0:01:21.20,0:01:21.23,OPJP,,0,0,0,fx,{\an5\pos(984,38)\1c&H6B2AFD&\blur3\iclip(m 984 -50 l 1017 38 l 984 126 l 951 38)\fs55}い
Dialogue: 0,0:01:20.96,0:01:21.23,OPJP,,0,0,0,fx,{\an5\pos(889,38)\blur3\fs55}ち
Dialogue: 0,0:01:20.96,0:01:21.23,OPJP,,0,0,0,fx,{\an5\pos(936,38)\blur3\fs55}ゃ
Dialogue: 0,0:01:20.96,0:01:21.23,OPJP,,0,0,0,fx,{\an5\pos(984,38)\blur3\fs55}い
Dialogue: 1,0:01:21.23,0:01:21.79,OPJP,,0,0,0,fx,{\an5\pos(889,38)\blur3\fs55\fad(0,200)}ち
Dialogue: 1,0:01:21.23,0:01:21.79,OPJP,,0,0,0,fx,{\an5\pos(936,38)\blur3\fs55\fad(0,200)}ゃ
Dialogue: 1,0:01:21.23,0:01:21.79,OPJP,,0,0,0,fx,{\an5\pos(984,38)\blur3\fs55\fad(0,200)}い
Dialogue: 1,0:01:20.54,0:01:21.23,OPJP,,0,0,0,fx,{\an5\pos(1031,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}な
Dialogue: 1,0:01:21.23,0:01:21.24,OPJP,,0,0,0,fx,{\an5\pos(1031,38)\1c&H6B2AFD&\blur3\iclip(m 1031 22 l 1037 38 l 1031 54 l 1025 38)\fs55}な
Dialogue: 1,0:01:21.24,0:01:21.25,OPJP,,0,0,0,fx,{\an5\pos(1031,38)\1c&H6B2AFD&\blur3\iclip(m 1031 14 l 1040 38 l 1031 62 l 1022 38)\fs55}な
Dialogue: 1,0:01:21.25,0:01:21.26,OPJP,,0,0,0,fx,{\an5\pos(1031,38)\1c&H6B2AFD&\blur3\iclip(m 1031 6 l 1043 38 l 1031 70 l 1019 38)\fs55}な
Dialogue: 1,0:01:21.26,0:01:21.27,OPJP,,0,0,0,fx,{\an5\pos(1031,38)\1c&H6B2AFD&\blur3\iclip(m 1031 -2 l 1046 38 l 1031 78 l 1016 38)\fs55}な
Dialogue: 1,0:01:21.27,0:01:21.29,OPJP,,0,0,0,fx,{\an5\pos(1031,38)\1c&H6B2AFD&\blur3\iclip(m 1031 -10 l 1049 38 l 1031 86 l 1013 38)\fs55}な
Dialogue: 1,0:01:21.29,0:01:21.30,OPJP,,0,0,0,fx,{\an5\pos(1031,38)\1c&H6B2AFD&\blur3\iclip(m 1031 -18 l 1052 38 l 1031 94 l 1010 38)\fs55}な
Dialogue: 1,0:01:21.30,0:01:21.31,OPJP,,0,0,0,fx,{\an5\pos(1031,38)\1c&H6B2AFD&\blur3\iclip(m 1031 -26 l 1055 38 l 1031 102 l 1007 38)\fs55}な
Dialogue: 1,0:01:21.31,0:01:21.32,OPJP,,0,0,0,fx,{\an5\pos(1031,38)\1c&H6B2AFD&\blur3\iclip(m 1031 -34 l 1058 38 l 1031 110 l 1004 38)\fs55}な
Dialogue: 1,0:01:21.32,0:01:21.33,OPJP,,0,0,0,fx,{\an5\pos(1031,38)\1c&H6B2AFD&\blur3\iclip(m 1031 -42 l 1061 38 l 1031 118 l 1001 38)\fs55}な
Dialogue: 1,0:01:21.33,0:01:21.35,OPJP,,0,0,0,fx,{\an5\pos(1031,38)\1c&H6B2AFD&\blur3\iclip(m 1031 -50 l 1064 38 l 1031 126 l 998 38)\fs55}な
Dialogue: 0,0:01:21.23,0:01:21.35,OPJP,,0,0,0,fx,{\an5\pos(1031,38)\blur3\fs55}な
Dialogue: 1,0:01:21.35,0:01:21.82,OPJP,,0,0,0,fx,{\an5\pos(1031,38)\blur3\fs55\fad(0,200)}な
Dialogue: 1,0:01:20.57,0:01:21.35,OPJP,,0,0,0,fx,{\an5\pos(1078,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}よ
Dialogue: 1,0:01:20.57,0:01:21.35,OPJP,,0,0,0,fx,{\an5\pos(1125,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}!
Dialogue: 1,0:01:21.35,0:01:21.37,OPJP,,0,0,0,fx,{\an5\pos(1078,38)\1c&H6B2AFD&\blur3\iclip(m 1078 22 l 1084 38 l 1078 54 l 1072 38)\fs55}よ
Dialogue: 1,0:01:21.37,0:01:21.39,OPJP,,0,0,0,fx,{\an5\pos(1078,38)\1c&H6B2AFD&\blur3\iclip(m 1078 14 l 1087 38 l 1078 62 l 1069 38)\fs55}よ
Dialogue: 1,0:01:21.39,0:01:21.41,OPJP,,0,0,0,fx,{\an5\pos(1078,38)\1c&H6B2AFD&\blur3\iclip(m 1078 6 l 1090 38 l 1078 70 l 1066 38)\fs55}よ
Dialogue: 1,0:01:21.41,0:01:21.43,OPJP,,0,0,0,fx,{\an5\pos(1078,38)\1c&H6B2AFD&\blur3\iclip(m 1078 -2 l 1093 38 l 1078 78 l 1063 38)\fs55}よ
Dialogue: 1,0:01:21.43,0:01:21.45,OPJP,,0,0,0,fx,{\an5\pos(1078,38)\1c&H6B2AFD&\blur3\iclip(m 1078 -10 l 1096 38 l 1078 86 l 1060 38)\fs55}よ
Dialogue: 1,0:01:21.45,0:01:21.47,OPJP,,0,0,0,fx,{\an5\pos(1078,38)\1c&H6B2AFD&\blur3\iclip(m 1078 -18 l 1099 38 l 1078 94 l 1057 38)\fs55}よ
Dialogue: 1,0:01:21.47,0:01:21.49,OPJP,,0,0,0,fx,{\an5\pos(1078,38)\1c&H6B2AFD&\blur3\iclip(m 1078 -26 l 1102 38 l 1078 102 l 1054 38)\fs55}よ
Dialogue: 1,0:01:21.49,0:01:21.51,OPJP,,0,0,0,fx,{\an5\pos(1078,38)\1c&H6B2AFD&\blur3\iclip(m 1078 -34 l 1105 38 l 1078 110 l 1051 38)\fs55}よ
Dialogue: 1,0:01:21.51,0:01:21.53,OPJP,,0,0,0,fx,{\an5\pos(1078,38)\1c&H6B2AFD&\blur3\iclip(m 1078 -42 l 1108 38 l 1078 118 l 1048 38)\fs55}よ
Dialogue: 1,0:01:21.53,0:01:21.56,OPJP,,0,0,0,fx,{\an5\pos(1078,38)\1c&H6B2AFD&\blur3\iclip(m 1078 -50 l 1111 38 l 1078 126 l 1045 38)\fs55}よ
Dialogue: 1,0:01:21.35,0:01:21.37,OPJP,,0,0,0,fx,{\an5\pos(1125,38)\1c&H6B2AFD&\blur3\iclip(m 1125 22 l 1131 38 l 1125 54 l 1119 38)\fs55}!
Dialogue: 1,0:01:21.37,0:01:21.39,OPJP,,0,0,0,fx,{\an5\pos(1125,38)\1c&H6B2AFD&\blur3\iclip(m 1125 14 l 1134 38 l 1125 62 l 1116 38)\fs55}!
Dialogue: 1,0:01:21.39,0:01:21.41,OPJP,,0,0,0,fx,{\an5\pos(1125,38)\1c&H6B2AFD&\blur3\iclip(m 1125 6 l 1137 38 l 1125 70 l 1113 38)\fs55}!
Dialogue: 1,0:01:21.41,0:01:21.43,OPJP,,0,0,0,fx,{\an5\pos(1125,38)\1c&H6B2AFD&\blur3\iclip(m 1125 -2 l 1140 38 l 1125 78 l 1110 38)\fs55}!
Dialogue: 1,0:01:21.43,0:01:21.45,OPJP,,0,0,0,fx,{\an5\pos(1125,38)\1c&H6B2AFD&\blur3\iclip(m 1125 -10 l 1143 38 l 1125 86 l 1107 38)\fs55}!
Dialogue: 1,0:01:21.45,0:01:21.47,OPJP,,0,0,0,fx,{\an5\pos(1125,38)\1c&H6B2AFD&\blur3\iclip(m 1125 -18 l 1146 38 l 1125 94 l 1104 38)\fs55}!
Dialogue: 1,0:01:21.47,0:01:21.49,OPJP,,0,0,0,fx,{\an5\pos(1125,38)\1c&H6B2AFD&\blur3\iclip(m 1125 -26 l 1149 38 l 1125 102 l 1101 38)\fs55}!
Dialogue: 1,0:01:21.49,0:01:21.51,OPJP,,0,0,0,fx,{\an5\pos(1125,38)\1c&H6B2AFD&\blur3\iclip(m 1125 -34 l 1152 38 l 1125 110 l 1098 38)\fs55}!
Dialogue: 1,0:01:21.51,0:01:21.53,OPJP,,0,0,0,fx,{\an5\pos(1125,38)\1c&H6B2AFD&\blur3\iclip(m 1125 -42 l 1155 38 l 1125 118 l 1095 38)\fs55}!
Dialogue: 1,0:01:21.53,0:01:21.56,OPJP,,0,0,0,fx,{\an5\pos(1125,38)\1c&H6B2AFD&\blur3\iclip(m 1125 -50 l 1158 38 l 1125 126 l 1092 38)\fs55}!
Dialogue: 0,0:01:21.35,0:01:21.56,OPJP,,0,0,0,fx,{\an5\pos(1078,38)\blur3\fs55}よ
Dialogue: 0,0:01:21.35,0:01:21.56,OPJP,,0,0,0,fx,{\an5\pos(1125,38)\blur3\fs55}!
Dialogue: 1,0:01:21.56,0:01:21.85,OPJP,,0,0,0,fx,{\an5\pos(1078,38)\blur3\fs55\fad(0,200)}よ
Dialogue: 1,0:01:21.56,0:01:21.85,OPJP,,0,0,0,fx,{\an5\pos(1125,38)\blur3\fs55\fad(0,200)}!
Dialogue: 1,0:01:22.31,0:01:22.51,OPJP,,0,0,0,fx,{\an5\pos(778,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}今
Dialogue: 1,0:01:22.31,0:01:22.51,OPJP,,0,0,0,fx,{\an5\pos(826,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}日
Dialogue: 1,0:01:22.51,0:01:22.54,OPJP,,0,0,0,fx,{\an5\pos(778,38)\1c&H6B2AFD&\blur3\iclip(m 778 22 l 784 38 l 778 54 l 772 38)\fs55}今
Dialogue: 1,0:01:22.54,0:01:22.57,OPJP,,0,0,0,fx,{\an5\pos(778,38)\1c&H6B2AFD&\blur3\iclip(m 778 14 l 787 38 l 778 62 l 769 38)\fs55}今
Dialogue: 1,0:01:22.57,0:01:22.60,OPJP,,0,0,0,fx,{\an5\pos(778,38)\1c&H6B2AFD&\blur3\iclip(m 778 6 l 790 38 l 778 70 l 766 38)\fs55}今
Dialogue: 1,0:01:22.60,0:01:22.63,OPJP,,0,0,0,fx,{\an5\pos(778,38)\1c&H6B2AFD&\blur3\iclip(m 778 -2 l 793 38 l 778 78 l 763 38)\fs55}今
Dialogue: 1,0:01:22.63,0:01:22.67,OPJP,,0,0,0,fx,{\an5\pos(778,38)\1c&H6B2AFD&\blur3\iclip(m 778 -10 l 796 38 l 778 86 l 760 38)\fs55}今
Dialogue: 1,0:01:22.67,0:01:22.70,OPJP,,0,0,0,fx,{\an5\pos(778,38)\1c&H6B2AFD&\blur3\iclip(m 778 -18 l 799 38 l 778 94 l 757 38)\fs55}今
Dialogue: 1,0:01:22.70,0:01:22.73,OPJP,,0,0,0,fx,{\an5\pos(778,38)\1c&H6B2AFD&\blur3\iclip(m 778 -26 l 802 38 l 778 102 l 754 38)\fs55}今
Dialogue: 1,0:01:22.73,0:01:22.76,OPJP,,0,0,0,fx,{\an5\pos(778,38)\1c&H6B2AFD&\blur3\iclip(m 778 -34 l 805 38 l 778 110 l 751 38)\fs55}今
Dialogue: 1,0:01:22.76,0:01:22.79,OPJP,,0,0,0,fx,{\an5\pos(778,38)\1c&H6B2AFD&\blur3\iclip(m 778 -42 l 808 38 l 778 118 l 748 38)\fs55}今
Dialogue: 1,0:01:22.79,0:01:22.83,OPJP,,0,0,0,fx,{\an5\pos(778,38)\1c&H6B2AFD&\blur3\iclip(m 778 -50 l 811 38 l 778 126 l 745 38)\fs55}今
Dialogue: 1,0:01:22.51,0:01:22.54,OPJP,,0,0,0,fx,{\an5\pos(826,38)\1c&H6B2AFD&\blur3\iclip(m 826 22 l 832 38 l 826 54 l 820 38)\fs55}日
Dialogue: 1,0:01:22.54,0:01:22.57,OPJP,,0,0,0,fx,{\an5\pos(826,38)\1c&H6B2AFD&\blur3\iclip(m 826 14 l 835 38 l 826 62 l 817 38)\fs55}日
Dialogue: 1,0:01:22.57,0:01:22.60,OPJP,,0,0,0,fx,{\an5\pos(826,38)\1c&H6B2AFD&\blur3\iclip(m 826 6 l 838 38 l 826 70 l 814 38)\fs55}日
Dialogue: 1,0:01:22.60,0:01:22.63,OPJP,,0,0,0,fx,{\an5\pos(826,38)\1c&H6B2AFD&\blur3\iclip(m 826 -2 l 841 38 l 826 78 l 811 38)\fs55}日
Dialogue: 1,0:01:22.63,0:01:22.67,OPJP,,0,0,0,fx,{\an5\pos(826,38)\1c&H6B2AFD&\blur3\iclip(m 826 -10 l 844 38 l 826 86 l 808 38)\fs55}日
Dialogue: 1,0:01:22.67,0:01:22.70,OPJP,,0,0,0,fx,{\an5\pos(826,38)\1c&H6B2AFD&\blur3\iclip(m 826 -18 l 847 38 l 826 94 l 805 38)\fs55}日
Dialogue: 1,0:01:22.70,0:01:22.73,OPJP,,0,0,0,fx,{\an5\pos(826,38)\1c&H6B2AFD&\blur3\iclip(m 826 -26 l 850 38 l 826 102 l 802 38)\fs55}日
Dialogue: 1,0:01:22.73,0:01:22.76,OPJP,,0,0,0,fx,{\an5\pos(826,38)\1c&H6B2AFD&\blur3\iclip(m 826 -34 l 853 38 l 826 110 l 799 38)\fs55}日
Dialogue: 1,0:01:22.76,0:01:22.79,OPJP,,0,0,0,fx,{\an5\pos(826,38)\1c&H6B2AFD&\blur3\iclip(m 826 -42 l 856 38 l 826 118 l 796 38)\fs55}日
Dialogue: 1,0:01:22.79,0:01:22.83,OPJP,,0,0,0,fx,{\an5\pos(826,38)\1c&H6B2AFD&\blur3\iclip(m 826 -50 l 859 38 l 826 126 l 793 38)\fs55}日
Dialogue: 0,0:01:22.51,0:01:22.83,OPJP,,0,0,0,fx,{\an5\pos(778,38)\blur3\fs55}今
Dialogue: 0,0:01:22.51,0:01:22.83,OPJP,,0,0,0,fx,{\an5\pos(826,38)\blur3\fs55}日
Dialogue: 1,0:01:22.83,0:01:24.39,OPJP,,0,0,0,fx,{\an5\pos(778,38)\blur3\fs55\fad(0,200)}今
Dialogue: 1,0:01:22.83,0:01:24.39,OPJP,,0,0,0,fx,{\an5\pos(826,38)\blur3\fs55\fad(0,200)}日
Dialogue: 1,0:01:22.34,0:01:22.83,OPJP,,0,0,0,fx,{\an5\pos(873,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}は
Dialogue: 1,0:01:22.83,0:01:22.85,OPJP,,0,0,0,fx,{\an5\pos(873,38)\1c&H6B2AFD&\blur3\iclip(m 873 22 l 879 38 l 873 54 l 867 38)\fs55}は
Dialogue: 1,0:01:22.85,0:01:22.87,OPJP,,0,0,0,fx,{\an5\pos(873,38)\1c&H6B2AFD&\blur3\iclip(m 873 14 l 882 38 l 873 62 l 864 38)\fs55}は
Dialogue: 1,0:01:22.87,0:01:22.89,OPJP,,0,0,0,fx,{\an5\pos(873,38)\1c&H6B2AFD&\blur3\iclip(m 873 6 l 885 38 l 873 70 l 861 38)\fs55}は
Dialogue: 1,0:01:22.89,0:01:22.91,OPJP,,0,0,0,fx,{\an5\pos(873,38)\1c&H6B2AFD&\blur3\iclip(m 873 -2 l 888 38 l 873 78 l 858 38)\fs55}は
Dialogue: 1,0:01:22.91,0:01:22.94,OPJP,,0,0,0,fx,{\an5\pos(873,38)\1c&H6B2AFD&\blur3\iclip(m 873 -10 l 891 38 l 873 86 l 855 38)\fs55}は
Dialogue: 1,0:01:22.94,0:01:22.96,OPJP,,0,0,0,fx,{\an5\pos(873,38)\1c&H6B2AFD&\blur3\iclip(m 873 -18 l 894 38 l 873 94 l 852 38)\fs55}は
Dialogue: 1,0:01:22.96,0:01:22.98,OPJP,,0,0,0,fx,{\an5\pos(873,38)\1c&H6B2AFD&\blur3\iclip(m 873 -26 l 897 38 l 873 102 l 849 38)\fs55}は
Dialogue: 1,0:01:22.98,0:01:23.00,OPJP,,0,0,0,fx,{\an5\pos(873,38)\1c&H6B2AFD&\blur3\iclip(m 873 -34 l 900 38 l 873 110 l 846 38)\fs55}は
Dialogue: 1,0:01:23.00,0:01:23.02,OPJP,,0,0,0,fx,{\an5\pos(873,38)\1c&H6B2AFD&\blur3\iclip(m 873 -42 l 903 38 l 873 118 l 843 38)\fs55}は
Dialogue: 1,0:01:23.02,0:01:23.05,OPJP,,0,0,0,fx,{\an5\pos(873,38)\1c&H6B2AFD&\blur3\iclip(m 873 -50 l 906 38 l 873 126 l 840 38)\fs55}は
Dialogue: 0,0:01:22.83,0:01:23.05,OPJP,,0,0,0,fx,{\an5\pos(873,38)\blur3\fs55}は
Dialogue: 1,0:01:23.05,0:01:24.42,OPJP,,0,0,0,fx,{\an5\pos(873,38)\blur3\fs55\fad(0,200)}は
Dialogue: 1,0:01:22.37,0:01:23.05,OPJP,,0,0,0,fx,{\an5\pos(920,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}元
Dialogue: 1,0:01:23.05,0:01:23.08,OPJP,,0,0,0,fx,{\an5\pos(920,38)\1c&H6B2AFD&\blur3\iclip(m 920 22 l 926 38 l 920 54 l 914 38)\fs55}元
Dialogue: 1,0:01:23.08,0:01:23.11,OPJP,,0,0,0,fx,{\an5\pos(920,38)\1c&H6B2AFD&\blur3\iclip(m 920 14 l 929 38 l 920 62 l 911 38)\fs55}元
Dialogue: 1,0:01:23.11,0:01:23.14,OPJP,,0,0,0,fx,{\an5\pos(920,38)\1c&H6B2AFD&\blur3\iclip(m 920 6 l 932 38 l 920 70 l 908 38)\fs55}元
Dialogue: 1,0:01:23.14,0:01:23.17,OPJP,,0,0,0,fx,{\an5\pos(920,38)\1c&H6B2AFD&\blur3\iclip(m 920 -2 l 935 38 l 920 78 l 905 38)\fs55}元
Dialogue: 1,0:01:23.17,0:01:23.20,OPJP,,0,0,0,fx,{\an5\pos(920,38)\1c&H6B2AFD&\blur3\iclip(m 920 -10 l 938 38 l 920 86 l 902 38)\fs55}元
Dialogue: 1,0:01:23.20,0:01:23.23,OPJP,,0,0,0,fx,{\an5\pos(920,38)\1c&H6B2AFD&\blur3\iclip(m 920 -18 l 941 38 l 920 94 l 899 38)\fs55}元
Dialogue: 1,0:01:23.23,0:01:23.26,OPJP,,0,0,0,fx,{\an5\pos(920,38)\1c&H6B2AFD&\blur3\iclip(m 920 -26 l 944 38 l 920 102 l 896 38)\fs55}元
Dialogue: 1,0:01:23.26,0:01:23.29,OPJP,,0,0,0,fx,{\an5\pos(920,38)\1c&H6B2AFD&\blur3\iclip(m 920 -34 l 947 38 l 920 110 l 893 38)\fs55}元
Dialogue: 1,0:01:23.29,0:01:23.32,OPJP,,0,0,0,fx,{\an5\pos(920,38)\1c&H6B2AFD&\blur3\iclip(m 920 -42 l 950 38 l 920 118 l 890 38)\fs55}元
Dialogue: 1,0:01:23.32,0:01:23.35,OPJP,,0,0,0,fx,{\an5\pos(920,38)\1c&H6B2AFD&\blur3\iclip(m 920 -50 l 953 38 l 920 126 l 887 38)\fs55}元
Dialogue: 0,0:01:23.05,0:01:23.35,OPJP,,0,0,0,fx,{\an5\pos(920,38)\blur3\fs55}元
Dialogue: 1,0:01:23.35,0:01:24.45,OPJP,,0,0,0,fx,{\an5\pos(920,38)\blur3\fs55\fad(0,200)}元
Dialogue: 1,0:01:22.40,0:01:23.35,OPJP,,0,0,0,fx,{\an5\pos(967,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}気
Dialogue: 1,0:01:23.35,0:01:23.36,OPJP,,0,0,0,fx,{\an5\pos(967,38)\1c&H6B2AFD&\blur3\iclip(m 967 22 l 973 38 l 967 54 l 961 38)\fs55}気
Dialogue: 1,0:01:23.36,0:01:23.38,OPJP,,0,0,0,fx,{\an5\pos(967,38)\1c&H6B2AFD&\blur3\iclip(m 967 14 l 976 38 l 967 62 l 958 38)\fs55}気
Dialogue: 1,0:01:23.38,0:01:23.39,OPJP,,0,0,0,fx,{\an5\pos(967,38)\1c&H6B2AFD&\blur3\iclip(m 967 6 l 979 38 l 967 70 l 955 38)\fs55}気
Dialogue: 1,0:01:23.39,0:01:23.41,OPJP,,0,0,0,fx,{\an5\pos(967,38)\1c&H6B2AFD&\blur3\iclip(m 967 -2 l 982 38 l 967 78 l 952 38)\fs55}気
Dialogue: 1,0:01:23.41,0:01:23.43,OPJP,,0,0,0,fx,{\an5\pos(967,38)\1c&H6B2AFD&\blur3\iclip(m 967 -10 l 985 38 l 967 86 l 949 38)\fs55}気
Dialogue: 1,0:01:23.43,0:01:23.44,OPJP,,0,0,0,fx,{\an5\pos(967,38)\1c&H6B2AFD&\blur3\iclip(m 967 -18 l 988 38 l 967 94 l 946 38)\fs55}気
Dialogue: 1,0:01:23.44,0:01:23.46,OPJP,,0,0,0,fx,{\an5\pos(967,38)\1c&H6B2AFD&\blur3\iclip(m 967 -26 l 991 38 l 967 102 l 943 38)\fs55}気
Dialogue: 1,0:01:23.46,0:01:23.47,OPJP,,0,0,0,fx,{\an5\pos(967,38)\1c&H6B2AFD&\blur3\iclip(m 967 -34 l 994 38 l 967 110 l 940 38)\fs55}気
Dialogue: 1,0:01:23.47,0:01:23.49,OPJP,,0,0,0,fx,{\an5\pos(967,38)\1c&H6B2AFD&\blur3\iclip(m 967 -42 l 997 38 l 967 118 l 937 38)\fs55}気
Dialogue: 1,0:01:23.49,0:01:23.51,OPJP,,0,0,0,fx,{\an5\pos(967,38)\1c&H6B2AFD&\blur3\iclip(m 967 -50 l 1000 38 l 967 126 l 934 38)\fs55}気
Dialogue: 0,0:01:23.35,0:01:23.51,OPJP,,0,0,0,fx,{\an5\pos(967,38)\blur3\fs55}気
Dialogue: 1,0:01:23.51,0:01:24.48,OPJP,,0,0,0,fx,{\an5\pos(967,38)\blur3\fs55\fad(0,200)}気
Dialogue: 1,0:01:22.43,0:01:23.51,OPJP,,0,0,0,fx,{\an5\pos(1014,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}で
Dialogue: 1,0:01:23.51,0:01:23.53,OPJP,,0,0,0,fx,{\an5\pos(1014,38)\1c&H6B2AFD&\blur3\iclip(m 1014 22 l 1020 38 l 1014 54 l 1008 38)\fs55}で
Dialogue: 1,0:01:23.53,0:01:23.56,OPJP,,0,0,0,fx,{\an5\pos(1014,38)\1c&H6B2AFD&\blur3\iclip(m 1014 14 l 1023 38 l 1014 62 l 1005 38)\fs55}で
Dialogue: 1,0:01:23.56,0:01:23.58,OPJP,,0,0,0,fx,{\an5\pos(1014,38)\1c&H6B2AFD&\blur3\iclip(m 1014 6 l 1026 38 l 1014 70 l 1002 38)\fs55}で
Dialogue: 1,0:01:23.58,0:01:23.61,OPJP,,0,0,0,fx,{\an5\pos(1014,38)\1c&H6B2AFD&\blur3\iclip(m 1014 -2 l 1029 38 l 1014 78 l 999 38)\fs55}で
Dialogue: 1,0:01:23.61,0:01:23.64,OPJP,,0,0,0,fx,{\an5\pos(1014,38)\1c&H6B2AFD&\blur3\iclip(m 1014 -10 l 1032 38 l 1014 86 l 996 38)\fs55}で
Dialogue: 1,0:01:23.64,0:01:23.66,OPJP,,0,0,0,fx,{\an5\pos(1014,38)\1c&H6B2AFD&\blur3\iclip(m 1014 -18 l 1035 38 l 1014 94 l 993 38)\fs55}で
Dialogue: 1,0:01:23.66,0:01:23.69,OPJP,,0,0,0,fx,{\an5\pos(1014,38)\1c&H6B2AFD&\blur3\iclip(m 1014 -26 l 1038 38 l 1014 102 l 990 38)\fs55}で
Dialogue: 1,0:01:23.69,0:01:23.71,OPJP,,0,0,0,fx,{\an5\pos(1014,38)\1c&H6B2AFD&\blur3\iclip(m 1014 -34 l 1041 38 l 1014 110 l 987 38)\fs55}で
Dialogue: 1,0:01:23.71,0:01:23.74,OPJP,,0,0,0,fx,{\an5\pos(1014,38)\1c&H6B2AFD&\blur3\iclip(m 1014 -42 l 1044 38 l 1014 118 l 984 38)\fs55}で
Dialogue: 1,0:01:23.74,0:01:23.77,OPJP,,0,0,0,fx,{\an5\pos(1014,38)\1c&H6B2AFD&\blur3\iclip(m 1014 -50 l 1047 38 l 1014 126 l 981 38)\fs55}で
Dialogue: 0,0:01:23.51,0:01:23.77,OPJP,,0,0,0,fx,{\an5\pos(1014,38)\blur3\fs55}で
Dialogue: 1,0:01:23.77,0:01:24.51,OPJP,,0,0,0,fx,{\an5\pos(1014,38)\blur3\fs55\fad(0,200)}で
Dialogue: 1,0:01:22.46,0:01:23.77,OPJP,,0,0,0,fx,{\an5\pos(1061,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}す
Dialogue: 1,0:01:23.77,0:01:23.78,OPJP,,0,0,0,fx,{\an5\pos(1061,38)\1c&H6B2AFD&\blur3\iclip(m 1061 22 l 1067 38 l 1061 54 l 1055 38)\fs55}す
Dialogue: 1,0:01:23.78,0:01:23.80,OPJP,,0,0,0,fx,{\an5\pos(1061,38)\1c&H6B2AFD&\blur3\iclip(m 1061 14 l 1070 38 l 1061 62 l 1052 38)\fs55}す
Dialogue: 1,0:01:23.80,0:01:23.81,OPJP,,0,0,0,fx,{\an5\pos(1061,38)\1c&H6B2AFD&\blur3\iclip(m 1061 6 l 1073 38 l 1061 70 l 1049 38)\fs55}す
Dialogue: 1,0:01:23.81,0:01:23.83,OPJP,,0,0,0,fx,{\an5\pos(1061,38)\1c&H6B2AFD&\blur3\iclip(m 1061 -2 l 1076 38 l 1061 78 l 1046 38)\fs55}す
Dialogue: 1,0:01:23.83,0:01:23.84,OPJP,,0,0,0,fx,{\an5\pos(1061,38)\1c&H6B2AFD&\blur3\iclip(m 1061 -10 l 1079 38 l 1061 86 l 1043 38)\fs55}す
Dialogue: 1,0:01:23.84,0:01:23.86,OPJP,,0,0,0,fx,{\an5\pos(1061,38)\1c&H6B2AFD&\blur3\iclip(m 1061 -18 l 1082 38 l 1061 94 l 1040 38)\fs55}す
Dialogue: 1,0:01:23.86,0:01:23.87,OPJP,,0,0,0,fx,{\an5\pos(1061,38)\1c&H6B2AFD&\blur3\iclip(m 1061 -26 l 1085 38 l 1061 102 l 1037 38)\fs55}す
Dialogue: 1,0:01:23.87,0:01:23.89,OPJP,,0,0,0,fx,{\an5\pos(1061,38)\1c&H6B2AFD&\blur3\iclip(m 1061 -34 l 1088 38 l 1061 110 l 1034 38)\fs55}す
Dialogue: 1,0:01:23.89,0:01:23.90,OPJP,,0,0,0,fx,{\an5\pos(1061,38)\1c&H6B2AFD&\blur3\iclip(m 1061 -42 l 1091 38 l 1061 118 l 1031 38)\fs55}す
Dialogue: 1,0:01:23.90,0:01:23.92,OPJP,,0,0,0,fx,{\an5\pos(1061,38)\1c&H6B2AFD&\blur3\iclip(m 1061 -50 l 1094 38 l 1061 126 l 1028 38)\fs55}す
Dialogue: 0,0:01:23.77,0:01:23.92,OPJP,,0,0,0,fx,{\an5\pos(1061,38)\blur3\fs55}す
Dialogue: 1,0:01:23.92,0:01:24.54,OPJP,,0,0,0,fx,{\an5\pos(1061,38)\blur3\fs55\fad(0,200)}す
Dialogue: 1,0:01:22.49,0:01:23.92,OPJP,,0,0,0,fx,{\an5\pos(1109,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}か
Dialogue: 1,0:01:22.49,0:01:23.92,OPJP,,0,0,0,fx,{\an5\pos(1149,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}?
Dialogue: 1,0:01:23.92,0:01:23.94,OPJP,,0,0,0,fx,{\an5\pos(1109,38)\1c&H6B2AFD&\blur3\iclip(m 1109 22 l 1115 38 l 1109 54 l 1103 38)\fs55}か
Dialogue: 1,0:01:23.94,0:01:23.97,OPJP,,0,0,0,fx,{\an5\pos(1109,38)\1c&H6B2AFD&\blur3\iclip(m 1109 14 l 1118 38 l 1109 62 l 1100 38)\fs55}か
Dialogue: 1,0:01:23.97,0:01:24.00,OPJP,,0,0,0,fx,{\an5\pos(1109,38)\1c&H6B2AFD&\blur3\iclip(m 1109 6 l 1121 38 l 1109 70 l 1097 38)\fs55}か
Dialogue: 1,0:01:24.00,0:01:24.02,OPJP,,0,0,0,fx,{\an5\pos(1109,38)\1c&H6B2AFD&\blur3\iclip(m 1109 -2 l 1124 38 l 1109 78 l 1094 38)\fs55}か
Dialogue: 1,0:01:24.02,0:01:24.05,OPJP,,0,0,0,fx,{\an5\pos(1109,38)\1c&H6B2AFD&\blur3\iclip(m 1109 -10 l 1127 38 l 1109 86 l 1091 38)\fs55}か
Dialogue: 1,0:01:24.05,0:01:24.08,OPJP,,0,0,0,fx,{\an5\pos(1109,38)\1c&H6B2AFD&\blur3\iclip(m 1109 -18 l 1130 38 l 1109 94 l 1088 38)\fs55}か
Dialogue: 1,0:01:24.08,0:01:24.10,OPJP,,0,0,0,fx,{\an5\pos(1109,38)\1c&H6B2AFD&\blur3\iclip(m 1109 -26 l 1133 38 l 1109 102 l 1085 38)\fs55}か
Dialogue: 1,0:01:24.10,0:01:24.13,OPJP,,0,0,0,fx,{\an5\pos(1109,38)\1c&H6B2AFD&\blur3\iclip(m 1109 -34 l 1136 38 l 1109 110 l 1082 38)\fs55}か
Dialogue: 1,0:01:24.13,0:01:24.16,OPJP,,0,0,0,fx,{\an5\pos(1109,38)\1c&H6B2AFD&\blur3\iclip(m 1109 -42 l 1139 38 l 1109 118 l 1079 38)\fs55}か
Dialogue: 1,0:01:24.16,0:01:24.19,OPJP,,0,0,0,fx,{\an5\pos(1109,38)\1c&H6B2AFD&\blur3\iclip(m 1109 -50 l 1142 38 l 1109 126 l 1076 38)\fs55}か
Dialogue: 1,0:01:23.92,0:01:23.94,OPJP,,0,0,0,fx,{\an5\pos(1149,38)\1c&H6B2AFD&\blur3\iclip(m 1149 22 l 1155 38 l 1149 54 l 1143 38)\fs55}?
Dialogue: 1,0:01:23.94,0:01:23.97,OPJP,,0,0,0,fx,{\an5\pos(1149,38)\1c&H6B2AFD&\blur3\iclip(m 1149 14 l 1158 38 l 1149 62 l 1140 38)\fs55}?
Dialogue: 1,0:01:23.97,0:01:24.00,OPJP,,0,0,0,fx,{\an5\pos(1149,38)\1c&H6B2AFD&\blur3\iclip(m 1149 6 l 1161 38 l 1149 70 l 1137 38)\fs55}?
Dialogue: 1,0:01:24.00,0:01:24.02,OPJP,,0,0,0,fx,{\an5\pos(1149,38)\1c&H6B2AFD&\blur3\iclip(m 1149 -2 l 1164 38 l 1149 78 l 1134 38)\fs55}?
Dialogue: 1,0:01:24.02,0:01:24.05,OPJP,,0,0,0,fx,{\an5\pos(1149,38)\1c&H6B2AFD&\blur3\iclip(m 1149 -10 l 1167 38 l 1149 86 l 1131 38)\fs55}?
Dialogue: 1,0:01:24.05,0:01:24.08,OPJP,,0,0,0,fx,{\an5\pos(1149,38)\1c&H6B2AFD&\blur3\iclip(m 1149 -18 l 1170 38 l 1149 94 l 1128 38)\fs55}?
Dialogue: 1,0:01:24.08,0:01:24.10,OPJP,,0,0,0,fx,{\an5\pos(1149,38)\1c&H6B2AFD&\blur3\iclip(m 1149 -26 l 1173 38 l 1149 102 l 1125 38)\fs55}?
Dialogue: 1,0:01:24.10,0:01:24.13,OPJP,,0,0,0,fx,{\an5\pos(1149,38)\1c&H6B2AFD&\blur3\iclip(m 1149 -34 l 1176 38 l 1149 110 l 1122 38)\fs55}?
Dialogue: 1,0:01:24.13,0:01:24.16,OPJP,,0,0,0,fx,{\an5\pos(1149,38)\1c&H6B2AFD&\blur3\iclip(m 1149 -42 l 1179 38 l 1149 118 l 1119 38)\fs55}?
Dialogue: 1,0:01:24.16,0:01:24.19,OPJP,,0,0,0,fx,{\an5\pos(1149,38)\1c&H6B2AFD&\blur3\iclip(m 1149 -50 l 1182 38 l 1149 126 l 1116 38)\fs55}?
Dialogue: 0,0:01:23.92,0:01:24.19,OPJP,,0,0,0,fx,{\an5\pos(1109,38)\blur3\fs55}か
Dialogue: 0,0:01:23.92,0:01:24.19,OPJP,,0,0,0,fx,{\an5\pos(1149,38)\blur3\fs55}?
Dialogue: 1,0:01:24.19,0:01:24.57,OPJP,,0,0,0,fx,{\an5\pos(1109,38)\blur3\fs55\fad(0,200)}か
Dialogue: 1,0:01:24.19,0:01:24.57,OPJP,,0,0,0,fx,{\an5\pos(1149,38)\blur3\fs55\fad(0,200)}?
Dialogue: 1,0:01:23.99,0:01:24.19,OPJP,,0,0,0,fx,{\an5\pos(656,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}頼
Dialogue: 1,0:01:24.19,0:01:24.24,OPJP,,0,0,0,fx,{\an5\pos(656,38)\1c&H6B2AFD&\blur3\iclip(m 656 22 l 662 38 l 656 54 l 650 38)\fs55}頼
Dialogue: 1,0:01:24.24,0:01:24.29,OPJP,,0,0,0,fx,{\an5\pos(656,38)\1c&H6B2AFD&\blur3\iclip(m 656 14 l 665 38 l 656 62 l 647 38)\fs55}頼
Dialogue: 1,0:01:24.29,0:01:24.34,OPJP,,0,0,0,fx,{\an5\pos(656,38)\1c&H6B2AFD&\blur3\iclip(m 656 6 l 668 38 l 656 70 l 644 38)\fs55}頼
Dialogue: 1,0:01:24.34,0:01:24.39,OPJP,,0,0,0,fx,{\an5\pos(656,38)\1c&H6B2AFD&\blur3\iclip(m 656 -2 l 671 38 l 656 78 l 641 38)\fs55}頼
Dialogue: 1,0:01:24.39,0:01:24.44,OPJP,,0,0,0,fx,{\an5\pos(656,38)\1c&H6B2AFD&\blur3\iclip(m 656 -10 l 674 38 l 656 86 l 638 38)\fs55}頼
Dialogue: 1,0:01:24.44,0:01:24.49,OPJP,,0,0,0,fx,{\an5\pos(656,38)\1c&H6B2AFD&\blur3\iclip(m 656 -18 l 677 38 l 656 94 l 635 38)\fs55}頼
Dialogue: 1,0:01:24.49,0:01:24.54,OPJP,,0,0,0,fx,{\an5\pos(656,38)\1c&H6B2AFD&\blur3\iclip(m 656 -26 l 680 38 l 656 102 l 632 38)\fs55}頼
Dialogue: 1,0:01:24.54,0:01:24.59,OPJP,,0,0,0,fx,{\an5\pos(656,38)\1c&H6B2AFD&\blur3\iclip(m 656 -34 l 683 38 l 656 110 l 629 38)\fs55}頼
Dialogue: 1,0:01:24.59,0:01:24.64,OPJP,,0,0,0,fx,{\an5\pos(656,38)\1c&H6B2AFD&\blur3\iclip(m 656 -42 l 686 38 l 656 118 l 626 38)\fs55}頼
Dialogue: 1,0:01:24.64,0:01:24.69,OPJP,,0,0,0,fx,{\an5\pos(656,38)\1c&H6B2AFD&\blur3\iclip(m 656 -50 l 689 38 l 656 126 l 623 38)\fs55}頼
Dialogue: 0,0:01:24.19,0:01:24.69,OPJP,,0,0,0,fx,{\an5\pos(656,38)\blur3\fs55}頼
Dialogue: 1,0:01:24.69,0:01:29.51,OPJP,,0,0,0,fx,{\an5\pos(656,38)\blur3\fs55\fad(0,200)}頼
Dialogue: 1,0:01:24.02,0:01:24.69,OPJP,,0,0,0,fx,{\an5\pos(703,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}り
Dialogue: 1,0:01:24.69,0:01:24.70,OPJP,,0,0,0,fx,{\an5\pos(703,38)\1c&H6B2AFD&\blur3\iclip(m 703 22 l 709 38 l 703 54 l 697 38)\fs55}り
Dialogue: 1,0:01:24.70,0:01:24.72,OPJP,,0,0,0,fx,{\an5\pos(703,38)\1c&H6B2AFD&\blur3\iclip(m 703 14 l 712 38 l 703 62 l 694 38)\fs55}り
Dialogue: 1,0:01:24.72,0:01:24.73,OPJP,,0,0,0,fx,{\an5\pos(703,38)\1c&H6B2AFD&\blur3\iclip(m 703 6 l 715 38 l 703 70 l 691 38)\fs55}り
Dialogue: 1,0:01:24.73,0:01:24.75,OPJP,,0,0,0,fx,{\an5\pos(703,38)\1c&H6B2AFD&\blur3\iclip(m 703 -2 l 718 38 l 703 78 l 688 38)\fs55}り
Dialogue: 1,0:01:24.75,0:01:24.77,OPJP,,0,0,0,fx,{\an5\pos(703,38)\1c&H6B2AFD&\blur3\iclip(m 703 -10 l 721 38 l 703 86 l 685 38)\fs55}り
Dialogue: 1,0:01:24.77,0:01:24.78,OPJP,,0,0,0,fx,{\an5\pos(703,38)\1c&H6B2AFD&\blur3\iclip(m 703 -18 l 724 38 l 703 94 l 682 38)\fs55}り
Dialogue: 1,0:01:24.78,0:01:24.80,OPJP,,0,0,0,fx,{\an5\pos(703,38)\1c&H6B2AFD&\blur3\iclip(m 703 -26 l 727 38 l 703 102 l 679 38)\fs55}り
Dialogue: 1,0:01:24.80,0:01:24.81,OPJP,,0,0,0,fx,{\an5\pos(703,38)\1c&H6B2AFD&\blur3\iclip(m 703 -34 l 730 38 l 703 110 l 676 38)\fs55}り
Dialogue: 1,0:01:24.81,0:01:24.83,OPJP,,0,0,0,fx,{\an5\pos(703,38)\1c&H6B2AFD&\blur3\iclip(m 703 -42 l 733 38 l 703 118 l 673 38)\fs55}り
Dialogue: 1,0:01:24.83,0:01:24.85,OPJP,,0,0,0,fx,{\an5\pos(703,38)\1c&H6B2AFD&\blur3\iclip(m 703 -50 l 736 38 l 703 126 l 670 38)\fs55}り
Dialogue: 0,0:01:24.69,0:01:24.85,OPJP,,0,0,0,fx,{\an5\pos(703,38)\blur3\fs55}り
Dialogue: 1,0:01:24.85,0:01:29.54,OPJP,,0,0,0,fx,{\an5\pos(703,38)\blur3\fs55\fad(0,200)}り
Dialogue: 1,0:01:24.05,0:01:24.85,OPJP,,0,0,0,fx,{\an5\pos(771,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}頼
Dialogue: 1,0:01:24.85,0:01:24.89,OPJP,,0,0,0,fx,{\an5\pos(771,38)\1c&H6B2AFD&\blur3\iclip(m 771 22 l 777 38 l 771 54 l 765 38)\fs55}頼
Dialogue: 1,0:01:24.89,0:01:24.93,OPJP,,0,0,0,fx,{\an5\pos(771,38)\1c&H6B2AFD&\blur3\iclip(m 771 14 l 780 38 l 771 62 l 762 38)\fs55}頼
Dialogue: 1,0:01:24.93,0:01:24.97,OPJP,,0,0,0,fx,{\an5\pos(771,38)\1c&H6B2AFD&\blur3\iclip(m 771 6 l 783 38 l 771 70 l 759 38)\fs55}頼
Dialogue: 1,0:01:24.97,0:01:25.01,OPJP,,0,0,0,fx,{\an5\pos(771,38)\1c&H6B2AFD&\blur3\iclip(m 771 -2 l 786 38 l 771 78 l 756 38)\fs55}頼
Dialogue: 1,0:01:25.01,0:01:25.06,OPJP,,0,0,0,fx,{\an5\pos(771,38)\1c&H6B2AFD&\blur3\iclip(m 771 -10 l 789 38 l 771 86 l 753 38)\fs55}頼
Dialogue: 1,0:01:25.06,0:01:25.10,OPJP,,0,0,0,fx,{\an5\pos(771,38)\1c&H6B2AFD&\blur3\iclip(m 771 -18 l 792 38 l 771 94 l 750 38)\fs55}頼
Dialogue: 1,0:01:25.10,0:01:25.14,OPJP,,0,0,0,fx,{\an5\pos(771,38)\1c&H6B2AFD&\blur3\iclip(m 771 -26 l 795 38 l 771 102 l 747 38)\fs55}頼
Dialogue: 1,0:01:25.14,0:01:25.18,OPJP,,0,0,0,fx,{\an5\pos(771,38)\1c&H6B2AFD&\blur3\iclip(m 771 -34 l 798 38 l 771 110 l 744 38)\fs55}頼
Dialogue: 1,0:01:25.18,0:01:25.22,OPJP,,0,0,0,fx,{\an5\pos(771,38)\1c&H6B2AFD&\blur3\iclip(m 771 -42 l 801 38 l 771 118 l 741 38)\fs55}頼
Dialogue: 1,0:01:25.22,0:01:25.27,OPJP,,0,0,0,fx,{\an5\pos(771,38)\1c&H6B2AFD&\blur3\iclip(m 771 -50 l 804 38 l 771 126 l 738 38)\fs55}頼
Dialogue: 0,0:01:24.85,0:01:25.27,OPJP,,0,0,0,fx,{\an5\pos(771,38)\blur3\fs55}頼
Dialogue: 1,0:01:25.27,0:01:29.57,OPJP,,0,0,0,fx,{\an5\pos(771,38)\blur3\fs55\fad(0,200)}頼
Dialogue: 1,0:01:24.08,0:01:25.27,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}ら
Dialogue: 1,0:01:25.27,0:01:25.28,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 22 l 825 38 l 819 54 l 813 38)\fs55}ら
Dialogue: 1,0:01:25.28,0:01:25.29,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 14 l 828 38 l 819 62 l 810 38)\fs55}ら
Dialogue: 1,0:01:25.29,0:01:25.30,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 6 l 831 38 l 819 70 l 807 38)\fs55}ら
Dialogue: 1,0:01:25.30,0:01:25.32,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -2 l 834 38 l 819 78 l 804 38)\fs55}ら
Dialogue: 1,0:01:25.32,0:01:25.33,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -10 l 837 38 l 819 86 l 801 38)\fs55}ら
Dialogue: 1,0:01:25.33,0:01:25.34,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -18 l 840 38 l 819 94 l 798 38)\fs55}ら
Dialogue: 1,0:01:25.34,0:01:25.36,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -26 l 843 38 l 819 102 l 795 38)\fs55}ら
Dialogue: 1,0:01:25.36,0:01:25.37,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -34 l 846 38 l 819 110 l 792 38)\fs55}ら
Dialogue: 1,0:01:25.37,0:01:25.38,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -42 l 849 38 l 819 118 l 789 38)\fs55}ら
Dialogue: 1,0:01:25.38,0:01:25.40,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -50 l 852 38 l 819 126 l 786 38)\fs55}ら
Dialogue: 0,0:01:25.27,0:01:25.40,OPJP,,0,0,0,fx,{\an5\pos(819,38)\blur3\fs55}ら
Dialogue: 1,0:01:25.40,0:01:29.60,OPJP,,0,0,0,fx,{\an5\pos(819,38)\blur3\fs55\fad(0,200)}ら
Dialogue: 1,0:01:24.11,0:01:25.40,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}れ
Dialogue: 1,0:01:25.40,0:01:25.42,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 22 l 872 38 l 866 54 l 860 38)\fs55}れ
Dialogue: 1,0:01:25.42,0:01:25.44,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 14 l 875 38 l 866 62 l 857 38)\fs55}れ
Dialogue: 1,0:01:25.44,0:01:25.46,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 6 l 878 38 l 866 70 l 854 38)\fs55}れ
Dialogue: 1,0:01:25.46,0:01:25.48,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -2 l 881 38 l 866 78 l 851 38)\fs55}れ
Dialogue: 1,0:01:25.48,0:01:25.50,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -10 l 884 38 l 866 86 l 848 38)\fs55}れ
Dialogue: 1,0:01:25.50,0:01:25.52,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -18 l 887 38 l 866 94 l 845 38)\fs55}れ
Dialogue: 1,0:01:25.52,0:01:25.54,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -26 l 890 38 l 866 102 l 842 38)\fs55}れ
Dialogue: 1,0:01:25.54,0:01:25.56,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -34 l 893 38 l 866 110 l 839 38)\fs55}れ
Dialogue: 1,0:01:25.56,0:01:25.58,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -42 l 896 38 l 866 118 l 836 38)\fs55}れ
Dialogue: 1,0:01:25.58,0:01:25.60,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -50 l 899 38 l 866 126 l 833 38)\fs55}れ
Dialogue: 0,0:01:25.40,0:01:25.60,OPJP,,0,0,0,fx,{\an5\pos(866,38)\blur3\fs55}れ
Dialogue: 1,0:01:25.60,0:01:29.63,OPJP,,0,0,0,fx,{\an5\pos(866,38)\blur3\fs55\fad(0,200)}れ
Dialogue: 1,0:01:24.14,0:01:25.60,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}て
Dialogue: 1,0:01:25.60,0:01:25.62,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 22 l 919 38 l 913 54 l 907 38)\fs55}て
Dialogue: 1,0:01:25.62,0:01:25.65,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 14 l 922 38 l 913 62 l 904 38)\fs55}て
Dialogue: 1,0:01:25.65,0:01:25.68,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 6 l 925 38 l 913 70 l 901 38)\fs55}て
Dialogue: 1,0:01:25.68,0:01:25.71,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -2 l 928 38 l 913 78 l 898 38)\fs55}て
Dialogue: 1,0:01:25.71,0:01:25.74,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -10 l 931 38 l 913 86 l 895 38)\fs55}て
Dialogue: 1,0:01:25.74,0:01:25.76,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -18 l 934 38 l 913 94 l 892 38)\fs55}て
Dialogue: 1,0:01:25.76,0:01:25.79,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -26 l 937 38 l 913 102 l 889 38)\fs55}て
Dialogue: 1,0:01:25.79,0:01:25.82,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -34 l 940 38 l 913 110 l 886 38)\fs55}て
Dialogue: 1,0:01:25.82,0:01:25.85,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -42 l 943 38 l 913 118 l 883 38)\fs55}て
Dialogue: 1,0:01:25.85,0:01:25.88,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -50 l 946 38 l 913 126 l 880 38)\fs55}て
Dialogue: 0,0:01:25.60,0:01:25.88,OPJP,,0,0,0,fx,{\an5\pos(913,38)\blur3\fs55}て
Dialogue: 1,0:01:25.88,0:01:29.66,OPJP,,0,0,0,fx,{\an5\pos(913,38)\blur3\fs55\fad(0,200)}て
Dialogue: 1,0:01:24.17,0:01:25.88,OPJP,,0,0,0,fx,{\an5\pos(982,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}ス
Dialogue: 1,0:01:25.88,0:01:25.91,OPJP,,0,0,0,fx,{\an5\pos(982,38)\1c&H6B2AFD&\blur3\iclip(m 982 22 l 988 38 l 982 54 l 976 38)\fs55}ス
Dialogue: 1,0:01:25.91,0:01:25.94,OPJP,,0,0,0,fx,{\an5\pos(982,38)\1c&H6B2AFD&\blur3\iclip(m 982 14 l 991 38 l 982 62 l 973 38)\fs55}ス
Dialogue: 1,0:01:25.94,0:01:25.98,OPJP,,0,0,0,fx,{\an5\pos(982,38)\1c&H6B2AFD&\blur3\iclip(m 982 6 l 994 38 l 982 70 l 970 38)\fs55}ス
Dialogue: 1,0:01:25.98,0:01:26.01,OPJP,,0,0,0,fx,{\an5\pos(982,38)\1c&H6B2AFD&\blur3\iclip(m 982 -2 l 997 38 l 982 78 l 967 38)\fs55}ス
Dialogue: 1,0:01:26.01,0:01:26.05,OPJP,,0,0,0,fx,{\an5\pos(982,38)\1c&H6B2AFD&\blur3\iclip(m 982 -10 l 1000 38 l 982 86 l 964 38)\fs55}ス
Dialogue: 1,0:01:26.05,0:01:26.08,OPJP,,0,0,0,fx,{\an5\pos(982,38)\1c&H6B2AFD&\blur3\iclip(m 982 -18 l 1003 38 l 982 94 l 961 38)\fs55}ス
Dialogue: 1,0:01:26.08,0:01:26.11,OPJP,,0,0,0,fx,{\an5\pos(982,38)\1c&H6B2AFD&\blur3\iclip(m 982 -26 l 1006 38 l 982 102 l 958 38)\fs55}ス
Dialogue: 1,0:01:26.11,0:01:26.15,OPJP,,0,0,0,fx,{\an5\pos(982,38)\1c&H6B2AFD&\blur3\iclip(m 982 -34 l 1009 38 l 982 110 l 955 38)\fs55}ス
Dialogue: 1,0:01:26.15,0:01:26.18,OPJP,,0,0,0,fx,{\an5\pos(982,38)\1c&H6B2AFD&\blur3\iclip(m 982 -42 l 1012 38 l 982 118 l 952 38)\fs55}ス
Dialogue: 1,0:01:26.18,0:01:26.22,OPJP,,0,0,0,fx,{\an5\pos(982,38)\1c&H6B2AFD&\blur3\iclip(m 982 -50 l 1015 38 l 982 126 l 949 38)\fs55}ス
Dialogue: 0,0:01:25.88,0:01:26.22,OPJP,,0,0,0,fx,{\an5\pos(982,38)\blur3\fs55}ス
Dialogue: 1,0:01:26.22,0:01:29.69,OPJP,,0,0,0,fx,{\an5\pos(982,38)\blur3\fs55\fad(0,200)}ス
Dialogue: 1,0:01:24.20,0:01:26.22,OPJP,,0,0,0,fx,{\an5\pos(1029,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}キ
Dialogue: 1,0:01:26.22,0:01:26.24,OPJP,,0,0,0,fx,{\an5\pos(1029,38)\1c&H6B2AFD&\blur3\iclip(m 1029 22 l 1035 38 l 1029 54 l 1023 38)\fs55}キ
Dialogue: 1,0:01:26.24,0:01:26.26,OPJP,,0,0,0,fx,{\an5\pos(1029,38)\1c&H6B2AFD&\blur3\iclip(m 1029 14 l 1038 38 l 1029 62 l 1020 38)\fs55}キ
Dialogue: 1,0:01:26.26,0:01:26.28,OPJP,,0,0,0,fx,{\an5\pos(1029,38)\1c&H6B2AFD&\blur3\iclip(m 1029 6 l 1041 38 l 1029 70 l 1017 38)\fs55}キ
Dialogue: 1,0:01:26.28,0:01:26.30,OPJP,,0,0,0,fx,{\an5\pos(1029,38)\1c&H6B2AFD&\blur3\iclip(m 1029 -2 l 1044 38 l 1029 78 l 1014 38)\fs55}キ
Dialogue: 1,0:01:26.30,0:01:26.33,OPJP,,0,0,0,fx,{\an5\pos(1029,38)\1c&H6B2AFD&\blur3\iclip(m 1029 -10 l 1047 38 l 1029 86 l 1011 38)\fs55}キ
Dialogue: 1,0:01:26.33,0:01:26.35,OPJP,,0,0,0,fx,{\an5\pos(1029,38)\1c&H6B2AFD&\blur3\iclip(m 1029 -18 l 1050 38 l 1029 94 l 1008 38)\fs55}キ
Dialogue: 1,0:01:26.35,0:01:26.37,OPJP,,0,0,0,fx,{\an5\pos(1029,38)\1c&H6B2AFD&\blur3\iclip(m 1029 -26 l 1053 38 l 1029 102 l 1005 38)\fs55}キ
Dialogue: 1,0:01:26.37,0:01:26.39,OPJP,,0,0,0,fx,{\an5\pos(1029,38)\1c&H6B2AFD&\blur3\iclip(m 1029 -34 l 1056 38 l 1029 110 l 1002 38)\fs55}キ
Dialogue: 1,0:01:26.39,0:01:26.41,OPJP,,0,0,0,fx,{\an5\pos(1029,38)\1c&H6B2AFD&\blur3\iclip(m 1029 -42 l 1059 38 l 1029 118 l 999 38)\fs55}キ
Dialogue: 1,0:01:26.41,0:01:26.44,OPJP,,0,0,0,fx,{\an5\pos(1029,38)\1c&H6B2AFD&\blur3\iclip(m 1029 -50 l 1062 38 l 1029 126 l 996 38)\fs55}キ
Dialogue: 0,0:01:26.22,0:01:26.44,OPJP,,0,0,0,fx,{\an5\pos(1029,38)\blur3\fs55}キ
Dialogue: 1,0:01:26.44,0:01:29.72,OPJP,,0,0,0,fx,{\an5\pos(1029,38)\blur3\fs55\fad(0,200)}キ
Dialogue: 1,0:01:24.23,0:01:26.44,OPJP,,0,0,0,fx,{\an5\pos(1076,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}で
Dialogue: 1,0:01:26.44,0:01:26.46,OPJP,,0,0,0,fx,{\an5\pos(1076,38)\1c&H6B2AFD&\blur3\iclip(m 1076 22 l 1082 38 l 1076 54 l 1070 38)\fs55}で
Dialogue: 1,0:01:26.46,0:01:26.48,OPJP,,0,0,0,fx,{\an5\pos(1076,38)\1c&H6B2AFD&\blur3\iclip(m 1076 14 l 1085 38 l 1076 62 l 1067 38)\fs55}で
Dialogue: 1,0:01:26.48,0:01:26.51,OPJP,,0,0,0,fx,{\an5\pos(1076,38)\1c&H6B2AFD&\blur3\iclip(m 1076 6 l 1088 38 l 1076 70 l 1064 38)\fs55}で
Dialogue: 1,0:01:26.51,0:01:26.53,OPJP,,0,0,0,fx,{\an5\pos(1076,38)\1c&H6B2AFD&\blur3\iclip(m 1076 -2 l 1091 38 l 1076 78 l 1061 38)\fs55}で
Dialogue: 1,0:01:26.53,0:01:26.56,OPJP,,0,0,0,fx,{\an5\pos(1076,38)\1c&H6B2AFD&\blur3\iclip(m 1076 -10 l 1094 38 l 1076 86 l 1058 38)\fs55}で
Dialogue: 1,0:01:26.56,0:01:26.58,OPJP,,0,0,0,fx,{\an5\pos(1076,38)\1c&H6B2AFD&\blur3\iclip(m 1076 -18 l 1097 38 l 1076 94 l 1055 38)\fs55}で
Dialogue: 1,0:01:26.58,0:01:26.60,OPJP,,0,0,0,fx,{\an5\pos(1076,38)\1c&H6B2AFD&\blur3\iclip(m 1076 -26 l 1100 38 l 1076 102 l 1052 38)\fs55}で
Dialogue: 1,0:01:26.60,0:01:26.63,OPJP,,0,0,0,fx,{\an5\pos(1076,38)\1c&H6B2AFD&\blur3\iclip(m 1076 -34 l 1103 38 l 1076 110 l 1049 38)\fs55}で
Dialogue: 1,0:01:26.63,0:01:26.65,OPJP,,0,0,0,fx,{\an5\pos(1076,38)\1c&H6B2AFD&\blur3\iclip(m 1076 -42 l 1106 38 l 1076 118 l 1046 38)\fs55}で
Dialogue: 1,0:01:26.65,0:01:26.68,OPJP,,0,0,0,fx,{\an5\pos(1076,38)\1c&H6B2AFD&\blur3\iclip(m 1076 -50 l 1109 38 l 1076 126 l 1043 38)\fs55}で
Dialogue: 0,0:01:26.44,0:01:26.68,OPJP,,0,0,0,fx,{\an5\pos(1076,38)\blur3\fs55}で
Dialogue: 1,0:01:26.68,0:01:29.75,OPJP,,0,0,0,fx,{\an5\pos(1076,38)\blur3\fs55\fad(0,200)}で
Dialogue: 1,0:01:24.26,0:01:26.68,OPJP,,0,0,0,fx,{\an5\pos(1123,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}す
Dialogue: 1,0:01:26.68,0:01:26.72,OPJP,,0,0,0,fx,{\an5\pos(1123,38)\1c&H6B2AFD&\blur3\iclip(m 1123 22 l 1129 38 l 1123 54 l 1117 38)\fs55}す
Dialogue: 1,0:01:26.72,0:01:26.77,OPJP,,0,0,0,fx,{\an5\pos(1123,38)\1c&H6B2AFD&\blur3\iclip(m 1123 14 l 1132 38 l 1123 62 l 1114 38)\fs55}す
Dialogue: 1,0:01:26.77,0:01:26.81,OPJP,,0,0,0,fx,{\an5\pos(1123,38)\1c&H6B2AFD&\blur3\iclip(m 1123 6 l 1135 38 l 1123 70 l 1111 38)\fs55}す
Dialogue: 1,0:01:26.81,0:01:26.86,OPJP,,0,0,0,fx,{\an5\pos(1123,38)\1c&H6B2AFD&\blur3\iclip(m 1123 -2 l 1138 38 l 1123 78 l 1108 38)\fs55}す
Dialogue: 1,0:01:26.86,0:01:26.91,OPJP,,0,0,0,fx,{\an5\pos(1123,38)\1c&H6B2AFD&\blur3\iclip(m 1123 -10 l 1141 38 l 1123 86 l 1105 38)\fs55}す
Dialogue: 1,0:01:26.91,0:01:26.95,OPJP,,0,0,0,fx,{\an5\pos(1123,38)\1c&H6B2AFD&\blur3\iclip(m 1123 -18 l 1144 38 l 1123 94 l 1102 38)\fs55}す
Dialogue: 1,0:01:26.95,0:01:27.00,OPJP,,0,0,0,fx,{\an5\pos(1123,38)\1c&H6B2AFD&\blur3\iclip(m 1123 -26 l 1147 38 l 1123 102 l 1099 38)\fs55}す
Dialogue: 1,0:01:27.00,0:01:27.04,OPJP,,0,0,0,fx,{\an5\pos(1123,38)\1c&H6B2AFD&\blur3\iclip(m 1123 -34 l 1150 38 l 1123 110 l 1096 38)\fs55}す
Dialogue: 1,0:01:27.04,0:01:27.09,OPJP,,0,0,0,fx,{\an5\pos(1123,38)\1c&H6B2AFD&\blur3\iclip(m 1123 -42 l 1153 38 l 1123 118 l 1093 38)\fs55}す
Dialogue: 1,0:01:27.09,0:01:27.14,OPJP,,0,0,0,fx,{\an5\pos(1123,38)\1c&H6B2AFD&\blur3\iclip(m 1123 -50 l 1156 38 l 1123 126 l 1090 38)\fs55}す
Dialogue: 0,0:01:26.68,0:01:27.14,OPJP,,0,0,0,fx,{\an5\pos(1123,38)\blur3\fs55}す
Dialogue: 1,0:01:27.14,0:01:29.78,OPJP,,0,0,0,fx,{\an5\pos(1123,38)\blur3\fs55\fad(0,200)}す
Dialogue: 1,0:01:24.29,0:01:27.14,OPJP,,0,0,0,fx,{\an5\pos(1170,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}か
Dialogue: 1,0:01:27.14,0:01:27.19,OPJP,,0,0,0,fx,{\an5\pos(1170,38)\1c&H6B2AFD&\blur3\iclip(m 1170 22 l 1176 38 l 1170 54 l 1164 38)\fs55}か
Dialogue: 1,0:01:27.19,0:01:27.25,OPJP,,0,0,0,fx,{\an5\pos(1170,38)\1c&H6B2AFD&\blur3\iclip(m 1170 14 l 1179 38 l 1170 62 l 1161 38)\fs55}か
Dialogue: 1,0:01:27.25,0:01:27.30,OPJP,,0,0,0,fx,{\an5\pos(1170,38)\1c&H6B2AFD&\blur3\iclip(m 1170 6 l 1182 38 l 1170 70 l 1158 38)\fs55}か
Dialogue: 1,0:01:27.30,0:01:27.36,OPJP,,0,0,0,fx,{\an5\pos(1170,38)\1c&H6B2AFD&\blur3\iclip(m 1170 -2 l 1185 38 l 1170 78 l 1155 38)\fs55}か
Dialogue: 1,0:01:27.36,0:01:27.41,OPJP,,0,0,0,fx,{\an5\pos(1170,38)\1c&H6B2AFD&\blur3\iclip(m 1170 -10 l 1188 38 l 1170 86 l 1152 38)\fs55}か
Dialogue: 1,0:01:27.41,0:01:27.47,OPJP,,0,0,0,fx,{\an5\pos(1170,38)\1c&H6B2AFD&\blur3\iclip(m 1170 -18 l 1191 38 l 1170 94 l 1149 38)\fs55}か
Dialogue: 1,0:01:27.47,0:01:27.52,OPJP,,0,0,0,fx,{\an5\pos(1170,38)\1c&H6B2AFD&\blur3\iclip(m 1170 -26 l 1194 38 l 1170 102 l 1146 38)\fs55}か
Dialogue: 1,0:01:27.52,0:01:27.58,OPJP,,0,0,0,fx,{\an5\pos(1170,38)\1c&H6B2AFD&\blur3\iclip(m 1170 -34 l 1197 38 l 1170 110 l 1143 38)\fs55}か
Dialogue: 1,0:01:27.58,0:01:27.63,OPJP,,0,0,0,fx,{\an5\pos(1170,38)\1c&H6B2AFD&\blur3\iclip(m 1170 -42 l 1200 38 l 1170 118 l 1140 38)\fs55}か
Dialogue: 1,0:01:27.63,0:01:27.69,OPJP,,0,0,0,fx,{\an5\pos(1170,38)\1c&H6B2AFD&\blur3\iclip(m 1170 -50 l 1203 38 l 1170 126 l 1137 38)\fs55}か
Dialogue: 0,0:01:27.14,0:01:27.69,OPJP,,0,0,0,fx,{\an5\pos(1170,38)\blur3\fs55}か
Dialogue: 1,0:01:27.69,0:01:29.81,OPJP,,0,0,0,fx,{\an5\pos(1170,38)\blur3\fs55\fad(0,200)}か
Dialogue: 1,0:01:24.32,0:01:27.69,OPJP,,0,0,0,fx,{\an5\pos(1217,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}れ
Dialogue: 1,0:01:27.69,0:01:27.71,OPJP,,0,0,0,fx,{\an5\pos(1217,38)\1c&H6B2AFD&\blur3\iclip(m 1217 22 l 1223 38 l 1217 54 l 1211 38)\fs55}れ
Dialogue: 1,0:01:27.71,0:01:27.73,OPJP,,0,0,0,fx,{\an5\pos(1217,38)\1c&H6B2AFD&\blur3\iclip(m 1217 14 l 1226 38 l 1217 62 l 1208 38)\fs55}れ
Dialogue: 1,0:01:27.73,0:01:27.75,OPJP,,0,0,0,fx,{\an5\pos(1217,38)\1c&H6B2AFD&\blur3\iclip(m 1217 6 l 1229 38 l 1217 70 l 1205 38)\fs55}れ
Dialogue: 1,0:01:27.75,0:01:27.77,OPJP,,0,0,0,fx,{\an5\pos(1217,38)\1c&H6B2AFD&\blur3\iclip(m 1217 -2 l 1232 38 l 1217 78 l 1202 38)\fs55}れ
Dialogue: 1,0:01:27.77,0:01:27.79,OPJP,,0,0,0,fx,{\an5\pos(1217,38)\1c&H6B2AFD&\blur3\iclip(m 1217 -10 l 1235 38 l 1217 86 l 1199 38)\fs55}れ
Dialogue: 1,0:01:27.79,0:01:27.81,OPJP,,0,0,0,fx,{\an5\pos(1217,38)\1c&H6B2AFD&\blur3\iclip(m 1217 -18 l 1238 38 l 1217 94 l 1196 38)\fs55}れ
Dialogue: 1,0:01:27.81,0:01:27.83,OPJP,,0,0,0,fx,{\an5\pos(1217,38)\1c&H6B2AFD&\blur3\iclip(m 1217 -26 l 1241 38 l 1217 102 l 1193 38)\fs55}れ
Dialogue: 1,0:01:27.83,0:01:27.85,OPJP,,0,0,0,fx,{\an5\pos(1217,38)\1c&H6B2AFD&\blur3\iclip(m 1217 -34 l 1244 38 l 1217 110 l 1190 38)\fs55}れ
Dialogue: 1,0:01:27.85,0:01:27.87,OPJP,,0,0,0,fx,{\an5\pos(1217,38)\1c&H6B2AFD&\blur3\iclip(m 1217 -42 l 1247 38 l 1217 118 l 1187 38)\fs55}れ
Dialogue: 1,0:01:27.87,0:01:27.90,OPJP,,0,0,0,fx,{\an5\pos(1217,38)\1c&H6B2AFD&\blur3\iclip(m 1217 -50 l 1250 38 l 1217 126 l 1184 38)\fs55}れ
Dialogue: 0,0:01:27.69,0:01:27.90,OPJP,,0,0,0,fx,{\an5\pos(1217,38)\blur3\fs55}れ
Dialogue: 1,0:01:27.90,0:01:29.84,OPJP,,0,0,0,fx,{\an5\pos(1217,38)\blur3\fs55\fad(0,200)}れ
Dialogue: 1,0:01:24.35,0:01:27.90,OPJP,,0,0,0,fx,{\an5\pos(1264,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}て
Dialogue: 1,0:01:27.90,0:01:28.04,OPJP,,0,0,0,fx,{\an5\pos(1264,38)\1c&H6B2AFD&\blur3\iclip(m 1264 22 l 1270 38 l 1264 54 l 1258 38)\fs55}て
Dialogue: 1,0:01:28.04,0:01:28.18,OPJP,,0,0,0,fx,{\an5\pos(1264,38)\1c&H6B2AFD&\blur3\iclip(m 1264 14 l 1273 38 l 1264 62 l 1255 38)\fs55}て
Dialogue: 1,0:01:28.18,0:01:28.32,OPJP,,0,0,0,fx,{\an5\pos(1264,38)\1c&H6B2AFD&\blur3\iclip(m 1264 6 l 1276 38 l 1264 70 l 1252 38)\fs55}て
Dialogue: 1,0:01:28.32,0:01:28.46,OPJP,,0,0,0,fx,{\an5\pos(1264,38)\1c&H6B2AFD&\blur3\iclip(m 1264 -2 l 1279 38 l 1264 78 l 1249 38)\fs55}て
Dialogue: 1,0:01:28.46,0:01:28.60,OPJP,,0,0,0,fx,{\an5\pos(1264,38)\1c&H6B2AFD&\blur3\iclip(m 1264 -10 l 1282 38 l 1264 86 l 1246 38)\fs55}て
Dialogue: 1,0:01:28.60,0:01:28.74,OPJP,,0,0,0,fx,{\an5\pos(1264,38)\1c&H6B2AFD&\blur3\iclip(m 1264 -18 l 1285 38 l 1264 94 l 1243 38)\fs55}て
Dialogue: 1,0:01:28.74,0:01:28.88,OPJP,,0,0,0,fx,{\an5\pos(1264,38)\1c&H6B2AFD&\blur3\iclip(m 1264 -26 l 1288 38 l 1264 102 l 1240 38)\fs55}て
Dialogue: 1,0:01:28.88,0:01:29.02,OPJP,,0,0,0,fx,{\an5\pos(1264,38)\1c&H6B2AFD&\blur3\iclip(m 1264 -34 l 1291 38 l 1264 110 l 1237 38)\fs55}て
Dialogue: 1,0:01:29.02,0:01:29.16,OPJP,,0,0,0,fx,{\an5\pos(1264,38)\1c&H6B2AFD&\blur3\iclip(m 1264 -42 l 1294 38 l 1264 118 l 1234 38)\fs55}て
Dialogue: 1,0:01:29.16,0:01:29.31,OPJP,,0,0,0,fx,{\an5\pos(1264,38)\1c&H6B2AFD&\blur3\iclip(m 1264 -50 l 1297 38 l 1264 126 l 1231 38)\fs55}て
Dialogue: 0,0:01:27.90,0:01:29.31,OPJP,,0,0,0,fx,{\an5\pos(1264,38)\blur3\fs55}て
Dialogue: 1,0:01:29.31,0:01:29.87,OPJP,,0,0,0,fx,{\an5\pos(1264,38)\blur3\fs55\fad(0,200)}て
Dialogue: 1,0:01:29.43,0:01:29.63,OPJP,,0,0,0,fx,{\an5\pos(583,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}こ
Dialogue: 1,0:01:29.63,0:01:29.66,OPJP,,0,0,0,fx,{\an5\pos(583,38)\1c&H6B2AFD&\blur3\iclip(m 583 22 l 589 38 l 583 54 l 577 38)\fs55}こ
Dialogue: 1,0:01:29.66,0:01:29.70,OPJP,,0,0,0,fx,{\an5\pos(583,38)\1c&H6B2AFD&\blur3\iclip(m 583 14 l 592 38 l 583 62 l 574 38)\fs55}こ
Dialogue: 1,0:01:29.70,0:01:29.73,OPJP,,0,0,0,fx,{\an5\pos(583,38)\1c&H6B2AFD&\blur3\iclip(m 583 6 l 595 38 l 583 70 l 571 38)\fs55}こ
Dialogue: 1,0:01:29.73,0:01:29.77,OPJP,,0,0,0,fx,{\an5\pos(583,38)\1c&H6B2AFD&\blur3\iclip(m 583 -2 l 598 38 l 583 78 l 568 38)\fs55}こ
Dialogue: 1,0:01:29.77,0:01:29.81,OPJP,,0,0,0,fx,{\an5\pos(583,38)\1c&H6B2AFD&\blur3\iclip(m 583 -10 l 601 38 l 583 86 l 565 38)\fs55}こ
Dialogue: 1,0:01:29.81,0:01:29.84,OPJP,,0,0,0,fx,{\an5\pos(583,38)\1c&H6B2AFD&\blur3\iclip(m 583 -18 l 604 38 l 583 94 l 562 38)\fs55}こ
Dialogue: 1,0:01:29.84,0:01:29.88,OPJP,,0,0,0,fx,{\an5\pos(583,38)\1c&H6B2AFD&\blur3\iclip(m 583 -26 l 607 38 l 583 102 l 559 38)\fs55}こ
Dialogue: 1,0:01:29.88,0:01:29.91,OPJP,,0,0,0,fx,{\an5\pos(583,38)\1c&H6B2AFD&\blur3\iclip(m 583 -34 l 610 38 l 583 110 l 556 38)\fs55}こ
Dialogue: 1,0:01:29.91,0:01:29.95,OPJP,,0,0,0,fx,{\an5\pos(583,38)\1c&H6B2AFD&\blur3\iclip(m 583 -42 l 613 38 l 583 118 l 553 38)\fs55}こ
Dialogue: 1,0:01:29.95,0:01:29.99,OPJP,,0,0,0,fx,{\an5\pos(583,38)\1c&H6B2AFD&\blur3\iclip(m 583 -50 l 616 38 l 583 126 l 550 38)\fs55}こ
Dialogue: 0,0:01:29.63,0:01:29.99,OPJP,,0,0,0,fx,{\an5\pos(583,38)\blur3\fs55}こ
Dialogue: 1,0:01:29.99,0:01:37.62,OPJP,,0,0,0,fx,{\an5\pos(583,38)\blur3\fs55\fad(0,200)}こ
Dialogue: 1,0:01:29.46,0:01:29.99,OPJP,,0,0,0,fx,{\an5\pos(630,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}れ
Dialogue: 1,0:01:29.46,0:01:29.99,OPJP,,0,0,0,fx,{\an5\pos(677,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}っ
Dialogue: 1,0:01:29.99,0:01:30.03,OPJP,,0,0,0,fx,{\an5\pos(630,38)\1c&H6B2AFD&\blur3\iclip(m 630 22 l 636 38 l 630 54 l 624 38)\fs55}れ
Dialogue: 1,0:01:30.03,0:01:30.07,OPJP,,0,0,0,fx,{\an5\pos(630,38)\1c&H6B2AFD&\blur3\iclip(m 630 14 l 639 38 l 630 62 l 621 38)\fs55}れ
Dialogue: 1,0:01:30.07,0:01:30.11,OPJP,,0,0,0,fx,{\an5\pos(630,38)\1c&H6B2AFD&\blur3\iclip(m 630 6 l 642 38 l 630 70 l 618 38)\fs55}れ
Dialogue: 1,0:01:30.11,0:01:30.15,OPJP,,0,0,0,fx,{\an5\pos(630,38)\1c&H6B2AFD&\blur3\iclip(m 630 -2 l 645 38 l 630 78 l 615 38)\fs55}れ
Dialogue: 1,0:01:30.15,0:01:30.20,OPJP,,0,0,0,fx,{\an5\pos(630,38)\1c&H6B2AFD&\blur3\iclip(m 630 -10 l 648 38 l 630 86 l 612 38)\fs55}れ
Dialogue: 1,0:01:30.20,0:01:30.24,OPJP,,0,0,0,fx,{\an5\pos(630,38)\1c&H6B2AFD&\blur3\iclip(m 630 -18 l 651 38 l 630 94 l 609 38)\fs55}れ
Dialogue: 1,0:01:30.24,0:01:30.28,OPJP,,0,0,0,fx,{\an5\pos(630,38)\1c&H6B2AFD&\blur3\iclip(m 630 -26 l 654 38 l 630 102 l 606 38)\fs55}れ
Dialogue: 1,0:01:30.28,0:01:30.32,OPJP,,0,0,0,fx,{\an5\pos(630,38)\1c&H6B2AFD&\blur3\iclip(m 630 -34 l 657 38 l 630 110 l 603 38)\fs55}れ
Dialogue: 1,0:01:30.32,0:01:30.36,OPJP,,0,0,0,fx,{\an5\pos(630,38)\1c&H6B2AFD&\blur3\iclip(m 630 -42 l 660 38 l 630 118 l 600 38)\fs55}れ
Dialogue: 1,0:01:30.36,0:01:30.41,OPJP,,0,0,0,fx,{\an5\pos(630,38)\1c&H6B2AFD&\blur3\iclip(m 630 -50 l 663 38 l 630 126 l 597 38)\fs55}れ
Dialogue: 1,0:01:29.99,0:01:30.03,OPJP,,0,0,0,fx,{\an5\pos(677,38)\1c&H6B2AFD&\blur3\iclip(m 677 22 l 683 38 l 677 54 l 671 38)\fs55}っ
Dialogue: 1,0:01:30.03,0:01:30.07,OPJP,,0,0,0,fx,{\an5\pos(677,38)\1c&H6B2AFD&\blur3\iclip(m 677 14 l 686 38 l 677 62 l 668 38)\fs55}っ
Dialogue: 1,0:01:30.07,0:01:30.11,OPJP,,0,0,0,fx,{\an5\pos(677,38)\1c&H6B2AFD&\blur3\iclip(m 677 6 l 689 38 l 677 70 l 665 38)\fs55}っ
Dialogue: 1,0:01:30.11,0:01:30.15,OPJP,,0,0,0,fx,{\an5\pos(677,38)\1c&H6B2AFD&\blur3\iclip(m 677 -2 l 692 38 l 677 78 l 662 38)\fs55}っ
Dialogue: 1,0:01:30.15,0:01:30.20,OPJP,,0,0,0,fx,{\an5\pos(677,38)\1c&H6B2AFD&\blur3\iclip(m 677 -10 l 695 38 l 677 86 l 659 38)\fs55}っ
Dialogue: 1,0:01:30.20,0:01:30.24,OPJP,,0,0,0,fx,{\an5\pos(677,38)\1c&H6B2AFD&\blur3\iclip(m 677 -18 l 698 38 l 677 94 l 656 38)\fs55}っ
Dialogue: 1,0:01:30.24,0:01:30.28,OPJP,,0,0,0,fx,{\an5\pos(677,38)\1c&H6B2AFD&\blur3\iclip(m 677 -26 l 701 38 l 677 102 l 653 38)\fs55}っ
Dialogue: 1,0:01:30.28,0:01:30.32,OPJP,,0,0,0,fx,{\an5\pos(677,38)\1c&H6B2AFD&\blur3\iclip(m 677 -34 l 704 38 l 677 110 l 650 38)\fs55}っ
Dialogue: 1,0:01:30.32,0:01:30.36,OPJP,,0,0,0,fx,{\an5\pos(677,38)\1c&H6B2AFD&\blur3\iclip(m 677 -42 l 707 38 l 677 118 l 647 38)\fs55}っ
Dialogue: 1,0:01:30.36,0:01:30.41,OPJP,,0,0,0,fx,{\an5\pos(677,38)\1c&H6B2AFD&\blur3\iclip(m 677 -50 l 710 38 l 677 126 l 644 38)\fs55}っ
Dialogue: 0,0:01:29.99,0:01:30.41,OPJP,,0,0,0,fx,{\an5\pos(630,38)\blur3\fs55}れ
Dialogue: 0,0:01:29.99,0:01:30.41,OPJP,,0,0,0,fx,{\an5\pos(677,38)\blur3\fs55}っ
Dialogue: 1,0:01:30.41,0:01:37.65,OPJP,,0,0,0,fx,{\an5\pos(630,38)\blur3\fs55\fad(0,200)}れ
Dialogue: 1,0:01:30.41,0:01:37.65,OPJP,,0,0,0,fx,{\an5\pos(677,38)\blur3\fs55\fad(0,200)}っ
Dialogue: 1,0:01:29.49,0:01:30.41,OPJP,,0,0,0,fx,{\an5\pos(724,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}て
Dialogue: 1,0:01:30.41,0:01:30.42,OPJP,,0,0,0,fx,{\an5\pos(724,38)\1c&H6B2AFD&\blur3\iclip(m 724 22 l 730 38 l 724 54 l 718 38)\fs55}て
Dialogue: 1,0:01:30.42,0:01:30.43,OPJP,,0,0,0,fx,{\an5\pos(724,38)\1c&H6B2AFD&\blur3\iclip(m 724 14 l 733 38 l 724 62 l 715 38)\fs55}て
Dialogue: 1,0:01:30.43,0:01:30.44,OPJP,,0,0,0,fx,{\an5\pos(724,38)\1c&H6B2AFD&\blur3\iclip(m 724 6 l 736 38 l 724 70 l 712 38)\fs55}て
Dialogue: 1,0:01:30.44,0:01:30.45,OPJP,,0,0,0,fx,{\an5\pos(724,38)\1c&H6B2AFD&\blur3\iclip(m 724 -2 l 739 38 l 724 78 l 709 38)\fs55}て
Dialogue: 1,0:01:30.45,0:01:30.47,OPJP,,0,0,0,fx,{\an5\pos(724,38)\1c&H6B2AFD&\blur3\iclip(m 724 -10 l 742 38 l 724 86 l 706 38)\fs55}て
Dialogue: 1,0:01:30.47,0:01:30.48,OPJP,,0,0,0,fx,{\an5\pos(724,38)\1c&H6B2AFD&\blur3\iclip(m 724 -18 l 745 38 l 724 94 l 703 38)\fs55}て
Dialogue: 1,0:01:30.48,0:01:30.49,OPJP,,0,0,0,fx,{\an5\pos(724,38)\1c&H6B2AFD&\blur3\iclip(m 724 -26 l 748 38 l 724 102 l 700 38)\fs55}て
Dialogue: 1,0:01:30.49,0:01:30.50,OPJP,,0,0,0,fx,{\an5\pos(724,38)\1c&H6B2AFD&\blur3\iclip(m 724 -34 l 751 38 l 724 110 l 697 38)\fs55}て
Dialogue: 1,0:01:30.50,0:01:30.51,OPJP,,0,0,0,fx,{\an5\pos(724,38)\1c&H6B2AFD&\blur3\iclip(m 724 -42 l 754 38 l 724 118 l 694 38)\fs55}て
Dialogue: 1,0:01:30.51,0:01:30.53,OPJP,,0,0,0,fx,{\an5\pos(724,38)\1c&H6B2AFD&\blur3\iclip(m 724 -50 l 757 38 l 724 126 l 691 38)\fs55}て
Dialogue: 0,0:01:30.41,0:01:30.53,OPJP,,0,0,0,fx,{\an5\pos(724,38)\blur3\fs55}て
Dialogue: 1,0:01:30.53,0:01:37.68,OPJP,,0,0,0,fx,{\an5\pos(724,38)\blur3\fs55\fad(0,200)}て
Dialogue: 1,0:01:29.52,0:01:30.53,OPJP,,0,0,0,fx,{\an5\pos(771,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}最
Dialogue: 1,0:01:30.53,0:01:30.59,OPJP,,0,0,0,fx,{\an5\pos(771,38)\1c&H6B2AFD&\blur3\iclip(m 771 22 l 777 38 l 771 54 l 765 38)\fs55}最
Dialogue: 1,0:01:30.59,0:01:30.65,OPJP,,0,0,0,fx,{\an5\pos(771,38)\1c&H6B2AFD&\blur3\iclip(m 771 14 l 780 38 l 771 62 l 762 38)\fs55}最
Dialogue: 1,0:01:30.65,0:01:30.72,OPJP,,0,0,0,fx,{\an5\pos(771,38)\1c&H6B2AFD&\blur3\iclip(m 771 6 l 783 38 l 771 70 l 759 38)\fs55}最
Dialogue: 1,0:01:30.72,0:01:30.78,OPJP,,0,0,0,fx,{\an5\pos(771,38)\1c&H6B2AFD&\blur3\iclip(m 771 -2 l 786 38 l 771 78 l 756 38)\fs55}最
Dialogue: 1,0:01:30.78,0:01:30.85,OPJP,,0,0,0,fx,{\an5\pos(771,38)\1c&H6B2AFD&\blur3\iclip(m 771 -10 l 789 38 l 771 86 l 753 38)\fs55}最
Dialogue: 1,0:01:30.85,0:01:30.91,OPJP,,0,0,0,fx,{\an5\pos(771,38)\1c&H6B2AFD&\blur3\iclip(m 771 -18 l 792 38 l 771 94 l 750 38)\fs55}最
Dialogue: 1,0:01:30.91,0:01:30.97,OPJP,,0,0,0,fx,{\an5\pos(771,38)\1c&H6B2AFD&\blur3\iclip(m 771 -26 l 795 38 l 771 102 l 747 38)\fs55}最
Dialogue: 1,0:01:30.97,0:01:31.04,OPJP,,0,0,0,fx,{\an5\pos(771,38)\1c&H6B2AFD&\blur3\iclip(m 771 -34 l 798 38 l 771 110 l 744 38)\fs55}最
Dialogue: 1,0:01:31.04,0:01:31.10,OPJP,,0,0,0,fx,{\an5\pos(771,38)\1c&H6B2AFD&\blur3\iclip(m 771 -42 l 801 38 l 771 118 l 741 38)\fs55}最
Dialogue: 1,0:01:31.10,0:01:31.17,OPJP,,0,0,0,fx,{\an5\pos(771,38)\1c&H6B2AFD&\blur3\iclip(m 771 -50 l 804 38 l 771 126 l 738 38)\fs55}最
Dialogue: 0,0:01:30.53,0:01:31.17,OPJP,,0,0,0,fx,{\an5\pos(771,38)\blur3\fs55}最
Dialogue: 1,0:01:31.17,0:01:37.71,OPJP,,0,0,0,fx,{\an5\pos(771,38)\blur3\fs55\fad(0,200)}最
Dialogue: 1,0:01:29.55,0:01:31.17,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}高
Dialogue: 1,0:01:31.17,0:01:31.30,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 22 l 825 38 l 819 54 l 813 38)\fs55}高
Dialogue: 1,0:01:31.30,0:01:31.43,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 14 l 828 38 l 819 62 l 810 38)\fs55}高
Dialogue: 1,0:01:31.43,0:01:31.57,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 6 l 831 38 l 819 70 l 807 38)\fs55}高
Dialogue: 1,0:01:31.57,0:01:31.70,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -2 l 834 38 l 819 78 l 804 38)\fs55}高
Dialogue: 1,0:01:31.70,0:01:31.84,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -10 l 837 38 l 819 86 l 801 38)\fs55}高
Dialogue: 1,0:01:31.84,0:01:31.97,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -18 l 840 38 l 819 94 l 798 38)\fs55}高
Dialogue: 1,0:01:31.97,0:01:32.10,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -26 l 843 38 l 819 102 l 795 38)\fs55}高
Dialogue: 1,0:01:32.10,0:01:32.24,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -34 l 846 38 l 819 110 l 792 38)\fs55}高
Dialogue: 1,0:01:32.24,0:01:32.37,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -42 l 849 38 l 819 118 l 789 38)\fs55}高
Dialogue: 1,0:01:32.37,0:01:32.51,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -50 l 852 38 l 819 126 l 786 38)\fs55}高
Dialogue: 0,0:01:31.17,0:01:32.51,OPJP,,0,0,0,fx,{\an5\pos(819,38)\blur3\fs55}高
Dialogue: 1,0:01:32.51,0:01:37.74,OPJP,,0,0,0,fx,{\an5\pos(819,38)\blur3\fs55\fad(0,200)}高
Dialogue: 1,0:01:29.58,0:01:32.51,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}!
Dialogue: 1,0:01:32.51,0:01:32.59,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 22 l 872 38 l 866 54 l 860 38)\fs55}!
Dialogue: 1,0:01:32.59,0:01:32.67,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 14 l 875 38 l 866 62 l 857 38)\fs55}!
Dialogue: 1,0:01:32.67,0:01:32.75,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 6 l 878 38 l 866 70 l 854 38)\fs55}!
Dialogue: 1,0:01:32.75,0:01:32.83,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -2 l 881 38 l 866 78 l 851 38)\fs55}!
Dialogue: 1,0:01:32.83,0:01:32.92,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -10 l 884 38 l 866 86 l 848 38)\fs55}!
Dialogue: 1,0:01:32.92,0:01:33.00,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -18 l 887 38 l 866 94 l 845 38)\fs55}!
Dialogue: 1,0:01:33.00,0:01:33.08,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -26 l 890 38 l 866 102 l 842 38)\fs55}!
Dialogue: 1,0:01:33.08,0:01:33.16,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -34 l 893 38 l 866 110 l 839 38)\fs55}!
Dialogue: 1,0:01:33.16,0:01:33.24,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -42 l 896 38 l 866 118 l 836 38)\fs55}!
Dialogue: 1,0:01:33.24,0:01:33.33,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -50 l 899 38 l 866 126 l 833 38)\fs55}!
Dialogue: 0,0:01:32.51,0:01:33.33,OPJP,,0,0,0,fx,{\an5\pos(866,38)\blur3\fs55}!
Dialogue: 1,0:01:33.33,0:01:37.77,OPJP,,0,0,0,fx,{\an5\pos(866,38)\blur3\fs55\fad(0,200)}!
Dialogue: 1,0:01:29.61,0:01:33.33,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}思
Dialogue: 1,0:01:33.33,0:01:33.37,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 22 l 919 38 l 913 54 l 907 38)\fs55}思
Dialogue: 1,0:01:33.37,0:01:33.41,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 14 l 922 38 l 913 62 l 904 38)\fs55}思
Dialogue: 1,0:01:33.41,0:01:33.45,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 6 l 925 38 l 913 70 l 901 38)\fs55}思
Dialogue: 1,0:01:33.45,0:01:33.49,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -2 l 928 38 l 913 78 l 898 38)\fs55}思
Dialogue: 1,0:01:33.49,0:01:33.53,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -10 l 931 38 l 913 86 l 895 38)\fs55}思
Dialogue: 1,0:01:33.53,0:01:33.57,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -18 l 934 38 l 913 94 l 892 38)\fs55}思
Dialogue: 1,0:01:33.57,0:01:33.61,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -26 l 937 38 l 913 102 l 889 38)\fs55}思
Dialogue: 1,0:01:33.61,0:01:33.65,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -34 l 940 38 l 913 110 l 886 38)\fs55}思
Dialogue: 1,0:01:33.65,0:01:33.69,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -42 l 943 38 l 913 118 l 883 38)\fs55}思
Dialogue: 1,0:01:33.69,0:01:33.73,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -50 l 946 38 l 913 126 l 880 38)\fs55}思
Dialogue: 0,0:01:33.33,0:01:33.73,OPJP,,0,0,0,fx,{\an5\pos(913,38)\blur3\fs55}思
Dialogue: 1,0:01:33.73,0:01:37.80,OPJP,,0,0,0,fx,{\an5\pos(913,38)\blur3\fs55\fad(0,200)}思
Dialogue: 1,0:01:29.64,0:01:33.73,OPJP,,0,0,0,fx,{\an5\pos(960,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}わ
Dialogue: 1,0:01:33.73,0:01:33.75,OPJP,,0,0,0,fx,{\an5\pos(960,38)\1c&H6B2AFD&\blur3\iclip(m 960 22 l 966 38 l 960 54 l 954 38)\fs55}わ
Dialogue: 1,0:01:33.75,0:01:33.77,OPJP,,0,0,0,fx,{\an5\pos(960,38)\1c&H6B2AFD&\blur3\iclip(m 960 14 l 969 38 l 960 62 l 951 38)\fs55}わ
Dialogue: 1,0:01:33.77,0:01:33.79,OPJP,,0,0,0,fx,{\an5\pos(960,38)\1c&H6B2AFD&\blur3\iclip(m 960 6 l 972 38 l 960 70 l 948 38)\fs55}わ
Dialogue: 1,0:01:33.79,0:01:33.81,OPJP,,0,0,0,fx,{\an5\pos(960,38)\1c&H6B2AFD&\blur3\iclip(m 960 -2 l 975 38 l 960 78 l 945 38)\fs55}わ
Dialogue: 1,0:01:33.81,0:01:33.83,OPJP,,0,0,0,fx,{\an5\pos(960,38)\1c&H6B2AFD&\blur3\iclip(m 960 -10 l 978 38 l 960 86 l 942 38)\fs55}わ
Dialogue: 1,0:01:33.83,0:01:33.85,OPJP,,0,0,0,fx,{\an5\pos(960,38)\1c&H6B2AFD&\blur3\iclip(m 960 -18 l 981 38 l 960 94 l 939 38)\fs55}わ
Dialogue: 1,0:01:33.85,0:01:33.87,OPJP,,0,0,0,fx,{\an5\pos(960,38)\1c&H6B2AFD&\blur3\iclip(m 960 -26 l 984 38 l 960 102 l 936 38)\fs55}わ
Dialogue: 1,0:01:33.87,0:01:33.89,OPJP,,0,0,0,fx,{\an5\pos(960,38)\1c&H6B2AFD&\blur3\iclip(m 960 -34 l 987 38 l 960 110 l 933 38)\fs55}わ
Dialogue: 1,0:01:33.89,0:01:33.91,OPJP,,0,0,0,fx,{\an5\pos(960,38)\1c&H6B2AFD&\blur3\iclip(m 960 -42 l 990 38 l 960 118 l 930 38)\fs55}わ
Dialogue: 1,0:01:33.91,0:01:33.94,OPJP,,0,0,0,fx,{\an5\pos(960,38)\1c&H6B2AFD&\blur3\iclip(m 960 -50 l 993 38 l 960 126 l 927 38)\fs55}わ
Dialogue: 0,0:01:33.73,0:01:33.94,OPJP,,0,0,0,fx,{\an5\pos(960,38)\blur3\fs55}わ
Dialogue: 1,0:01:33.94,0:01:37.83,OPJP,,0,0,0,fx,{\an5\pos(960,38)\blur3\fs55\fad(0,200)}わ
Dialogue: 1,0:01:29.67,0:01:33.94,OPJP,,0,0,0,fx,{\an5\pos(1007,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}ず
Dialogue: 1,0:01:33.94,0:01:34.02,OPJP,,0,0,0,fx,{\an5\pos(1007,38)\1c&H6B2AFD&\blur3\iclip(m 1007 22 l 1013 38 l 1007 54 l 1001 38)\fs55}ず
Dialogue: 1,0:01:34.02,0:01:34.11,OPJP,,0,0,0,fx,{\an5\pos(1007,38)\1c&H6B2AFD&\blur3\iclip(m 1007 14 l 1016 38 l 1007 62 l 998 38)\fs55}ず
Dialogue: 1,0:01:34.11,0:01:34.20,OPJP,,0,0,0,fx,{\an5\pos(1007,38)\1c&H6B2AFD&\blur3\iclip(m 1007 6 l 1019 38 l 1007 70 l 995 38)\fs55}ず
Dialogue: 1,0:01:34.20,0:01:34.29,OPJP,,0,0,0,fx,{\an5\pos(1007,38)\1c&H6B2AFD&\blur3\iclip(m 1007 -2 l 1022 38 l 1007 78 l 992 38)\fs55}ず
Dialogue: 1,0:01:34.29,0:01:34.38,OPJP,,0,0,0,fx,{\an5\pos(1007,38)\1c&H6B2AFD&\blur3\iclip(m 1007 -10 l 1025 38 l 1007 86 l 989 38)\fs55}ず
Dialogue: 1,0:01:34.38,0:01:34.47,OPJP,,0,0,0,fx,{\an5\pos(1007,38)\1c&H6B2AFD&\blur3\iclip(m 1007 -18 l 1028 38 l 1007 94 l 986 38)\fs55}ず
Dialogue: 1,0:01:34.47,0:01:34.56,OPJP,,0,0,0,fx,{\an5\pos(1007,38)\1c&H6B2AFD&\blur3\iclip(m 1007 -26 l 1031 38 l 1007 102 l 983 38)\fs55}ず
Dialogue: 1,0:01:34.56,0:01:34.65,OPJP,,0,0,0,fx,{\an5\pos(1007,38)\1c&H6B2AFD&\blur3\iclip(m 1007 -34 l 1034 38 l 1007 110 l 980 38)\fs55}ず
Dialogue: 1,0:01:34.65,0:01:34.74,OPJP,,0,0,0,fx,{\an5\pos(1007,38)\1c&H6B2AFD&\blur3\iclip(m 1007 -42 l 1037 38 l 1007 118 l 977 38)\fs55}ず
Dialogue: 1,0:01:34.74,0:01:34.83,OPJP,,0,0,0,fx,{\an5\pos(1007,38)\1c&H6B2AFD&\blur3\iclip(m 1007 -50 l 1040 38 l 1007 126 l 974 38)\fs55}ず
Dialogue: 0,0:01:33.94,0:01:34.83,OPJP,,0,0,0,fx,{\an5\pos(1007,38)\blur3\fs55}ず
Dialogue: 1,0:01:34.83,0:01:37.86,OPJP,,0,0,0,fx,{\an5\pos(1007,38)\blur3\fs55\fad(0,200)}ず
Dialogue: 1,0:01:29.70,0:01:34.83,OPJP,,0,0,0,fx,{\an5\pos(1054,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}叫
Dialogue: 1,0:01:34.83,0:01:34.89,OPJP,,0,0,0,fx,{\an5\pos(1054,38)\1c&H6B2AFD&\blur3\iclip(m 1054 22 l 1060 38 l 1054 54 l 1048 38)\fs55}叫
Dialogue: 1,0:01:34.89,0:01:34.95,OPJP,,0,0,0,fx,{\an5\pos(1054,38)\1c&H6B2AFD&\blur3\iclip(m 1054 14 l 1063 38 l 1054 62 l 1045 38)\fs55}叫
Dialogue: 1,0:01:34.95,0:01:35.01,OPJP,,0,0,0,fx,{\an5\pos(1054,38)\1c&H6B2AFD&\blur3\iclip(m 1054 6 l 1066 38 l 1054 70 l 1042 38)\fs55}叫
Dialogue: 1,0:01:35.01,0:01:35.08,OPJP,,0,0,0,fx,{\an5\pos(1054,38)\1c&H6B2AFD&\blur3\iclip(m 1054 -2 l 1069 38 l 1054 78 l 1039 38)\fs55}叫
Dialogue: 1,0:01:35.08,0:01:35.14,OPJP,,0,0,0,fx,{\an5\pos(1054,38)\1c&H6B2AFD&\blur3\iclip(m 1054 -10 l 1072 38 l 1054 86 l 1036 38)\fs55}叫
Dialogue: 1,0:01:35.14,0:01:35.20,OPJP,,0,0,0,fx,{\an5\pos(1054,38)\1c&H6B2AFD&\blur3\iclip(m 1054 -18 l 1075 38 l 1054 94 l 1033 38)\fs55}叫
Dialogue: 1,0:01:35.20,0:01:35.27,OPJP,,0,0,0,fx,{\an5\pos(1054,38)\1c&H6B2AFD&\blur3\iclip(m 1054 -26 l 1078 38 l 1054 102 l 1030 38)\fs55}叫
Dialogue: 1,0:01:35.27,0:01:35.33,OPJP,,0,0,0,fx,{\an5\pos(1054,38)\1c&H6B2AFD&\blur3\iclip(m 1054 -34 l 1081 38 l 1054 110 l 1027 38)\fs55}叫
Dialogue: 1,0:01:35.33,0:01:35.39,OPJP,,0,0,0,fx,{\an5\pos(1054,38)\1c&H6B2AFD&\blur3\iclip(m 1054 -42 l 1084 38 l 1054 118 l 1024 38)\fs55}叫
Dialogue: 1,0:01:35.39,0:01:35.46,OPJP,,0,0,0,fx,{\an5\pos(1054,38)\1c&H6B2AFD&\blur3\iclip(m 1054 -50 l 1087 38 l 1054 126 l 1021 38)\fs55}叫
Dialogue: 0,0:01:34.83,0:01:35.46,OPJP,,0,0,0,fx,{\an5\pos(1054,38)\blur3\fs55}叫
Dialogue: 1,0:01:35.46,0:01:37.89,OPJP,,0,0,0,fx,{\an5\pos(1054,38)\blur3\fs55\fad(0,200)}叫
Dialogue: 1,0:01:29.73,0:01:35.46,OPJP,,0,0,0,fx,{\an5\pos(1101,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}び
Dialogue: 1,0:01:35.46,0:01:35.47,OPJP,,0,0,0,fx,{\an5\pos(1101,38)\1c&H6B2AFD&\blur3\iclip(m 1101 22 l 1107 38 l 1101 54 l 1095 38)\fs55}び
Dialogue: 1,0:01:35.47,0:01:35.49,OPJP,,0,0,0,fx,{\an5\pos(1101,38)\1c&H6B2AFD&\blur3\iclip(m 1101 14 l 1110 38 l 1101 62 l 1092 38)\fs55}び
Dialogue: 1,0:01:35.49,0:01:35.51,OPJP,,0,0,0,fx,{\an5\pos(1101,38)\1c&H6B2AFD&\blur3\iclip(m 1101 6 l 1113 38 l 1101 70 l 1089 38)\fs55}び
Dialogue: 1,0:01:35.51,0:01:35.53,OPJP,,0,0,0,fx,{\an5\pos(1101,38)\1c&H6B2AFD&\blur3\iclip(m 1101 -2 l 1116 38 l 1101 78 l 1086 38)\fs55}び
Dialogue: 1,0:01:35.53,0:01:35.55,OPJP,,0,0,0,fx,{\an5\pos(1101,38)\1c&H6B2AFD&\blur3\iclip(m 1101 -10 l 1119 38 l 1101 86 l 1083 38)\fs55}び
Dialogue: 1,0:01:35.55,0:01:35.57,OPJP,,0,0,0,fx,{\an5\pos(1101,38)\1c&H6B2AFD&\blur3\iclip(m 1101 -18 l 1122 38 l 1101 94 l 1080 38)\fs55}び
Dialogue: 1,0:01:35.57,0:01:35.59,OPJP,,0,0,0,fx,{\an5\pos(1101,38)\1c&H6B2AFD&\blur3\iclip(m 1101 -26 l 1125 38 l 1101 102 l 1077 38)\fs55}び
Dialogue: 1,0:01:35.59,0:01:35.61,OPJP,,0,0,0,fx,{\an5\pos(1101,38)\1c&H6B2AFD&\blur3\iclip(m 1101 -34 l 1128 38 l 1101 110 l 1074 38)\fs55}び
Dialogue: 1,0:01:35.61,0:01:35.63,OPJP,,0,0,0,fx,{\an5\pos(1101,38)\1c&H6B2AFD&\blur3\iclip(m 1101 -42 l 1131 38 l 1101 118 l 1071 38)\fs55}び
Dialogue: 1,0:01:35.63,0:01:35.65,OPJP,,0,0,0,fx,{\an5\pos(1101,38)\1c&H6B2AFD&\blur3\iclip(m 1101 -50 l 1134 38 l 1101 126 l 1068 38)\fs55}び
Dialogue: 0,0:01:35.46,0:01:35.65,OPJP,,0,0,0,fx,{\an5\pos(1101,38)\blur3\fs55}び
Dialogue: 1,0:01:35.65,0:01:37.92,OPJP,,0,0,0,fx,{\an5\pos(1101,38)\blur3\fs55\fad(0,200)}び
Dialogue: 1,0:01:29.76,0:01:35.65,OPJP,,0,0,0,fx,{\an5\pos(1149,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}た
Dialogue: 1,0:01:35.65,0:01:35.68,OPJP,,0,0,0,fx,{\an5\pos(1149,38)\1c&H6B2AFD&\blur3\iclip(m 1149 22 l 1155 38 l 1149 54 l 1143 38)\fs55}た
Dialogue: 1,0:01:35.68,0:01:35.71,OPJP,,0,0,0,fx,{\an5\pos(1149,38)\1c&H6B2AFD&\blur3\iclip(m 1149 14 l 1158 38 l 1149 62 l 1140 38)\fs55}た
Dialogue: 1,0:01:35.71,0:01:35.75,OPJP,,0,0,0,fx,{\an5\pos(1149,38)\1c&H6B2AFD&\blur3\iclip(m 1149 6 l 1161 38 l 1149 70 l 1137 38)\fs55}た
Dialogue: 1,0:01:35.75,0:01:35.78,OPJP,,0,0,0,fx,{\an5\pos(1149,38)\1c&H6B2AFD&\blur3\iclip(m 1149 -2 l 1164 38 l 1149 78 l 1134 38)\fs55}た
Dialogue: 1,0:01:35.78,0:01:35.82,OPJP,,0,0,0,fx,{\an5\pos(1149,38)\1c&H6B2AFD&\blur3\iclip(m 1149 -10 l 1167 38 l 1149 86 l 1131 38)\fs55}た
Dialogue: 1,0:01:35.82,0:01:35.85,OPJP,,0,0,0,fx,{\an5\pos(1149,38)\1c&H6B2AFD&\blur3\iclip(m 1149 -18 l 1170 38 l 1149 94 l 1128 38)\fs55}た
Dialogue: 1,0:01:35.85,0:01:35.88,OPJP,,0,0,0,fx,{\an5\pos(1149,38)\1c&H6B2AFD&\blur3\iclip(m 1149 -26 l 1173 38 l 1149 102 l 1125 38)\fs55}た
Dialogue: 1,0:01:35.88,0:01:35.92,OPJP,,0,0,0,fx,{\an5\pos(1149,38)\1c&H6B2AFD&\blur3\iclip(m 1149 -34 l 1176 38 l 1149 110 l 1122 38)\fs55}た
Dialogue: 1,0:01:35.92,0:01:35.95,OPJP,,0,0,0,fx,{\an5\pos(1149,38)\1c&H6B2AFD&\blur3\iclip(m 1149 -42 l 1179 38 l 1149 118 l 1119 38)\fs55}た
Dialogue: 1,0:01:35.95,0:01:35.99,OPJP,,0,0,0,fx,{\an5\pos(1149,38)\1c&H6B2AFD&\blur3\iclip(m 1149 -50 l 1182 38 l 1149 126 l 1116 38)\fs55}た
Dialogue: 0,0:01:35.65,0:01:35.99,OPJP,,0,0,0,fx,{\an5\pos(1149,38)\blur3\fs55}た
Dialogue: 1,0:01:35.99,0:01:37.95,OPJP,,0,0,0,fx,{\an5\pos(1149,38)\blur3\fs55\fad(0,200)}た
Dialogue: 1,0:01:29.79,0:01:35.99,OPJP,,0,0,0,fx,{\an5\pos(1196,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}く
Dialogue: 1,0:01:35.99,0:01:36.01,OPJP,,0,0,0,fx,{\an5\pos(1196,38)\1c&H6B2AFD&\blur3\iclip(m 1196 22 l 1202 38 l 1196 54 l 1190 38)\fs55}く
Dialogue: 1,0:01:36.01,0:01:36.03,OPJP,,0,0,0,fx,{\an5\pos(1196,38)\1c&H6B2AFD&\blur3\iclip(m 1196 14 l 1205 38 l 1196 62 l 1187 38)\fs55}く
Dialogue: 1,0:01:36.03,0:01:36.05,OPJP,,0,0,0,fx,{\an5\pos(1196,38)\1c&H6B2AFD&\blur3\iclip(m 1196 6 l 1208 38 l 1196 70 l 1184 38)\fs55}く
Dialogue: 1,0:01:36.05,0:01:36.08,OPJP,,0,0,0,fx,{\an5\pos(1196,38)\1c&H6B2AFD&\blur3\iclip(m 1196 -2 l 1211 38 l 1196 78 l 1181 38)\fs55}く
Dialogue: 1,0:01:36.08,0:01:36.10,OPJP,,0,0,0,fx,{\an5\pos(1196,38)\1c&H6B2AFD&\blur3\iclip(m 1196 -10 l 1214 38 l 1196 86 l 1178 38)\fs55}く
Dialogue: 1,0:01:36.10,0:01:36.12,OPJP,,0,0,0,fx,{\an5\pos(1196,38)\1c&H6B2AFD&\blur3\iclip(m 1196 -18 l 1217 38 l 1196 94 l 1175 38)\fs55}く
Dialogue: 1,0:01:36.12,0:01:36.15,OPJP,,0,0,0,fx,{\an5\pos(1196,38)\1c&H6B2AFD&\blur3\iclip(m 1196 -26 l 1220 38 l 1196 102 l 1172 38)\fs55}く
Dialogue: 1,0:01:36.15,0:01:36.17,OPJP,,0,0,0,fx,{\an5\pos(1196,38)\1c&H6B2AFD&\blur3\iclip(m 1196 -34 l 1223 38 l 1196 110 l 1169 38)\fs55}く
Dialogue: 1,0:01:36.17,0:01:36.19,OPJP,,0,0,0,fx,{\an5\pos(1196,38)\1c&H6B2AFD&\blur3\iclip(m 1196 -42 l 1226 38 l 1196 118 l 1166 38)\fs55}く
Dialogue: 1,0:01:36.19,0:01:36.22,OPJP,,0,0,0,fx,{\an5\pos(1196,38)\1c&H6B2AFD&\blur3\iclip(m 1196 -50 l 1229 38 l 1196 126 l 1163 38)\fs55}く
Dialogue: 0,0:01:35.99,0:01:36.22,OPJP,,0,0,0,fx,{\an5\pos(1196,38)\blur3\fs55}く
Dialogue: 1,0:01:36.22,0:01:37.98,OPJP,,0,0,0,fx,{\an5\pos(1196,38)\blur3\fs55\fad(0,200)}く
Dialogue: 1,0:01:29.82,0:01:36.22,OPJP,,0,0,0,fx,{\an5\pos(1243,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}な
Dialogue: 1,0:01:36.22,0:01:36.24,OPJP,,0,0,0,fx,{\an5\pos(1243,38)\1c&H6B2AFD&\blur3\iclip(m 1243 22 l 1249 38 l 1243 54 l 1237 38)\fs55}な
Dialogue: 1,0:01:36.24,0:01:36.27,OPJP,,0,0,0,fx,{\an5\pos(1243,38)\1c&H6B2AFD&\blur3\iclip(m 1243 14 l 1252 38 l 1243 62 l 1234 38)\fs55}な
Dialogue: 1,0:01:36.27,0:01:36.30,OPJP,,0,0,0,fx,{\an5\pos(1243,38)\1c&H6B2AFD&\blur3\iclip(m 1243 6 l 1255 38 l 1243 70 l 1231 38)\fs55}な
Dialogue: 1,0:01:36.30,0:01:36.33,OPJP,,0,0,0,fx,{\an5\pos(1243,38)\1c&H6B2AFD&\blur3\iclip(m 1243 -2 l 1258 38 l 1243 78 l 1228 38)\fs55}な
Dialogue: 1,0:01:36.33,0:01:36.36,OPJP,,0,0,0,fx,{\an5\pos(1243,38)\1c&H6B2AFD&\blur3\iclip(m 1243 -10 l 1261 38 l 1243 86 l 1225 38)\fs55}な
Dialogue: 1,0:01:36.36,0:01:36.39,OPJP,,0,0,0,fx,{\an5\pos(1243,38)\1c&H6B2AFD&\blur3\iclip(m 1243 -18 l 1264 38 l 1243 94 l 1222 38)\fs55}な
Dialogue: 1,0:01:36.39,0:01:36.42,OPJP,,0,0,0,fx,{\an5\pos(1243,38)\1c&H6B2AFD&\blur3\iclip(m 1243 -26 l 1267 38 l 1243 102 l 1219 38)\fs55}な
Dialogue: 1,0:01:36.42,0:01:36.45,OPJP,,0,0,0,fx,{\an5\pos(1243,38)\1c&H6B2AFD&\blur3\iclip(m 1243 -34 l 1270 38 l 1243 110 l 1216 38)\fs55}な
Dialogue: 1,0:01:36.45,0:01:36.48,OPJP,,0,0,0,fx,{\an5\pos(1243,38)\1c&H6B2AFD&\blur3\iclip(m 1243 -42 l 1273 38 l 1243 118 l 1213 38)\fs55}な
Dialogue: 1,0:01:36.48,0:01:36.51,OPJP,,0,0,0,fx,{\an5\pos(1243,38)\1c&H6B2AFD&\blur3\iclip(m 1243 -50 l 1276 38 l 1243 126 l 1210 38)\fs55}な
Dialogue: 0,0:01:36.22,0:01:36.51,OPJP,,0,0,0,fx,{\an5\pos(1243,38)\blur3\fs55}な
Dialogue: 1,0:01:36.51,0:01:38.01,OPJP,,0,0,0,fx,{\an5\pos(1243,38)\blur3\fs55\fad(0,200)}な
Dialogue: 1,0:01:29.85,0:01:36.51,OPJP,,0,0,0,fx,{\an5\pos(1290,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}る
Dialogue: 1,0:01:36.51,0:01:36.53,OPJP,,0,0,0,fx,{\an5\pos(1290,38)\1c&H6B2AFD&\blur3\iclip(m 1290 22 l 1296 38 l 1290 54 l 1284 38)\fs55}る
Dialogue: 1,0:01:36.53,0:01:36.56,OPJP,,0,0,0,fx,{\an5\pos(1290,38)\1c&H6B2AFD&\blur3\iclip(m 1290 14 l 1299 38 l 1290 62 l 1281 38)\fs55}る
Dialogue: 1,0:01:36.56,0:01:36.59,OPJP,,0,0,0,fx,{\an5\pos(1290,38)\1c&H6B2AFD&\blur3\iclip(m 1290 6 l 1302 38 l 1290 70 l 1278 38)\fs55}る
Dialogue: 1,0:01:36.59,0:01:36.61,OPJP,,0,0,0,fx,{\an5\pos(1290,38)\1c&H6B2AFD&\blur3\iclip(m 1290 -2 l 1305 38 l 1290 78 l 1275 38)\fs55}る
Dialogue: 1,0:01:36.61,0:01:36.64,OPJP,,0,0,0,fx,{\an5\pos(1290,38)\1c&H6B2AFD&\blur3\iclip(m 1290 -10 l 1308 38 l 1290 86 l 1272 38)\fs55}る
Dialogue: 1,0:01:36.64,0:01:36.67,OPJP,,0,0,0,fx,{\an5\pos(1290,38)\1c&H6B2AFD&\blur3\iclip(m 1290 -18 l 1311 38 l 1290 94 l 1269 38)\fs55}る
Dialogue: 1,0:01:36.67,0:01:36.69,OPJP,,0,0,0,fx,{\an5\pos(1290,38)\1c&H6B2AFD&\blur3\iclip(m 1290 -26 l 1314 38 l 1290 102 l 1266 38)\fs55}る
Dialogue: 1,0:01:36.69,0:01:36.72,OPJP,,0,0,0,fx,{\an5\pos(1290,38)\1c&H6B2AFD&\blur3\iclip(m 1290 -34 l 1317 38 l 1290 110 l 1263 38)\fs55}る
Dialogue: 1,0:01:36.72,0:01:36.75,OPJP,,0,0,0,fx,{\an5\pos(1290,38)\1c&H6B2AFD&\blur3\iclip(m 1290 -42 l 1320 38 l 1290 118 l 1260 38)\fs55}る
Dialogue: 1,0:01:36.75,0:01:36.78,OPJP,,0,0,0,fx,{\an5\pos(1290,38)\1c&H6B2AFD&\blur3\iclip(m 1290 -50 l 1323 38 l 1290 126 l 1257 38)\fs55}る
Dialogue: 0,0:01:36.51,0:01:36.78,OPJP,,0,0,0,fx,{\an5\pos(1290,38)\blur3\fs55}る
Dialogue: 1,0:01:36.78,0:01:38.04,OPJP,,0,0,0,fx,{\an5\pos(1290,38)\blur3\fs55\fad(0,200)}る
Dialogue: 1,0:01:29.88,0:01:36.78,OPJP,,0,0,0,fx,{\an5\pos(1337,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}よ
Dialogue: 1,0:01:36.78,0:01:36.84,OPJP,,0,0,0,fx,{\an5\pos(1337,38)\1c&H6B2AFD&\blur3\iclip(m 1337 22 l 1343 38 l 1337 54 l 1331 38)\fs55}よ
Dialogue: 1,0:01:36.84,0:01:36.90,OPJP,,0,0,0,fx,{\an5\pos(1337,38)\1c&H6B2AFD&\blur3\iclip(m 1337 14 l 1346 38 l 1337 62 l 1328 38)\fs55}よ
Dialogue: 1,0:01:36.90,0:01:36.97,OPJP,,0,0,0,fx,{\an5\pos(1337,38)\1c&H6B2AFD&\blur3\iclip(m 1337 6 l 1349 38 l 1337 70 l 1325 38)\fs55}よ
Dialogue: 1,0:01:36.97,0:01:37.03,OPJP,,0,0,0,fx,{\an5\pos(1337,38)\1c&H6B2AFD&\blur3\iclip(m 1337 -2 l 1352 38 l 1337 78 l 1322 38)\fs55}よ
Dialogue: 1,0:01:37.03,0:01:37.10,OPJP,,0,0,0,fx,{\an5\pos(1337,38)\1c&H6B2AFD&\blur3\iclip(m 1337 -10 l 1355 38 l 1337 86 l 1319 38)\fs55}よ
Dialogue: 1,0:01:37.10,0:01:37.16,OPJP,,0,0,0,fx,{\an5\pos(1337,38)\1c&H6B2AFD&\blur3\iclip(m 1337 -18 l 1358 38 l 1337 94 l 1316 38)\fs55}よ
Dialogue: 1,0:01:37.16,0:01:37.22,OPJP,,0,0,0,fx,{\an5\pos(1337,38)\1c&H6B2AFD&\blur3\iclip(m 1337 -26 l 1361 38 l 1337 102 l 1313 38)\fs55}よ
Dialogue: 1,0:01:37.22,0:01:37.29,OPJP,,0,0,0,fx,{\an5\pos(1337,38)\1c&H6B2AFD&\blur3\iclip(m 1337 -34 l 1364 38 l 1337 110 l 1310 38)\fs55}よ
Dialogue: 1,0:01:37.29,0:01:37.35,OPJP,,0,0,0,fx,{\an5\pos(1337,38)\1c&H6B2AFD&\blur3\iclip(m 1337 -42 l 1367 38 l 1337 118 l 1307 38)\fs55}よ
Dialogue: 1,0:01:37.35,0:01:37.42,OPJP,,0,0,0,fx,{\an5\pos(1337,38)\1c&H6B2AFD&\blur3\iclip(m 1337 -50 l 1370 38 l 1337 126 l 1304 38)\fs55}よ
Dialogue: 0,0:01:36.78,0:01:37.42,OPJP,,0,0,0,fx,{\an5\pos(1337,38)\blur3\fs55}よ
Dialogue: 1,0:01:37.42,0:01:38.07,OPJP,,0,0,0,fx,{\an5\pos(1337,38)\blur3\fs55\fad(0,200)}よ
Dialogue: 1,0:01:37.22,0:01:37.42,OPJP,,0,0,0,fx,{\an5\pos(703,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}ね
Dialogue: 1,0:01:37.42,0:01:37.45,OPJP,,0,0,0,fx,{\an5\pos(703,38)\1c&H6B2AFD&\blur3\iclip(m 703 22 l 709 38 l 703 54 l 697 38)\fs55}ね
Dialogue: 1,0:01:37.45,0:01:37.49,OPJP,,0,0,0,fx,{\an5\pos(703,38)\1c&H6B2AFD&\blur3\iclip(m 703 14 l 712 38 l 703 62 l 694 38)\fs55}ね
Dialogue: 1,0:01:37.49,0:01:37.53,OPJP,,0,0,0,fx,{\an5\pos(703,38)\1c&H6B2AFD&\blur3\iclip(m 703 6 l 715 38 l 703 70 l 691 38)\fs55}ね
Dialogue: 1,0:01:37.53,0:01:37.57,OPJP,,0,0,0,fx,{\an5\pos(703,38)\1c&H6B2AFD&\blur3\iclip(m 703 -2 l 718 38 l 703 78 l 688 38)\fs55}ね
Dialogue: 1,0:01:37.57,0:01:37.61,OPJP,,0,0,0,fx,{\an5\pos(703,38)\1c&H6B2AFD&\blur3\iclip(m 703 -10 l 721 38 l 703 86 l 685 38)\fs55}ね
Dialogue: 1,0:01:37.61,0:01:37.65,OPJP,,0,0,0,fx,{\an5\pos(703,38)\1c&H6B2AFD&\blur3\iclip(m 703 -18 l 724 38 l 703 94 l 682 38)\fs55}ね
Dialogue: 1,0:01:37.65,0:01:37.69,OPJP,,0,0,0,fx,{\an5\pos(703,38)\1c&H6B2AFD&\blur3\iclip(m 703 -26 l 727 38 l 703 102 l 679 38)\fs55}ね
Dialogue: 1,0:01:37.69,0:01:37.73,OPJP,,0,0,0,fx,{\an5\pos(703,38)\1c&H6B2AFD&\blur3\iclip(m 703 -34 l 730 38 l 703 110 l 676 38)\fs55}ね
Dialogue: 1,0:01:37.73,0:01:37.77,OPJP,,0,0,0,fx,{\an5\pos(703,38)\1c&H6B2AFD&\blur3\iclip(m 703 -42 l 733 38 l 703 118 l 673 38)\fs55}ね
Dialogue: 1,0:01:37.77,0:01:37.81,OPJP,,0,0,0,fx,{\an5\pos(703,38)\1c&H6B2AFD&\blur3\iclip(m 703 -50 l 736 38 l 703 126 l 670 38)\fs55}ね
Dialogue: 0,0:01:37.42,0:01:37.81,OPJP,,0,0,0,fx,{\an5\pos(703,38)\blur3\fs55}ね
Dialogue: 1,0:01:37.81,0:01:43.62,OPJP,,0,0,0,fx,{\an5\pos(703,38)\blur3\fs55\fad(0,200)}ね
Dialogue: 1,0:01:37.25,0:01:37.81,OPJP,,0,0,0,fx,{\an5\pos(750,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}え
Dialogue: 1,0:01:37.81,0:01:37.86,OPJP,,0,0,0,fx,{\an5\pos(750,38)\1c&H6B2AFD&\blur3\iclip(m 750 22 l 756 38 l 750 54 l 744 38)\fs55}え
Dialogue: 1,0:01:37.86,0:01:37.91,OPJP,,0,0,0,fx,{\an5\pos(750,38)\1c&H6B2AFD&\blur3\iclip(m 750 14 l 759 38 l 750 62 l 741 38)\fs55}え
Dialogue: 1,0:01:37.91,0:01:37.96,OPJP,,0,0,0,fx,{\an5\pos(750,38)\1c&H6B2AFD&\blur3\iclip(m 750 6 l 762 38 l 750 70 l 738 38)\fs55}え
Dialogue: 1,0:01:37.96,0:01:38.01,OPJP,,0,0,0,fx,{\an5\pos(750,38)\1c&H6B2AFD&\blur3\iclip(m 750 -2 l 765 38 l 750 78 l 735 38)\fs55}え
Dialogue: 1,0:01:38.01,0:01:38.06,OPJP,,0,0,0,fx,{\an5\pos(750,38)\1c&H6B2AFD&\blur3\iclip(m 750 -10 l 768 38 l 750 86 l 732 38)\fs55}え
Dialogue: 1,0:01:38.06,0:01:38.11,OPJP,,0,0,0,fx,{\an5\pos(750,38)\1c&H6B2AFD&\blur3\iclip(m 750 -18 l 771 38 l 750 94 l 729 38)\fs55}え
Dialogue: 1,0:01:38.11,0:01:38.16,OPJP,,0,0,0,fx,{\an5\pos(750,38)\1c&H6B2AFD&\blur3\iclip(m 750 -26 l 774 38 l 750 102 l 726 38)\fs55}え
Dialogue: 1,0:01:38.16,0:01:38.21,OPJP,,0,0,0,fx,{\an5\pos(750,38)\1c&H6B2AFD&\blur3\iclip(m 750 -34 l 777 38 l 750 110 l 723 38)\fs55}え
Dialogue: 1,0:01:38.21,0:01:38.26,OPJP,,0,0,0,fx,{\an5\pos(750,38)\1c&H6B2AFD&\blur3\iclip(m 750 -42 l 780 38 l 750 118 l 720 38)\fs55}え
Dialogue: 1,0:01:38.26,0:01:38.32,OPJP,,0,0,0,fx,{\an5\pos(750,38)\1c&H6B2AFD&\blur3\iclip(m 750 -50 l 783 38 l 750 126 l 717 38)\fs55}え
Dialogue: 0,0:01:37.81,0:01:38.32,OPJP,,0,0,0,fx,{\an5\pos(750,38)\blur3\fs55}え
Dialogue: 1,0:01:38.32,0:01:43.65,OPJP,,0,0,0,fx,{\an5\pos(750,38)\blur3\fs55\fad(0,200)}え
Dialogue: 1,0:01:37.28,0:01:38.32,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}一
Dialogue: 1,0:01:38.32,0:01:38.35,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 22 l 825 38 l 819 54 l 813 38)\fs55}一
Dialogue: 1,0:01:38.35,0:01:38.39,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 14 l 828 38 l 819 62 l 810 38)\fs55}一
Dialogue: 1,0:01:38.39,0:01:38.43,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 6 l 831 38 l 819 70 l 807 38)\fs55}一
Dialogue: 1,0:01:38.43,0:01:38.46,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -2 l 834 38 l 819 78 l 804 38)\fs55}一
Dialogue: 1,0:01:38.46,0:01:38.50,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -10 l 837 38 l 819 86 l 801 38)\fs55}一
Dialogue: 1,0:01:38.50,0:01:38.54,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -18 l 840 38 l 819 94 l 798 38)\fs55}一
Dialogue: 1,0:01:38.54,0:01:38.57,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -26 l 843 38 l 819 102 l 795 38)\fs55}一
Dialogue: 1,0:01:38.57,0:01:38.61,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -34 l 846 38 l 819 110 l 792 38)\fs55}一
Dialogue: 1,0:01:38.61,0:01:38.65,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -42 l 849 38 l 819 118 l 789 38)\fs55}一
Dialogue: 1,0:01:38.65,0:01:38.69,OPJP,,0,0,0,fx,{\an5\pos(819,38)\1c&H6B2AFD&\blur3\iclip(m 819 -50 l 852 38 l 819 126 l 786 38)\fs55}一
Dialogue: 0,0:01:38.32,0:01:38.69,OPJP,,0,0,0,fx,{\an5\pos(819,38)\blur3\fs55}一
Dialogue: 1,0:01:38.69,0:01:43.68,OPJP,,0,0,0,fx,{\an5\pos(819,38)\blur3\fs55\fad(0,200)}一
Dialogue: 1,0:01:37.31,0:01:38.69,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}人
Dialogue: 1,0:01:38.69,0:01:38.72,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 22 l 872 38 l 866 54 l 860 38)\fs55}人
Dialogue: 1,0:01:38.72,0:01:38.75,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 14 l 875 38 l 866 62 l 857 38)\fs55}人
Dialogue: 1,0:01:38.75,0:01:38.79,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 6 l 878 38 l 866 70 l 854 38)\fs55}人
Dialogue: 1,0:01:38.79,0:01:38.82,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -2 l 881 38 l 866 78 l 851 38)\fs55}人
Dialogue: 1,0:01:38.82,0:01:38.86,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -10 l 884 38 l 866 86 l 848 38)\fs55}人
Dialogue: 1,0:01:38.86,0:01:38.89,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -18 l 887 38 l 866 94 l 845 38)\fs55}人
Dialogue: 1,0:01:38.89,0:01:38.92,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -26 l 890 38 l 866 102 l 842 38)\fs55}人
Dialogue: 1,0:01:38.92,0:01:38.96,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -34 l 893 38 l 866 110 l 839 38)\fs55}人
Dialogue: 1,0:01:38.96,0:01:38.99,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -42 l 896 38 l 866 118 l 836 38)\fs55}人
Dialogue: 1,0:01:38.99,0:01:39.03,OPJP,,0,0,0,fx,{\an5\pos(866,38)\1c&H6B2AFD&\blur3\iclip(m 866 -50 l 899 38 l 866 126 l 833 38)\fs55}人
Dialogue: 0,0:01:38.69,0:01:39.03,OPJP,,0,0,0,fx,{\an5\pos(866,38)\blur3\fs55}人
Dialogue: 1,0:01:39.03,0:01:43.71,OPJP,,0,0,0,fx,{\an5\pos(866,38)\blur3\fs55\fad(0,200)}人
Dialogue: 1,0:01:37.34,0:01:39.03,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}で
Dialogue: 1,0:01:39.03,0:01:39.12,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 22 l 919 38 l 913 54 l 907 38)\fs55}で
Dialogue: 1,0:01:39.12,0:01:39.21,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 14 l 922 38 l 913 62 l 904 38)\fs55}で
Dialogue: 1,0:01:39.21,0:01:39.30,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 6 l 925 38 l 913 70 l 901 38)\fs55}で
Dialogue: 1,0:01:39.30,0:01:39.39,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -2 l 928 38 l 913 78 l 898 38)\fs55}で
Dialogue: 1,0:01:39.39,0:01:39.48,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -10 l 931 38 l 913 86 l 895 38)\fs55}で
Dialogue: 1,0:01:39.48,0:01:39.57,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -18 l 934 38 l 913 94 l 892 38)\fs55}で
Dialogue: 1,0:01:39.57,0:01:39.66,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -26 l 937 38 l 913 102 l 889 38)\fs55}で
Dialogue: 1,0:01:39.66,0:01:39.75,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -34 l 940 38 l 913 110 l 886 38)\fs55}で
Dialogue: 1,0:01:39.75,0:01:39.84,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -42 l 943 38 l 913 118 l 883 38)\fs55}で
Dialogue: 1,0:01:39.84,0:01:39.94,OPJP,,0,0,0,fx,{\an5\pos(913,38)\1c&H6B2AFD&\blur3\iclip(m 913 -50 l 946 38 l 913 126 l 880 38)\fs55}で
Dialogue: 0,0:01:39.03,0:01:39.94,OPJP,,0,0,0,fx,{\an5\pos(913,38)\blur3\fs55}で
Dialogue: 1,0:01:39.94,0:01:43.74,OPJP,,0,0,0,fx,{\an5\pos(913,38)\blur3\fs55\fad(0,200)}で
Dialogue: 1,0:01:37.40,0:01:40.30,OPJP,,0,0,0,fx,{\an5\pos(982,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}戦
Dialogue: 1,0:01:40.30,0:01:40.40,OPJP,,0,0,0,fx,{\an5\pos(982,38)\1c&H6B2AFD&\blur3\iclip(m 982 22 l 988 38 l 982 54 l 976 38)\fs55}戦
Dialogue: 1,0:01:40.40,0:01:40.50,OPJP,,0,0,0,fx,{\an5\pos(982,38)\1c&H6B2AFD&\blur3\iclip(m 982 14 l 991 38 l 982 62 l 973 38)\fs55}戦
Dialogue: 1,0:01:40.50,0:01:40.60,OPJP,,0,0,0,fx,{\an5\pos(982,38)\1c&H6B2AFD&\blur3\iclip(m 982 6 l 994 38 l 982 70 l 970 38)\fs55}戦
Dialogue: 1,0:01:40.60,0:01:40.70,OPJP,,0,0,0,fx,{\an5\pos(982,38)\1c&H6B2AFD&\blur3\iclip(m 982 -2 l 997 38 l 982 78 l 967 38)\fs55}戦
Dialogue: 1,0:01:40.70,0:01:40.81,OPJP,,0,0,0,fx,{\an5\pos(982,38)\1c&H6B2AFD&\blur3\iclip(m 982 -10 l 1000 38 l 982 86 l 964 38)\fs55}戦
Dialogue: 1,0:01:40.81,0:01:40.91,OPJP,,0,0,0,fx,{\an5\pos(982,38)\1c&H6B2AFD&\blur3\iclip(m 982 -18 l 1003 38 l 982 94 l 961 38)\fs55}戦
Dialogue: 1,0:01:40.91,0:01:41.01,OPJP,,0,0,0,fx,{\an5\pos(982,38)\1c&H6B2AFD&\blur3\iclip(m 982 -26 l 1006 38 l 982 102 l 958 38)\fs55}戦
Dialogue: 1,0:01:41.01,0:01:41.11,OPJP,,0,0,0,fx,{\an5\pos(982,38)\1c&H6B2AFD&\blur3\iclip(m 982 -34 l 1009 38 l 982 110 l 955 38)\fs55}戦
Dialogue: 1,0:01:41.11,0:01:41.21,OPJP,,0,0,0,fx,{\an5\pos(982,38)\1c&H6B2AFD&\blur3\iclip(m 982 -42 l 1012 38 l 982 118 l 952 38)\fs55}戦
Dialogue: 1,0:01:41.21,0:01:41.32,OPJP,,0,0,0,fx,{\an5\pos(982,38)\1c&H6B2AFD&\blur3\iclip(m 982 -50 l 1015 38 l 982 126 l 949 38)\fs55}戦
Dialogue: 0,0:01:40.30,0:01:41.32,OPJP,,0,0,0,fx,{\an5\pos(982,38)\blur3\fs55}戦
Dialogue: 1,0:01:41.32,0:01:43.80,OPJP,,0,0,0,fx,{\an5\pos(982,38)\blur3\fs55\fad(0,200)}戦
Dialogue: 1,0:01:37.43,0:01:41.32,OPJP,,0,0,0,fx,{\an5\pos(1029,38)\1c&H6B2AFD&\blur3\fs55\fad(200,0)}う
Dialogue: 1,0:01:41.32,0:01:41.34,OPJP,,0,0,0,fx,{\an5\pos(1029,38)\1c&H6B2AFD&\blur3\iclip(m 1029 22 l 1035 38 l 1029 54 l 1023 38)\fs55}う
Dialogue: 1,0:01:41.34,0:01:41.37,OPJP,,0,0,0,fx,{\an5\pos(1029,38)\1c&H6B2AFD&\blur3\iclip(m 1029 14 l 1038 38 l 1029 62 l 1020 38)\fs55}う
Dialogue: 1,0:01:41.37,0:01:41.40,OPJP,,0,0,0,fx,{\an5\pos(1029,38)\1c&H6B2AFD&\blur3\iclip(m 1029 6 l 1041 38 l 1029 70 l 1017 38)\fs55}う
Dialogue: 1,0:01:41.40,0:01:41.43,OPJP,,0,0,0,fx,{\an5\pos(1029,38)\1c&H6B2AFD&\blur3\iclip(m 1029 -2 l 1044 38 l 1029 78 l 1014 38)\fs55}う
Dialogue: 1,0:01:41.43,0:01:41.46,OPJP,,0,0,0,fx,{\an5\pos(1029,38)\1c&H6B2AFD&\blur3\iclip(m 1029 -10 l 1047 38 l 1029 86 l 1011 38)\fs55}う
Dialogue: 1,0:01:41.46,0:01:41.48,OPJP,,0,0,0,fx,{\an5\pos(1029,38)\1c&H6B2AFD&\blur3\iclip(m 1029 -18 l 1050 38 l 1029 94 l 1008 38)\fs55}う
Dialogue: 1,0:01:41.48,0:01:41.51,OPJP,,0,0,0,fx,{\an5\pos(1029,38)\1c&H6B2AFD&\blur3\iclip(m 1029 -26 l 1053 38 l 1029 102 l 1005 38)\fs55}う
Dialogue: 1,0:01:41.51,0:01:41.54,OPJP,,0,0,0,fx,{\an5\pos(1029,38)\1c&H6B2AFD&\blur3\iclip(m 1029 -34 l 1056 38 l 1029 110 l 1002 38)\fs55}う
Dialogue: 1,0:01:41.54,0:01:41.57,OPJP,,0,0,0,fx,{\an5\pos(1029,38)\1c&H6B2AFD&\blur3\iclip(m 1029 -42 l 1059 38 l 1029 118 l 999 38)\fs55}う
Dialogue: 1,0:01:41.57,0:01:41.60,OPJP,,0,0,0,fx,{\an5\pos(1029,38)\1c&H6B2AFD&\blur3\iclip(m 1029 -50 l 1062 38 l 1029 126 l 996 38)\fs55}う