-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathr100014.abw
10389 lines (10388 loc) · 876 KB
/
r100014.abw
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE abiword PUBLIC "-//ABISOURCE//DTD AWML 1.0 Strict//EN" "http://www.abisource.com/awml.dtd">
<abiword template="false" xmlns:ct="http://www.abisource.com/changetracking.dtd" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:math="http://www.w3.org/1998/Math/MathML" xid-max="5363" xmlns:dc="http://purl.org/dc/elements/1.1/" fileformat="1.1" xmlns:svg="http://www.w3.org/2000/svg" xmlns:awml="http://www.abisource.com/awml.dtd" xmlns="http://www.abisource.com/awml.dtd" xmlns:xlink="http://www.w3.org/1999/xlink" version="3.0.2" xml:space="preserve" props="dom-dir:ltr; document-footnote-restart-section:0; document-endnote-type:numeric; document-endnote-place-enddoc:1; document-endnote-initial:1; lang:C-US; document-endnote-restart-section:0; document-footnote-restart-page:0; document-footnote-type:numeric; document-footnote-initial:1; document-endnote-place-endsection:0">
<!-- ======================================================================== -->
<!-- This file is an AbiWord document. -->
<!-- AbiWord is a free, Open Source word processor. -->
<!-- More information about AbiWord is available at http://www.abisource.com/ -->
<!-- You should not edit this file by hand. -->
<!-- ======================================================================== -->
<metadata>
<m key="abiword.date_last_changed">Wed Jan 24 10:54:53 2018
</m>
<m key="abiword.generator">AbiWord</m>
<m key="dc.date">Wed Jan 24 10:54:53 2018
</m>
<m key="dc.format">application/x-abiword</m>
</metadata>
<rdf>
</rdf>
<history version="18" edit-time="10881" last-saved="1516791293" uid="8a035794-00ba-11e8-8218-ca192126b1e9">
<version id="2" started="1516766231" uid="1dcc8f2c-00bb-11e8-8218-ca192126b1e9" auto="0" top-xid="635"/>
<version id="11" started="1516771202" uid="f36ca6de-00cb-11e8-8164-b3f975714c76" auto="0" top-xid="646"/>
<version id="12" started="1516774683" uid="55c00324-00ce-11e8-9b08-f69cc53ea19e" auto="0" top-xid="1103"/>
<version id="13" started="1516776229" uid="ef68fcd0-00d1-11e8-82be-89c2eedaf8a8" auto="0" top-xid="1254"/>
<version id="14" started="1516777815" uid="a0837f9c-00d5-11e8-8a81-b02d5f2363fb" auto="0" top-xid="3107"/>
<version id="15" started="1516787404" uid="f40bc370-00eb-11e8-897b-f793dec8232b" auto="0" top-xid="3122"/>
<version id="17" started="1516788587" uid="83bea658-00f2-11e8-99f1-b9619525b7fc" auto="0" top-xid="3142"/>
<version id="18" started="1516791293" uid="0234b232-00f5-11e8-995a-c845b08a423f" auto="0" top-xid="5363"/>
</history>
<styles>
<s type="P" name="header" basedon="_Normal" props="tabstops:2.884028in/C0,5.768056in/R0"/>
<s type="P" name="_Normal" basedon="Normal" props="lang:zh-CN; font-size:12.000000pt"/>
<s type="P" name="Normal" basedon="Normal" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-style:normal; margin-left:0pt; color:000000; widows:2; text-decoration:none; text-indent:0in; text-position:normal; line-height:1.0; font-variant:normal; bgcolor:transparent; margin-right:0pt; margin-bottom:0pt; font-size:12pt; font-weight:normal; text-align:left; lang:ar-SA; font-stretch:normal"/>
<s type="P" name="toc 1" basedon="_Normal" followedby="_Normal" props="lang:-none-; margin-top:6.000000pt; tabstops:0.500000in/L0,6.685417in/R1; margin-bottom:6.000000pt; font-family:Arial; font-size:11.000000pt"/>
<s type="P" name="toc 2" basedon="_Normal" followedby="_Normal" props="margin-top:3.000000pt; font-size:10.000000pt; margin-bottom:3.000000pt; font-family:Arial; margin-left:36.000000pt"/>
<s type="P" name="heading 1" basedon="_Normal" followedby="_Normal" props="lang:en-US; font-size:18.000000pt; margin-bottom:20.000000pt; font-family:Helvetica; margin-right:2.250000pt"/>
<s type="P" name="Block Text" basedon="_Normal" followedby="Current Settings" props="lang:en-US; font-size:10.000000pt; margin-bottom:14.000000pt; font-family:Helvetica; margin-right:2.250000pt; margin-left:1in"/>
<s type="P" name="heading 2" basedon="_Normal" followedby="_Normal" props="lang:en-US; margin-top:18.000000pt; font-size:14.000000pt; margin-bottom:8.000000pt; font-family:Helvetica"/>
<s type="P" name="Heading 2" basedon="Normal" followedby="Normal" props="font-size:14pt; margin-top:22pt; font-weight:bold; margin-bottom:3pt; font-family:Nimbus Sans L; keep-with-next:1"/>
<s type="P" name="Heading 3" basedon="Normal" followedby="Normal" props="font-size:12pt; margin-top:22pt; font-weight:bold; margin-bottom:3pt; font-family:Nimbus Sans L; keep-with-next:1"/>
<s type="P" name="List Paragraph" basedon="_Normal" props="margin-left:36.000000pt"/>
<s type="P" name="Balloon Text" basedon="_Normal" props="font-family:Tahoma; font-size:8.000000pt"/>
<s type="C" name="Balloon Text Char" basedon="Default Paragraph Font" props="lang:zh-CN; font-size:8.000000pt; font-family:Tahoma"/>
<s type="P" name="Body Text" basedon="_Normal" props="lang:en-US; margin-top:3.000000pt; font-size:11.000000pt; font-family:Arial; color:FF0000; font-style:italic"/>
<s type="P" name="Body Text Indent" basedon="_Normal" props="margin-bottom:6.000000pt; margin-left:14.150000pt"/>
<s type="C" name="Default Paragraph Font" basedon="Normal"/>
<s type="P" name="Document Map" basedon="_Normal" props="bgcolor:000080; font-size:10.000000pt; font-family:Tahoma"/>
<s type="C" name="Footer Char" basedon="Default Paragraph Font" props="lang:zh-CN; font-size:12.000000pt"/>
<s type="P" name="Grid Table Light" basedon="Normal Table" props="right-thickness:0.500000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.500000pt; top-thickness:0.500000pt; right-color:BFBFBF; top-color:BFBFBF; left-style:1; bot-color:BFBFBF; left-thickness:0.500000pt; right-style:1; top-style:1"/>
<s type="C" name="Guide" basedon="Default Paragraph Font" props="font-size:11.000000pt; font-family:Arial; color:FF0000; font-style:italic"/>
<s type="C" name="Hyperlink" basedon="Default Paragraph Font" props="text-decoration:underline; color:0000FF"/>
<s type="P" name="IEEE Abtract" basedon="_Normal" followedby="_Normal" props="text-align:justify; lang:en-GB; font-weight:bold; font-size:9.000000pt"/>
<s type="C" name="IEEE Abtract Char" basedon="Normal" props="lang:en-GB; font-size:9.000000pt; font-weight:bold"/>
<s type="P" name="No List" basedon="Normal"/>
<s type="P" name="Normal (Web)" basedon="_Normal" props="lang:en-US; margin-top:5.000000pt; font-size:11.000000pt; margin-bottom:5.000000pt; font-family:Times New Roman"/>
<s type="P" name="Normal Table" basedon="Normal"/>
<s type="P" name="Table Grid" basedon="Normal Table" props="font-family:Times New Roman; bot-style:1; top-style:1; left-thickness:0.500000pt; right-style:1; right-thickness:0.500000pt; top-thickness:0.500000pt; left-style:1; bot-thickness:0.500000pt"/>
<s type="P" name="footer" basedon="_Normal" props="tabstops:2.884028in/C0,5.768056in/R0"/>
<s type="P" name="heading 3" basedon="_Normal" followedby="_Normal" props="lang:en-US; margin-top:10.000000pt; font-weight:bold; margin-bottom:3.000000pt; font-family:Helvetica; font-size:11.000000pt"/>
<s type="C" name="page number" basedon="Default Paragraph Font"/>
</styles>
<lists>
<l id="1150" parentid="0" type="255" start-value="1" list-delim="%L" list-decimal="."/>
<l id="1160" parentid="0" type="255" start-value="1" list-delim="%L" list-decimal="."/>
<l id="1120" parentid="0" type="255" start-value="1" list-delim="%L" list-decimal="."/>
<l id="1" parentid="0" type="5" start-value="0" list-delim="%L" list-decimal="."/>
<l id="2" parentid="0" type="5" start-value="0" list-delim="%L" list-decimal="."/>
<l id="3" parentid="0" type="5" start-value="0" list-delim="%L" list-decimal="."/>
<l id="4" parentid="0" type="5" start-value="0" list-delim="%L" list-decimal="."/>
<l id="1012" parentid="4" type="5" start-value="0" list-delim="%L" list-decimal="."/>
<l id="1014" parentid="4" type="5" start-value="0" list-delim="%L" list-decimal="."/>
<l id="1016" parentid="4" type="5" start-value="0" list-delim="%L" list-decimal="."/>
<l id="5" parentid="0" type="5" start-value="0" list-delim="%L" list-decimal="."/>
<l id="161" parentid="0" type="255" start-value="1" list-delim="%L" list-decimal="."/>
<l id="1217" parentid="0" type="5" start-value="0" list-delim="%L" list-decimal="NULL"/>
<l id="1300" parentid="0" type="0" start-value="1" list-delim="%L." list-decimal="."/>
<l id="1465" parentid="0" type="5" start-value="0" list-delim="%L" list-decimal="NULL"/>
<l id="1539" parentid="0" type="5" start-value="0" list-delim="%L" list-decimal="NULL"/>
<l id="130" parentid="0" type="255" start-value="1" list-delim="%L" list-decimal="."/>
</lists>
<pagesize pagetype="A4" orientation="portrait" width="8.267717" height="11.692913" units="in" page-scale="1.000000"/>
<section header="0" xid="4" props="page-margin-right:0.590972in; page-margin-bottom:0.984722in; page-margin-left:1.102778in; columns:1; page-margin-top:1.181250in; column-line:off">
<p xid="5" props="text-align:right; text-indent:36.000000pt; margin-left:108.000000pt"><c props="font-weight:bold; font-family:Times New Roman; font-size:18.000000pt">PROTOTYPING S.M.A.R.T. VEHICLE NETWORKING PROTOCOL</c><c props="font-weight:bold; font-family:Times New Roman; font-size:18.000000pt"></c></p>
<p xid="7" props="text-align:center"><c></c><c></c></p>
<p xid="8" props="text-align:center"><c></c><c></c></p>
<p xid="9" props="text-align:center"><c></c><c></c></p>
<p xid="10" props="text-align:center"><c></c><c></c></p>
<p xid="11" props="text-align:center"><c></c><c></c></p>
<p xid="12" props="text-align:center"><c props="font-weight:bold; font-family:Times New Roman; font-size:14.000000pt">FIRST REVIEW REPORT</c><c props="font-weight:bold; font-family:Times New Roman; font-size:14.000000pt"></c></p>
<p xid="14" props="text-align:center"><c></c><c></c></p>
<p xid="15" props="text-align:center"><c></c><c></c></p>
<p xid="16" props="text-align:center"><c></c><c></c></p>
<p xid="17" props="text-align:center"><c></c><c></c></p>
<p xid="18" props="text-align:center"><c></c><c></c></p>
<p xid="19" props="text-align:center"><c></c><c></c></p>
<p xid="20" props="text-align:center"><c props="font-weight:bold; font-family:Times New Roman; font-size:18.000000pt">B.Tech Mechanical Engineering</c><c props="font-weight:bold; font-family:Times New Roman; font-size:18.000000pt"></c></p>
<p xid="22" props="text-align:center"><c></c><c></c></p>
<p xid="23" props="text-align:center"><c props="font-family:Times New Roman; font-style:italic">by</c><c props="font-family:Times New Roman; font-style:italic"></c> </p>
<p xid="646" props="text-align:center">NIKHIL PANDITA<c></c></p>
<p xid="25" props="text-align:center"><c></c><c></c></p>
<p xid="26" props="text-align:center"><c></c><c></c></p>
<p xid="27" props="text-align:center"><c></c><c></c></p>
<p xid="28" props="text-align:center"><c props="font-weight:bold; font-family:Times New Roman; font-size:16.000000pt">[ 14BME0133 ]</c><c props="font-weight:bold; font-family:Times New Roman; font-size:16.000000pt"></c></p>
<p xid="30" props="text-align:center"><c></c><c></c></p>
<p xid="31" props="text-align:center"><c></c><c></c></p>
<p xid="32" props="text-align:center"><c></c><c></c></p>
<p xid="33" props="text-align:center"><c></c><c></c></p>
<p xid="34" props="text-align:center"><c props="font-weight:bold; font-family:Times New Roman; font-size:14.000000pt">School of Mechanical Engineering</c><c props="font-weight:bold; font-family:Times New Roman; font-size:14.000000pt"></c></p>
<p xid="36" props="text-align:justify"><c></c><c></c></p>
<p xid="37" props="text-align:center"><bookmark type="start" name="_GoBack" xid="38"/></p>
<frame strux-image-dataid="rId7" xid="39" props="frame-col-ypos:6.339583in; xpos:1.716667in; frame-page-ypos:7.520139in; frame-type:image; frame-page-xpos:2.819444in; ypos:0.134722in; frame-height:1.104167in; frame-pref-page:0; frame-col-xpos:1.716667in; frame-pref-column:0; frame-width:3.337500in">
</frame><p xid="40"><bookmark xml:id="" type="end" name="_GoBack" xid="41"/></p>
<p xid="42" props="text-align:center"><c></c><c></c></p>
<p xid="43" props="text-align:center"><c></c><c></c></p>
<p xid="44" props="text-align:center"><c></c><c></c></p>
<p xid="45" props="text-align:center"><c></c><c></c></p>
<p xid="46" props="text-align:center"><c></c><c></c></p>
<p xid="47" props="text-align:center"><c></c><c></c></p>
<p xid="48" props="text-align:center">JANUARY, 2018<c></c></p>
<p xid="51" props="text-align:justify"><c props="font-family:Times New Roman; color:FFFFFF"> (Project Title here) </c><c props="font-family:Times New Roman; color:FFFFFF"></c></p>
<table xid="59" props="table-row-heights:22.300000pt/22.300000pt/22.300000pt/22.300000pt/22.300000pt/90.050000pt/22.300000pt/86.350000pt/22.300000pt/; font-family:Times New Roman; bot-style:1; bot-thickness:0.500000pt; table-column-props:169.800000pt/311.550000pt/; left-thickness:0.500000pt; right-thickness:0.500000pt; left-style:1; top-thickness:0.500000pt; right-style:1; top-style:1">
<cell xid="60" props="font-family:Times New Roman; bot-style:1; bot-thickness:0.500000pt; right-attach:1; left-thickness:0.500000pt; right-thickness:0.500000pt; left-attach:0; top-attach:0; right-style:1; table-column-props:169.800000pt/311.550000pt/; left-style:1; top-thickness:0.500000pt; bot-attach:1; top-style:1">
<p xid="61" props="margin-bottom:6.000000pt; margin-top:6.000000pt"><c props="font-family:Times New Roman; font-weight:bold">Project ID</c><c props="font-family:Times New Roman; font-weight:bold"></c></p>
</cell>
<cell xid="62" props="font-family:Times New Roman; bot-style:1; bot-thickness:0.500000pt; right-attach:2; left-thickness:0.500000pt; right-thickness:0.500000pt; left-attach:1; top-attach:0; right-style:1; table-column-props:169.800000pt/311.550000pt/; left-style:1; top-thickness:0.500000pt; bot-attach:1; top-style:1">
<p style="header" xid="63" props="margin-top:6.000000pt; tabstops:2.884028in/0,5.768056in/0; margin-bottom:6.000000pt"><c props="font-family:Times New Roman">Winter2018/SMEC/B.Tech/Mechanical/ </c><c props="font-family:Times New Roman"></c><c props="font-family:Times New Roman; font-weight:bold">17DES0055</c></p>
</cell>
<cell xid="64" props="table-row-heights:22.300000pt/; font-family:Times New Roman; bot-style:1; bot-thickness:0.500000pt; right-attach:1; left-thickness:0.500000pt; right-thickness:0.500000pt; left-attach:0; top-style:1; right-style:1; table-column-props:169.800000pt/311.550000pt/; left-style:1; top-thickness:0.500000pt; bot-attach:2; top-attach:1">
<p xid="65" props="margin-bottom:6.000000pt; margin-top:6.000000pt"><c props="font-family:Times New Roman; font-weight:bold">Date of Review</c><c props="font-family:Times New Roman; font-weight:bold"></c></p>
</cell>
<cell xid="66" props="table-row-heights:22.300000pt/; font-family:Times New Roman; bot-style:1; bot-thickness:0.500000pt; right-attach:2; left-thickness:0.500000pt; right-thickness:0.500000pt; left-attach:1; top-style:1; right-style:1; table-column-props:169.800000pt/311.550000pt/; left-style:1; top-thickness:0.500000pt; bot-attach:2; top-attach:1">
<p style="header" xid="67" props="margin-top:6.000000pt; tabstops:2.884028in/0,5.768056in/0; margin-bottom:6.000000pt"><c props="font-weight:bold">24.01.2018</c><c props="font-weight:bold"></c></p>
</cell>
<cell xid="68" props="table-row-heights:22.300000pt/22.300000pt/; font-family:Times New Roman; bot-style:1; bot-thickness:0.500000pt; right-attach:1; left-thickness:0.500000pt; right-thickness:0.500000pt; left-attach:0; top-style:1; right-style:1; table-column-props:169.800000pt/311.550000pt/; left-style:1; top-thickness:0.500000pt; bot-attach:3; top-attach:2">
<p xid="69" props="margin-bottom:6.000000pt; margin-top:6.000000pt"><c props="font-family:Times New Roman; font-weight:bold">VIT Guide</c><c props="font-family:Times New Roman; font-weight:bold"></c></p>
</cell>
<cell xid="70" props="table-row-heights:22.300000pt/22.300000pt/; font-family:Times New Roman; bot-style:1; bot-thickness:0.500000pt; right-attach:2; left-thickness:0.500000pt; right-thickness:0.500000pt; left-attach:1; top-style:1; right-style:1; table-column-props:169.800000pt/311.550000pt/; left-style:1; top-thickness:0.500000pt; bot-attach:3; top-attach:2">
<p style="header" xid="71"><c props="font-family:Times New Roman">Prof. </c><c props="font-family:Times New Roman"></c><c props="font-family:Times New Roman; font-weight:bold">Kalaiarassan G.</c></p>
</cell>
<cell xid="72" props="table-row-heights:22.300000pt/22.300000pt/22.300000pt/; font-family:Times New Roman; bot-style:1; bot-thickness:0.500000pt; right-attach:1; left-thickness:0.500000pt; right-thickness:0.500000pt; left-attach:0; top-style:1; right-style:1; table-column-props:169.800000pt/311.550000pt/; left-style:1; top-thickness:0.500000pt; bot-attach:4; top-attach:3">
<p xid="73" props="margin-bottom:6.000000pt; margin-top:6.000000pt"><c props="font-family:Times New Roman; font-weight:bold">External Guide</c><c props="font-family:Times New Roman; font-weight:bold"></c></p>
</cell>
<cell xid="74" props="table-row-heights:22.300000pt/22.300000pt/22.300000pt/; font-family:Times New Roman; bot-style:1; bot-thickness:0.500000pt; right-attach:2; left-thickness:0.500000pt; right-thickness:0.500000pt; left-attach:1; top-style:1; right-style:1; table-column-props:169.800000pt/311.550000pt/; left-style:1; top-thickness:0.500000pt; bot-attach:4; top-attach:3">
<p style="header" xid="75"><c props="font-family:Times New Roman">Name:</c><c props="font-family:Times New Roman"></c></p>
<p style="header" xid="76"><c props="font-family:Times New Roman">Designation:</c><c props="font-family:Times New Roman"></c></p>
<p style="header" xid="77"><c props="font-family:Times New Roman">Mobile:</c><c props="font-family:Times New Roman"></c></p>
<p style="header" xid="78"><c props="font-family:Times New Roman">Email:</c><c props="font-family:Times New Roman"></c></p>
<p style="header" xid="79"><c props="font-family:Times New Roman">Business Unit:</c><c props="font-family:Times New Roman"></c></p>
</cell>
<cell xid="80" props="table-row-heights:22.300000pt/22.300000pt/22.300000pt/22.300000pt/; font-family:Times New Roman; bot-style:1; bot-thickness:0.500000pt; right-attach:1; left-thickness:0.500000pt; right-thickness:0.500000pt; left-attach:0; top-style:1; right-style:1; table-column-props:169.800000pt/311.550000pt/; left-style:1; top-thickness:0.500000pt; bot-attach:5; top-attach:4">
<p xid="81" props="margin-bottom:6.000000pt; margin-top:6.000000pt"><c props="font-family:Times New Roman; font-weight:bold">Project Team Members</c><c props="font-family:Times New Roman; font-weight:bold"></c></p>
</cell>
<cell xid="82" props="table-row-heights:22.300000pt/22.300000pt/22.300000pt/22.300000pt/; font-family:Times New Roman; bot-style:1; bot-thickness:0.500000pt; right-attach:2; left-thickness:0.500000pt; right-thickness:0.500000pt; left-attach:1; top-style:1; right-style:1; table-column-props:169.800000pt/311.550000pt/; left-style:1; top-thickness:0.500000pt; bot-attach:5; top-attach:4">
<p style="header" xid="83"><c props="font-family:Times New Roman; text-decoration:underline">Student 1</c><c props="font-family:Times New Roman; text-decoration:underline"></c></p>
<p level="0" listid="1150" parentid="0" style="header" xid="84" props="text-indent:-18.000000pt; margin-left:36.000000pt"><field level="0" listid="1150" parentid="0" style="header" type="list_label" xid="85" props="text-indent:-18.000000pt; margin-left:36.000000pt"></field><c level="0" listid="1150" parentid="0" style="header" type="list_label" props="text-indent:-18.000000pt; margin-left:36.000000pt"> </c><c level="0" listid="1150" parentid="0" style="header" type="list_label" props="text-indent:-18.000000pt; margin-left:36.000000pt"></c><c props="font-family:Times New Roman">Name: </c><c props="font-family:Times New Roman; font-weight:bold">Nikhil Pandita</c></p>
<p level="0" listid="1150" parentid="0" style="header" xid="86" props="text-indent:-18.000000pt; margin-left:36.000000pt"><field level="0" listid="1150" parentid="0" style="header" type="list_label" xid="87" props="text-indent:-18.000000pt; margin-left:36.000000pt"></field><c level="0" listid="1150" parentid="0" style="header" type="list_label" props="text-indent:-18.000000pt; margin-left:36.000000pt"> </c><c level="0" listid="1150" parentid="0" style="header" type="list_label" props="text-indent:-18.000000pt; margin-left:36.000000pt"></c><c props="font-family:Times New Roman">Reg. No: </c><c props="font-family:Times New Roman; font-weight:bold">14BME0133</c></p>
<p level="0" listid="1150" parentid="0" style="header" xid="88" props="text-indent:-18.000000pt; margin-left:36.000000pt"><field level="0" listid="1150" parentid="0" style="header" type="list_label" xid="89" props="text-indent:-18.000000pt; margin-left:36.000000pt"></field><c level="0" listid="1150" parentid="0" style="header" type="list_label" props="text-indent:-18.000000pt; margin-left:36.000000pt"> </c><c level="0" listid="1150" parentid="0" style="header" type="list_label" props="text-indent:-18.000000pt; margin-left:36.000000pt"></c><c props="font-family:Times New Roman">Email:</c></p>
<p level="0" listid="1150" parentid="0" style="header" xid="90" props="text-indent:-18.000000pt; margin-left:36.000000pt"><field level="0" listid="1150" parentid="0" style="header" type="list_label" xid="91" props="text-indent:-18.000000pt; margin-left:36.000000pt"></field><c level="0" listid="1150" parentid="0" style="header" type="list_label" props="text-indent:-18.000000pt; margin-left:36.000000pt"> </c><c level="0" listid="1150" parentid="0" style="header" type="list_label" props="text-indent:-18.000000pt; margin-left:36.000000pt"></c><c props="font-family:Times New Roman">Mobile: </c></p>
<p style="header" xid="92"><c props="font-family:Times New Roman; text-decoration:underline">Student</c><c props="font-family:Times New Roman; text-decoration:underline"></c><c props="font-family:Times New Roman"> 2</c></p>
<p level="0" listid="1160" parentid="0" style="header" xid="93" props="text-indent:-18.000000pt; margin-left:36.000000pt"><field level="0" listid="1160" parentid="0" style="header" type="list_label" xid="94" props="text-indent:-18.000000pt; margin-left:36.000000pt"></field><c level="0" listid="1160" parentid="0" style="header" type="list_label" props="text-indent:-18.000000pt; margin-left:36.000000pt"> </c><c level="0" listid="1160" parentid="0" style="header" type="list_label" props="text-indent:-18.000000pt; margin-left:36.000000pt"></c><c props="font-family:Times New Roman">Name:</c></p>
<p level="0" listid="1160" parentid="0" style="header" xid="95" props="text-indent:-18.000000pt; margin-left:36.000000pt"><field level="0" listid="1160" parentid="0" style="header" type="list_label" xid="96" props="text-indent:-18.000000pt; margin-left:36.000000pt"></field><c level="0" listid="1160" parentid="0" style="header" type="list_label" props="text-indent:-18.000000pt; margin-left:36.000000pt"> </c><c level="0" listid="1160" parentid="0" style="header" type="list_label" props="text-indent:-18.000000pt; margin-left:36.000000pt"></c><c props="font-family:Times New Roman">Reg. No:</c></p>
<p level="0" listid="1160" parentid="0" style="header" xid="97" props="text-indent:-18.000000pt; margin-left:36.000000pt"><field level="0" listid="1160" parentid="0" style="header" type="list_label" xid="98" props="text-indent:-18.000000pt; margin-left:36.000000pt"></field><c level="0" listid="1160" parentid="0" style="header" type="list_label" props="text-indent:-18.000000pt; margin-left:36.000000pt"> </c><c level="0" listid="1160" parentid="0" style="header" type="list_label" props="text-indent:-18.000000pt; margin-left:36.000000pt"></c><c props="font-family:Times New Roman">Email:</c></p>
<p level="0" listid="1160" parentid="0" style="header" xid="99" props="text-indent:-18.000000pt; margin-left:36.000000pt"><field level="0" listid="1160" parentid="0" style="header" type="list_label" xid="100" props="text-indent:-18.000000pt; margin-left:36.000000pt"></field><c level="0" listid="1160" parentid="0" style="header" type="list_label" props="text-indent:-18.000000pt; margin-left:36.000000pt"> </c><c level="0" listid="1160" parentid="0" style="header" type="list_label" props="text-indent:-18.000000pt; margin-left:36.000000pt"></c><c props="font-family:Times New Roman">Mobile: </c></p>
<p style="header" xid="101"><c props="font-family:Times New Roman; text-decoration:underline">Student</c><c props="font-family:Times New Roman; text-decoration:underline"></c><c props="font-family:Times New Roman"> 3</c></p>
<p level="0" listid="1120" parentid="0" style="header" xid="102" props="text-indent:-18.000000pt; margin-left:36.000000pt"><field level="0" listid="1120" parentid="0" style="header" type="list_label" xid="103" props="text-indent:-18.000000pt; margin-left:36.000000pt"></field><c level="0" listid="1120" parentid="0" style="header" type="list_label" props="text-indent:-18.000000pt; margin-left:36.000000pt"> </c><c level="0" listid="1120" parentid="0" style="header" type="list_label" props="text-indent:-18.000000pt; margin-left:36.000000pt"></c><c props="font-family:Times New Roman">Name:</c></p>
<p level="0" listid="1120" parentid="0" style="header" xid="104" props="text-indent:-18.000000pt; margin-left:36.000000pt"><field level="0" listid="1120" parentid="0" style="header" type="list_label" xid="105" props="text-indent:-18.000000pt; margin-left:36.000000pt"></field><c level="0" listid="1120" parentid="0" style="header" type="list_label" props="text-indent:-18.000000pt; margin-left:36.000000pt"> </c><c level="0" listid="1120" parentid="0" style="header" type="list_label" props="text-indent:-18.000000pt; margin-left:36.000000pt"></c><c props="font-family:Times New Roman">Reg. No:</c></p>
<p level="0" listid="1120" parentid="0" style="header" xid="106" props="text-indent:-18.000000pt; margin-left:36.000000pt"><field level="0" listid="1120" parentid="0" style="header" type="list_label" xid="107" props="text-indent:-18.000000pt; margin-left:36.000000pt"></field><c level="0" listid="1120" parentid="0" style="header" type="list_label" props="text-indent:-18.000000pt; margin-left:36.000000pt"> </c><c level="0" listid="1120" parentid="0" style="header" type="list_label" props="text-indent:-18.000000pt; margin-left:36.000000pt"></c><c props="font-family:Times New Roman">Email:</c></p>
<p level="0" listid="1120" parentid="0" style="header" xid="108" props="text-indent:-18.000000pt; margin-left:36.000000pt"><field level="0" listid="1120" parentid="0" style="header" type="list_label" xid="109" props="text-indent:-18.000000pt; margin-left:36.000000pt"></field><c level="0" listid="1120" parentid="0" style="header" type="list_label" props="text-indent:-18.000000pt; margin-left:36.000000pt"> </c><c level="0" listid="1120" parentid="0" style="header" type="list_label" props="text-indent:-18.000000pt; margin-left:36.000000pt"></c><c props="font-family:Times New Roman">Mobile: </c></p>
</cell>
<cell xid="110" props="table-row-heights:22.300000pt/22.300000pt/22.300000pt/22.300000pt/22.300000pt/; font-family:Times New Roman; bot-style:1; bot-thickness:0.500000pt; right-attach:1; left-thickness:0.500000pt; right-thickness:0.500000pt; left-attach:0; top-style:1; right-style:1; table-column-props:169.800000pt/311.550000pt/; left-style:1; top-thickness:0.500000pt; bot-attach:6; top-attach:5">
<p xid="111" props="margin-bottom:6.000000pt; margin-top:6.000000pt"><c props="font-family:Times New Roman; font-weight:bold">Guide’s Remarks</c><c props="font-family:Times New Roman; font-weight:bold"></c></p>
</cell>
<cell xid="112" props="table-row-heights:22.300000pt/22.300000pt/22.300000pt/22.300000pt/22.300000pt/; font-family:Times New Roman; bot-style:1; bot-thickness:0.500000pt; right-attach:2; left-thickness:0.500000pt; right-thickness:0.500000pt; left-attach:1; top-style:1; right-style:1; table-column-props:169.800000pt/311.550000pt/; left-style:1; top-thickness:0.500000pt; bot-attach:6; top-attach:5">
<p style="header" xid="113"><c></c><c></c></p>
<p style="header" xid="114"><c></c><c></c></p>
<p style="header" xid="115"><c></c><c></c></p>
<p style="header" xid="116"><c></c><c></c></p>
<p style="header" xid="117"><c></c><c></c></p>
<p style="header" xid="118"><c></c><c></c></p>
<p style="header" xid="119"><c></c><c></c></p>
<p style="header" xid="120"><c></c><c></c></p>
</cell>
<cell xid="121" props="table-row-heights:22.300000pt/22.300000pt/22.300000pt/22.300000pt/22.300000pt/90.050000pt/; font-family:Times New Roman; bot-style:1; bot-thickness:0.500000pt; right-attach:1; left-thickness:0.500000pt; right-thickness:0.500000pt; left-attach:0; top-style:1; right-style:1; table-column-props:169.800000pt/311.550000pt/; left-style:1; top-thickness:0.500000pt; bot-attach:7; top-attach:6">
<p xid="122" props="margin-bottom:6.000000pt; margin-top:6.000000pt"><c props="font-family:Times New Roman; font-weight:bold">Name and Signature of the guide</c><c props="font-family:Times New Roman; font-weight:bold"></c></p>
</cell>
<cell xid="123" props="table-row-heights:22.300000pt/22.300000pt/22.300000pt/22.300000pt/22.300000pt/90.050000pt/; font-family:Times New Roman; bot-style:1; bot-thickness:0.500000pt; right-attach:2; left-thickness:0.500000pt; right-thickness:0.500000pt; left-attach:1; top-style:1; right-style:1; table-column-props:169.800000pt/311.550000pt/; left-style:1; top-thickness:0.500000pt; bot-attach:7; top-attach:6">
<p style="header" xid="124"><c></c><c></c></p>
</cell>
<cell xid="125" props="table-row-heights:22.300000pt/22.300000pt/22.300000pt/22.300000pt/22.300000pt/90.050000pt/22.300000pt/; font-family:Times New Roman; bot-style:1; bot-thickness:0.500000pt; right-attach:1; left-thickness:0.500000pt; right-thickness:0.500000pt; left-attach:0; top-style:1; right-style:1; table-column-props:169.800000pt/311.550000pt/; left-style:1; top-thickness:0.500000pt; bot-attach:8; top-attach:7">
<p xid="126" props="margin-bottom:6.000000pt; margin-top:6.000000pt"><c props="font-family:Times New Roman; font-weight:bold">Comments of Reviewer(s)</c><c props="font-family:Times New Roman; font-weight:bold"></c></p>
<p xid="127" props="margin-bottom:6.000000pt; margin-top:6.000000pt"><c></c><c></c></p>
<p xid="128" props="margin-bottom:6.000000pt; margin-top:6.000000pt"><c></c><c></c></p>
<p xid="129" props="margin-bottom:6.000000pt; margin-top:6.000000pt"><c></c><c></c></p>
<p xid="130" props="margin-bottom:6.000000pt; margin-top:6.000000pt"><c></c><c></c></p>
<p xid="131" props="margin-bottom:6.000000pt; margin-top:6.000000pt"><c></c><c></c></p>
</cell>
<cell xid="132" props="table-row-heights:22.300000pt/22.300000pt/22.300000pt/22.300000pt/22.300000pt/90.050000pt/22.300000pt/; font-family:Times New Roman; bot-style:1; bot-thickness:0.500000pt; right-attach:2; left-thickness:0.500000pt; right-thickness:0.500000pt; left-attach:1; top-style:1; right-style:1; table-column-props:169.800000pt/311.550000pt/; left-style:1; top-thickness:0.500000pt; bot-attach:8; top-attach:7">
<p style="header" xid="133"><c></c><c></c></p>
</cell>
<cell xid="134" props="table-row-heights:22.300000pt/22.300000pt/22.300000pt/22.300000pt/22.300000pt/90.050000pt/22.300000pt/86.350000pt/; font-family:Times New Roman; bot-style:1; bot-thickness:0.500000pt; right-attach:1; left-thickness:0.500000pt; right-thickness:0.500000pt; left-attach:0; top-style:1; right-style:1; table-column-props:169.800000pt/311.550000pt/; left-style:1; top-thickness:0.500000pt; bot-attach:9; top-attach:8">
<p xid="135" props="margin-bottom:6.000000pt; margin-top:6.000000pt"><c props="font-family:Times New Roman; font-weight:bold">Name and Signature of the Reviewer</c><c props="font-family:Times New Roman; font-weight:bold"></c></p>
</cell>
<cell xid="136" props="table-row-heights:22.300000pt/22.300000pt/22.300000pt/22.300000pt/22.300000pt/90.050000pt/22.300000pt/86.350000pt/; font-family:Times New Roman; bot-style:1; bot-thickness:0.500000pt; right-attach:2; left-thickness:0.500000pt; right-thickness:0.500000pt; left-attach:1; top-style:1; right-style:1; table-column-props:169.800000pt/311.550000pt/; left-style:1; top-thickness:0.500000pt; bot-attach:9; top-attach:8">
<p style="header" xid="137"><c></c><c></c></p>
</cell>
</table>
<p xid="138" props="text-align:center"><c props="lang:en-US; font-weight:bold; font-family:Times New Roman"><pbr/></c><c props="lang:en-US; font-weight:bold; font-family:Times New Roman"></c></p>
<p xid="647" props="text-align:center"><c props="lang:en-US; font-weight:bold; font-family:Times New Roman"></c><c props="lang:en-US; font-weight:bold; font-family:Times New Roman">Table of Contents</c></p>
<p style="toc 1" xid="139"><c></c><c></c></p>
<table xid="140" props="table-row-heights:0.2500in/0.2500in/0.2500in/0.2500in/0.3125in/0.2500in/0.2500in/0.2500in/0.2500in/0.2500in/0.2500in/0.2500in/0.3125in/0.4375in/0.2500in/0.2500in/0.3125in/0.2500in/0.2500in/0.2500in/0.2500in/0.2500in/0.2500in/0.2500in/0.2500in/0.3125in/0.2500in/0.2500in/0.2500in/0.2500in/; list-tag:1; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:1.2500in/0.6875in/1.0625in/2.5000in/0.9375in/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; left-style:1; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<cell xid="141" props="right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:0; top-style:1; right-style:1; right-attach:1; left-style:1; left-thickness:0.000000pt; bot-attach:1; top-attach:0">
<p xid="142" props="text-align:center"><c props="font-family:Times New Roman; font-weight:bold">Chapter</c><c props="font-family:Times New Roman; font-weight:bold"></c></p>
</cell>
<cell xid="143" props="right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:1; top-style:1; right-style:1; right-attach:4; left-style:1; left-thickness:0.000000pt; bot-attach:1; top-attach:0">
<p xid="144" props="text-align:center"><c props="font-weight:bold">Description</c><c props="font-weight:bold"></c></p>
</cell>
<cell xid="145" props="right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:4; top-style:1; right-style:1; right-attach:5; left-style:1; left-thickness:0.000000pt; bot-attach:1; top-attach:0">
<p xid="146" props="text-align:center"><c props="font-weight:bold">Pg. No.</c><c props="font-weight:bold"></c></p>
</cell>
<cell xid="147" props="table-row-heights:16.800000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:0; top-style:1; right-style:1; right-attach:1; left-style:1; left-thickness:0.000000pt; bot-attach:2; top-attach:1">
<p xid="148" props="text-align:center"><c></c><c></c></p>
</cell>
<cell xid="149" props="table-row-heights:16.800000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:1; top-style:1; right-style:1; right-attach:4; left-style:1; left-thickness:0.000000pt; bot-attach:2; top-attach:1">
<p xid="150" props="text-align:center"><c props="font-family:Times New Roman; font-weight:bold">Abstract</c><c props="font-family:Times New Roman; font-weight:bold"></c></p>
</cell>
<cell xid="151" props="table-row-heights:16.800000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:4; top-style:1; right-style:1; right-attach:5; left-style:1; left-thickness:0.000000pt; bot-attach:2; top-attach:1">
<p xid="152" props="text-align:center"><c props="font-weight:bold">4</c><c props="font-weight:bold"></c></p>
</cell>
<cell xid="153" props="table-row-heights:16.800000pt/15.700000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:0; top-style:1; right-style:1; right-attach:1; left-style:1; left-thickness:0.000000pt; bot-attach:3; top-attach:2">
<p xid="154"><c></c><c></c></p>
</cell>
<cell xid="155" props="table-row-heights:16.800000pt/15.700000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:1; top-style:1; right-style:1; right-attach:2; left-style:1; left-thickness:0.000000pt; bot-attach:3; top-attach:2">
<p xid="156"><c></c><c></c></p>
</cell>
<cell xid="157" props="table-row-heights:16.800000pt/15.700000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:2; top-style:1; right-style:1; right-attach:3; left-style:1; left-thickness:0.000000pt; bot-attach:3; top-attach:2">
<p xid="158"><c></c><c></c></p>
</cell>
<cell xid="159" props="table-row-heights:16.800000pt/15.700000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:3; top-style:1; right-style:1; right-attach:4; left-style:1; left-thickness:0.000000pt; bot-attach:3; top-attach:2">
<p xid="160"><c></c><c></c></p>
</cell>
<cell xid="161" props="table-row-heights:16.800000pt/15.700000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:4; top-style:1; right-style:1; right-attach:5; left-style:1; left-thickness:0.000000pt; bot-attach:3; top-attach:2">
<p xid="162"><c></c><c></c></p>
</cell>
<cell xid="163" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:0; top-style:1; right-style:1; right-attach:1; left-style:1; left-thickness:0.000000pt; bot-attach:4; top-attach:3">
<p xid="164">Chapter - I</p>
</cell>
<cell xid="165" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:1; top-style:1; right-style:1; right-attach:4; left-style:1; left-thickness:0.000000pt; bot-attach:4; top-attach:3">
<p xid="166" props="text-align:center"><c props="font-weight:bold">Introduction and Literature Review</c><c props="font-weight:bold"></c></p>
</cell>
<cell xid="167" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:4; top-style:1; right-style:1; right-attach:5; left-style:1; left-thickness:0.000000pt; bot-attach:4; top-attach:3">
<p xid="168"><c></c><c></c></p>
</cell>
<cell xid="169" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:0; top-style:1; right-style:1; right-attach:1; left-style:1; left-thickness:0.000000pt; bot-attach:5; top-attach:4">
<p xid="170"><c></c><c></c></p>
</cell>
<cell xid="171" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:1; top-style:1; right-style:1; right-attach:2; left-style:1; left-thickness:0.000000pt; bot-attach:5; top-attach:4">
<p xid="172">1</p>
</cell>
<cell xid="173" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:2; top-style:1; right-style:1; right-attach:3; left-style:1; left-thickness:0.000000pt; bot-attach:5; top-attach:4">
<p xid="174"><c props="font-family:Times New Roman; text-decoration:none; color:000000; font-size:12pt; text-position:normal; font-weight:normal; font-style:normal; lang:-none-">1.1</c><c props="font-family:Times New Roman; text-decoration:none; color:000000; font-size:12pt; text-position:normal; font-weight:normal; font-style:normal; lang:-none-"></c></p>
</cell>
<cell xid="175" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:3; top-style:1; right-style:1; right-attach:4; left-style:1; left-thickness:0.000000pt; bot-attach:5; top-attach:4">
<p xid="176"><c></c><c props="font-family:Times New Roman; text-decoration:none; color:000000; font-size:12pt; text-position:normal; font-weight:normal; font-style:normal; lang:-none-">Introduction</c></p>
</cell>
<cell xid="177" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:4; top-style:1; right-style:1; right-attach:5; left-style:1; left-thickness:0.000000pt; bot-attach:5; top-attach:4">
<p xid="178" props="text-align:center">5</p>
</cell>
<cell xid="179" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:0; top-style:1; right-style:1; right-attach:1; left-style:1; left-thickness:0.000000pt; bot-attach:6; top-attach:5">
<p xid="180"><c></c><c></c></p>
</cell>
<cell xid="181" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:1; top-style:1; right-style:1; right-attach:2; left-style:1; left-thickness:0.000000pt; bot-attach:6; top-attach:5">
<p xid="182"><c></c><c></c></p>
</cell>
<cell xid="183" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:2; top-style:1; right-style:1; right-attach:3; left-style:1; left-thickness:0.000000pt; bot-attach:6; top-attach:5">
<p xid="184"><c></c>12</p>
</cell>
<cell xid="185" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:3; top-style:1; right-style:1; right-attach:4; left-style:1; left-thickness:0.000000pt; bot-attach:6; top-attach:5">
<p xid="186">Literature Review</p>
</cell>
<cell xid="187" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:4; top-style:1; right-style:1; right-attach:5; left-style:1; left-thickness:0.000000pt; bot-attach:6; top-attach:5">
<p xid="188" props="text-align:center">6</p>
</cell>
<cell xid="189" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:0; top-style:1; right-style:1; right-attach:1; left-style:1; left-thickness:0.000000pt; bot-attach:7; top-attach:6">
<p xid="190"><c></c><c></c></p>
</cell>
<cell xid="191" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:1; top-style:1; right-style:1; right-attach:2; left-style:1; left-thickness:0.000000pt; bot-attach:7; top-attach:6">
<p xid="192"><c></c><c></c></p>
</cell>
<cell xid="193" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:2; top-style:1; right-style:1; right-attach:3; left-style:1; left-thickness:0.000000pt; bot-attach:7; top-attach:6">
<p xid="194"><c></c>1.3</p>
</cell>
<cell xid="195" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:3; top-style:1; right-style:1; right-attach:4; left-style:1; left-thickness:0.000000pt; bot-attach:7; top-attach:6">
<p xid="196"><c></c>Knowledge Gained from Literature</p>
</cell>
<cell xid="197" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:4; top-style:1; right-style:1; right-attach:5; left-style:1; left-thickness:0.000000pt; bot-attach:7; top-attach:6">
<p xid="198" props="text-align:center"><c></c>7</p>
</cell>
<cell xid="199" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:0; top-style:1; right-style:1; right-attach:1; left-style:1; left-thickness:0.000000pt; bot-attach:8; top-attach:7">
<p xid="200"><c></c><c></c></p>
</cell>
<cell xid="201" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:1; top-style:1; right-style:1; right-attach:2; left-style:1; left-thickness:0.000000pt; bot-attach:8; top-attach:7">
<p xid="202"><c></c><c></c></p>
</cell>
<cell xid="203" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:2; top-style:1; right-style:1; right-attach:3; left-style:1; left-thickness:0.000000pt; bot-attach:8; top-attach:7">
<p xid="204"><c></c>1.4</p>
</cell>
<cell xid="205" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:3; top-style:1; right-style:1; right-attach:4; left-style:1; left-thickness:0.000000pt; bot-attach:8; top-attach:7">
<p xid="206"><c></c>Gaps in the Literature</p>
</cell>
<cell xid="207" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/; right-thickness:0.000000pt; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-thickness:0.000000pt; right-color:BFBFBF; top-color:BFBFBF; bot-color:BFBFBF; left-attach:4; top-style:1; right-style:1; right-attach:5; left-style:1; left-thickness:0.000000pt; bot-attach:8; top-attach:7">
<p xid="208" props="text-align:center"><c></c>8</p>
</cell>
<cell xid="1196" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:1; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:8; left-attach:0; left-style:1; bot-attach:9; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="1197"><c></c><c></c></p>
</cell>
<cell xid="1198" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:2; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:8; left-attach:1; left-style:1; bot-attach:9; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="1199"><c></c><c></c></p>
</cell>
<cell xid="1200" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:3; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:8; left-attach:2; left-style:1; bot-attach:9; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="1201">1.5</p>
</cell>
<cell xid="1202" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:4; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:8; left-attach:3; left-style:1; bot-attach:9; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="1203"><c></c><c props="font-family:Times New Roman; text-decoration:none; color:000000; font-size:12pt; text-position:normal; font-weight:normal; font-style:normal; lang:-none-">Objectives</c></p>
</cell>
<cell xid="1204" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:5; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:8; left-attach:4; left-style:1; bot-attach:9; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="1205" props="text-align:center"><c></c>10</p>
</cell>
<cell xid="249" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:1; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:9; left-attach:0; left-style:1; bot-attach:10; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="250"><c></c><c></c></p>
</cell>
<cell xid="251" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:2; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:9; left-attach:1; left-style:1; bot-attach:10; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="252"><c></c><c></c></p>
</cell>
<cell xid="253" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:3; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:9; left-attach:2; left-style:1; bot-attach:10; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="254"><c></c><c></c></p>
</cell>
<cell xid="255" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:4; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:9; left-attach:3; left-style:1; bot-attach:10; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="256"><c></c><c></c></p>
</cell>
<cell xid="257" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:5; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:9; left-attach:4; left-style:1; bot-attach:10; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="258" props="text-align:center"><c></c><c></c></p>
</cell>
<cell xid="259" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:1; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:10; left-attach:0; left-style:1; bot-attach:11; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="260">Chapter - II</p>
</cell>
<cell xid="261" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:4; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:10; left-attach:1; left-style:1; bot-attach:11; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="262" props="text-align:center"><c props="font-weight:bold">Methodology & Experimental Procedure</c><c props="font-weight:bold"></c></p>
</cell>
<cell xid="263" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:5; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:10; left-attach:4; left-style:1; bot-attach:11; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="264" props="text-align:center"><c></c><c></c></p>
</cell>
<cell xid="265" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:1; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:11; left-attach:0; left-style:1; bot-attach:12; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="266"><c></c><c></c></p>
</cell>
<cell xid="267" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:2; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:11; left-attach:1; left-style:1; bot-attach:12; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="268">2</p>
</cell>
<cell xid="269" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:3; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:11; left-attach:2; left-style:1; bot-attach:12; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="270"><c props="font-family:Times New Roman; text-decoration:none; color:000000; font-size:12pt; text-position:normal; font-weight:normal; font-style:normal; lang:-none-">2.1</c><c props="font-family:Times New Roman; text-decoration:none; color:000000; font-size:12pt; text-position:normal; font-weight:normal; font-style:normal; lang:-none-"></c></p>
</cell>
<cell xid="271" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:4; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:11; left-attach:3; left-style:1; bot-attach:12; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="272"><c></c><c props="font-family:Times New Roman; text-decoration:none; color:000000; font-size:12pt; text-position:normal; font-weight:normal; font-style:normal; lang:-none-">Methodology</c></p>
</cell>
<cell xid="273" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:5; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:11; left-attach:4; left-style:1; bot-attach:12; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="274" props="text-align:center"><c></c>11</p>
</cell>
<cell xid="275" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:1; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:12; left-attach:0; left-style:1; bot-attach:13; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="276"><c></c><c></c></p>
</cell>
<cell xid="277" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:2; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:12; left-attach:1; left-style:1; bot-attach:13; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="278"><c></c><c></c></p>
</cell>
<cell xid="279" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:3; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:12; left-attach:2; left-style:1; bot-attach:13; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="280">2.2</p>
</cell>
<cell xid="281" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:4; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:12; left-attach:3; left-style:1; bot-attach:13; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="282"><c></c>Design Elements Included</p>
</cell>
<cell xid="283" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:5; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:12; left-attach:4; left-style:1; bot-attach:13; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="284" props="text-align:center"><c></c>11</p>
</cell>
<cell xid="285" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:1; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:13; left-attach:0; left-style:1; bot-attach:14; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="286"><c></c><c></c></p>
</cell>
<cell xid="287" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:2; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:13; left-attach:1; left-style:1; bot-attach:14; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="288"><c></c><c></c></p>
</cell>
<cell xid="289" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:3; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:13; left-attach:2; left-style:1; bot-attach:14; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="290"><c></c>2.3</p>
</cell>
<cell xid="291" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:4; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:13; left-attach:3; left-style:1; bot-attach:14; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="292"><c></c>Realistic Constraints to be addressed</p>
</cell>
<cell xid="293" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:5; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:13; left-attach:4; left-style:1; bot-attach:14; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="294" props="text-align:center"><c></c>12</p>
</cell>
<cell xid="295" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:1; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:14; left-attach:0; left-style:1; bot-attach:15; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="296"><c></c><c></c></p>
</cell>
<cell xid="297" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:2; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:14; left-attach:1; left-style:1; bot-attach:15; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="298"><c></c><c></c></p>
</cell>
<cell xid="299" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:3; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:14; left-attach:2; left-style:1; bot-attach:15; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="300"><c></c><c></c></p>
</cell>
<cell xid="301" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:4; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:14; left-attach:3; left-style:1; bot-attach:15; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="302"><c></c><c></c></p>
</cell>
<cell xid="303" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:5; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:14; left-attach:4; left-style:1; bot-attach:15; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="304" props="text-align:center"><c></c><c></c></p>
</cell>
<cell xid="305" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:1; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:15; left-attach:0; left-style:1; bot-attach:16; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="306">Chapter - III</p>
</cell>
<cell xid="307" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:4; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:15; left-attach:1; left-style:1; bot-attach:16; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="308" props="text-align:center"><c props="font-weight:bold">Results and Discussion</c><c props="font-weight:bold"></c></p>
</cell>
<cell xid="309" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:5; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:15; left-attach:4; left-style:1; bot-attach:16; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="310" props="text-align:center"><c></c><c></c></p>
</cell>
<cell xid="311" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:1; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:16; left-attach:0; left-style:1; bot-attach:17; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="312"><c></c><c></c></p>
</cell>
<cell xid="313" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:2; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:16; left-attach:1; left-style:1; bot-attach:17; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="314">3</p>
</cell>
<cell xid="315" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:3; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:16; left-attach:2; left-style:1; bot-attach:17; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="316"><c></c>3.1</p>
</cell>
<cell xid="317" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:4; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:16; left-attach:3; left-style:1; bot-attach:17; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="318">Experimental Procedure</p>
</cell>
<cell xid="319" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:5; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; top-attach:16; left-attach:4; left-style:1; bot-attach:17; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; bot-color:BFBFBF; left-thickness:0.000000pt; right-style:1; top-style:1">
<p xid="320" props="text-align:center"><c></c>13</p>
</cell>
<cell xid="381" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:1; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:0; top-attach:17; bot-attach:18; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="382"><c></c><c></c></p>
</cell>
<cell xid="383" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:2; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:1; top-attach:17; bot-attach:18; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="384"><c></c><c></c></p>
</cell>
<cell xid="385" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:3; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:2; top-attach:17; bot-attach:18; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="386"><c></c>3.2</p>
</cell>
<cell xid="387" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:4; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:3; top-attach:17; bot-attach:18; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="388"><c></c>Work Done so far</p>
</cell>
<cell xid="389" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:5; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:4; top-attach:17; bot-attach:18; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="390" props="text-align:center"><c></c>16</p>
</cell>
<cell xid="391" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:1; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:0; top-attach:18; bot-attach:19; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="392"><c></c><c></c></p>
</cell>
<cell xid="393" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:2; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:1; top-attach:18; bot-attach:19; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="394"><c></c><c></c></p>
</cell>
<cell xid="395" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:3; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:2; top-attach:18; bot-attach:19; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="396"><c></c>3.3</p>
</cell>
<cell xid="397" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:4; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:3; top-attach:18; bot-attach:19; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="398">Work to be done</p>
</cell>
<cell xid="399" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:5; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:4; top-attach:18; bot-attach:19; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="400" props="text-align:center"><c></c>16</p>
</cell>
<cell xid="401" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:1; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:0; top-attach:19; bot-attach:20; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="402"><c></c><c></c></p>
</cell>
<cell xid="403" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:2; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:1; top-attach:19; bot-attach:20; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="404"><c></c><c></c></p>
</cell>
<cell xid="405" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:3; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:2; top-attach:19; bot-attach:20; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="406">3.3</p>
</cell>
<cell xid="407" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:4; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:3; top-attach:19; bot-attach:20; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="408">Gantt Chart</p>
</cell>
<cell xid="409" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:5; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:4; top-attach:19; bot-attach:20; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="410" props="text-align:center"><c></c>17</p>
</cell>
<cell xid="411" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:1; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:0; top-attach:20; bot-attach:21; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="412"><c></c><c></c></p>
</cell>
<cell xid="413" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:2; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:1; top-attach:20; bot-attach:21; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="414"><c></c><c></c></p>
</cell>
<cell xid="415" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:3; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:2; top-attach:20; bot-attach:21; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="416"><c></c>3.4</p>
</cell>
<cell xid="417" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:4; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:3; top-attach:20; bot-attach:21; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="418">Day-to-Day Activity</p>
</cell>
<cell xid="419" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:5; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:4; top-attach:20; bot-attach:21; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="420" props="text-align:center">18</p>
</cell>
<cell xid="421" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:1; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:0; top-attach:21; bot-attach:22; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="422"><c></c><c></c></p>
</cell>
<cell xid="423" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:4; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:1; top-attach:21; bot-attach:22; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="424"><c></c><c></c></p>
</cell>
<cell xid="425" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:5; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:4; top-attach:21; bot-attach:22; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="426" props="text-align:center"><c></c><c></c></p>
</cell>
<cell xid="427" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/15.700000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:1; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:0; top-attach:22; bot-attach:23; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="428"><c></c><c></c></p>
</cell>
<cell xid="429" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/15.700000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:4; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:1; top-attach:22; bot-attach:23; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="430">References</p>
</cell>
<cell xid="431" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/15.700000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:5; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:4; top-attach:22; bot-attach:23; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="432" props="text-align:center">19</p>
</cell>
<cell xid="433" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/15.700000pt/15.700000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:1; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:0; top-attach:23; bot-attach:24; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="434"><c></c><c></c></p>
</cell>
<cell xid="435" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/15.700000pt/15.700000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:4; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:1; top-attach:23; bot-attach:24; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="436">Sources and Code Snippiets</p>
</cell>
<cell xid="437" props="table-row-heights:16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/16.800000pt/15.700000pt/15.700000pt/15.700000pt/15.700000pt/15.700000pt/; right-color:BFBFBF; left-color:BFBFBF; bot-style:1; bot-thickness:0.000000pt; right-attach:5; top-thickness:0.000000pt; right-thickness:0.000000pt; top-color:BFBFBF; bot-color:BFBFBF; left-attach:4; top-attach:23; bot-attach:24; table-column-props:88.500000pt/51.100000pt/60.150000pt/182.150000pt/115.400000pt/; top-style:1; left-thickness:0.000000pt; right-style:1; left-style:1">
<p xid="438" props="text-align:center">20</p>
</cell>
</table>
<p xid="439"><c></c><pbr/></p>
<p xid="3107"><c></c><c></c></p>
<p style="toc 2" xid="440" props="tabstops:1.000000in/L0,6.685417in/R1"><c></c><c></c></p>
<p xid="441"><c></c><c></c></p>
<p xid="648"><c></c><c></c></p>
<p style="heading 1" xid="444" props="margin-right:0.000000pt; bgcolor:C0C0C0"><c props="font-weight:bold; font-family:Times New Roman; font-size:12.000000pt">Abstract</c><c props="font-weight:bold; font-family:Times New Roman; font-size:12.000000pt"></c><c props="font-size:12.000000pt; font-family:Times New Roman; color:FF0000; font-style:italic">.</c></p>
<p style="Block Text" xid="446" props="margin-right:0.000000pt"><c></c><c></c></p>
<p style="Block Text" xid="447" props="margin-right:0.000000pt"><c></c><c></c></p>
<p style="Block Text" xid="448" props="margin-right:0.000000pt">A novel approach to tackle various inefficiencies of the modern day Vehicle-to-Vehicle communication technology, specifically the modern-day implementation using the Automotive-Grade Linux. The paper begins with sampling the actual hardware and software deployed by the leading manufacturers and industry, highlighting use-cases like the Toyota Prius, Tesla Model S, Reva, etc, employing an ECU approach, and concludes with delivering optimizational remedies. </p>
<p style="Block Text" xid="670" props="margin-right:0.000000pt"><c></c><c></c></p>
<p style="Block Text" xid="671" props="margin-right:0.000000pt"><c></c><c></c></p>
<p style="Block Text" xid="677" props="margin-right:0.000000pt"><c></c><c></c></p>
<p style="Block Text" xid="678" props="margin-right:0.000000pt"><c></c><c></c></p>
<p style="Block Text" xid="449" props="margin-right:0.000000pt"><c props="font-weight:bold; font-family:Times New Roman; font-size:12.000000pt">Keywords: </c><c props="font-weight:bold; font-family:Times New Roman; font-size:12.000000pt"></c></p>
<p style="Block Text" xid="672" props="margin-right:0.000000pt"><c props="font-weight:normal; font-family:Times New Roman; font-size:12.000000pt"></c><c props="font-weight:normal; font-family:Times New Roman; font-size:12.000000pt">Automotive Communication Networks; </c></p>
<p style="Block Text" xid="673" props="margin-right:0.000000pt"><c props="font-weight:normal; font-family:Times New Roman; font-size:12.000000pt"></c><c props="font-weight:normal; font-family:Times New Roman; font-size:12.000000pt">Decentralized Communications; </c></p>
<p style="Block Text" xid="674" props="margin-right:0.000000pt"><c props="font-weight:normal; font-family:Times New Roman; font-size:12.000000pt"></c><c props="font-weight:normal; font-family:Times New Roman; font-size:12.000000pt">In-Vehicle Networking; </c></p>
<p style="Block Text" xid="675" props="margin-right:0.000000pt"><c props="font-weight:normal; font-family:Times New Roman; font-size:12.000000pt"></c><c props="font-weight:normal; font-family:Times New Roman; font-size:12.000000pt">Hybrid Platooning;</c></p>
<p style="Block Text" xid="676" props="margin-right:0.000000pt"><c props="font-weight:normal; font-family:Times New Roman; font-size:12.000000pt"></c><c props="font-weight:normal; font-family:Times New Roman; font-size:12.000000pt">S.M.A.R.T. Automobile Clustering</c></p>
<p style="Block Text" xid="451" props="margin-right:0.000000pt"><c></c><c></c></p>
<p style="Block Text" xid="654" props="margin-right:0.000000pt"><c></c><c></c></p>
<p style="Block Text" xid="665" props="margin-right:0.000000pt"><c props="display:none; font-size:12.000000pt; font-family:Times New Roman; color:FF0000; font-style:italic">The purpose of the Evaluation Plan is to provide the Accountable Officer (ADG or DDG) with a detailed project plan identifying all resources, milestones and deliverables. It should build on the broad information from the Evaluation Proposal and detail how the evaluation will be managed to deliver the report on time and on budget.<pbr/></c><c props="display:none; font-size:12.000000pt; font-family:Times New Roman; color:FF0000; font-style:italic"></c></p>
<p style="Block Text" xid="669" props="margin-right:0.000000pt"><c props="display:none; font-size:12.000000pt; font-family:Times New Roman; color:FF0000; font-style:italic"></c><c></c></p>
<p style="Block Text" xid="666" props="margin-right:0.000000pt"><c props="display:none; font-size:12.000000pt; font-family:Times New Roman; color:FF0000; font-style:italic"> (Select which is applicable. Include a description of the project/program/initiative and its objectives)</c><c props="display:none; font-size:12.000000pt; font-family:Times New Roman; color:FF0000; font-style:italic"></c></p>
<p xid="667" props="text-align:center"><c props="lang:en-US; font-weight:bold; font-family:Times New Roman">CHAPTER –I</c><c props="lang:en-US; font-weight:bold; font-family:Times New Roman"></c></p>
<p xid="470" props="text-align:center"><c></c><c></c></p>
<p xid="471" props="text-align:center"><c props="lang:en-US; font-weight:bold; font-family:Times New Roman">INTRODUCTION & LITERATURE REVIEW</c><c props="lang:en-US; font-weight:bold; font-family:Times New Roman"></c></p>
<p xid="682" props="text-align:center"><c props="lang:en-US; font-weight:bold; font-family:Times New Roman"></c><c></c></p>
<p xid="683" props="text-align:center"><c props="lang:en-US; font-weight:bold; font-family:Times New Roman"></c><c></c></p>
<p xid="684" props="text-align:center"><c props="lang:en-US; font-weight:bold; font-family:Times New Roman"></c><c></c></p>
<p style="heading 2" xid="472" props="text-indent:0in; tabstops:0.398611in/0; margin-left:0pt"><c props="font-weight:bold; font-family:Nimbus Sans L; font-size:14pt"> Introduction</c><c props="font-weight:bold; font-family:Nimbus Sans L; font-size:14pt"></c><c props="font-weight:bold; font-family:Times New Roman; font-size:12.000000pt"> </c></p>
<p style="Block Text" xid="475" props="margin-right:0.000000pt"><c props="display:none; font-size:12.000000pt; font-family:Times New Roman; color:FF0000; font-style:italic">(Why is the evaluation being done? i.e., what should the Accountable Officer be able to decide as a result of the evaluation?) </c><c props="display:none; font-size:12.000000pt; font-family:Times New Roman; color:FF0000; font-style:italic"></c></p>
<p style="Normal" xid="679" props="margin-right:0.000000pt">Nowadays , the culture of hybrid, all-electronic S.M.A.R.T. and connected autonomous vehicles is on an ever-peaking demand-curve. This also means an extension of the vehicle-security exploitaions increment we hear about through daily media, about theft, hijacking or simply vandallism. Such an overwhelming need for an automobiles’ security and longevity can only be met by the far-reaching, impactful and tailored technology, suited for the respective scenario. Realizing such endeavours could be only possible owing to the O.S.S. collective, and thence garnered resources and source codes. </p>
<p style="Normal" xid="3125" props="margin-right:0.000000pt"><c></c><c></c></p>
<p style="Normal" xid="3126" props="margin-right:0.000000pt">On account of solving this research conquest, such an approach has been applied, such that in order to be able to cater the needs of almost everyone with a direct contact with a vehicle, or any automobile, public, personal or even private can be realized at the minimal costs of upgradation. </p>
<p style="Normal" xid="3123" props="margin-right:0.000000pt"><c></c><c></c></p>
<p style="Normal" xid="3124" props="margin-right:0.000000pt"><c></c>We, through the medium of this project, would aspire to address such vehicle optimization adversing security related tradeoffs, and conclusively suggest remedies.</p>
<p style="Normal" xid="680" props="margin-right:0.000000pt"><c></c><c></c></p>
<p style="Normal" xid="787" props="margin-right:0.000000pt"><c></c><c></c></p>
<p style="Normal" xid="788" props="margin-right:0.000000pt"><c></c><c></c></p>
<p style="Normal" xid="799" props="margin-right:0.000000pt"><c></c><c></c></p>
<p style="Normal" xid="800" props="margin-right:0.000000pt"><c></c><c></c></p>
<p style="Normal" xid="681" props="margin-right:0.000000pt"><c></c><c></c></p>
<p style="Normal" xid="749" props="margin-right:0.000000pt"><pbr/></p>
<p style="Normal" xid="1174" props="margin-right:0.000000pt"><c></c></p>
<p style="Heading 2" xid="685" props="text-align:justify; tabstops:0.500000in/L0; margin-left:7.100000pt"> Literature Review<c></c></p>
<p style="Heading 2" xid="1176" props="text-align:justify; tabstops:0.500000in/L0; margin-left:7.100000pt"><c props="font-weight:normal; font-size:12pt">A wide variety of scholarly articles have been referrenced to survey the current as well as the previously outdated inter and intra vehicular and network communication and signalling technology. In order to maintain standard universality, all implementations are based using linux kernel 4.1. </c><c props="font-weight:normal; font-size:12pt"></c><a xlink:href="https://mee499.github.io/MEE499R01V007/req002.html#literature-review" xid="686"></a></p>
<p style="Heading 3" xid="688" props="text-align:justify; tabstops:0.500000in/L0; margin-left:7.100000pt"> List of Sampled Technology Protocols<a xlink:href="https://mee499.github.io/MEE499R01V007/req002.html#list-of-sampled-technology-protocols" xid="689"></a></p>
<p level="1" listid="1" parentid="0" style="Normal" xid="691" props="list-style:Bullet List; start-value:0; margin-left:0.50in; field-font:NULL; text-indent:-0.3in; text-align:justify; tabstops:0.500000in/L0"><field type="list_label" xid="692"></field><c type="list_label"> 1: Contoller Area Network (C.A.N.) </c><c type="list_label"></c></p>
<p level="1" listid="1" parentid="0" style="Normal" xid="693" props="list-style:Bullet List; start-value:0; margin-left:0.50in; field-font:NULL; text-indent:-0.3in; text-align:justify; tabstops:0.500000in/L0"><c type="list_label"></c><field type="list_label" xid="694"></field> 2: MAC layer Addressing </p>
<p level="1" listid="1" parentid="0" style="Normal" xid="695" props="list-style:Bullet List; start-value:0; margin-left:0.50in; field-font:NULL; text-indent:-0.3in; text-align:justify; tabstops:0.500000in/L0"><c></c><field type="list_label" xid="696"></field> 3: IEEE 802.11 (b.g.n/a/c) </p>
<p style="Normal" xid="1179" props="text-align:justify; text-indent:0in; tabstops:0.500000in/L0; margin-left:7.100000pt"><c></c><c></c></p>
<p style="Heading 3" xid="769" props="text-align:justify; text-indent:0in; tabstops:0.500000in/L0; margin-left:7.100000pt"><c type="list_label" props="list-tag:1154"> </c><c type="list_label" props="list-tag:1154"></c><c type="list_label">List of Sampled Technology Hardware</c><a xlink:href="https://mee499.github.io/MEE499R01V007/req002.html#list-of-sampled-technology-hardware" xid="698"></a></p>
<p level="1" listid="2" parentid="0" style="Normal" xid="700" props="list-style:Bullet List; start-value:0; margin-left:0.50in; field-font:NULL; text-indent:-0.3in; text-align:justify; tabstops:0.500000in/L0"><field type="list_label" xid="701"></field> 1: Adafruit’s Arduino UNO <c></c></p>
<p level="1" listid="2" parentid="0" style="Normal" xid="702" props="list-style:Bullet List; start-value:0; margin-left:0.50in; field-font:NULL; text-indent:-0.3in; text-align:justify; tabstops:0.500000in/L0"><c></c><field type="list_label" xid="703"></field> 2: Raspberry Pi’s ‘Model B+’ </p>
<p level="1" listid="2" parentid="0" style="Normal" xid="704" props="list-style:Bullet List; start-value:0; margin-left:0.50in; field-font:NULL; text-indent:-0.3in; text-align:justify; tabstops:0.500000in/L0"><c></c><field type="list_label" xid="705"></field> 3: Reannaisance’s PorterBoard 2 </p>
<p level="1" listid="2" parentid="0" style="Normal" xid="706" props="list-style:Bullet List; start-value:0; margin-left:0.50in; field-font:NULL; text-indent:-0.3in; text-align:justify; tabstops:0.500000in/L0"><c></c><field type="list_label" xid="707"></field> 4: Orange Pi’s IoT+ Embedded </p>
<p level="1" listid="2" parentid="0" style="Normal" xid="708" props="list-style:Bullet List; start-value:0; margin-left:0.50in; field-font:NULL; text-indent:-0.3in; text-align:justify; tabstops:0.500000in/L0"><c></c><field type="list_label" xid="709"></field> 5: Stock Daragonboard410c (QEMU Emulated-VM) </p>
<p style="Normal" xid="1181" props="text-align:justify; text-indent:0in; tabstops:0.500000in/L0; margin-left:7.100000pt"><c></c><c></c></p>
<p style="Heading 3" xid="710" props="text-align:justify; text-indent:0in; tabstops:0.500000in/L0; margin-left:7.100000pt"><c type="list_label" props="list-tag:1001"> </c><c type="list_label" props="list-tag:1001"></c><c type="list_label">List of Sampled Software Releases</c><a xlink:href="https://mee499.github.io/MEE499R01V007/req002.html#list-of-sampled-software-releases" xid="711"></a></p>
<p level="1" listid="3" parentid="0" style="Normal" xid="713" props="list-style:Bullet List; start-value:0; margin-left:0.50in; field-font:NULL; text-indent:-0.3in; text-align:justify; tabstops:0.500000in/L0"><field type="list_label" xid="714"></field> 1: Automotive Grade Linux (A.G.L., Linux Kernel 3.9) <c></c></p>
<p level="1" listid="3" parentid="0" style="Normal" xid="715" props="list-style:Bullet List; start-value:0; margin-left:0.50in; field-font:NULL; text-indent:-0.3in; text-align:justify; tabstops:0.500000in/L0"><c></c><field type="list_label" xid="716"></field> 2: Tyzen Operating System (UNIX Kernel 4.11) </p>
<p level="1" listid="3" parentid="0" style="Normal" xid="717" props="list-style:Bullet List; start-value:0; margin-left:0.50in; field-font:NULL; text-indent:-0.3in; text-align:justify; tabstops:0.500000in/L0"><c></c><field type="list_label" xid="718"></field> 3: Qt ( For the Graphical Release, Applications) </p>
<p level="1" listid="3" parentid="0" style="Normal" xid="719" props="list-style:Bullet List; start-value:0; margin-left:0.50in; field-font:NULL; text-indent:-0.3in; text-align:justify; tabstops:0.500000in/L0"><c></c><field type="list_label" xid="720"></field> 4: Ubuntu IoT Core (+2.3.26) </p>
<p style="Normal" xid="1183" props="text-align:justify; text-indent:0in; tabstops:0.500000in/L0; margin-left:7.100000pt"><c></c><c></c></p>
<p style="Heading 3" xid="721" props="text-align:justify; text-indent:0in; tabstops:0.500000in/L0; margin-left:7.100000pt"><c type="list_label" props="list-tag:1002"> </c><c type="list_label" props="list-tag:1002"></c><c type="list_label">List of Sampled Libraries and Modules:</c><a xlink:href="https://mee499.github.io/MEE499R01V007/req002.html#list-of-sampled-libraries-and-modules" xid="722"></a></p>
<p level="1" listid="4" parentid="0" style="Normal" xid="3142" props="list-style:Bullet List; start-value:0; margin-left:0.50in; field-font:NULL; text-indent:-0.3in; text-align:justify; tabstops:0.500000in/L0"><field type="list_label" xid="3139"></field> 1: AGL <c></c></p>
<p level="2" listid="1012" parentid="4" style="Normal" xid="750" props="list-delim:%L; list-decimal:.; list-style:Bullet List; start-value:0; margin-left:1.0000in; field-font:NULL; text-indent:-0.3000in; text-align:justify; tabstops:0.500000in/L0"><c props="list-tag:1011"></c><field type="list_label" xid="751" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; color:000000; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; color:000000; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"> </c>1.1: agl-demo </p>
<p level="2" listid="1012" parentid="4" style="Normal" xid="1166" props="list-delim:%L; list-decimal:.; list-style:Bullet List; start-value:0; margin-left:1.0000in; field-font:NULL; text-indent:-0.3000in; text-align:justify; tabstops:0.500000in/L0"><c props="list-tag:1481"></c><field type="list_label" xid="1167" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"> </c>1.2: agl-appfw-smack </p>
<p level="2" listid="1012" parentid="4" style="Normal" xid="1168" props="list-delim:%L; list-decimal:.; list-style:Bullet List; start-value:0; margin-left:1.0000in; field-font:NULL; text-indent:-0.3000in; text-align:justify; tabstops:0.500000in/L0"><c props="list-tag:1482"></c><field type="list_label" xid="1169" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"> </c>1.3: agl-devel </p>
<p level="2" listid="1012" parentid="4" style="Normal" xid="1170" props="list-delim:%L; list-decimal:.; list-style:Bullet List; start-value:0; margin-left:1.0000in; field-font:NULL; text-indent:-0.3000in; text-align:justify; tabstops:0.500000in/L0"><c props="list-tag:1483"></c><field type="list_label" xid="1171" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"> </c>1.4: agl-netboot</p>
<p level="1" listid="4" parentid="0" style="Normal" xid="726" props="list-style:Bullet List; start-value:0; margin-left:0.50in; field-font:NULL; text-indent:-0.3in; text-align:justify; tabstops:0.500000in/L0"><c></c><field type="list_label" xid="727"></field> 2: UNIX </p>
<p level="2" listid="1014" parentid="4" style="Normal" xid="752" props="list-delim:%L; list-decimal:.; list-style:Bullet List; start-value:0; margin-left:1.0000in; field-font:NULL; text-indent:-0.3000in; text-align:justify; tabstops:0.500000in/L0"><c props="list-tag:1013"></c><field type="list_label" xid="753" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; color:000000; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; color:000000; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"> </c>2.1: gawk </p>
<p level="2" listid="1014" parentid="4" style="Normal" xid="1148" props="list-delim:%L; list-decimal:.; list-style:Bullet List; start-value:0; margin-left:1.0000in; field-font:NULL; text-indent:-0.3000in; text-align:justify; tabstops:0.500000in/L0"><c props="list-tag:1472"></c><field type="list_label" xid="1149" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"> </c>2.2: wget </p>
<p level="2" listid="1014" parentid="4" style="Normal" xid="1150" props="list-delim:%L; list-decimal:.; list-style:Bullet List; start-value:0; margin-left:1.0000in; field-font:NULL; text-indent:-0.3000in; text-align:justify; tabstops:0.500000in/L0"><c props="list-tag:1473"></c><field type="list_label" xid="1151" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"> </c>2.3: git-core </p>
<p level="2" listid="1014" parentid="4" style="Normal" xid="1152" props="list-delim:%L; list-decimal:.; list-style:Bullet List; start-value:0; margin-left:1.0000in; field-font:NULL; text-indent:-0.3000in; text-align:justify; tabstops:0.500000in/L0"><c props="list-tag:1474"></c><field type="list_label" xid="1153" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"> </c>2.4: diffstat </p>
<p level="2" listid="1014" parentid="4" style="Normal" xid="1154" props="list-delim:%L; list-decimal:.; list-style:Bullet List; start-value:0; margin-left:1.0000in; field-font:NULL; text-indent:-0.3000in; text-align:justify; tabstops:0.500000in/L0"><c props="list-tag:1475"></c><field type="list_label" xid="1155" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"> </c>2.5: texinfo </p>
<p level="2" listid="1014" parentid="4" style="Normal" xid="1156" props="list-delim:%L; list-decimal:.; list-style:Bullet List; start-value:0; margin-left:1.0000in; field-font:NULL; text-indent:-0.3000in; text-align:justify; tabstops:0.500000in/L0"><c props="list-tag:1476"></c><field type="list_label" xid="1157" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"> </c>2.6: chrpath </p>
<p level="2" listid="1014" parentid="4" style="Normal" xid="1158" props="list-delim:%L; list-decimal:.; list-style:Bullet List; start-value:0; margin-left:1.0000in; field-font:NULL; text-indent:-0.3000in; text-align:justify; tabstops:0.500000in/L0"><c props="list-tag:1477"></c><field type="list_label" xid="1159" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"> </c>2.7: cpip </p>
<p level="2" listid="1014" parentid="4" style="Normal" xid="1160" props="list-delim:%L; list-decimal:.; list-style:Bullet List; start-value:0; margin-left:1.0000in; field-font:NULL; text-indent:-0.3000in; text-align:justify; tabstops:0.500000in/L0"><c props="list-tag:1478"></c><field type="list_label" xid="1161" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"> </c>2.8: socat</p>
<p level="1" listid="4" parentid="0" style="Normal" xid="728" props="list-style:Bullet List; start-value:0; margin-left:0.50in; field-font:NULL; text-indent:-0.3in; text-align:justify; tabstops:0.500000in/L0"><c></c><field type="list_label" xid="729"></field> 3: libdll </p>
<p level="2" listid="1016" parentid="4" style="Normal" xid="754" props="list-delim:%L; list-decimal:.; list-style:Bullet List; start-value:0; margin-left:1.0000in; field-font:NULL; text-indent:-0.3000in; text-align:justify; tabstops:0.500000in/L0"><c props="list-tag:1015"></c><field type="list_label" xid="755" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; color:000000; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; color:000000; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"> </c>3.1: libsdl.2-dev </p>
<p level="2" listid="1016" parentid="4" style="Normal" xid="1162" props="list-delim:%L; list-decimal:.; list-style:Bullet List; start-value:0; margin-left:1.0000in; field-font:NULL; text-indent:-0.3000in; text-align:justify; tabstops:0.500000in/L0"><c props="list-tag:1479"></c><field type="list_label" xid="1163" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"> </c>3.2: gcc-multilib </p>
<p level="2" listid="1016" parentid="4" style="Normal" xid="1164" props="list-delim:%L; list-decimal:.; list-style:Bullet List; start-value:0; margin-left:1.0000in; field-font:NULL; text-indent:-0.3000in; text-align:justify; tabstops:0.500000in/L0"><c props="list-tag:1480"></c><field type="list_label" xid="1165" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"> </c>3.3: libhvac</p>
<p level="2" listid="1016" parentid="4" style="Normal" xid="3140" props="list-delim:%L; list-decimal:.; list-style:Bullet List; start-value:0; margin-left:1.0000in; field-font:NULL; text-indent:-0.3000in; text-align:justify; tabstops:0.500000in/L0"><c props="list-tag:1000"></c><field type="list_label" xid="3141" props="width:0in; font-family:Times New Roman; display:inline; font-style:normal; font-weight:normal; lang:ar-SA; font-variant:normal; text-transform:none; color:000000; list-style:Bullet List; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-style:normal; font-weight:normal; lang:ar-SA; font-variant:normal; text-transform:none; color:000000; list-style:Bullet List; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"> 3.4 libssh-dev</c></p>
<p style="Normal" xid="789" props="text-align:justify; text-indent:0in; tabstops:0.500000in/L0; margin-left:7.100000pt"><c></c><c></c></p>
<p style="Normal" xid="791" props="text-align:justify; text-indent:0in; tabstops:0.500000in/L0; margin-left:7.100000pt"><c></c><c></c></p>
<p style="Normal" xid="1195" props="text-align:justify; text-indent:0in; tabstops:0.500000in/L0; margin-left:7.100000pt"><c></c><c></c></p>
<p style="Normal" xid="796" props="text-align:justify; text-indent:0in; tabstops:0.500000in/L0; margin-left:7.100000pt"><c></c><c></c></p>
<p style="Normal" xid="801" props="text-align:justify; text-indent:0in; tabstops:0.500000in/L0; margin-left:7.100000pt"><c></c><c></c></p>
<p style="Normal" xid="802" props="text-align:justify; text-indent:0in; tabstops:0.500000in/L0; margin-left:7.100000pt"><c></c><c props="font-family:Nimbus Sans L; text-decoration:none; color:000000; font-size:14pt; text-position:normal; font-weight:bold; font-style:normal; lang:-none-"> Knowledge gained from the literature:</c></p>
<p style="Heading 3" xid="756" props="text-align:justify; text-indent:0in; tabstops:0.500000in/L0; margin-left:7.100000pt"><c type="list_label" props="list-tag:1153"></c><c type="list_label">List of Sampled Authoring Softwares:</c><a xlink:href="https://mee499.github.io/MEE499R01V007/req002.html#list-of-sampled-authoring-softwares" xid="731"></a></p>
<p level="1" listid="5" parentid="0" style="Normal" xid="733" props="list-style:Bullet List; start-value:0; margin-left:0.50in; field-font:NULL; text-indent:-0.3in; text-align:justify; tabstops:0.500000in/L0"><field type="list_label" xid="734"></field> 1: Reading/Writing a PCB (.gerber format)<c></c></p>
<p level="1" listid="5" parentid="0" style="Normal" xid="735" props="list-style:Bullet List; start-value:0; margin-left:0.50in; field-font:NULL; text-indent:-0.3in; text-align:justify; tabstops:0.500000in/L0"><c></c><field type="list_label" xid="736"></field> 2: C, PyPi (Writing Functional Code Snippets)</p>
<p level="1" listid="5" parentid="0" style="Normal" xid="737" props="list-style:Bullet List; start-value:0; margin-left:0.50in; field-font:NULL; text-indent:-0.3in; text-align:justify; tabstops:0.500000in/L0"><c></c><field type="list_label" xid="738"></field> 3: make, build (C-lang)</p>
<p level="1" listid="5" parentid="0" style="Normal" xid="739" props="list-style:Bullet List; start-value:0; margin-left:0.50in; field-font:NULL; text-indent:-0.3in; text-align:justify; tabstops:0.500000in/L0"><c></c><field type="list_label" xid="740"></field> 4: bash (UNIX Scripting)</p>
<p style="Normal" xid="741" props="text-align:justify; text-indent:0in; tabstops:0.500000in/L0; margin-left:7.100000pt"><c type="list_label" props="list-tag:1009"></c><c></c></p>
<p level="1" listid="161" parentid="0" style="heading 2" xid="480" props="text-indent:-21.600000pt; tabstops:0.398611in/0; margin-left:28.700000pt"><field level="1" listid="161" parentid="160" style="heading 2" type="list_label" xid="481" props="text-indent:-21.600000pt; tabstops:0.398611in/0; margin-left:28.700000pt"></field><c level="1" listid="161" parentid="160" style="heading 2" type="list_label" props="text-indent:-21.600000pt; tabstops:0.398611in/0; margin-left:28.700000pt"> </c><c level="1" listid="161" parentid="160" style="heading 2" type="list_label" props="text-indent:-21.600000pt; tabstops:0.398611in/0; margin-left:28.700000pt"></c></p>
<p style="Block Text" xid="482" props="margin-right:0.000000pt"><c props="display:none; font-size:12.000000pt; font-family:Times New Roman; color:FF0000; font-style:italic">(What aspects of the project/program/initiative are to be evaluated?)</c><c props="display:none; font-size:12.000000pt; font-family:Times New Roman; color:FF0000; font-style:italic"></c></p>
<p style="Block Text" xid="483"><c></c><pbr/></p>
<p level="1" listid="161" parentid="0" style="Heading 2" xid="759" props="text-indent:-21.600000pt; tabstops:0.398611in/0; margin-left:28.700000pt"><c props="list-tag:1155"></c><field type="list_label" xid="765" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:None; color:000000; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; color:000000; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:None; homogeneous:1; height:0in; font-size:12pt; font-stretch:normal"> </c>Gaps in the Literature</p>
<p level="1" listid="161" parentid="0" style="Heading 2" xid="904" props="text-indent:-21.600000pt; tabstops:0.398611in/0; margin-left:28.700000pt"><c props="list-tag:1210"></c><field type="list_label" xid="905" props="width:0in; font-family:Nimbus Sans L; display:inline; font-variant:normal; font-weight:bold; lang:ar-SA; font-style:normal; text-transform:none; list-style:None; color:000000; bgcolor:transparent; font-size:14pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></field><c props="width:0in; font-family:Nimbus Sans L; display:inline; font-variant:normal; font-weight:bold; lang:ar-SA; font-style:normal; text-transform:none; list-style:None; color:000000; bgcolor:transparent; font-size:14pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"> </c></p>
<p level="1" listid="161" parentid="0" style="Heading 2" xid="771" props="text-indent:-21.600000pt; tabstops:0.398611in/0; margin-left:28.700000pt"><c props="list-tag:1159"></c><field type="list_label" xid="772" props="width:0in; font-family:Nimbus Sans L; display:inline; font-variant:normal; font-weight:bold; lang:ar-SA; font-style:normal; text-transform:none; list-style:None; color:000000; bgcolor:transparent; font-size:14pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></field><c xlink:href="https://mee499.github.io/MEE499R01V007/req003.html#gaps-in-the-literature" props="width:0in; font-family:Nimbus Sans L; display:inline; font-variant:normal; font-weight:bold; lang:ar-SA; font-style:normal; text-transform:none; list-style:None; color:000000; bgcolor:transparent; font-size:14pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"> </c><c xlink:href="https://mee499.github.io/MEE499R01V007/req003.html#gaps-in-the-literature" props="width:0in; font-family:Nimbus Sans L; display:inline; font-variant:normal; font-weight:bold; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; text-decoration:none; bgcolor:transparent; font-size:12pt; homogeneous:1; list-style:None; height:0in; color:000000; font-stretch:normal">Brief history of Communication Tehnology used in vehicles</c><c xlink:href="https://mee499.github.io/MEE499R01V007/req003.html#gaps-in-the-literature" props="width:0in; font-family:Nimbus Sans L; display:inline; font-variant:normal; font-weight:bold; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:None; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; color:000000; font-stretch:normal">:</c></p>
<p level="1" listid="161" parentid="0" style="Heading 2" xid="916" props="text-indent:-21.600000pt; tabstops:0.398611in/0; margin-left:28.700000pt"><c props="font-weight:normal; font-size:12pt; list-tag:1215"></c><field type="list_label" xid="917" props="width:0in; font-family:Nimbus Sans L; display:inline; font-style:normal; font-weight:normal; homogeneous:1; lang:ar-SA; color:000000; text-transform:none; font-variant:normal; list-style:None; bgcolor:transparent; text-decoration:none; font-size:12pt; height:0in; text-position:normal; font-stretch:normal"></field><c xlink:href="https://mee499.github.io/MEE499R01V007/req003.html#gaps-in-the-literature" props="width:0in; font-family:Nimbus Sans L; display:inline; font-style:normal; font-weight:normal; homogeneous:1; lang:ar-SA; color:000000; text-transform:none; font-variant:normal; list-style:None; bgcolor:transparent; text-decoration:none; font-size:12pt; height:0in; text-position:normal; font-stretch:normal"> </c><field type="list_label" xid="766" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:None; bgcolor:transparent; font-size:12pt; color:000000; text-decoration:none; height:0in; homogeneous:1; font-stretch:normal"></field><c props="font-weight:normal; font-family:Times New Roman; font-size:12pt">Most of the projects in IV, V2V and V2I use the standard IEEE 802.11 protocol for communication. But also GSM, UMTS, GPRS protocols are used in some of these projects. Generally WSNs (Wireless Sensor Networks) are deployed uneffectively and thus “platoonong” is inefficient, since the convuluted network is not ‘big’ enough in terms of the ‘no. of nodes’ present in the V2V (Vehicle-to-Vehicle) or V2I(Vehicle-to-Infrastructure) network.</c></p>
<p level="1" listid="161" parentid="0" style="Normal" xid="777" props="text-indent:-21.600000pt; tabstops:0.398611in/0; margin-left:28.700000pt"><c props="font-family:Times New Roman; list-tag:1162"></c><field type="list_label" xid="778" props="width:0in; font-family:Times New Roman; display:inline; color:000000; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:None; homogeneous:1; height:0in; font-size:12pt; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; color:000000; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:None; homogeneous:1; height:0in; font-size:12pt; font-stretch:normal"> </c></p>
<p level="1" listid="161" parentid="0" style="Normal" xid="775" props="text-indent:-21.600000pt; tabstops:0.398611in/0; margin-left:28.700000pt"><c props="font-family:Times New Roman; list-tag:1161"></c><field type="list_label" xid="776" props="width:0in; font-family:Times New Roman; display:inline; color:000000; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:None; homogeneous:1; height:0in; font-size:12pt; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; color:000000; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:None; homogeneous:1; height:0in; font-size:12pt; font-stretch:normal"> </c><c props="font-family:Times New Roman"> Traditionally, IEE standards like the Basic layers have been employed tor the information transmission. Routing inside a low power area network (LoWPAN) might be considered a challenge, as the RPL has to work over lossy radio links, with battery-powered nodes, multihop mesh topologies and frecuent topology changes. </c></p>
<p level="1" listid="161" parentid="0" style="Normal" xid="783" props="text-indent:-21.600000pt; tabstops:0.398611in/0; margin-left:28.700000pt"><c props="font-family:Times New Roman; list-tag:1165"></c><field type="list_label" xid="784" props="width:0in; font-family:Times New Roman; display:inline; color:000000; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:None; homogeneous:1; height:0in; font-size:12pt; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; color:000000; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:None; homogeneous:1; height:0in; font-size:12pt; font-stretch:normal"> </c></p>
<p level="1" listid="161" parentid="0" style="Normal" xid="785" props="text-indent:-21.600000pt; tabstops:0.398611in/0; margin-left:28.700000pt"><c props="list-tag:1166"></c><field type="list_label" xid="786" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:None; color:000000; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:None; color:000000; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"> </c>To give a solution several working groups are giving support to the RFC’s for this protocol. One of them is the routing over lowpan and lossy networks (ROLL) who is in charge of routing tasks. Meanwhile the “6LoWPAN” is trying to bring the new IPv6 addressing system to these resource-constrained devices. We try to predict the points of failure in such technology from a penetration and security testing point of view and conlclude with instantly applicable remedies via pull requests to the FOSS code repositories.</p>
<p level="1" listid="161" parentid="0" style="Normal" xid="888" props="text-indent:-21.600000pt; tabstops:0.398611in/0; margin-left:28.700000pt"><c props="list-tag:1202"></c><field type="list_label" xid="889" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:None; color:000000; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:None; color:000000; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"> </c></p>
<p level="1" listid="161" parentid="0" style="Normal" xid="892" props="text-indent:-21.600000pt; tabstops:0.398611in/0; margin-left:28.700000pt"><c props="width:0in; list-tag:1204; font-family:Times New Roman; display:inline; font-style:normal; font-weight:normal; color:000000; lang:ar-SA; text-decoration:none; text-transform:none; font-variant:normal; homogeneous:1; bgcolor:transparent; list-style:None; font-size:12pt; height:0in; text-position:normal; font-stretch:normal"></c><field type="list_label" xid="893" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:None; color:000000; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:None; color:000000; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"> </c></p>
<p level="1" listid="161" parentid="0" style="Normal" xid="894" props="text-indent:-21.600000pt; tabstops:0.398611in/0; margin-left:28.700000pt"><c props="width:0in; list-tag:1205; font-family:Times New Roman; display:inline; font-style:normal; font-weight:normal; color:000000; lang:ar-SA; text-decoration:none; text-transform:none; font-variant:normal; homogeneous:1; bgcolor:transparent; list-style:None; font-size:12pt; height:0in; text-position:normal; font-stretch:normal"></c><field type="list_label" xid="895" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:None; color:000000; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:None; color:000000; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"> </c></p>
<p level="0" listid="0" parentid="0" style="Normal" xid="3235" props="list-delim:%L; list-decimal:.; list-style:None; start-value:1; margin-left:28.700000pt; field-font:NULL; text-indent:0.0000in; tabstops:0.398611in/0"><c props="width:0in; list-tag:6631; font-family:Times New Roman; display:inline; font-style:normal; font-weight:bold; lang:ar-SA; font-variant:normal; text-transform:none; text-position:normal; text-decoration:none; bgcolor:transparent; font-size:14pt; color:000000; list-style:None; height:0in; homogeneous:1; font-stretch:normal"><pbr/></c><c props="width:0in; list-tag:6631; font-family:Times New Roman; display:inline; font-style:normal; font-weight:bold; lang:ar-SA; font-variant:normal; text-transform:none; text-position:normal; text-decoration:none; bgcolor:transparent; font-size:14pt; color:000000; list-style:None; height:0in; homogeneous:1; font-stretch:normal"></c></p>
<p level="0" listid="0" parentid="0" style="Normal" xid="3237" props="list-delim:%L; list-decimal:.; list-style:None; start-value:1; margin-left:28.700000pt; field-font:NULL; text-indent:0.0000in; tabstops:0.398611in/0"><c props="width:0in; list-tag:6631; font-family:Times New Roman; display:inline; font-style:normal; font-weight:bold; lang:ar-SA; font-variant:normal; text-transform:none; text-position:normal; text-decoration:none; bgcolor:transparent; font-size:14pt; color:000000; list-style:None; height:0in; homogeneous:1; font-stretch:normal">Existing Generic Technologies:</c><c props="width:0in; list-tag:6631; font-family:Times New Roman; display:inline; font-style:normal; font-weight:bold; lang:ar-SA; font-variant:normal; text-transform:none; text-position:normal; text-decoration:none; bgcolor:transparent; font-size:14pt; color:000000; list-style:None; height:0in; homogeneous:1; font-stretch:normal"></c></p>
<p level="1" listid="161" parentid="0" style="Normal" xid="890" props="text-indent:-21.600000pt; tabstops:0.398611in/0; margin-left:28.700000pt"><c props="width:0in; list-tag:1203; font-family:Times New Roman; display:inline; font-style:normal; font-weight:normal; color:000000; lang:ar-SA; text-decoration:none; text-transform:none; font-variant:normal; homogeneous:1; bgcolor:transparent; list-style:None; font-size:12pt; height:0in; text-position:normal; font-stretch:normal"></c><field type="list_label" xid="891" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:None; color:000000; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:None; color:000000; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"> </c></p>
<p level="1" listid="161" parentid="0" style="Heading 3" xid="921" props="text-indent:-21.600000pt; tabstops:0.398611in/0; margin-left:28.700000pt"><c props="list-tag:1194; font-size:10pt"></c><field type="list_label" xid="885" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; text-position:normal; text-decoration:none; bgcolor:transparent; font-size:10pt; color:000000; list-style:None; height:0in; homogeneous:1; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; color:000000; homogeneous:1; bgcolor:transparent; font-size:10pt; text-decoration:none; list-style:None; height:0in; text-position:normal; font-stretch:normal"> </c><c props="font-size:10pt">MAC/PHY layer based communication:</c></p>
<p level="1" listid="161" parentid="0" style="Normal" xid="870" props="text-indent:-21.600000pt; tabstops:0.398611in/0; margin-left:28.700000pt"><c props="list-tag:1195"></c><field type="list_label" xid="879" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:None; color:000000; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></field>Radio waves and infrared have been studied to give medium support to IVCs. The radio waves include micro, millimeter and VHF waves. The communication with millimeter waves and infrared are usually directional, while VHF is used for broadcast. The typical radio bandwidth used in IVC is 5.9 GHz in US, 5.8 GHz in Japan and 5.8 GHz in Europe. The FleetNet project chose ULTRA TDD due to the availability of the unlicensed frequency band 2010-2020 MHz in Europe. Most projects, however, have adopted the use of infrared (CarTALK, COOPER, JSK, PATH…).</p>
<p level="1" listid="161" parentid="0" style="Normal" xid="910" props="text-indent:-21.600000pt; tabstops:0.398611in/0; margin-left:28.700000pt"><c props="list-tag:1213"></c><field type="list_label" xid="911" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:None; color:000000; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:None; color:000000; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"> </c></p>
<p level="1" listid="161" parentid="0" style="Normal" xid="871" props="text-indent:-21.600000pt; tabstops:0.398611in/0; margin-left:28.700000pt"><c props="list-tag:1196"></c><field type="list_label" xid="880" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:None; color:000000; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></field>There are two approaches in developing MAC for IVCs. One is using IEEE 802.11 as a radio interface, while the other consists on extended 3G technology, such as CDMA for distributed access.<br/> Both of them have to be modified and adapted to provide an efficient solution for IVCs.<br/> The advantage of using IEEE 802.11 is the inherited support for distributed coordination in ad hoc mode. On the other hand, 3G extensions present high granularity for data transmission.<image dataid="bd4621e8-00ee-11e8-99f1-ca192126b1e9" title="" alt="" xid="3145" props="height:0.8438in; width:6.5660in"/><c dataid="bd4621e8-00ee-11e8-99f1-ca192126b1e9" title="" alt="" props="height:0.8438in; width:6.5660in">(Dia. 1.4.1: Vehicle to Infrastructure Communication, schemaic)</c><field type="list_label" xid="767" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:None; color:000000; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></field></p>
<p style="Normal" xid="764" props="font-family:Times New Roman; margin-left:1in; text-decoration:none; text-indent:0in; text-position:normal; font-size:12pt; tabstops:0.398611in/0; color:000000; font-weight:normal; font-style:normal"><c></c><c></c></p>
<p style="Normal" xid="3150" props="font-family:Times New Roman; margin-left:1in; text-decoration:none; text-indent:0in; text-position:normal; font-size:12pt; tabstops:0.398611in/0; color:000000; font-weight:normal; font-style:normal"><c props="font-family:Nimbus Sans L; text-decoration:none; color:000000; font-size:12pt; text-position:normal; font-weight:bold; font-style:normal; lang:ar-SA"></c><c></c></p>
<p style="Normal" xid="3153" props="font-family:Times New Roman; margin-left:1in; text-decoration:none; text-indent:0in; text-position:normal; font-size:12pt; tabstops:0.398611in/0; color:000000; font-weight:normal; font-style:normal"><c props="font-family:Nimbus Sans L; text-decoration:none; color:000000; font-size:12pt; text-position:normal; font-weight:bold; font-style:normal; lang:ar-SA"></c><c></c></p>
<p style="Normal" xid="3154" props="font-family:Nimbus Sans L; font-style:normal; margin-left:1in; lang:ar-SA; text-indent:0in; color:000000; font-weight:bold; tabstops:0.398611in/0; text-decoration:none; font-size:12pt; text-position:normal"><c props="font-family:Nimbus Sans L; text-decoration:none; color:000000; font-size:12pt; text-position:normal; font-weight:bold; font-style:normal; lang:ar-SA"></c><c props="width:0in; font-family:Nimbus Sans L; display:inline; color:000000; font-weight:bold; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:None; homogeneous:1; height:0in; font-size:14pt; font-stretch:normal"><pbr/></c></p>
<p level="1" listid="161" parentid="0" style="Heading 2" xid="3169" props="text-indent:-21.600000pt; tabstops:0.398611in/0; margin-left:28.700000pt"><c props="width:0in; list-tag:1190; font-family:Nimbus Sans L; display:inline; font-style:normal; font-weight:bold; bgcolor:transparent; lang:ar-SA; list-style:None; text-transform:none; font-variant:normal; text-decoration:none; font-size:14pt; color:000000; homogeneous:1; height:0in; text-position:normal; font-stretch:normal"></c><field type="list_label" xid="3170" props="width:0in; font-family:Nimbus Sans L; display:inline; font-style:normal; font-weight:bold; lang:ar-SA; font-variant:normal; text-transform:none; color:000000; list-style:None; bgcolor:transparent; font-size:14pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></field><c props="width:0in; font-family:Nimbus Sans L; display:inline; font-variant:normal; font-weight:bold; lang:ar-SA; font-style:normal; text-transform:none; color:000000; homogeneous:1; bgcolor:transparent; font-size:14pt; text-decoration:none; list-style:None; height:0in; text-position:normal; font-stretch:normal"> </c><c props="width:0in; font-family:Nimbus Sans L; display:inline; color:000000; font-weight:bold; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:None; homogeneous:1; height:0in; font-size:14pt; font-stretch:normal">1.5 </c>Objectives:</p>
<p level="0" listid="0" parentid="0" style="Normal" xid="807" props="list-delim:%L; list-decimal:.; list-style:Bullet List; start-value:0; margin-left:0.50in; field-font:NULL; text-indent:0.0000in; tabstops:0.398611in/0"><c></c></p>
<p level="1" listid="1" parentid="0" style="Normal" xid="3162" props="start-value:0; text-indent:-0.3in; list-style:Bullet List; field-font:NULL; tabstops:0.398611in/0; margin-left:0.50in"><c type="list_label" props="list-tag:1188"></c><field type="list_label" xid="3163" props="width:0in; font-family:Times New Roman; display:inline; font-style:normal; font-weight:normal; lang:ar-SA; font-variant:normal; text-transform:none; color:000000; list-style:Bullet List; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-style:normal; font-weight:normal; lang:ar-SA; font-variant:normal; text-transform:none; color:000000; list-style:Bullet List; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"> </c><c type="list_label">To come up with a neat-networking protocol schema to address inefficient hop-on /ad-hoc communication propogation delays, possibly trying to implement in a decentralized contract. </c></p>
<p level="1" listid="1" parentid="0" style="Normal" xid="809" props="start-value:0; text-indent:-0.3in; list-style:Bullet List; field-font:NULL; tabstops:0.398611in/0; margin-left:0.50in"><c type="list_label"></c><field type="list_label" xid="810"></field> To be able to successfully reproduce the hardware based real-time implementation of the AGL release on an ARM based development board. </p>
<p level="1" listid="1" parentid="0" style="Normal" xid="811" props="start-value:0; text-indent:-0.3in; list-style:Bullet List; field-font:NULL; tabstops:0.398611in/0; margin-left:0.50in"><c></c><field type="list_label" xid="812"></field> To provide an future roadmap for Non-hybrid cum Hybrid on-road network integration in a cheap (feasible), environment-friendly (sustainanble) and energy-efficient (if not, utilitarian) by means of a snap-on dashboard powered by a simple smartphones’ sensors, transmitters and transduecers. </p>
<p level="1" listid="1" parentid="0" style="Normal" xid="813" props="start-value:0; text-indent:-0.3in; list-style:Bullet List; field-font:NULL; tabstops:0.398611in/0; margin-left:0.50in"><c></c><field type="list_label" xid="814"></field> To demonstrate a successful implementation of AGL (improvised fork) during the final review. </p>
<p style="Normal" xid="815" props="text-indent:0in; tabstops:0.398611in/0; margin-left:1in"><c type="list_label"></c><c></c></p>
<p style="Block Text" xid="493" props="margin-right:0.000000pt"><c props="display:none; font-size:12.000000pt; font-family:Times New Roman; color:FF0000; font-style:italic"> (Insert additional rows as necessa</c><c props="display:none; font-size:12.000000pt; font-family:Times New Roman; color:FF0000; font-style:italic"></c></p>
<p level="1" listid="161" parentid="0" style="heading 2" xid="495" props="text-indent:-21.600000pt; tabstops:0.398611in/0; margin-left:28.700000pt"><field level="1" listid="161" parentid="160" style="heading 2" type="list_label" xid="496" props="tabstops:0.398611in/0; text-indent:-21.600000pt; font-weight:bold; font-family:Nimbus Sans L; font-size:14pt; margin-left:28.700000pt"></field><c level="1" listid="161" parentid="160" style="heading 2" type="list_label" props="tabstops:0.398611in/0; text-indent:-21.600000pt; font-weight:bold; font-family:Nimbus Sans L; font-size:14pt; margin-left:28.700000pt"> </c><c level="1" listid="161" parentid="160" style="heading 2" type="list_label" props="tabstops:0.398611in/0; text-indent:-21.600000pt; font-weight:bold; font-family:Nimbus Sans L; font-size:14pt; margin-left:28.700000pt"></c><c props="font-weight:bold; font-family:Nimbus Sans L; font-size:14pt">Design Elements included :</c></p>
<p style="Block Text" xid="497" props="text-align:center; margin-right:0.000000pt"><c props="display:none; font-size:12.000000pt; font-family:Times New Roman; color:FF0000; font-style:italic"> (List the approved evaluation questions the evaluation should answer to aid decision-making.)</c><c props="display:none; font-size:12.000000pt; font-family:Times New Roman; color:FF0000; font-style:italic"></c></p>
<p xid="498" props="text-indent:36.000000pt; text-align:left"><c props="font-family:Times New Roman"> Engineering Standards* </c><c props="font-family:Times New Roman"></c><c props="text-decoration:underline; font-family:Times New Roman; font-style:italic"> Prototype and Fabrication</c></p>
<p xid="499" props="text-align:left"><c></c><c></c></p>
<p xid="500" props="text-indent:36.000000pt; text-align:left"><c props="font-family:Times New Roman"> Design Analysis* </c><c props="font-family:Times New Roman"></c><c props="text-decoration:underline; font-family:Times New Roman; font-style:italic">Experimentation</c></p>
<p xid="501" props="text-indent:36.000000pt; text-align:left"><c></c><c></c></p>
<p xid="502" props="text-indent:36.000000pt; text-align:left"><c props="font-family:Times New Roman"> Modelling and Simulation </c><c props="font-family:Times New Roman"></c><c props="text-decoration:underline; font-family:Times New Roman; font-style:italic">Software Development</c></p>
<p xid="503" props="text-align:left"><c></c><c></c></p>
<p xid="830" props="text-align:left"><c></c><c></c></p>
<p xid="831" props="text-align:left"><c></c><c></c></p>
<p xid="832" props="text-align:left"><c></c><c></c></p>
<p xid="833" props="text-align:left"><c></c><c></c></p>
<p level="1" listid="161" parentid="0" style="heading 2" xid="504" props="text-indent:-21.600000pt; tabstops:0.398611in/0; margin-left:28.700000pt"><field level="1" listid="161" parentid="160" style="heading 2" type="list_label" xid="505" props="tabstops:0.398611in/0; text-indent:-21.600000pt; font-weight:bold; text-decoration:none; margin-left:28.700000pt"></field><c level="1" listid="161" parentid="160" style="heading 2" type="list_label" props="tabstops:0.398611in/0; text-indent:-21.600000pt; font-weight:bold; text-decoration:none; margin-left:28.700000pt"> </c><c level="1" listid="161" parentid="160" style="heading 2" type="list_label" props="tabstops:0.398611in/0; text-indent:-21.600000pt; font-weight:bold; text-decoration:none; margin-left:28.700000pt"></c><c props="text-decoration:none; font-weight:bold; font-family:Nimbus Sans L; font-size:14pt">Realistic Constraints to be addressed </c><c props="font-size:14pt; font-weight:bold; font-family:Nimbus Sans L; text-decoration:none">:</c></p>
<p style="_Normal" xid="829" props="tabstops:0.398611in/0"><c></c><c></c></p>
<p xid="506" props="text-indent:28.700000pt"><c props="font-family:Times New Roman"> Economic </c><c props="font-family:Times New Roman"></c><c props="text-decoration:underline; font-family:Times New Roman; font-style:italic">Ethical</c></p>
<p style="List Paragraph" xid="507" props="text-indent:18.000000pt; margin-left:21.600000pt"><c></c><c></c></p>
<p xid="508" props="text-indent:28.700000pt"><c props="font-family:Times New Roman"> Environmental </c><c props="font-family:Times New Roman"></c><c props="text-decoration:underline; font-family:Times New Roman; font-style:italic"> Health and Safety</c></p>
<p style="List Paragraph" xid="509" props="margin-left:18.000000pt"><c></c><c></c></p>
<p style="List Paragraph" xid="510" props="text-indent:10.700000pt; margin-left:18.000000pt"><c props="font-family:Times New Roman"> Social </c><c props="font-family:Times New Roman"></c><c props="text-decoration:underline; font-family:Times New Roman; font-style:italic">Manufacturability</c></p>
<p style="List Paragraph" xid="511" props="margin-left:18.000000pt"><c></c><c></c></p>
<p xid="512" props="text-indent:28.700000pt"><c props="font-family:Times New Roman"> Political </c><c props="font-family:Times New Roman"></c><c props="text-decoration:underline; font-family:Times New Roman; font-style:italic"> Sustainability</c></p>
<p style="Block Text" xid="513" props="margin-right:0.000000pt"><c props="display:none; font-size:12.000000pt; font-family:Times New Roman; color:FF0000; font-style:italic"> (Insert additional rows as necessary)</c><c props="display:none; font-size:12.000000pt; font-family:Times New Roman; color:FF0000; font-style:italic"></c></p>
<p style="Block Text" xid="514" props="margin-right:0.000000pt"><c></c><pbr/></p>
<p style="Block Text" xid="3168" props="margin-right:0.000000pt"><c></c><c></c></p>
<p xid="527"><c></c><c></c></p>
<p xid="528" props="text-align:center"><c props="lang:en-US; font-weight:bold; font-family:Times New Roman">CHAPTER –II</c><c props="lang:en-US; font-weight:bold; font-family:Times New Roman"></c></p>
<p xid="529" props="text-align:center"><c></c><c></c></p>
<p xid="530" props="text-align:center"><c props="lang:en-US; font-weight:bold; font-family:Times New Roman">METHODOLOGY AND EXPERIMENTAL PROCEDURE</c><c props="lang:en-US; font-weight:bold; font-family:Times New Roman"></c></p>
<p xid="1058" props="text-align:center"><c props="lang:en-US; font-weight:bold; font-family:Times New Roman"></c><c></c></p>
<p xid="1059" props="text-align:center"><c props="lang:en-US; font-weight:bold; font-family:Times New Roman"></c><c></c></p>
<p xid="1129" props="text-align:center"><c props="lang:en-US; font-weight:bold; font-family:Times New Roman"></c><c></c></p>
<p xid="1130" props="text-align:center"><c props="lang:en-US; font-weight:bold; font-family:Times New Roman"></c><c></c></p>
<p xid="1061" props="text-align:center"><c props="lang:en-US; font-weight:bold; font-family:Times New Roman"></c><c></c></p>
<p xid="1062" props="text-align:center"><c props="lang:en-US; font-weight:bold; font-family:Times New Roman"></c><c></c></p>
<p xid="1060" props="text-align:center"><c props="lang:en-US; text-decoration:underline; font-family:Times New Roman; font-weight:bold"></c><c></c></p>
<p style="Block Text" xid="531" props="text-align:justify; margin-right:0.000000pt"><c props="font-size:12.000000pt; font-weight:bold; font-family:Times New Roman; text-decoration:underline">2.1 Methodology</c><c props="font-size:12.000000pt; font-weight:bold; font-family:Times New Roman; text-decoration:underline"></c></p>
<p style="Block Text" xid="532" props="text-align:justify; margin-right:0.000000pt"><c props="font-family:Times New Roman; font-size:12.000000pt">The AGL is first ported to a VM with a usual DebianOS base kernel.</c><c props="font-family:Times New Roman; font-size:12.000000pt"></c></p>
<p style="Block Text" xid="1056" props="text-align:justify; margin-right:0.000000pt"><c props="font-family:Times New Roman; font-size:12.000000pt">Next, the images are downloaded and flshed onto a SDHCeMMC Memory Card.</c><c props="font-family:Times New Roman; font-size:12.000000pt"></c></p>
<p style="Block Text" xid="1057" props="text-align:justify; margin-right:0.000000pt"><c props="font-family:Times New Roman; font-size:12.000000pt">Third, the auxiliary input and output peripherals are serially connected to the used Raspberry Pi, or UNO module.</c><c props="font-family:Times New Roman; font-size:12.000000pt"></c></p>
<p style="Block Text" xid="533" props="text-align:justify; margin-right:0.000000pt"><c></c><c></c></p>
<p style="Block Text" xid="535" props="text-align:justify; margin-right:0.000000pt"><c></c><c props="font-size:12.000000pt; font-weight:bold; font-family:Times New Roman; text-decoration:underline">2.2 Experimental Procedure</c></p>
<p style="Block Text" xid="922" props="text-align:justify; margin-right:0.000000pt"><c props="font-weight:bold; font-family:Times New Roman; font-size:12.000000pt"></c><c props="text-decoration:underline">Hardware Requirements</c></p>
<p style="Block Text" xid="925" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c><c></c></p>
<p level="1" listid="1217" parentid="0" style="Block Text" xid="926" props="list-delim:%L; list-decimal:NULL; list-style:Bullet List; start-value:0; dom-dir:ltr; margin-left:1.5000in; text-indent:-0.3000in; text-align:left; margin-right:0.000000pt; field-font:Nimbus Sans L"><c props="font-family:Nimbus Sans L; list-tag:1218"></c><field type="list_label" xid="1041" props="width:0in; font-family:Nimbus Sans L; display:inline; color:000000; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:Bullet List; homogeneous:1; height:0in; font-size:10.000000pt; font-stretch:normal"></field><c props="width:0in; font-family:Nimbus Sans L; display:inline; color:000000; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:Bullet List; homogeneous:1; height:0in; font-size:10.000000pt; font-stretch:normal"> </c><c props="font-family:Nimbus Sans L"> Dragonboard410c</c></p>
<p level="1" listid="1217" style="Block Text" xid="927" props="list-delim:%L; list-decimal:NULL; list-style:Bullet List; start-value:0; dom-dir:ltr; margin-left:1.5000in; text-indent:-0.3000in; text-align:left; margin-right:0.000000pt; field-font:Nimbus Sans L"><c props="font-family:Nimbus Sans L; list-tag:1219"></c><field type="list_label" xid="1042" props="width:0in; font-family:Nimbus Sans L; display:inline; color:000000; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:Bullet List; homogeneous:1; height:0in; font-size:10.000000pt; font-stretch:normal"></field><c props="width:0in; font-family:Nimbus Sans L; display:inline; color:000000; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:Bullet List; homogeneous:1; height:0in; font-size:10.000000pt; font-stretch:normal"> </c><c props="font-family:Nimbus Sans L"> 96Boards Compliant Power Supply</c></p>
<p level="1" listid="1217" style="Block Text" xid="928" props="list-delim:%L; list-decimal:NULL; list-style:Bullet List; start-value:0; dom-dir:ltr; margin-left:1.5000in; text-indent:-0.3000in; text-align:left; margin-right:0.000000pt; field-font:Nimbus Sans L"><c props="font-family:Nimbus Sans L; list-tag:1220"></c><field type="list_label" xid="1043" props="width:0in; font-family:Nimbus Sans L; display:inline; color:000000; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:Bullet List; homogeneous:1; height:0in; font-size:10.000000pt; font-stretch:normal"></field><c props="width:0in; font-family:Nimbus Sans L; display:inline; color:000000; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:Bullet List; homogeneous:1; height:0in; font-size:10.000000pt; font-stretch:normal"> </c><c props="font-family:Nimbus Sans L"> Linksprite 96Boards Touch Screen</c></p>
<p level="1" listid="1217" style="Block Text" xid="929" props="list-delim:%L; list-decimal:NULL; list-style:Bullet List; start-value:0; dom-dir:ltr; margin-left:1.5000in; text-indent:-0.3000in; text-align:left; margin-right:0.000000pt; field-font:Nimbus Sans L"><c props="font-family:Nimbus Sans L; list-tag:1221"></c><field type="list_label" xid="1044" props="width:0in; font-family:Nimbus Sans L; display:inline; color:000000; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:Bullet List; homogeneous:1; height:0in; font-size:10.000000pt; font-stretch:normal"></field><c props="width:0in; font-family:Nimbus Sans L; display:inline; color:000000; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:Bullet List; homogeneous:1; height:0in; font-size:10.000000pt; font-stretch:normal"> </c><c props="font-family:Nimbus Sans L"> Sensors Mezzanine</c></p>
<p level="1" listid="1217" style="Block Text" xid="930" props="list-delim:%L; list-decimal:NULL; list-style:Bullet List; start-value:0; dom-dir:ltr; margin-left:1.5000in; text-indent:-0.3000in; text-align:left; margin-right:0.000000pt; field-font:Nimbus Sans L"><c props="font-family:Nimbus Sans L; list-tag:1222"></c><field type="list_label" xid="1045" props="width:0in; font-family:Nimbus Sans L; display:inline; color:000000; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:Bullet List; homogeneous:1; height:0in; font-size:10.000000pt; font-stretch:normal"></field><c props="width:0in; font-family:Nimbus Sans L; display:inline; color:000000; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:Bullet List; homogeneous:1; height:0in; font-size:10.000000pt; font-stretch:normal"> </c><c props="font-family:Nimbus Sans L"> Audio Mezzanine(Required if using External Arduino)</c></p>
<p level="1" listid="1217" style="Block Text" xid="931" props="list-delim:%L; list-decimal:NULL; list-style:Bullet List; start-value:0; dom-dir:ltr; margin-left:1.5000in; text-indent:-0.3000in; text-align:left; margin-right:0.000000pt; field-font:Nimbus Sans L"><c props="font-family:Nimbus Sans L; list-tag:1223"></c><field type="list_label" xid="1046" props="width:0in; font-family:Nimbus Sans L; display:inline; color:000000; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:Bullet List; homogeneous:1; height:0in; font-size:10.000000pt; font-stretch:normal"></field><c props="width:0in; font-family:Nimbus Sans L; display:inline; color:000000; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:Bullet List; homogeneous:1; height:0in; font-size:10.000000pt; font-stretch:normal"> </c><c props="font-family:Nimbus Sans L"> Arduino Uno(Optional)</c></p>
<p level="1" listid="1217" style="Block Text" xid="932" props="list-delim:%L; list-decimal:NULL; list-style:Bullet List; start-value:0; dom-dir:ltr; margin-left:1.5000in; text-indent:-0.3000in; text-align:left; margin-right:0.000000pt; field-font:Nimbus Sans L"><c props="font-family:Nimbus Sans L; list-tag:1224"></c><field type="list_label" xid="1047" props="width:0in; font-family:Nimbus Sans L; display:inline; color:000000; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:Bullet List; homogeneous:1; height:0in; font-size:10.000000pt; font-stretch:normal"></field><c props="width:0in; font-family:Nimbus Sans L; display:inline; color:000000; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:Bullet List; homogeneous:1; height:0in; font-size:10.000000pt; font-stretch:normal"> </c><c props="font-family:Nimbus Sans L"> DC motor with Propellers</c></p>
<p level="1" listid="1217" style="Block Text" xid="933" props="list-delim:%L; list-decimal:NULL; list-style:Bullet List; start-value:0; dom-dir:ltr; margin-left:1.5000in; text-indent:-0.3000in; text-align:left; margin-right:0.000000pt; field-font:Nimbus Sans L"><c props="font-family:Nimbus Sans L; list-tag:1225"></c><field type="list_label" xid="1048" props="width:0in; font-family:Nimbus Sans L; display:inline; color:000000; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:Bullet List; homogeneous:1; height:0in; font-size:10.000000pt; font-stretch:normal"></field><c props="width:0in; font-family:Nimbus Sans L; display:inline; color:000000; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:Bullet List; homogeneous:1; height:0in; font-size:10.000000pt; font-stretch:normal"> </c><c props="font-family:Nimbus Sans L"> L298 Motor Driver</c></p>
<p level="1" listid="1217" style="Block Text" xid="934" props="list-delim:%L; list-decimal:NULL; list-style:Bullet List; start-value:0; dom-dir:ltr; margin-left:1.5000in; text-indent:-0.3000in; text-align:left; margin-right:0.000000pt; field-font:Nimbus Sans L"><c props="font-family:Nimbus Sans L; list-tag:1226"></c><field type="list_label" xid="1049" props="width:0in; font-family:Nimbus Sans L; display:inline; color:000000; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:Bullet List; homogeneous:1; height:0in; font-size:10.000000pt; font-stretch:normal"></field><c props="width:0in; font-family:Nimbus Sans L; display:inline; color:000000; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:Bullet List; homogeneous:1; height:0in; font-size:10.000000pt; font-stretch:normal"> </c><c props="font-family:Nimbus Sans L"> 5mm LED's</c></p>
<p level="1" listid="1217" style="Block Text" xid="935" props="list-delim:%L; list-decimal:NULL; list-style:Bullet List; start-value:0; dom-dir:ltr; margin-left:1.5000in; text-indent:-0.3000in; text-align:left; margin-right:0.000000pt; field-font:Nimbus Sans L"><c props="font-family:Nimbus Sans L; list-tag:1227"></c><field type="list_label" xid="1050" props="width:0in; font-family:Nimbus Sans L; display:inline; color:000000; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:Bullet List; homogeneous:1; height:0in; font-size:10.000000pt; font-stretch:normal"></field><c props="width:0in; font-family:Nimbus Sans L; display:inline; color:000000; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:Bullet List; homogeneous:1; height:0in; font-size:10.000000pt; font-stretch:normal"> </c><c props="font-family:Nimbus Sans L"> 330 ohm resistors</c></p>
<p level="1" listid="1217" style="Block Text" xid="936" props="list-delim:%L; list-decimal:NULL; list-style:Bullet List; start-value:0; dom-dir:ltr; margin-left:1.5000in; text-indent:-0.3000in; text-align:left; margin-right:0.000000pt; field-font:Nimbus Sans L"><c props="font-family:Nimbus Sans L; list-tag:1228"></c><field type="list_label" xid="1051" props="width:0in; font-family:Nimbus Sans L; display:inline; color:000000; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:Bullet List; homogeneous:1; height:0in; font-size:10.000000pt; font-stretch:normal"></field><c props="width:0in; font-family:Nimbus Sans L; display:inline; color:000000; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; font-variant:normal; text-decoration:none; bgcolor:transparent; list-style:Bullet List; homogeneous:1; height:0in; font-size:10.000000pt; font-stretch:normal"> </c><c props="font-family:Nimbus Sans L"> </c>Connecting wires</p>
<p style="Block Text" xid="937" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c><c></c></p>
<p style="Block Text" xid="1074" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c><c props="text-decoration:underline">Arduino</c></p>
<p style="Block Text" xid="942" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c>Controlling Fan Speed and LED intensity are handled by the Arduino. Sensors Mezzanine has an ATMega328 microcontroller comaptible with Arduino Uno. We use that or any external Arduino Uno for PWM control.</p>
<p style="Block Text" xid="944" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c>In case of using Sensors Mezzanine, the sketch can be uploaded by using Dragonboard410c itself..</p>
<p style="Block Text" xid="948" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c> If using Sensors Mezzanine, please follow the below steps on Dragonboard410c running Debian otherwise use Arduino IDE on the host system for programming.</p>
<p style="Block Text" xid="950" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c props="font-style:italic"></c><c props="font-style:italic">$ cd ~/Documents</c></p>
<p style="Block Text" xid="952" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c props="font-style:italic">$ git clone https://github.com/96boards-projects/agl-demo.git</c><c props="font-style:italic"></c></p>
<p style="Block Text" xid="953" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c props="font-style:italic">$ cd agl-demo/arduino/hvac</c><c props="font-style:italic"></c></p>
<p style="Block Text" xid="954" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c>Now open the hvac.ino using Arduino IDE and flash it onto the Sensors Mezzanine or Arduino Uno.</p>
<p style="Block Text" xid="1073" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c><c></c></p>
<p style="Block Text" xid="1126" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c><c props="text-decoration:underline"> Dragonboard410c</c></p>
<p style="Block Text" xid="957" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c>Execution environment: Host PC</p>
<p style="Block Text" xid="959" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt">Software Dependencies:<c></c></p>
<p style="Block Text" xid="960" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c props="font-style:italic"></c><c props="font-style:italic">$ sudo apt-get install gawk wget git-core diffstat unzip texinfo gcc-multilib \</c></p>
<p style="Block Text" xid="962" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c props="font-style:italic"> build-essential chrpath socat libsdl1.2-dev xterm cpio curl</c><c props="font-style:italic"></c></p>
<p style="Block Text" xid="963" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c><c></c></p>
<p style="Block Text" xid="964" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c props="text-decoration:underline">Downloading AGL Source Code</c><c props="text-decoration:underline"></c></p>
<p style="Block Text" xid="965" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c><c></c></p>
<p style="Block Text" xid="966" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt">AGL uses repo tool for maintaining repositories. We need to download the source on the host machine and cross compile it for Dragonboard410c.<c></c></p>
<p style="Block Text" xid="1090" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c props="font-style:italic"></c><c props="font-style:italic">$ export AGL_TOP=$HOME/workspace_agl</c></p>
<p style="Block Text" xid="1091" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c props="font-style:italic">$ mkdir -p $AGL_TOP</c><c props="font-style:italic"></c></p>
<p style="Block Text" xid="1092" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c props="font-style:italic">$ mkdir -p ~/bin</c><c props="font-style:italic"></c></p>
<p style="Block Text" xid="1093" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c props="font-style:italic">$ export PATH=~/bin:$PATH</c><c props="font-style:italic"></c></p>
<p style="Block Text" xid="1094" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c props="font-style:italic">$ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo</c><c props="font-style:italic"></c></p>
<p style="Block Text" xid="1095" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c props="font-style:italic">$ chmod a+x ~/bin/repo</c><c props="font-style:italic"></c></p>
<p style="Block Text" xid="1104" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c props="font-style:italic"></c><c></c></p>
<p style="Block Text" xid="1096" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c>Next, the stable branch of AGL.</p>
<p style="Block Text" xid="1098" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c><c props="font-style:italic">$ cd $AGL_TOP</c></p>
<p style="Block Text" xid="1100" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c props="font-style:italic">$ repo init -b dab -m dab_4.0.2.xml -u https://gerrit.automotivelinux.org/gerrit/AGL/AGL-repo</c><c props="font-style:italic"></c></p>
<p style="Block Text" xid="1101" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c props="font-style:italic">$ repo sync</c><c props="font-style:italic"></c></p>
<p style="Block Text" xid="1102" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c><c></c></p>
<p style="Block Text" xid="986" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c props="text-decoration:underline">Building AGL</c><c props="text-decoration:underline"></c></p>
<p style="Block Text" xid="987" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c>Now, to build the agl-demo-platform for Dragonboard410c.</p>
<p style="Block Text" xid="989" props="font-family:Helvetica; font-size:10pt; dom-dir:ltr; lang:en-US; font-weight:normal; text-position:normal; text-align:left; margin-right:0.000000pt; font-style:normal; text-decoration:none"><c></c><c props="font-style:italic">$ source meta-agl/scripts/aglsetup.sh -m dragonboard-410c agl-demo agl-appfw-smack agl-devel agl-netboot</c></p>
<p style="Block Text" xid="1116" props="font-family:Helvetica; font-size:10pt; dom-dir:ltr; lang:en-US; font-weight:normal; text-position:normal; text-align:left; margin-right:0.000000pt; font-style:normal; text-decoration:none"><c props="font-style:italic"></c><c></c></p>
<p style="Block Text" xid="991" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c>Now to move to the directory:</p>
<p style="Block Text" xid="3111" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c props="font-style:italic"></c><c props="font-style:italic">$ cd agl-demo</c></p>
<p style="Block Text" xid="995" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c><c></c></p>
<p style="Block Text" xid="996" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt">Copying the custom HVAC recipie to AGL source:</p>
<p style="Block Text" xid="997" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c><c props="font-style:italic">$ cp hvac_git.bb $(AGL_TOP)/meta-agl-demo/recipes-demo-hmi/hvac/hvac_git.bb</c></p>
<p style="Block Text" xid="999" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c><c></c></p>
<p style="Block Text" xid="1000" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt">Executing bitbake command by moving to the build directory of AGL source.<c></c></p>
<p style="Block Text" xid="1001" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c><c props="font-style:italic">$ cd $(AGL_TOP)/build</c></p>
<p style="Block Text" xid="1003" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c props="font-style:italic">$ bitbake agl-demo-platform</c><c props="font-style:italic"></c></p>
<p style="Block Text" xid="1004" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c><c></c></p>
<p style="Block Text" xid="1115" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c props="text-decoration:underline"></c><c props="text-decoration:underline">Flashing AGL onto Dragonboard410c</c></p>
<p style="Block Text" xid="1009" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c>Once the build has been completed, we have to flash the boot and rootfs images onto Dragonboard410c. Now, boot Dragonboard into fastboot mode by following the instructions here. Then follow the below instructions to flash AGL onto Dragonboard410c.</p>
<p style="Block Text" xid="1011" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c><c props="font-style:italic">$ cd $AGL_TOP/build/tmp/deploy/images/dragonboard-410c</c></p>
<p style="Block Text" xid="1013" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c props="font-style:italic">$ sudo fastboot flash boot boot-dragonboard-410c.img</c><c props="font-style:italic"></c></p>
<p style="Block Text" xid="1014" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c props="font-style:italic">$ sudo fastboot flash rootfs agl-demo-platform-dragonboard-410c.ext4</c><c props="font-style:italic"></c></p>
<p style="Block Text" xid="1015" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c><c></c></p>
<p style="Block Text" xid="1114" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c props="font-family:Helvetica; text-decoration:underline"></c><c props="font-family:Helvetica; text-decoration:underline"> Hardware Setup</c><c props="font-family:Helvetica; font-size:12pt; color:000000; text-decoration:underline; text-position:normal; font-weight:normal; font-style:normal; lang:-none-">to execute HVAC demo.</c></p>
<p style="Block Text" xid="1018" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c> Make sure the Dragonboard410c is powered off</p>
<p style="Block Text" xid="1022" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"> Connect DC motor and LEDs to Arduino as per above schematic<c></c></p>
<p style="Block Text" xid="1023" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"> Connect LCD to Dragonboard410c via HDMI cable for display and Micro USB cable for touch input<c></c></p>
<p style="Block Text" xid="1024" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"> Power on your 96Boards CE with compatible power supply<c></c></p>
<p style="Block Text" xid="1025" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"> Dragonboard410c should now boot into AGL and homescreen should be visible.<c></c></p>
<p style="Block Text" xid="1026" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c><c></c></p>
<p style="Block Text" xid="1110" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c props="text-decoration:underline; font-style:normal"></c><c></c></p>
<p style="Block Text" xid="1111" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c props="text-decoration:underline; font-style:normal"></c><c props="text-decoration:underline; font-style:normal">HVAC Utilities</c></p>
<p style="Block Text" xid="1033" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c>Execution environment: Dragonboard410c</p>
<p style="Block Text" xid="1035" props="text-align:left; dom-dir:ltr; margin-right:0.000000pt"><c></c>Navigate to the HVAC application from the Homescreen.</p>
<p level="1" listid="1300" parentid="0" style="Block Text" xid="1037" props="list-delim:%L.; list-decimal:.; list-style:Numbered List; start-value:1; dom-dir:ltr; margin-left:1.5000in; text-indent:-0.3000in; text-align:left; margin-right:0.000000pt; field-font:NULL"><c></c><field type="list_label" xid="1117" props="width:0in; font-family:Helvetica; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; list-style:Numbered List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:10.000000pt; font-stretch:normal"></field><c props="width:0in; font-family:Helvetica; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; list-style:Numbered List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:10.000000pt; font-stretch:normal"> </c> To control the Fan speed, change the position of the slider at the top.</p>
<p level="1" listid="1300" style="Block Text" xid="1039" props="list-delim:%L.; list-decimal:.; list-style:Numbered List; start-value:1; dom-dir:ltr; margin-left:1.5000in; text-indent:-0.3000in; text-align:left; margin-right:0.000000pt; field-font:NULL"><c props="list-tag:1302"></c><field type="list_label" xid="1118" props="width:0in; font-family:Helvetica; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; list-style:Numbered List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:10.000000pt; font-stretch:normal"></field><c props="width:0in; font-family:Helvetica; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; list-style:Numbered List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:10.000000pt; font-stretch:normal"> </c> To control the LED intensities, change the values of L/R temperatures by dragging up the LO box.</p>
<p level="1" listid="1300" style="Block Text" xid="1040" props="list-delim:%L.; list-decimal:.; list-style:Numbered List; start-value:1; dom-dir:ltr; margin-left:1.5000in; text-indent:-0.3000in; text-align:left; margin-right:0.000000pt; field-font:NULL"><c></c><field type="list_label" xid="1119" props="width:0in; font-family:Helvetica; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; list-style:Numbered List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:10.000000pt; font-stretch:normal"></field><c props="width:0in; font-family:Helvetica; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:en-US; font-style:normal; text-transform:none; list-style:Numbered List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:10.000000pt; font-stretch:normal"> Turn off power by using the following:</c></p>
<p style="Block Text" xid="1120" props="text-align:left; text-indent:0in; dom-dir:ltr; margin-right:0.000000pt; margin-left:1in"><c props="width:0in; font-family:Helvetica; display:inline; font-style:italic; font-weight:normal; lang:en-US; font-variant:normal; text-transform:none; color:000000; bgcolor:transparent; font-size:10.000000pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal">$ sudo cd ..</c><c props="width:0in; font-family:Helvetica; display:inline; font-style:italic; font-weight:normal; lang:en-US; font-variant:normal; text-transform:none; color:000000; bgcolor:transparent; font-size:10.000000pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></c></p>
<p style="Block Text" xid="1122" props="text-align:left; text-indent:0in; dom-dir:ltr; margin-right:0.000000pt; margin-left:1in"><c props="width:0in; font-family:Helvetica; display:inline; font-style:italic; font-weight:normal; lang:en-US; font-variant:normal; text-transform:none; color:000000; bgcolor:transparent; font-size:10.000000pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal">$ poweroff --no-latch</c><c props="width:0in; font-family:Helvetica; display:inline; font-style:italic; font-weight:normal; lang:en-US; font-variant:normal; text-transform:none; color:000000; bgcolor:transparent; font-size:10.000000pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></c></p>
<p style="Block Text" xid="546" props="text-align:justify; margin-right:0.000000pt"><c></c><c></c></p>
<p style="Block Text" xid="547" props="text-align:justify; margin-right:0.000000pt"><c></c><pbr/></p>
<p style="Block Text" xid="3214" props="font-family:Nimbus Sans L; font-size:12pt; lang:ar-SA; font-weight:bold; text-position:normal; text-align:justify; margin-right:0.000000pt; font-style:normal; text-decoration:none"><c props="font-family:Nimbus Sans L; font-size:12pt; lang:ar-SA; text-position:normal; font-weight:bold; font-style:normal; text-decoration:none">About Network layer based communication:</c><c props="font-family:Nimbus Sans L; font-size:12pt; lang:ar-SA; text-position:normal; font-weight:bold; font-style:normal; text-decoration:none"></c></p>
<p style="Normal" xid="3215" props="font-family:Times New Roman; dom-dir:ltr; font-style:normal; margin-left:1.0000in; text-indent:0.0000in; lang:ar-SA; font-weight:normal; text-position:normal; margin-top:0.0000in; text-decoration:none; line-height:1.000000; tabstops:0.397917in/L0; margin-bottom:0.0000in; font-size:12pt; margin-right:0.0000in; text-align:left"><c props="font-family:Times New Roman; font-size:12pt; lang:ar-SA; text-position:normal; font-weight:normal; font-style:normal; text-decoration:none"> </c><c props="font-family:Times New Roman; font-size:12pt; lang:ar-SA; text-position:normal; font-weight:normal; font-style:normal; text-decoration:none"></c></p>
<p style="Normal" xid="3216" props="font-family:Times New Roman; dom-dir:ltr; font-style:normal; margin-left:1.0000in; text-indent:0.0000in; lang:ar-SA; font-weight:normal; text-position:normal; margin-top:0.0000in; text-decoration:none; line-height:1.000000; tabstops:0.397917in/L0; margin-bottom:0.0000in; font-size:12pt; margin-right:0.0000in; text-align:left"><c props="font-family:Times New Roman; font-size:12pt; lang:ar-SA; text-position:normal; font-weight:normal; font-style:normal; text-decoration:none"> Almost all routing protocols used by the different IVC projects are position-based. In addition, existing MAC ad hoc protocols could be directly applied. But if an optimal performance is desired taking into account the linear nature of the networks seen in section III, modification of the existing routing protocols must be performed. In addition, the features most of vehicles offer nowadays makes possible to get position information via GPS or GIS, very useful for routing. The protocol uses a forwarding scheme which avoids beacons for impactful transmission and effective sensing.</c><c props="font-family:Times New Roman; font-size:12pt; lang:ar-SA; text-position:normal; font-weight:normal; font-style:normal; text-decoration:none"></c></p>
<p level="1" listid="161" parentid="0" style="Heading 2" xid="3217" props="text-indent:-0.2993in; field-font:NULL; margin-top:0.3056in; margin-left:0.3979in; list-decimal:.; line-height:1.000000; text-align:left; list-style:None; lang:ar-SA; tabstops:0.397917in/L0; margin-bottom:0.0417in; font-weight:bold; text-decoration:none; start-value:1; text-position:normal; font-size:14pt; margin-right:0.0000in; font-style:normal; dom-dir:ltr; font-family:Nimbus Sans L; list-delim:%L"><c props="list-tag:6455"></c><field type="list_label" xid="3218" props="width:0in; font-family:Nimbus Sans L; display:inline; font-style:normal; font-weight:bold; lang:ar-SA; font-variant:normal; text-transform:none; color:000000; list-style:None; bgcolor:transparent; font-size:14pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></field> <c props="font-family:Nimbus Sans L; font-size:14pt; lang:ar-SA; text-position:normal; font-weight:bold; font-style:normal; text-decoration:none"> </c><image dataid="ab488e34-00f0-11e8-99f1-ca192126b1e9" xid="3220" props="height:3.2035in; width:5.2208in"/></p>
<p level="1" listid="161" parentid="0" style="Heading 2" xid="3222" props="text-indent:-0.2993in; field-font:NULL; margin-top:0.3056in; margin-left:0.3979in; list-decimal:.; line-height:1.000000; text-align:left; list-style:None; lang:ar-SA; tabstops:0.397917in/L0; margin-bottom:0.0417in; font-weight:bold; text-decoration:none; start-value:1; text-position:normal; font-size:14pt; margin-right:0.0000in; font-style:normal; dom-dir:ltr; font-family:Nimbus Sans L; list-delim:%L"><c props="list-tag:6456"></c><field type="list_label" xid="3223" props="width:0in; font-family:Nimbus Sans L; display:inline; font-style:normal; font-weight:bold; lang:ar-SA; font-variant:normal; text-transform:none; color:000000; list-style:None; bgcolor:transparent; font-size:14pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></field><c props="width:0in; font-family:Nimbus Sans L; display:inline; font-style:normal; font-weight:bold; lang:ar-SA; font-variant:normal; text-transform:none; color:000000; list-style:None; bgcolor:transparent; font-size:14pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"> </c><c props="width:0in; font-family:Nimbus Sans L; display:inline; font-style:normal; font-weight:normal; text-decoration:none; lang:ar-SA; color:000000; text-transform:none; font-variant:normal; list-style:None; bgcolor:transparent; homogeneous:1; font-size:10pt; height:0in; text-position:normal; font-stretch:normal">(Fig. 2.4.1: Hybrid or Modern Day Infrastructure)</c></p>
<p level="1" listid="161" parentid="0" style="Heading 2" xid="3224" props="text-indent:-0.2993in; field-font:NULL; margin-top:0.3056in; margin-left:0.3979in; list-decimal:.; line-height:1.000000; text-align:left; list-style:None; lang:ar-SA; tabstops:0.397917in/L0; margin-bottom:0.0417in; font-weight:bold; text-decoration:none; start-value:1; text-position:normal; font-size:14pt; margin-right:0.0000in; font-style:normal; dom-dir:ltr; font-family:Nimbus Sans L; list-delim:%L"><c props="list-tag:6457"></c><field type="list_label" xid="3225" props="width:0in; font-family:Nimbus Sans L; display:inline; font-style:normal; font-weight:bold; lang:ar-SA; font-variant:normal; text-transform:none; color:000000; list-style:None; bgcolor:transparent; font-size:14pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></field><c props="width:0in; font-family:Nimbus Sans L; display:inline; font-style:normal; font-weight:bold; lang:ar-SA; font-variant:normal; text-transform:none; color:000000; list-style:None; bgcolor:transparent; font-size:14pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"> </c></p>
<p level="1" listid="161" parentid="0" style="Heading 2" xid="3226" props="text-indent:-0.2993in; field-font:NULL; margin-top:0.3056in; margin-left:0.3979in; list-decimal:.; line-height:1.000000; text-align:left; list-style:None; lang:ar-SA; dom-dir:ltr; margin-bottom:0.0417in; text-decoration:none; font-weight:bold; start-value:1; text-position:normal; font-size:12pt; margin-right:0.0000in; font-style:normal; tabstops:0.397917in/L0; font-family:Nimbus Sans L; list-delim:%L"><c props="list-tag:6458"></c><field type="list_label" xid="3227" props="width:0in; font-family:Nimbus Sans L; display:inline; font-style:normal; font-weight:bold; lang:ar-SA; font-variant:normal; text-transform:none; color:000000; list-style:None; bgcolor:transparent; font-size:14pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></field><c props="width:0in; font-family:Nimbus Sans L; display:inline; font-style:normal; font-weight:bold; lang:ar-SA; font-variant:normal; text-transform:none; color:000000; list-style:None; bgcolor:transparent; font-size:14pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"> </c><c props="font-family:Nimbus Sans L; font-size:12pt; lang:ar-SA; text-position:normal; font-weight:bold; font-style:normal; text-decoration:none">eRecurrent Network layer based on-board computation cum signalling:</c></p>
<p style="Normal" xid="3228" props="font-family:Times New Roman; dom-dir:ltr; font-style:normal; margin-left:1.0000in; lang:ar-SA; text-align:left; text-indent:0.0000in; text-position:normal; margin-top:0.0000in; font-weight:normal; line-height:1.000000; tabstops:0.397917in/L0; margin-bottom:0.0000in; font-size:12pt; margin-right:0.0000in; text-decoration:none"><c props="font-family:Times New Roman; font-size:12pt; lang:ar-SA; text-position:normal; font-weight:normal; font-style:normal; text-decoration:none"> </c><c props="font-family:Times New Roman; font-size:12pt; lang:ar-SA; text-position:normal; font-weight:normal; font-style:normal; text-decoration:none"></c></p>
<p style="Normal" xid="3232" props="font-family:Times New Roman; dom-dir:ltr; font-style:normal; margin-left:1.0000in; lang:ar-SA; text-align:left; text-indent:0.0000in; text-position:normal; margin-top:0.0000in; font-weight:normal; line-height:1.000000; tabstops:0.397917in/L0; margin-bottom:0.0000in; font-size:12pt; margin-right:0.0000in; text-decoration:none"><c props="font-family:Times New Roman; font-size:12pt; lang:ar-SA; text-position:normal; font-weight:normal; font-style:normal; text-decoration:none">We aspire to prototype a modular approach to convert existing infrastructure of sensors and wireless telecommunication devices, and perhaps even provide pointers on an improved protocol fabricaion, which could be deployed at scale, feasibly.</c><c props="font-family:Times New Roman; font-size:12pt; lang:ar-SA; text-position:normal; font-weight:normal; font-style:normal; text-decoration:none"></c></p>
<p level="1" listid="161" parentid="0" style="Heading 2" xid="3230" props="text-indent:-0.2993in; field-font:NULL; margin-top:0.3056in; margin-left:0.3979in; list-decimal:.; line-height:1.000000; text-align:left; list-style:None; lang:ar-SA; tabstops:0.397917in/L0; margin-bottom:0.0417in; font-weight:bold; text-decoration:none; start-value:1; text-position:normal; font-size:14pt; margin-right:0.0000in; font-style:normal; dom-dir:ltr; font-family:Nimbus Sans L; list-delim:%L"><c props="list-tag:6629"></c><field type="list_label" xid="3231" props="width:0in; font-family:Nimbus Sans L; display:inline; font-style:normal; font-weight:bold; lang:ar-SA; font-variant:normal; text-transform:none; color:000000; list-style:None; bgcolor:transparent; font-size:14pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></field> <c props="font-family:Nimbus Sans L; font-size:14pt; lang:ar-SA; text-position:normal; font-weight:bold; font-style:normal; text-decoration:none"> </c><pbr/></p>
<p style="Block Text" xid="651" props="text-align:center; margin-right:0.000000pt"><c></c><c></c></p>
<p style="heading 2" xid="668" props="text-align:center; tabstops:0.500000in/L0"><c props="font-weight:bold; font-family:Times New Roman; font-size:12.000000pt">CHAPTER –III</c><c props="font-weight:bold; font-family:Times New Roman; font-size:12.000000pt"></c></p>
<p style="heading 2" xid="553" props="text-align:center; tabstops:0.500000in/L0"><c props="font-weight:bold; font-family:Times New Roman; font-size:12.000000pt">RESULTS AND DISCUSSION</c><c props="font-weight:bold; font-family:Times New Roman; font-size:12.000000pt"></c></p>
<p style="heading 2" xid="554" props="text-align:center; tabstops:0.500000in/L0"><c props="font-weight:bold; font-family:Times New Roman; font-size:12.000000pt">PHASE I</c><c props="font-weight:bold; font-family:Times New Roman; font-size:12.000000pt"></c></p>
<p xid="567"><c></c><c></c></p>
<p xid="568"><c></c><c></c></p>
<p xid="569"><c props="text-decoration:underline"></c><c props="text-decoration:underline">3.1 Work done so far:</c></p>
<p xid="1132"><c></c><c></c></p>
<p xid="570"><c></c><c></c></p>
<p xid="571"><c></c><c></c></p>
<p level="1" listid="1465" parentid="0" xid="572" props="list-delim:%L; list-decimal:NULL; list-style:Bullet List; start-value:0; margin-left:0.5000in; text-indent:-0.3000in; field-font:Nimbus Sans L"><c></c><field type="list_label" xid="1133" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"> Successfully studied the architecture of a PCB (printed) board.</c></p>
<p level="1" listid="1465" parentid="0" xid="1140" props="list-delim:%L; list-decimal:NULL; list-style:Bullet List; start-value:0; margin-left:0.5000in; text-indent:-0.3000in; field-font:Nimbus Sans L"><c props="width:0in; list-tag:1469; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; bgcolor:transparent; font-size:12pt; text-decoration:none; homogeneous:1; height:0in; color:000000; font-stretch:normal"></c><field type="list_label" xid="1141" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"> Gained a deep understanding of remote-sensing and GIS in application-layer deployment.</c></p>
<p level="1" listid="1465" parentid="0" xid="1143" props="list-delim:%L; list-decimal:NULL; list-style:Bullet List; start-value:0; margin-left:0.5000in; text-indent:-0.3000in; field-font:Nimbus Sans L"><c props="width:0in; list-tag:1470; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; bgcolor:transparent; font-size:12pt; text-decoration:none; homogeneous:1; height:0in; color:000000; font-stretch:normal"></c><field type="list_label" xid="1144" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"> Ported AGL unto raspberryPi and successfully emulated on a HDMI-connected monitor.</c></p>
<p level="1" listid="1465" parentid="0" xid="1145" props="list-delim:%L; list-decimal:NULL; list-style:Bullet List; start-value:0; margin-left:0.5000in; text-indent:-0.3000in; field-font:Nimbus Sans L"><c props="width:0in; list-tag:1471; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; bgcolor:transparent; font-size:12pt; text-decoration:none; homogeneous:1; height:0in; color:000000; font-stretch:normal"></c><field type="list_label" xid="1146" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; text-position:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; homogeneous:1; bgcolor:transparent; text-decoration:none; color:000000; height:0in; font-size:12pt; font-stretch:normal"> Pull Request was successfully merged wih the source at git.automotivelinux.com.</c></p>
<p level="1" listid="1465" parentid="0" xid="3233" props="list-delim:%L; list-decimal:NULL; list-style:Bullet List; start-value:0; margin-left:0.5000in; text-indent:-0.3000in; field-font:Nimbus Sans L"><c props="width:0in; list-tag:6630; font-family:Times New Roman; display:inline; font-style:normal; font-weight:normal; bgcolor:transparent; lang:ar-SA; text-decoration:none; text-transform:none; font-variant:normal; homogeneous:1; font-size:12pt; list-style:Bullet List; color:000000; height:0in; text-position:normal; font-stretch:normal"></c><field type="list_label" xid="3234" props="width:0in; font-family:Times New Roman; display:inline; font-style:normal; font-weight:normal; lang:ar-SA; font-variant:normal; text-transform:none; color:000000; list-style:Bullet List; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-style:normal; font-weight:normal; lang:ar-SA; font-variant:normal; text-transform:none; color:000000; list-style:Bullet List; bgcolor:transparent; font-size:12pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"> Cost and Capacity based market economic analysis.</c></p>
<p style="Block Text" xid="1142" props="text-align:left; margin-right:0.000000pt"><c props="display:none; font-size:12.000000pt; color:FF0000; font-family:Times New Roman; font-weight:bold; font-style:italic"></c><c></c></p>
<p xid="588"><c props="lang:en-US"></c><c></c></p>
<p xid="1252"><c props="lang:en-US"></c><c></c></p>
<p xid="1253"><c props="lang:en-US"></c><c></c></p>
<p xid="1254"><c props="text-decoration:underline; lang:en-US"></c><c props="text-decoration:underline; lang:en-US">3.2 Work to be done</c></p>
<p xid="1239"><c props="lang:en-US"></c><c></c></p>
<p xid="1147"><c props="lang:en-US"></c><c></c></p>
<p level="1" listid="1539" parentid="0" xid="1241" props="list-delim:%L; list-decimal:NULL; list-style:Bullet List; start-value:0; margin-left:0.5000in; text-indent:-0.3000in; field-font:Nimbus Sans L"><c props="list-tag:1540"></c><field type="list_label" xid="1242" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; text-decoration:none; bgcolor:transparent; font-size:12pt; color:000000; homogeneous:1; height:0in; text-position:normal; font-stretch:normal"></field><c xlink:href="https://mee499.github.io/MEE499R01V007/req005.html#objectives" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; text-decoration:none; bgcolor:transparent; font-size:12pt; color:000000; homogeneous:1; height:0in; text-position:normal; font-stretch:normal"> </c><c props="font-family:Times New Roman; font-size:12pt; lang:ar-SA; text-position:normal; font-weight:normal; font-style:normal; text-decoration:none"> To come up with a neat-networking protocol schema to address inefficient hop-on /ad-hoc communication propogation delays, possibly trying to implement in a decentralized contract. </c></p>
<p level="1" listid="1539" parentid="0" xid="1246" props="list-delim:%L; list-decimal:NULL; list-style:Bullet List; start-value:0; margin-left:0.5000in; text-indent:-0.3000in; field-font:Nimbus Sans L"><c props="font-family:Times New Roman; font-size:12pt; lang:ar-SA; list-tag:1546; text-position:normal; font-weight:normal; font-style:normal; text-decoration:none"></c><field type="list_label" xid="1247" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; text-decoration:none; bgcolor:transparent; font-size:12pt; color:000000; homogeneous:1; height:0in; text-position:normal; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; text-decoration:none; bgcolor:transparent; font-size:12pt; color:000000; homogeneous:1; height:0in; text-position:normal; font-stretch:normal"> </c><c props="font-family:Times New Roman; font-size:12pt; lang:ar-SA; text-position:normal; font-weight:normal; font-style:normal; text-decoration:none">To be able to successfully reproduce the hardware based real-time implementation of the AGL release on an ARM based development board. </c></p>
<p level="1" listid="1539" parentid="0" xid="1248" props="list-delim:%L; list-decimal:NULL; list-style:Bullet List; start-value:0; margin-left:0.5000in; text-indent:-0.3000in; field-font:Nimbus Sans L"><c props="font-family:Times New Roman; font-size:12pt; lang:ar-SA; list-tag:1547; text-position:normal; font-weight:normal; font-style:normal; text-decoration:none"></c><field type="list_label" xid="1249" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; text-decoration:none; bgcolor:transparent; font-size:12pt; color:000000; homogeneous:1; height:0in; text-position:normal; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; text-decoration:none; bgcolor:transparent; font-size:12pt; color:000000; homogeneous:1; height:0in; text-position:normal; font-stretch:normal"> </c><c props="font-family:Times New Roman; font-size:12pt; lang:ar-SA; text-position:normal; font-weight:normal; font-style:normal; text-decoration:none">To provide an future roadmap for Non-hybrid cum Hybrid on-road network integration in a cheap (feasible), environment-friendly (sustainanble) and energy-efficient (if not, utilitarian) by means of a snap-on dashboard powered by a simple smartphones’ sensors, transmitters and transduecers. </c></p>
<p level="1" listid="1539" parentid="0" xid="1250" props="list-delim:%L; list-decimal:NULL; list-style:Bullet List; start-value:0; margin-left:0.5000in; text-indent:-0.3000in; field-font:Nimbus Sans L"><c props="font-family:Times New Roman; font-size:12pt; lang:ar-SA; list-tag:1548; text-position:normal; font-weight:normal; font-style:normal; text-decoration:none"></c><field type="list_label" xid="1251" props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; text-decoration:none; bgcolor:transparent; font-size:12pt; color:000000; homogeneous:1; height:0in; text-position:normal; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-variant:normal; font-weight:normal; lang:ar-SA; font-style:normal; text-transform:none; list-style:Bullet List; text-decoration:none; bgcolor:transparent; font-size:12pt; color:000000; homogeneous:1; height:0in; text-position:normal; font-stretch:normal"> </c><c props="font-family:Times New Roman; font-size:12pt; lang:ar-SA; text-position:normal; font-weight:normal; font-style:normal; text-decoration:none">To demonstrate a successful implementation of AGL (improvised fork) during the final review. </c></p>
<p xid="1138" props="font-family:Times New Roman; margin-left:0pt; text-decoration:none; text-indent:0in; lang:ar-SA; text-position:normal; font-weight:normal; font-style:normal; font-size:12pt"><c props="lang:en-US"></c><pbr/></p>
<p xid="644" props="text-align:center; margin-left:36.000000pt"><c></c><c></c></p>
<p xid="645"><c props="lang:en-US; text-decoration:underline; font-family:Times New Roman">3.3 Gantt (Progression / Commits) chart</c><c props="lang:en-US; text-decoration:underline; font-family:Times New Roman"></c></p>
<p xid="603"><c></c><c></c></p>
<p xid="636"><c></c><c></c></p>
<table xid="3238" props="table-column-props:0.9375in/0.1875in/0.1875in/0.1875in/0.1875in/0.1875in/0.1875in/0.1875in/0.1875in/0.1875in/0.1875in/0.1875in/0.1875in/0.1875in/0.1875in/0.1875in/0.1875in/0.1875in/0.1875in/0.1875in/0.1875in/0.1875in/0.1875in/0.1875in/0.1875in/0.1875in/0.2500in/0.2500in/0.1875in/0.2500in/; table-row-heights:0.2500in/0.2500in/0.2500in/0.2500in/0.2500in/0.2500in/0.2500in/0.2500in/0.2500in/0.2500in/0.2500in/0.2500in/0.2500in/0.2500in/0.2500in/0.2500in/0.2500in/0.2500in/0.2500in/0.2500in/; list-tag:1">
<cell xid="3239" props="bot-attach:1; left-attach:0; right-attach:1; top-attach:0">
<p style="Normal" xid="3240"><c props="font-size:9pt"></c><c props="font-size:9pt">Activity/Week</c></p>
</cell>
<cell xid="3242" props="bot-attach:1; left-attach:1; right-attach:2; top-attach:0">
<p style="Normal" xid="3243"><c props="font-size:9pt">1</c></p>
</cell>
<cell xid="3245" props="bot-attach:1; left-attach:2; right-attach:3; top-attach:0">
<p style="Normal" xid="3246"><c props="font-size:9pt"></c><c props="font-size:9pt">2</c></p>
</cell>
<cell xid="3248" props="bot-attach:1; left-attach:3; right-attach:4; top-attach:0">
<p style="Normal" xid="3249"><c props="font-size:9pt"></c><c props="font-size:9pt">3</c></p>
</cell>
<cell xid="3251" props="bot-attach:1; left-attach:4; right-attach:5; top-attach:0">
<p style="Normal" xid="3252"><c props="font-size:9pt"></c><c props="font-size:9pt">4</c></p>
</cell>
<cell xid="3254" props="bot-attach:1; left-attach:5; right-attach:6; top-attach:0">
<p style="Normal" xid="3255"><c props="font-size:9pt"></c><c props="font-size:9pt"></c></p>
</cell>
<cell xid="3257" props="bot-attach:1; left-attach:6; right-attach:7; top-attach:0">
<p style="Normal" xid="3258"><c props="font-size:9pt"></c><c props="font-size:9pt">5</c></p>
</cell>
<cell xid="3260" props="bot-attach:1; left-attach:7; right-attach:8; top-attach:0">
<p style="Normal" xid="3261"><c props="font-size:9pt"></c><c props="font-size:9pt">6</c></p>
</cell>
<cell xid="3263" props="bot-attach:1; left-attach:8; right-attach:9; top-attach:0">
<p style="Normal" xid="3264"><c props="font-size:9pt"></c><c props="font-size:9pt">7</c></p>
</cell>
<cell xid="3266" props="bot-attach:1; left-attach:9; right-attach:10; top-attach:0">
<p style="Normal" xid="3267"><c props="font-size:9pt"></c><c props="font-size:9pt">8</c></p>
</cell>
<cell xid="3269" props="bot-attach:1; left-attach:10; right-attach:11; top-attach:0">
<p style="Normal" xid="3270"><c props="font-size:9pt"></c><c props="font-size:9pt"></c></p>
</cell>
<cell xid="3272" props="bot-attach:1; left-attach:11; right-attach:12; top-attach:0">
<p style="Normal" xid="3273"><c props="font-size:9pt"></c><c props="font-size:9pt">9</c></p>
</cell>
<cell xid="5046" props="bot-attach:1; left-attach:12; right-attach:13; top-attach:0">
<p style="Normal" xid="5047"><c props="font-size:9pt"></c><c props="font-size:9pt">10</c></p>
</cell>
<cell xid="3278" props="bot-attach:1; left-attach:13; right-attach:14; top-attach:0">
<p style="Normal" xid="3279"><c props="font-size:9pt"></c><c props="font-size:9pt">11</c></p>
</cell>
<cell xid="3281" props="bot-attach:1; left-attach:14; right-attach:15; top-attach:0">
<p style="Normal" xid="3282"><c props="font-size:9pt"></c><c props="font-size:9pt">12</c></p>
</cell>
<cell xid="3284" props="bot-attach:1; left-attach:15; right-attach:16; top-attach:0">
<p style="Normal" xid="3285"><c props="font-size:9pt"></c></p>
</cell>
<cell xid="3287" props="bot-attach:1; left-attach:16; right-attach:17; top-attach:0">
<p style="Normal" xid="3288"><c props="font-size:9pt">13</c></p>
</cell>
<cell xid="3290" props="bot-attach:1; left-attach:17; right-attach:18; top-attach:0">
<p style="Normal" xid="3291"><c props="font-size:9pt">14</c></p>
</cell>
<cell xid="3293" props="bot-attach:1; left-attach:18; right-attach:19; top-attach:0">
<p style="Normal" xid="3294"><c props="font-size:9pt">15</c></p>
</cell>
<cell xid="3296" props="bot-attach:1; left-attach:19; right-attach:20; top-attach:0">
<p style="Normal" xid="3297"><c props="font-size:9pt">16</c></p>
</cell>
<cell xid="3299" props="bot-attach:1; left-attach:20; right-attach:21; top-attach:0">
<p style="Normal" xid="3300"><c props="font-size:9pt"></c></p>
</cell>
<cell xid="3302" props="bot-attach:1; left-attach:21; right-attach:22; top-attach:0">
<p style="Normal" xid="3303"><c props="font-size:9pt"></c><c props="font-size:9pt">17</c></p>
</cell>
<cell xid="3305" props="bot-attach:1; left-attach:22; right-attach:23; top-attach:0">
<p style="Normal" xid="3306"><c props="font-size:9pt"></c><c props="font-size:9pt">18</c></p>
</cell>
<cell xid="3308" props="bot-attach:1; left-attach:23; right-attach:24; top-attach:0">
<p style="Normal" xid="3309"><c props="font-size:9pt"></c><c props="font-size:9pt">19</c></p>
</cell>
<cell xid="3311" props="bot-attach:1; left-attach:24; right-attach:25; top-attach:0">
<p style="Normal" xid="3312"><c props="font-size:9pt">20</c></p>
</cell>
<cell xid="3314" props="bot-attach:1; left-attach:25; right-attach:26; top-attach:0">
<p style="Normal" xid="3315"><c props="font-size:9pt"></c><c props="font-size:9pt"></c></p>
</cell>
<cell xid="3317" props="bot-attach:1; left-attach:26; right-attach:27; top-attach:0">
<p style="Normal" xid="3318"><c props="font-size:9pt"></c><c props="font-size:9pt">21</c></p>
</cell>
<cell xid="3320" props="bot-attach:1; left-attach:27; right-attach:28; top-attach:0">
<p style="Normal" xid="3321"><c props="font-size:9pt"></c><c props="font-size:9pt">22</c></p>
</cell>
<cell xid="3323" props="bot-attach:1; left-attach:28; right-attach:29; top-attach:0">
<p style="Normal" xid="3324"><c props="font-size:9pt">23</c></p>
</cell>
<cell xid="3326" props="bot-attach:1; left-attach:29; right-attach:30; top-attach:0">
<p style="Normal" xid="3327"><c props="font-size:9pt"></c><c props="font-size:9pt">24</c></p>
</cell>
<cell xid="3329" props="bot-attach:2; left-attach:0; right-attach:1; top-attach:1">
<p style="Normal" xid="3330"><c></c>Field / Topic</p>
</cell>
<cell xid="3332" props="bot-attach:2; left-attach:1; right-attach:2; top-attach:1">
<p style="Normal" xid="3333"><c></c>#</p>
</cell>
<cell xid="3335" props="bot-attach:2; left-attach:2; right-attach:3; top-attach:1">
<p style="Normal" xid="3336"><c></c>#</p>
</cell>
<cell xid="3338" props="bot-attach:2; left-attach:3; right-attach:4; top-attach:1">
<p style="Normal" xid="3339"><c></c>#</p>
</cell>
<cell xid="3341" props="bot-attach:2; left-attach:4; right-attach:5; top-attach:1">
<p style="Normal" xid="3342"><c></c><c></c></p>
</cell>
<cell xid="3344" props="bot-attach:2; left-attach:5; right-attach:6; top-attach:1">
<p style="Normal" xid="3345"><c></c><c></c></p>
</cell>
<cell xid="3347" props="bot-attach:2; left-attach:6; right-attach:7; top-attach:1">
<p style="Normal" xid="3348"><c></c><c></c></p>
</cell>
<cell xid="3350" props="bot-attach:2; left-attach:7; right-attach:8; top-attach:1">
<p style="Normal" xid="3351"><c></c><c></c></p>
</cell>
<cell xid="3353" props="bot-attach:2; left-attach:8; right-attach:9; top-attach:1">
<p style="Normal" xid="3354"><c></c><c></c></p>
</cell>
<cell xid="3356" props="bot-attach:2; left-attach:9; right-attach:10; top-attach:1">
<p style="Normal" xid="3357"><c></c><c></c></p>
</cell>
<cell xid="3359" props="bot-attach:2; left-attach:10; right-attach:11; top-attach:1">
<p style="Normal" xid="3360"><c></c><c></c></p>
</cell>
<cell xid="3362" props="bot-attach:2; left-attach:11; right-attach:12; top-attach:1">
<p style="Normal" xid="3363"><c></c><c></c></p>
</cell>
<cell xid="5048" props="bot-attach:2; left-attach:12; right-attach:13; top-attach:1">
<p style="Normal" xid="5049"><c></c><c></c></p>
</cell>
<cell xid="3368" props="bot-attach:2; left-attach:13; right-attach:14; top-attach:1">
<p style="Normal" xid="3369"><c></c><c></c></p>
</cell>
<cell xid="3371" props="bot-attach:2; left-attach:14; right-attach:15; top-attach:1">
<p style="Normal" xid="3372"><c></c><c></c></p>
</cell>
<cell xid="3374" props="bot-attach:2; left-attach:15; right-attach:16; top-attach:1">
<p style="Normal" xid="3375"><c></c><c></c></p>
</cell>
<cell xid="3377" props="bot-attach:2; left-attach:16; right-attach:17; top-attach:1">
<p style="Normal" xid="3378"><c></c><c></c></p>
</cell>
<cell xid="3380" props="bot-attach:2; left-attach:17; right-attach:18; top-attach:1">
<p style="Normal" xid="3381"><c></c><c></c></p>
</cell>
<cell xid="3383" props="bot-attach:2; left-attach:18; right-attach:19; top-attach:1">
<p style="Normal" xid="3384"><c></c><c></c></p>
</cell>
<cell xid="3386" props="bot-attach:2; left-attach:19; right-attach:20; top-attach:1">
<p style="Normal" xid="3387"><c></c><c></c></p>
</cell>
<cell xid="3389" props="bot-attach:2; left-attach:20; right-attach:21; top-attach:1">
<p style="Normal" xid="3390"><c></c><c></c></p>
</cell>
<cell xid="3392" props="bot-attach:2; left-attach:21; right-attach:22; top-attach:1">
<p style="Normal" xid="3393"><c></c><c></c></p>
</cell>
<cell xid="3395" props="bot-attach:2; left-attach:22; right-attach:23; top-attach:1">
<p style="Normal" xid="3396"><c></c><c></c></p>
</cell>
<cell xid="3398" props="bot-attach:2; left-attach:23; right-attach:24; top-attach:1">
<p style="Normal" xid="3399"><c></c><c></c></p>
</cell>
<cell xid="3401" props="bot-attach:2; left-attach:24; right-attach:25; top-attach:1">
<p style="Normal" xid="3402"><c></c><c></c></p>
</cell>
<cell xid="3404" props="bot-attach:2; left-attach:25; right-attach:26; top-attach:1">
<p style="Normal" xid="3405"><c></c><c></c></p>
</cell>
<cell xid="3407" props="bot-attach:2; left-attach:26; right-attach:27; top-attach:1">
<p style="Normal" xid="3408"><c></c><c></c></p>
</cell>
<cell xid="3410" props="bot-attach:2; left-attach:27; right-attach:28; top-attach:1">
<p style="Normal" xid="3411"><c></c><c></c></p>
</cell>
<cell xid="3413" props="bot-attach:2; left-attach:28; right-attach:29; top-attach:1">
<p style="Normal" xid="3414"><c></c><c></c></p>
</cell>
<cell xid="3416" props="bot-attach:2; left-attach:29; right-attach:30; top-attach:1">
<p style="Normal" xid="3417"><c></c><c></c></p>
</cell>
<cell xid="3419" props="bot-attach:3; left-attach:0; right-attach:1; top-attach:2">