-
Notifications
You must be signed in to change notification settings - Fork 1
/
Project Defence small.srt
7566 lines (6050 loc) · 202 KB
/
Project Defence small.srt
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
1
00:00:00,409 --> 00:00:00,449
<u>Hi,</u> thanks for checking out this project. My name
is Olawale Micheal Juwon. This project is titled
2
00:00:00,449 --> 00:00:01,070
Hi, thanks for checking out this project. My name
is Olawale Micheal Juwon. This project is titled
3
00:00:01,070 --> 00:00:01,230
Hi, <u>thanks</u> for checking out this project. My name
is Olawale Micheal Juwon. This project is titled
4
00:00:01,230 --> 00:00:01,270
Hi, thanks for checking out this project. My name
is Olawale Micheal Juwon. This project is titled
5
00:00:01,270 --> 00:00:01,370
Hi, thanks <u>for</u> checking out this project. My name
is Olawale Micheal Juwon. This project is titled
6
00:00:01,370 --> 00:00:01,390
Hi, thanks for checking out this project. My name
is Olawale Micheal Juwon. This project is titled
7
00:00:01,390 --> 00:00:01,610
Hi, thanks for <u>checking</u> out this project. My name
is Olawale Micheal Juwon. This project is titled
8
00:00:01,610 --> 00:00:01,630
Hi, thanks for checking out this project. My name
is Olawale Micheal Juwon. This project is titled
9
00:00:01,630 --> 00:00:01,730
Hi, thanks for checking <u>out</u> this project. My name
is Olawale Micheal Juwon. This project is titled
10
00:00:01,730 --> 00:00:01,750
Hi, thanks for checking out this project. My name
is Olawale Micheal Juwon. This project is titled
11
00:00:01,750 --> 00:00:01,871
Hi, thanks for checking out <u>this</u> project. My name
is Olawale Micheal Juwon. This project is titled
12
00:00:01,871 --> 00:00:01,911
Hi, thanks for checking out this project. My name
is Olawale Micheal Juwon. This project is titled
13
00:00:01,911 --> 00:00:02,271
Hi, thanks for checking out this <u>project.</u> My name
is Olawale Micheal Juwon. This project is titled
14
00:00:02,271 --> 00:00:02,491
Hi, thanks for checking out this project. My name
is Olawale Micheal Juwon. This project is titled
15
00:00:02,491 --> 00:00:02,691
Hi, thanks for checking out this project. <u>My</u> name
is Olawale Micheal Juwon. This project is titled
16
00:00:02,691 --> 00:00:02,751
Hi, thanks for checking out this project. My name
is Olawale Micheal Juwon. This project is titled
17
00:00:02,751 --> 00:00:02,951
Hi, thanks for checking out this project. My <u>name</u>
is Olawale Micheal Juwon. This project is titled
18
00:00:02,951 --> 00:00:02,991
Hi, thanks for checking out this project. My name
is Olawale Micheal Juwon. This project is titled
19
00:00:02,991 --> 00:00:03,052
Hi, thanks for checking out this project. My name
<u>is</u> Olawale Micheal Juwon. This project is titled
20
00:00:03,052 --> 00:00:03,172
Hi, thanks for checking out this project. My name
is Olawale Micheal Juwon. This project is titled
21
00:00:03,172 --> 00:00:03,592
Hi, thanks for checking out this project. My name
is <u>Olawale</u> Micheal Juwon. This project is titled
22
00:00:03,592 --> 00:00:03,612
Hi, thanks for checking out this project. My name
is Olawale Micheal Juwon. This project is titled
23
00:00:03,612 --> 00:00:04,232
Hi, thanks for checking out this project. My name
is Olawale <u>Micheal Juwon.</u> This project is titled
24
00:00:04,232 --> 00:00:04,613
Hi, thanks for checking out this project. My name
is Olawale Micheal Juwon. This project is titled
25
00:00:04,613 --> 00:00:04,773
Hi, thanks for checking out this project. My name
is Olawale Micheal Juwon. <u>This</u> project is titled
26
00:00:04,773 --> 00:00:04,793
Hi, thanks for checking out this project. My name
is Olawale Micheal Juwon. This project is titled
27
00:00:04,793 --> 00:00:04,973
Hi, thanks for checking out this project. My name
is Olawale Micheal Juwon. This <u>project</u> is titled
28
00:00:04,973 --> 00:00:05,113
Hi, thanks for checking out this project. My name
is Olawale Micheal Juwon. This project is titled
29
00:00:05,113 --> 00:00:05,193
Hi, thanks for checking out this project. My name
is Olawale Micheal Juwon. This project <u>is</u> titled
30
00:00:05,193 --> 00:00:05,273
Hi, thanks for checking out this project. My name
is Olawale Micheal Juwon. This project is titled
31
00:00:05,273 --> 00:00:05,534
Hi, thanks for checking out this project. My name
is Olawale Micheal Juwon. This project is <u>titled</u>
32
00:00:04,613 --> 00:00:05,654
Intelligent Surveillance System Using Motion
Anomaly Detector. The aim of the project is
33
00:00:05,654 --> 00:00:06,454
<u>Intelligent</u> Surveillance System Using Motion
Anomaly Detector. The aim of the project is
34
00:00:06,454 --> 00:00:06,494
Intelligent Surveillance System Using Motion
Anomaly Detector. The aim of the project is
35
00:00:06,494 --> 00:00:06,875
Intelligent <u>Surveillance</u> System Using Motion
Anomaly Detector. The aim of the project is
36
00:00:06,875 --> 00:00:06,895
Intelligent Surveillance System Using Motion
Anomaly Detector. The aim of the project is
37
00:00:06,895 --> 00:00:07,315
Intelligent Surveillance <u>System</u> Using Motion
Anomaly Detector. The aim of the project is
38
00:00:07,315 --> 00:00:07,495
Intelligent Surveillance System Using Motion
Anomaly Detector. The aim of the project is
39
00:00:07,495 --> 00:00:07,755
Intelligent Surveillance System <u>Using</u> Motion
Anomaly Detector. The aim of the project is
40
00:00:07,755 --> 00:00:07,775
Intelligent Surveillance System Using Motion
Anomaly Detector. The aim of the project is
41
00:00:07,775 --> 00:00:08,036
Intelligent Surveillance System Using <u>Motion</u>
Anomaly Detector. The aim of the project is
42
00:00:08,036 --> 00:00:08,196
Intelligent Surveillance System Using Motion
Anomaly Detector. The aim of the project is
43
00:00:08,196 --> 00:00:08,576
Intelligent Surveillance System Using Motion
<u>Anomaly</u> Detector. The aim of the project is
44
00:00:08,576 --> 00:00:08,616
Intelligent Surveillance System Using Motion
Anomaly Detector. The aim of the project is
45
00:00:08,616 --> 00:00:09,016
Intelligent Surveillance System Using Motion
Anomaly <u>Detector.</u> The aim of the project is
46
00:00:09,016 --> 00:00:09,517
Intelligent Surveillance System Using Motion
Anomaly Detector. The aim of the project is
47
00:00:09,517 --> 00:00:09,697
Intelligent Surveillance System Using Motion
Anomaly Detector. <u>The</u> aim of the project is
48
00:00:09,697 --> 00:00:09,777
Intelligent Surveillance System Using Motion
Anomaly Detector. The aim of the project is
49
00:00:09,777 --> 00:00:09,917
Intelligent Surveillance System Using Motion
Anomaly Detector. The <u>aim</u> of the project is
50
00:00:09,917 --> 00:00:10,037
Intelligent Surveillance System Using Motion
Anomaly Detector. The aim of the project is
51
00:00:10,037 --> 00:00:10,117
Intelligent Surveillance System Using Motion
Anomaly Detector. The aim <u>of</u> the project is
52
00:00:10,117 --> 00:00:10,137
Intelligent Surveillance System Using Motion
Anomaly Detector. The aim of the project is
53
00:00:10,137 --> 00:00:10,237
Intelligent Surveillance System Using Motion
Anomaly Detector. The aim of <u>the</u> project is
54
00:00:10,237 --> 00:00:10,277
Intelligent Surveillance System Using Motion
Anomaly Detector. The aim of the project is
55
00:00:10,277 --> 00:00:10,638
Intelligent Surveillance System Using Motion
Anomaly Detector. The aim of the <u>project</u> is
56
00:00:10,638 --> 00:00:10,918
Intelligent Surveillance System Using Motion
Anomaly Detector. The aim of the project is
57
00:00:10,918 --> 00:00:11,058
Intelligent Surveillance System Using Motion
Anomaly Detector. The aim of the project <u>is</u>
58
00:00:09,517 --> 00:00:11,178
firstly to develop a surveillance system that is
beyond conventional or traditional
59
00:00:11,178 --> 00:00:11,518
<u>firstly</u> to develop a surveillance system that is
beyond conventional or traditional
60
00:00:11,518 --> 00:00:11,539
firstly to develop a surveillance system that is
beyond conventional or traditional
61
00:00:11,539 --> 00:00:11,659
firstly <u>to</u> develop a surveillance system that is
beyond conventional or traditional
62
00:00:11,659 --> 00:00:12,099
firstly to develop a surveillance system that is
beyond conventional or traditional
63
00:00:12,099 --> 00:00:12,519
firstly to <u>develop</u> a surveillance system that is
beyond conventional or traditional
64
00:00:12,519 --> 00:00:12,659
firstly to develop a surveillance system that is
beyond conventional or traditional
65
00:00:12,659 --> 00:00:12,740
firstly to develop <u>a</u> surveillance system that is
beyond conventional or traditional
66
00:00:12,740 --> 00:00:12,760
firstly to develop a surveillance system that is
beyond conventional or traditional
67
00:00:12,760 --> 00:00:13,180
firstly to develop a <u>surveillance</u> system that is
beyond conventional or traditional
68
00:00:13,180 --> 00:00:13,200
firstly to develop a surveillance system that is
beyond conventional or traditional
69
00:00:13,200 --> 00:00:13,460
firstly to develop a surveillance <u>system</u> that is
beyond conventional or traditional
70
00:00:13,460 --> 00:00:13,500
firstly to develop a surveillance system that is
beyond conventional or traditional
71
00:00:13,500 --> 00:00:13,640
firstly to develop a surveillance system <u>that</u> is
beyond conventional or traditional
72
00:00:13,640 --> 00:00:13,700
firstly to develop a surveillance system that is
beyond conventional or traditional
73
00:00:13,700 --> 00:00:13,800
firstly to develop a surveillance system that <u>is</u>
beyond conventional or traditional
74
00:00:13,800 --> 00:00:13,860
firstly to develop a surveillance system that is
beyond conventional or traditional
75
00:00:13,860 --> 00:00:14,261
firstly to develop a surveillance system that is
<u>beyond</u> conventional or traditional
76
00:00:14,261 --> 00:00:14,321
firstly to develop a surveillance system that is
beyond conventional or traditional
77
00:00:14,321 --> 00:00:14,921
firstly to develop a surveillance system that is
beyond <u>conventional</u> or traditional
78
00:00:14,921 --> 00:00:15,202
firstly to develop a surveillance system that is
beyond conventional or traditional
79
00:00:15,202 --> 00:00:15,282
firstly to develop a surveillance system that is
beyond conventional <u>or</u> traditional
80
00:00:15,282 --> 00:00:15,302
firstly to develop a surveillance system that is
beyond conventional or traditional
81
00:00:15,302 --> 00:00:15,702
firstly to develop a surveillance system that is
beyond conventional or <u>traditional</u>
82
00:00:09,517 --> 00:00:15,722
surveillance system. Using Motion Anomaly
Detector to enable to intelligently analyze the
83
00:00:15,722 --> 00:00:16,122
<u>surveillance</u> system. Using Motion Anomaly
Detector to enable to intelligently analyze the
84
00:00:16,122 --> 00:00:16,142
surveillance system. Using Motion Anomaly
Detector to enable to intelligently analyze the
85
00:00:16,142 --> 00:00:16,463
surveillance <u>system.</u> Using Motion Anomaly
Detector to enable to intelligently analyze the
86
00:00:16,463 --> 00:00:16,863
surveillance system. Using Motion Anomaly
Detector to enable to intelligently analyze the
87
00:00:16,863 --> 00:00:17,143
surveillance system. <u>Using</u> Motion Anomaly
Detector to enable to intelligently analyze the
88
00:00:17,143 --> 00:00:17,163
surveillance system. Using Motion Anomaly
Detector to enable to intelligently analyze the
89
00:00:17,163 --> 00:00:17,323
surveillance system. Using <u>Motion</u> Anomaly
Detector to enable to intelligently analyze the
90
00:00:17,323 --> 00:00:17,343
surveillance system. Using Motion Anomaly
Detector to enable to intelligently analyze the
91
00:00:17,343 --> 00:00:17,724
surveillance system. Using Motion <u>Anomaly</u>
Detector to enable to intelligently analyze the
92
00:00:17,724 --> 00:00:17,744
surveillance system. Using Motion Anomaly
Detector to enable to intelligently analyze the
93
00:00:17,744 --> 00:00:18,184
surveillance system. Using Motion Anomaly
<u>Detector</u> to enable to intelligently analyze the
94
00:00:18,184 --> 00:00:18,204
surveillance system. Using Motion Anomaly
Detector to enable to intelligently analyze the
95
00:00:18,204 --> 00:00:18,304
surveillance system. Using Motion Anomaly
Detector <u>to</u> enable to intelligently analyze the
96
00:00:18,304 --> 00:00:18,324
surveillance system. Using Motion Anomaly
Detector to enable to intelligently analyze the
97
00:00:18,324 --> 00:00:18,584
surveillance system. Using Motion Anomaly
Detector to <u>enable</u> to intelligently analyze the
98
00:00:18,584 --> 00:00:18,604
surveillance system. Using Motion Anomaly
Detector to enable to intelligently analyze the
99
00:00:18,604 --> 00:00:18,664
surveillance system. Using Motion Anomaly
Detector to enable <u>to</u> intelligently analyze the
100
00:00:18,664 --> 00:00:18,865
surveillance system. Using Motion Anomaly
Detector to enable to intelligently analyze the
101
00:00:18,865 --> 00:00:19,685
surveillance system. Using Motion Anomaly
Detector to enable to <u>intelligently</u> analyze the
102
00:00:19,685 --> 00:00:19,745
surveillance system. Using Motion Anomaly
Detector to enable to intelligently analyze the
103
00:00:19,745 --> 00:00:20,266
surveillance system. Using Motion Anomaly
Detector to enable to intelligently <u>analyze</u> the
104
00:00:20,266 --> 00:00:20,646
surveillance system. Using Motion Anomaly
Detector to enable to intelligently analyze the
105
00:00:20,646 --> 00:00:20,886
surveillance system. Using Motion Anomaly
Detector to enable to intelligently analyze <u>the</u>
106
00:00:16,863 --> 00:00:20,986
incident reports and be able to alert the
supervisor that there is an issue or there is an
107
00:00:20,986 --> 00:00:21,327
<u>incident</u> reports and be able to alert the
supervisor that there is an issue or there is an
108
00:00:21,327 --> 00:00:21,367
incident reports and be able to alert the
supervisor that there is an issue or there is an
109
00:00:21,367 --> 00:00:21,787
incident <u>reports</u> and be able to alert the
supervisor that there is an issue or there is an
110
00:00:21,787 --> 00:00:22,187
incident reports and be able to alert the
supervisor that there is an issue or there is an
111
00:00:22,187 --> 00:00:22,347
incident reports <u>and</u> be able to alert the
supervisor that there is an issue or there is an
112
00:00:22,347 --> 00:00:22,448
incident reports and be able to alert the
supervisor that there is an issue or there is an
113
00:00:22,448 --> 00:00:22,528
incident reports and <u>be</u> able to alert the
supervisor that there is an issue or there is an
114
00:00:22,528 --> 00:00:22,548
incident reports and be able to alert the
supervisor that there is an issue or there is an
115
00:00:22,548 --> 00:00:22,748
incident reports and be <u>able</u> to alert the
supervisor that there is an issue or there is an
116
00:00:22,748 --> 00:00:22,768
incident reports and be able to alert the
supervisor that there is an issue or there is an
117
00:00:22,768 --> 00:00:22,888
incident reports and be able <u>to</u> alert the
supervisor that there is an issue or there is an
118
00:00:22,888 --> 00:00:23,308
incident reports and be able to alert the
supervisor that there is an issue or there is an
119
00:00:23,308 --> 00:00:23,689
incident reports and be able to <u>alert</u> the
supervisor that there is an issue or there is an
120
00:00:23,689 --> 00:00:23,749
incident reports and be able to alert the
supervisor that there is an issue or there is an
121
00:00:23,749 --> 00:00:23,849
incident reports and be able to alert <u>the</u>
supervisor that there is an issue or there is an
122
00:00:23,849 --> 00:00:23,869
incident reports and be able to alert the
supervisor that there is an issue or there is an
123
00:00:23,869 --> 00:00:24,509
incident reports and be able to alert the
<u>supervisor</u> that there is an issue or there is an
124
00:00:24,509 --> 00:00:24,769
incident reports and be able to alert the
supervisor that there is an issue or there is an
125
00:00:24,769 --> 00:00:25,010
incident reports and be able to alert the
supervisor <u>that</u> there is an issue or there is an
126
00:00:25,010 --> 00:00:25,090
incident reports and be able to alert the
supervisor that there is an issue or there is an
127
00:00:25,090 --> 00:00:25,230
incident reports and be able to alert the
supervisor that <u>there</u> is an issue or there is an
128
00:00:25,230 --> 00:00:25,250
incident reports and be able to alert the
supervisor that there is an issue or there is an
129
00:00:25,250 --> 00:00:25,310
incident reports and be able to alert the
supervisor that there <u>is</u> an issue or there is an
130
00:00:25,310 --> 00:00:25,370
incident reports and be able to alert the
supervisor that there is an issue or there is an
131
00:00:25,370 --> 00:00:25,570
incident reports and be able to alert the
supervisor that there is <u>an</u> issue or there is an
132
00:00:25,570 --> 00:00:25,950
incident reports and be able to alert the
supervisor that there is an issue or there is an
133
00:00:25,950 --> 00:00:26,271
incident reports and be able to alert the
supervisor that there is an <u>issue</u> or there is an
134
00:00:26,271 --> 00:00:26,571
incident reports and be able to alert the
supervisor that there is an issue or there is an
135
00:00:26,571 --> 00:00:26,731
incident reports and be able to alert the
supervisor that there is an issue <u>or</u> there is an
136
00:00:26,731 --> 00:00:26,831
incident reports and be able to alert the
supervisor that there is an issue or there is an
137
00:00:26,831 --> 00:00:26,991
incident reports and be able to alert the
supervisor that there is an issue or <u>there</u> is an
138
00:00:26,991 --> 00:00:27,011
incident reports and be able to alert the
supervisor that there is an issue or there is an
139
00:00:27,011 --> 00:00:27,091
incident reports and be able to alert the
supervisor that there is an issue or there <u>is</u> an
140
00:00:27,091 --> 00:00:27,211
incident reports and be able to alert the
supervisor that there is an issue or there is an
141
00:00:27,211 --> 00:00:27,292
incident reports and be able to alert the
supervisor that there is an issue or there is <u>an</u>
142
00:00:16,863 --> 00:00:27,332
anomaly going on in their vicinity . This
project takes two form of development or two
143
00:00:27,332 --> 00:00:27,732
<u>anomaly</u> going on in their vicinity . This
project takes two form of development or two
144
00:00:27,732 --> 00:00:28,646
anomaly going on in their vicinity . This
project takes two form of development or two
145
00:00:28,646 --> 00:00:28,866
anomaly <u>going</u> on in their vicinity . This
project takes two form of development or two
146
00:00:28,866 --> 00:00:28,946
anomaly going on in their vicinity . This
project takes two form of development or two
147
00:00:28,946 --> 00:00:29,066
anomaly going <u>on</u> in their vicinity . This
project takes two form of development or two
148
00:00:29,066 --> 00:00:29,226
anomaly going on in their vicinity . This
project takes two form of development or two
149
00:00:29,226 --> 00:00:29,346
anomaly going on <u>in</u> their vicinity . This
project takes two form of development or two
150
00:00:29,346 --> 00:00:29,586
anomaly going on in their vicinity . This
project takes two form of development or two
151
00:00:29,586 --> 00:00:29,706
anomaly going on in <u>their</u> vicinity . This
project takes two form of development or two
152
00:00:29,706 --> 00:00:29,866
anomaly going on in their vicinity . This
project takes two form of development or two
153
00:00:29,866 --> 00:00:30,406
anomaly going on in their <u>vicinity</u> . This
project takes two form of development or two
154
00:00:30,406 --> 00:00:30,666
anomaly going on in their vicinity . This
project takes two form of development or two
155
00:00:30,666 --> 00:00:30,746
anomaly going on in their vicinity <u>or</u> so. This
project takes two form of development or two
156
00:00:30,746 --> 00:00:30,786
anomaly going on in their vicinity . This
project takes two form of development or two
157
00:00:30,786 --> 00:00:31,026
anomaly going on in their vicinity or <u>so.</u> This
project takes two form of development or two
158
00:00:31,026 --> 00:00:31,227
anomaly going on in their vicinity . This
project takes two form of development or two
159
00:00:31,227 --> 00:00:31,407
anomaly going on in their vicinity . <u>This</u>
project takes two form of development or two
160
00:00:31,407 --> 00:00:31,447
anomaly going on in their vicinity . This
project takes two form of development or two
161
00:00:31,447 --> 00:00:31,787
anomaly going on in their vicinity . This
<u>project</u> takes two form of development or two
162
00:00:31,787 --> 00:00:31,827
anomaly going on in their vicinity . This
project takes two form of development or two
163
00:00:31,827 --> 00:00:32,047
anomaly going on in their vicinity . This
project <u>takes</u> two form of development or two
164
00:00:32,047 --> 00:00:32,087
anomaly going on in their vicinity . This
project takes two form of development or two
165
00:00:32,087 --> 00:00:32,147
anomaly going on in their vicinity . This
project takes <u>to</u> form a development and to
166
00:00:32,147 --> 00:00:32,267
anomaly going on in their vicinity . This
project takes two form of development or two
167
00:00:32,267 --> 00:00:32,547
anomaly going on in their vicinity . This
project takes to <u>form</u> a development or two
168
00:00:32,547 --> 00:00:32,647
anomaly going on in their vicinity . This
project takes two form of development or two
169
00:00:32,647 --> 00:00:32,727
anomaly going on in their vicinity . This
project takes to form <u>a</u> development and to
170
00:00:32,727 --> 00:00:32,747
anomaly going on in their vicinity . This
project takes two form of development or two
171
00:00:32,747 --> 00:00:33,307
anomaly going on in their vicinity . This
project takes to form a <u>development</u> and to
172
00:00:33,307 --> 00:00:33,487
anomaly going on in their vicinity . This
project takes two form of development or two
173
00:00:33,487 --> 00:00:33,607
anomaly going on in their vicinity . This
project takes to form a development <u>and</u> to
174
00:00:33,607 --> 00:00:33,687
anomaly going on in their vicinity . This
project takes two form of development or two
175
00:00:33,687 --> 00:00:33,747
anomaly going on in their vicinity . This
project takes to form a development and <u>to</u>
176
00:00:31,227 --> 00:00:33,787
methodology approach for development. The first
action makes use of hardware technologies to
177
00:00:33,787 --> 00:00:34,447
<u>methodology</u> approach for development. The first
action makes use of hardware technologies to
178
00:00:34,447 --> 00:00:34,747
methodology approach for development. The first
action makes use of hardware technologies to
179
00:00:34,747 --> 00:00:35,087
methodology <u>approach</u> for development. The first
action makes use of hardware technologies to
180
00:00:35,087 --> 00:00:35,127
methodology approach for development. The first
action makes use of hardware technologies to
181
00:00:35,127 --> 00:00:35,207
methodology approach <u>for</u> development. The first
action makes use of hardware technologies to
182
00:00:35,207 --> 00:00:35,227
methodology approach for development. The first
action makes use of hardware technologies to
183
00:00:35,227 --> 00:00:35,707
methodology approach for <u>development.</u> The first
action makes use of hardware technologies to
184
00:00:35,707 --> 00:00:36,027
methodology approach for development. The first
action makes use of hardware technologies to
185
00:00:36,027 --> 00:00:36,127
methodology approach for development. <u>The</u> first
action makes use of hardware technologies to
186
00:00:36,127 --> 00:00:36,147
methodology approach for development. The first
action makes use of hardware technologies to
187
00:00:36,147 --> 00:00:36,328
methodology approach for development. The <u>first</u>
action makes use of hardware technologies to
188
00:00:36,328 --> 00:00:36,408
methodology approach for development. The first
action makes use of hardware technologies to
189
00:00:36,408 --> 00:00:36,868
methodology approach for development. The first
<u>action</u> makes use of hardware technologies to
190
00:00:36,868 --> 00:00:36,908
methodology approach for development. The first
action makes use of hardware technologies to
191
00:00:36,908 --> 00:00:37,068
methodology approach for development. The first
action <u>makes</u> use of hardware technologies to
192
00:00:37,068 --> 00:00:37,148
methodology approach for development. The first
action makes use of hardware technologies to
193
00:00:37,148 --> 00:00:37,288
methodology approach for development. The first
action makes <u>use</u> of hardware technologies to
194
00:00:37,288 --> 00:00:37,348
methodology approach for development. The first
action makes use of hardware technologies to
195
00:00:37,348 --> 00:00:37,548
methodology approach for development. The first
action makes use <u>of</u> hardware technologies to
196
00:00:37,548 --> 00:00:37,748
methodology approach for development. The first
action makes use of hardware technologies to
197
00:00:37,748 --> 00:00:38,268
methodology approach for development. The first
action makes use of <u>hardware</u> technologies to
198
00:00:38,268 --> 00:00:38,848
methodology approach for development. The first
action makes use of hardware technologies to
199
00:00:38,848 --> 00:00:39,408
methodology approach for development. The first
action makes use of hardware <u>technologies</u> to
200
00:00:39,408 --> 00:00:39,468
methodology approach for development. The first
action makes use of hardware technologies to